summaryrefslogtreecommitdiffstats
path: root/test/option-o.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/option-o.py')
-rw-r--r--test/option-o.py10
1 files changed, 3 insertions, 7 deletions
diff --git a/test/option-o.py b/test/option-o.py
index 23f102b..bde8e8f 100644
--- a/test/option-o.py
+++ b/test/option-o.py
@@ -30,17 +30,13 @@ test = TestSCons.TestSCons()
test.write('SConstruct', "")
-test.run(arguments = '-o foo .',
- stderr = "Warning: the -o option is not yet implemented\n")
+test.option_not_yet_implemented('-o', 'foo .')
-test.run(arguments = '--old-file=foo .',
- stderr = "Warning: the --old-file option is not yet implemented\n")
+test.option_not_yet_implemented('--old-file', '=foo .')
-test.run(arguments = '--assume-old=foo .',
- stderr = "Warning: the --assume-old option is not yet implemented\n")
+test.option_not_yet_implemented('--assume-old', '=foo .')
test.pass_test()
-
# Local Variables:
# tab-width:4