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

__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"

import TestSCons

test = TestSCons.TestSCons()

wpath = test.workpath()

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

expect = "Help text\ngoes here.\n\nUse scons -H for help about command-line options.\n"

test.run(arguments = '-h', stdout = expect)

test.pass_test()