diff options
author | Steven Knight <knight@baldmt.com> | 2002-08-31 04:58:09 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2002-08-31 04:58:09 (GMT) |
commit | da5fa78a78e4fe36ab5f6dacb1e7938cd1bdbe07 (patch) | |
tree | 09923409e3e511b6d18e0323209f34cda29c2ca7 /test/option--W.py | |
parent | d8b4ea0c9adfb77244f488c338d290c863f2b8b1 (diff) | |
download | SCons-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--W.py')
-rw-r--r-- | test/option--W.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/option--W.py b/test/option--W.py index ac43603..d66601a 100644 --- a/test/option--W.py +++ b/test/option--W.py @@ -32,16 +32,16 @@ test = TestSCons.TestSCons() test.write('SConstruct', "") -test.run(arguments = '-W foo', +test.run(arguments = '-W foo .', stderr = "Warning: the -W option is not yet implemented\n") -test.run(arguments = '--what-if=foo', +test.run(arguments = '--what-if=foo .', stderr = "Warning: the --what-if option is not yet implemented\n") -test.run(arguments = '--new-file=foo', +test.run(arguments = '--new-file=foo .', stderr = "Warning: the --new-file option is not yet implemented\n") -test.run(arguments = '--assume-new=foo', +test.run(arguments = '--assume-new=foo .', stderr = "Warning: the --assume-new option is not yet implemented\n") test.pass_test() |