[LNT] r231555 - Drop gawk from the tools check
Tobias Grosser
tobias at grosser.es
Fri Mar 6 22:48:20 PST 2015
Author: grosser
Date: Sat Mar 7 00:48:20 2015
New Revision: 231555
URL: http://llvm.org/viewvc/llvm-project?rev=231555&view=rev
Log:
Drop gawk from the tools check
Adding it in 231484 has broken my LNT testers. As they worked flawless
before, it seems gawk is not strictly required.
Modified:
lnt/trunk/lnt/tests/nt.py
Modified: lnt/trunk/lnt/tests/nt.py
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/lnt/tests/nt.py?rev=231555&r1=231554&r2=231555&view=diff
==============================================================================
--- lnt/trunk/lnt/tests/nt.py (original)
+++ lnt/trunk/lnt/tests/nt.py Sat Mar 7 00:48:20 2015
@@ -1925,10 +1925,6 @@ def _tools_check():
if status > 0:
raise SystemExit("""error: groff not available on your system.""")
- status = call(["which", "gawk"], stdout=FNULL, stderr=FNULL)
- if status > 0:
- raise SystemExit("""error: gawk not available on your system.""")
-
status = call(["which", "tclsh"], stdout=FNULL, stderr=FNULL)
if status > 0:
raise SystemExit("""error: tclsh not available on your system.""")
More information about the llvm-commits
mailing list