summaryrefslogtreecommitdiff
path: root/test/Program-j.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2001-09-16 04:22:19 +0000
committerSteven Knight <knight@baldmt.com>2001-09-16 04:22:19 +0000
commite88681240924e70ec12abaf3664290a69db6dcfd (patch)
tree136311c7b231f8d467156a9ae4a9d53428f364fc /test/Program-j.py
parentfcd916513a1ad10e13479d4d604f239f7ea45c73 (diff)
downloadscons-e88681240924e70ec12abaf3664290a69db6dcfd.tar.gz
Add more information error reporting from tests.
Diffstat (limited to 'test/Program-j.py')
-rw-r--r--test/Program-j.py13
1 files changed, 4 insertions, 9 deletions
diff --git a/test/Program-j.py b/test/Program-j.py
index 1a0e6a63..4a4fee79 100644
--- a/test/Program-j.py
+++ b/test/Program-j.py
@@ -54,17 +54,12 @@ main(int argc, char *argv[])
test.run(arguments = '-j 3 f1 f2 f3 f4')
-test.run(program = test.workpath('f1'))
-test.fail_test(test.stdout() != "f1.c\n")
+test.run(program = test.workpath('f1'), stdout = "f1.c\n")
-test.run(program = test.workpath('f2'))
-test.fail_test(test.stdout() != "f2.c\n")
+test.run(program = test.workpath('f2'), stdout = "f2.c\n")
-test.run(program = test.workpath('f3'))
-test.fail_test(test.stdout() != "f3.c\n")
-
-test.run(program = test.workpath('f4'))
-test.fail_test(test.stdout() != "f4.c\n")
+test.run(program = test.workpath('f3'), stdout = "f3.c\n")
+test.run(program = test.workpath('f4'), stdout = "f4.c\n")
test.pass_test()