summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussel Winder <russel@winder.org.uk>2014-12-23 08:12:43 +0000
committerRussel Winder <russel@winder.org.uk>2014-12-23 08:12:43 +0000
commitab6811f96903d354344d99e9eea82e2e46077304 (patch)
treeaf92b376490f6ef084c34cc862015732a6f09a0c
parent9600c3d350a6fc61fe065defd88778d5d24c391f (diff)
downloadscons-ab6811f96903d354344d99e9eea82e2e46077304.tar.gz
Check for the header file itself on not an associated executable.
-rw-r--r--test/D/HSTeoh/Common/linkingProblem.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/D/HSTeoh/Common/linkingProblem.py b/test/D/HSTeoh/Common/linkingProblem.py
index ab096f24..b526ad70 100644
--- a/test/D/HSTeoh/Common/linkingProblem.py
+++ b/test/D/HSTeoh/Common/linkingProblem.py
@@ -43,7 +43,7 @@ def testForTool(tool):
if not isExecutableOfToolAvailable(test, tool) :
test.skip_test("Required executable for tool '{0}' not found, skipping test.\n".format(tool))
- if not exists('/usr/bin/tset'):
+ if not exists('/usr/include/ncurses.h'):
test.skip_test("ncurses not apparently installed, skip this test.")
test.dir_fixture('LinkingProblem')