summaryrefslogtreecommitdiffstats
path: root/test/option--H.py
blob: a02120cff99f129f4e246d6b5a0fa02f787acef2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env python

__revision__ = "test/option--H.py __REVISION__ __DATE__ __DEVELOPER__"

import TestSCons
import string
import sys

test = TestSCons.TestSCons()

test.write('SConstruct', "")

test.run(arguments = '-H')

test.fail_test(string.find(test.stdout(), '-H, --help-options') == -1)

test.pass_test()