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

__revision__ = "test/Help.py __REVISION__ __DATE__ __DEVELOPER__"

import TestSCons

test = TestSCons.TestSCons()

wpath = test.workpath()

test.write('SConstruct', r"""
Help("Help text\ngoes here.\n")
""")

test.run(arguments = '-h')

test.fail_test(test.stdout() != "Help text\ngoes here.\n\nUse scons -H for help about command-line options.\n")
test.fail_test(test.stderr() != "")

test.pass_test()