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/up-to-date.py | |
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/up-to-date.py')
-rw-r--r-- | test/up-to-date.py | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/test/up-to-date.py b/test/up-to-date.py index 366d017..41d892e 100644 --- a/test/up-to-date.py +++ b/test/up-to-date.py @@ -28,8 +28,6 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" Verify appropriate printing of "is up to date" messages. """ -import string - import TestSCons _python_ = TestSCons._python_ @@ -79,19 +77,7 @@ expected_lines = [ ] test.run(options = '-j4 f1.out f2.out f3.out f4.out') -stdout = test.stdout() - -missing = [] -for line in expected_lines: - if string.find(stdout, line) == -1: - missing.append(line) -if missing: - print "Missing the following expected lines:" - for line in missing: - print line - print "STDOUT ==========" - print stdout - test.fail_test() +test.must_contain_all_lines(test.stdout(), expected_lines) test.pass_test() |