diff options
Diffstat (limited to 'test/option--S.py')
-rw-r--r-- | test/option--S.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/option--S.py b/test/option--S.py index f238be9..ca66cfd 100644 --- a/test/option--S.py +++ b/test/option--S.py @@ -32,12 +32,12 @@ test = TestSCons.TestSCons() test.write('SConstruct', "") -test.run(arguments = '-S', stderr = "Warning: ignoring -S option\n") +test.run(arguments = '-S .', stderr = "Warning: ignoring -S option\n") -test.run(arguments = '--no-keep-going', +test.run(arguments = '--no-keep-going .', stderr = "Warning: ignoring --no-keep-going option\n") -test.run(arguments = '--stop', stderr = "Warning: ignoring --stop option\n") +test.run(arguments = '--stop .', stderr = "Warning: ignoring --stop option\n") test.pass_test() |