summaryrefslogtreecommitdiffstats
path: root/test/option-o.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2001-09-16 04:22:19 (GMT)
committerSteven Knight <knight@baldmt.com>2001-09-16 04:22:19 (GMT)
commite88681240924e70ec12abaf3664290a69db6dcfd (patch)
tree136311c7b231f8d467156a9ae4a9d53428f364fc /test/option-o.py
parentfcd916513a1ad10e13479d4d604f239f7ea45c73 (diff)
downloadSCons-e88681240924e70ec12abaf3664290a69db6dcfd.zip
SCons-e88681240924e70ec12abaf3664290a69db6dcfd.tar.gz
SCons-e88681240924e70ec12abaf3664290a69db6dcfd.tar.bz2
Add more information error reporting from tests.
Diffstat (limited to 'test/option-o.py')
-rw-r--r--test/option-o.py18
1 files changed, 6 insertions, 12 deletions
diff --git a/test/option-o.py b/test/option-o.py
index 5be3d08..63453d3 100644
--- a/test/option-o.py
+++ b/test/option-o.py
@@ -10,20 +10,14 @@ test = TestSCons.TestSCons()
test.write('SConstruct', "")
-test.run(arguments = '-o foo')
+test.run(arguments = '-o foo',
+ stderr = "Warning: the -o option is not yet implemented\n")
-test.fail_test(test.stderr() !=
- "Warning: the -o option is not yet implemented\n")
+test.run(arguments = '--old-file=foo',
+ stderr = "Warning: the --old-file option is not yet implemented\n")
-test.run(arguments = '--old-file=foo')
-
-test.fail_test(test.stderr() !=
- "Warning: the --old-file option is not yet implemented\n")
-
-test.run(arguments = '--assume-old=foo')
-
-test.fail_test(test.stderr() !=
- "Warning: the --assume-old option is not yet implemented\n")
+test.run(arguments = '--assume-old=foo',
+ stderr = "Warning: the --assume-old option is not yet implemented\n")
test.pass_test()