diff options
Diffstat (limited to 'test/CC/CFLAGS.py')
-rw-r--r-- | test/CC/CFLAGS.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CC/CFLAGS.py b/test/CC/CFLAGS.py index f14fcc5..6ccf7e2 100644 --- a/test/CC/CFLAGS.py +++ b/test/CC/CFLAGS.py @@ -24,7 +24,7 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" -import sys, string +import sys import TestSCons test = TestSCons.TestSCons() @@ -38,8 +38,8 @@ print env.subst('$SHCXXCOM') print env.subst('$SHCXXCOMSTR') """) test.run(arguments = '.') -test.fail_test(string.find(test.stdout(), "-xyz") != -1) -test.fail_test(string.find(test.stdout(), "-abc") == -1) +test.must_not_contain_any_line(test.stdout(), ["-xyz"]) +test.must_contain_all_lines(test.stdout(), ["-abc"]) # Test passing CFLAGS to C compiler by actually compiling programs |