Add more information error reporting from tests.
[scons.git] / test / option--H.py
1 #!/usr/bin/env python
2
3 __revision__ = "test/option--H.py __REVISION__ __DATE__ __DEVELOPER__"
4
5 import TestSCons
6 import string
7 import sys
8
9 test = TestSCons.TestSCons()
10
11 test.write('SConstruct', "")
12
13 test.run(arguments = '-H')
14
15 test.fail_test(string.find(test.stdout(), '-H, --help-options') == -1)
16
17 test.pass_test()
18