diff options
Diffstat (limited to 'test/option-b.py')
-rw-r--r-- | test/option-b.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/test/option-b.py b/test/option-b.py new file mode 100644 index 0000000..42e5f73 --- /dev/null +++ b/test/option-b.py @@ -0,0 +1,21 @@ +#!/usr/bin/env python + +__revision__ = "test/option-b.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 = '-b') + +test.fail_test(test.stderr() != + "Warning: ignoring -b option\n") + +test.pass_test() + |