summaryrefslogtreecommitdiff
path: root/test/exceptions.py
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/exceptions.py
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/exceptions.py')
-rw-r--r--test/exceptions.py14
1 files changed, 1 insertions, 13 deletions
diff --git a/test/exceptions.py b/test/exceptions.py
index 98e3e834..12efdf0a 100644
--- a/test/exceptions.py
+++ b/test/exceptions.py
@@ -26,7 +26,6 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
import os
import re
-import string
import sys
import TestSCons
import TestCmd
@@ -122,18 +121,7 @@ expected_stderr_list = [
test.run(arguments = '-j7 -k .', status = 2, stderr = None)
-missing = []
-for es in expected_stderr_list:
- if string.find(test.stderr(), es) == -1:
- missing.append(es)
-
-if missing:
- sys.stderr.write("Missing the following lines from stderr:\n")
- for m in missing:
- sys.stderr.write(m)
- sys.stderr.write('STDERR ===============================================\n')
- sys.stderr.write(test.stderr())
- test.fail_test(1)
+test.must_contain_all_lines(test.stderr(), expected_stderr_list)
test.pass_test()