diff options
Diffstat (limited to 'test/option--H.py')
-rw-r--r-- | test/option--H.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/test/option--H.py b/test/option--H.py new file mode 100644 index 0000000..dcb56f6 --- /dev/null +++ b/test/option--H.py @@ -0,0 +1,20 @@ +#!/usr/bin/env python + +__revision__ = "test/option--H.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 = '-H') + +test.fail_test(string.find(test.stdout(), '-H, --help-options') == -1) + +test.pass_test() + |