Issue 1568: fix a stack trace when --debug=include tries to handle
[scons.git] / test / SCONSFLAGS.py
1 #!/usr/bin/env python
2 #
3 # __COPYRIGHT__
4 #
5 # Permission is hereby granted, free of charge, to any person obtaining
6 # a copy of this software and associated documentation files (the
7 # "Software"), to deal in the Software without restriction, including
8 # without limitation the rights to use, copy, modify, merge, publish,
9 # distribute, sublicense, and/or sell copies of the Software, and to
10 # permit persons to whom the Software is furnished to do so, subject to
11 # the following conditions:
12 #
13 # The above copyright notice and this permission notice shall be included
14 # in all copies or substantial portions of the Software.
15 #
16 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
17 # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
18 # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20 # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 #
24
25 __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
26
27 import os
28 import string
29
30 import TestCmd
31 import TestSCons
32
33 test = TestSCons.TestSCons(match = TestCmd.match_re_dotall)
34
35 wpath = test.workpath()
36
37 test.write('SConstruct', r"""
38 Help("Help text.\n")
39 """)
40
41 expect = """scons: Reading SConscript files ...
42 scons: done reading SConscript files.
43 Help text.
44
45 Use scons -H for help about command-line options.
46 """
47
48 os.environ['SCONSFLAGS'] = ''
49
50 test.run(arguments = '-h',
51          stdout = expect,
52          stderr = TestSCons.deprecated_python_expr)
53
54 os.environ['SCONSFLAGS'] = '-h'
55
56 test.run(stdout = expect,
57          stderr = TestSCons.deprecated_python_expr)
58
59 # No TestSCons.deprecated_python_expr because the -H option gets
60 # processed before the SConscript files and therefore before we check
61 # for the deprecation warning.
62 test.run(arguments = "-H")
63
64 test.fail_test(string.find(test.stdout(), 'Help text.') >= 0)
65 test.fail_test(string.find(test.stdout(), '-H, --help-options') == -1)
66
67 os.environ['SCONSFLAGS'] = '-Z'
68
69 expect = r"""usage: scons [OPTION] [TARGET] ...
70
71 SCons error: no such option: -Z
72 """
73
74 test.run(arguments = "-H", status = 2,
75          stderr = TestSCons.re_escape(expect))
76
77 test.pass_test()