diff options
Diffstat (limited to 'test/option--W.py')
-rw-r--r-- | test/option--W.py | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/test/option--W.py b/test/option--W.py new file mode 100644 index 0000000..6f0a2a1 --- /dev/null +++ b/test/option--W.py @@ -0,0 +1,36 @@ +#!/usr/bin/env python + +__revision__ = "test/option--W.py __REVISION__ __DATE__ __DEVELOPER__" + +import TestCmd +import string +import sys + +test = TestCmd.TestCmd(program = 'scons.py', + workdir = '', + interpreter = 'python') + +test.write('SConstruct', "") + +test.run(chdir = '.', arguments = '-W foo') + +test.fail_test(test.stderr() != + "Warning: the -W option is not yet implemented\n") + +test.run(chdir = '.', arguments = '--what-if=foo') + +test.fail_test(test.stderr() != + "Warning: the --what-if option is not yet implemented\n") + +test.run(chdir = '.', arguments = '--new-file=foo') + +test.fail_test(test.stderr() != + "Warning: the --new-file option is not yet implemented\n") + +test.run(chdir = '.', arguments = '--assume-new=foo') + +test.fail_test(test.stderr() != + "Warning: the --assume-new option is not yet implemented\n") + +test.pass_test() + |