summaryrefslogtreecommitdiffstats
path: root/test/option-o.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2002-08-31 04:58:09 (GMT)
committerSteven Knight <knight@baldmt.com>2002-08-31 04:58:09 (GMT)
commitda5fa78a78e4fe36ab5f6dacb1e7938cd1bdbe07 (patch)
tree09923409e3e511b6d18e0323209f34cda29c2ca7 /test/option-o.py
parentd8b4ea0c9adfb77244f488c338d290c863f2b8b1 (diff)
downloadSCons-da5fa78a78e4fe36ab5f6dacb1e7938cd1bdbe07.zip
SCons-da5fa78a78e4fe36ab5f6dacb1e7938cd1bdbe07.tar.gz
SCons-da5fa78a78e4fe36ab5f6dacb1e7938cd1bdbe07.tar.bz2
Provide a message if there are no command-line targets specified and no Default() targets.
Diffstat (limited to 'test/option-o.py')
-rw-r--r--test/option-o.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/option-o.py b/test/option-o.py
index 05f7261..b85ede2 100644
--- a/test/option-o.py
+++ b/test/option-o.py
@@ -32,13 +32,13 @@ 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.run(arguments = '--old-file=foo',
+test.run(arguments = '--old-file=foo .',
stderr = "Warning: the --old-file option is not yet implemented\n")
-test.run(arguments = '--assume-old=foo',
+test.run(arguments = '--assume-old=foo .',
stderr = "Warning: the --assume-old option is not yet implemented\n")
test.pass_test()