diff options
author | Steven Knight <knight@baldmt.com> | 2009-02-06 14:55:23 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2009-02-06 14:55:23 (GMT) |
commit | e112f6b49c9063e6a584ff4f7abf9d7a644eef30 (patch) | |
tree | 978573b4ff11f036428c0a08a89085313ad990fa /test/Java | |
parent | 9405dad6e18db3934eec7b992e12a2016b1466db (diff) | |
download | SCons-e112f6b49c9063e6a584ff4f7abf9d7a644eef30.zip SCons-e112f6b49c9063e6a584ff4f7abf9d7a644eef30.tar.gz SCons-e112f6b49c9063e6a584ff4f7abf9d7a644eef30.tar.bz2 |
Commonize new string-search-in-output methods:
test.must_contain_all_lines()
test.must_contain_any_line()
test.must_not_contain_any_line()
Update tests to use them. Remove "import string" lines where the
change made them unnecessary.
Diffstat (limited to 'test/Java')
-rw-r--r-- | test/Java/no-JARCHDIR.py | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/test/Java/no-JARCHDIR.py b/test/Java/no-JARCHDIR.py index 795689c..d0233f6 100644 --- a/test/Java/no-JARCHDIR.py +++ b/test/Java/no-JARCHDIR.py @@ -31,8 +31,6 @@ and when we explicity set it to None (it should not use the Java() classdir attribute at all). """ -import string - import TestSCons test = TestSCons.TestSCons() @@ -75,13 +73,7 @@ foo/bar/a.class foo/bar/b.class """ -if string.find(test.stdout(), expect) == -1: - print "Did not find expected string in standard output." - print "Expected ==========================================================" - print expect - print "Output ============================================================" - print test.stdout() - test.fail_test() +test.must_contain_all_lines(test.stdout(), [expect]) @@ -109,13 +101,7 @@ classes/foo/bar/a.class classes/foo/bar/b.class """ -if string.find(test.stdout(), expect) == -1: - print "Did not find expected string in standard output." - print "Expected ==========================================================" - print expect - print "Output ============================================================" - print test.stdout() - test.fail_test() +test.must_contain_all_lines(test.stdout(), [expect]) |