diff options
author | Steven Knight <knight@baldmt.com> | 2004-08-30 23:57:47 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2004-08-30 23:57:47 (GMT) |
commit | 55c90e28f101a6fa7d02844c6e9502d8ee95a31e (patch) | |
tree | 54428428d22e29966e91633ad19790f8ab6fb391 /test/Help.py | |
parent | c4143e783721d57d827b2d3e64c8202a34ff5768 (diff) | |
download | SCons-55c90e28f101a6fa7d02844c6e9502d8ee95a31e.zip SCons-55c90e28f101a6fa7d02844c6e9502d8ee95a31e.tar.gz SCons-55c90e28f101a6fa7d02844c6e9502d8ee95a31e.tar.bz2 |
Allow Help() to be called multiple times, appending to the text each time. (Chad Austin)
Diffstat (limited to 'test/Help.py')
-rw-r--r-- | test/Help.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/test/Help.py b/test/Help.py index ea356ba..d6e71ea 100644 --- a/test/Help.py +++ b/test/Help.py @@ -60,4 +60,26 @@ Use scons -H for help about command-line options. test.run(arguments = '-h', stdout = expect) +test.write('SConstruct', r""" +Help('\nMulti') +Help('line\n') +Help('''\ +help +text! +''') +""") + +expect = """\ +scons: Reading SConscript files ... +scons: done reading SConscript files. + +Multiline +help +text! + +Use scons -H for help about command-line options. +""" + +test.run(arguments = '-h', stdout = expect) + test.pass_test() |