summaryrefslogtreecommitdiff
path: root/test/Delete.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/Delete.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/Delete.py')
-rw-r--r--test/Delete.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/test/Delete.py b/test/Delete.py
index 63e4ab63..47f9d81e 100644
--- a/test/Delete.py
+++ b/test/Delete.py
@@ -29,7 +29,6 @@ Verify that the Delete() Action works.
"""
import os.path
-import string
import TestSCons
@@ -180,8 +179,11 @@ test.write('f14.in', "f14.in\n")
test.run(status=2, stderr=None)
-stderr = test.stderr()
-test.fail_test(string.find(stderr, "No such file or directory") == -1 and
- string.find(stderr, "The system cannot find the path specified") == -1)
+fail_strings = [
+ "No such file or directory",
+ "The system cannot find the path specified",
+]
+
+test.must_contain_any_line(test.stderr(), fail_strings)
test.pass_test()