diff options
Diffstat (limited to 'test/option/tree-all.py')
-rw-r--r-- | test/option/tree-all.py | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/test/option/tree-all.py b/test/option/tree-all.py index 0bd1717..fc0f689 100644 --- a/test/option/tree-all.py +++ b/test/option/tree-all.py @@ -31,7 +31,6 @@ complete dependencies of a target. import TestSCons import sys -import string test = TestSCons.TestSCons() @@ -95,7 +94,7 @@ tree1 = """ """ % locals() test.run(arguments = "--tree=all Foo.xxx") -if string.count(test.stdout(), tree1) != 1: +if test.stdout().count(tree1) != 1: sys.stdout.write('Did not find expected tree (or found duplicate) in the following output:\n') sys.stdout.write(test.stdout()) test.fail_test() @@ -158,13 +157,13 @@ tree3 = """ """ % locals() test.run(arguments = "--tree=all,prune .") -if string.count(test.stdout(), tree3) != 1: +if test.stdout().count(tree3) != 1: sys.stdout.write('Did not find expected tree (or found duplicate) in the following output:\n') sys.stdout.write(test.stdout()) test.fail_test() test.run(arguments = "--tree=prune .") -if string.count(test.stdout(), tree3) != 1: +if test.stdout().count(tree3) != 1: sys.stdout.write('Did not find expected tree (or found duplicate) in the following output:\n') sys.stdout.write(test.stdout()) test.fail_test() @@ -198,13 +197,13 @@ tree4 = """ test.run(arguments = '-c Foo.xxx') test.run(arguments = "--no-exec --tree=all,status Foo.xxx") -if string.count(test.stdout(), tree4) != 1: +if test.stdout().count(tree4) != 1: sys.stdout.write('Did not find expected tree (or found duplicate) in the following output:\n') sys.stdout.write(test.stdout()) test.fail_test() test.run(arguments = "--no-exec --tree=status Foo.xxx") -if string.count(test.stdout(), tree4) != 1: +if test.stdout().count(tree4) != 1: sys.stdout.write('Did not find expected tree (or found duplicate) in the following output:\n') sys.stdout.write(test.stdout()) test.fail_test() @@ -221,7 +220,7 @@ THIS SHOULD CAUSE A BUILD FAILURE test.run(arguments = "--tree=all Foo.xxx", status = 2, stderr = None) -if string.count(test.stdout(), tree1) != 1: +if test.stdout().count(tree1) != 1: sys.stdout.write('Did not find expected tree (or found duplicate) in the following output:\n') sys.stdout.write(test.stdout()) test.fail_test() |