summaryrefslogtreecommitdiff
path: root/test/Errors
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2009-02-06 14:55:23 +0000
committerSteven Knight <knight@baldmt.com>2009-02-06 14:55:23 +0000
commita4d9a13b7a85f2c7f55fc409056e3b9628902022 (patch)
tree978573b4ff11f036428c0a08a89085313ad990fa /test/Errors
parentf706866a1d840a6fc1251ad6c62e137c240967fd (diff)
downloadscons-a4d9a13b7a85f2c7f55fc409056e3b9628902022.tar.gz
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/Errors')
-rw-r--r--test/Errors/Exception.py9
-rw-r--r--test/Errors/execute-a-directory.py7
-rw-r--r--test/Errors/non-executable-file.py7
-rw-r--r--test/Errors/nonexistent-executable.py7
4 files changed, 4 insertions, 26 deletions
diff --git a/test/Errors/Exception.py b/test/Errors/Exception.py
index 8485ce5d..61bd74f6 100644
--- a/test/Errors/Exception.py
+++ b/test/Errors/Exception.py
@@ -24,8 +24,6 @@
__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
-import string
-
import TestSCons
test = TestSCons.TestSCons(match = TestSCons.match_re_dotall)
@@ -73,11 +71,6 @@ test.run(arguments='foo.out exit.out', stderr=expect, status=2)
stdout = test.stdout()
expect = "scons: `foo.out' is up to date."
-
-if string.find(stdout, expect) == -1:
- print "Did not find expected string %s" % repr(expect)
- print "STDOUT ======================================================="
- print stdout
- test.fail_test()
+test.must_contain_all_lines(test.stdout(), [expect])
test.pass_test()
diff --git a/test/Errors/execute-a-directory.py b/test/Errors/execute-a-directory.py
index bcdcb7cb..a13b4e06 100644
--- a/test/Errors/execute-a-directory.py
+++ b/test/Errors/execute-a-directory.py
@@ -99,11 +99,6 @@ else:
Permission_denied % (test.workdir, 'f3'),
Permission_denied % (test.workdir, 'f3'),
]
- error_message_not_found = 1
- for err in errs:
- if string.find(test.stderr(), err) != -1:
- error_message_not_found = None
- break
- test.fail_test(error_message_not_found)
+ test.must_contain_any_line(test.stderr(), errs)
test.pass_test()
diff --git a/test/Errors/non-executable-file.py b/test/Errors/non-executable-file.py
index d6e018b9..3d5cd5bc 100644
--- a/test/Errors/non-executable-file.py
+++ b/test/Errors/non-executable-file.py
@@ -93,11 +93,6 @@ else:
Permission_denied % (not_executable, 'f1'),
permission_denied % (not_executable, 'f1'),
]
- error_message_not_found = 1
- for err in errs:
- if string.find(test.stderr(), err) != -1:
- error_message_not_found = None
- break
- test.fail_test(error_message_not_found)
+ test.must_contain_any_line(test.stderr(), errs)
test.pass_test()
diff --git a/test/Errors/nonexistent-executable.py b/test/Errors/nonexistent-executable.py
index b2a9557d..c2f7cfdb 100644
--- a/test/Errors/nonexistent-executable.py
+++ b/test/Errors/nonexistent-executable.py
@@ -97,11 +97,6 @@ else:
not_found_127 % (no_such_file, 'f1'),
No_such % (no_such_file, 'f1'),
]
- error_message_not_found = 1
- for err in errs:
- if string.find(test.stderr(), err) != -1:
- error_message_not_found = None
- break
- test.fail_test(error_message_not_found)
+ test.must_contain_any_line(test.stderr(), errs)
test.pass_test()