diff options
author | Mats Wichmann <mats@linux.com> | 2019-09-12 18:06:39 (GMT) |
---|---|---|
committer | Mats Wichmann <mats@linux.com> | 2019-09-12 18:06:39 (GMT) |
commit | f3937a8b0f71fc10e05e81aaaf47824600d3be58 (patch) | |
tree | 692d8ce361e0a44fd524857d3e963102bef0217e /test/Removed | |
parent | 2781e4e52b0910c408b0ffc7c0bc1b511a42a754 (diff) | |
download | SCons-f3937a8b0f71fc10e05e81aaaf47824600d3be58.zip SCons-f3937a8b0f71fc10e05e81aaaf47824600d3be58.tar.gz SCons-f3937a8b0f71fc10e05e81aaaf47824600d3be58.tar.bz2 |
[PR #3444] fix test issues with --debug removals
There were several uses of deprecated debug flags that had
not been moved to to test/Deprecated, and so were missed
when those moved to test/Removed.
Also removed options from manpage.
Signed-off-by: Mats Wichmann <mats@linux.com>
Diffstat (limited to 'test/Removed')
-rw-r--r-- | test/Removed/debug-tree.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/Removed/debug-tree.py b/test/Removed/debug-tree.py index 73aa4c9..06287de 100644 --- a/test/Removed/debug-tree.py +++ b/test/Removed/debug-tree.py @@ -26,6 +26,7 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" """ Test that the --debug=tree option fails with expected exception +Check command-line, SCONSFLAGS and interactive """ import os @@ -48,6 +49,12 @@ os.environ['SCONSFLAGS'] = '--debug=tree' test.run(arguments="-H", status=2, stderr=expect) +# moved test from test/Interactive/tree.py +scons = test.start(arguments = '-Q --interactive') +scons.send("build --debug=tree\n") +test.finish(scons, status=2, stderr=expect) + + test.pass_test() # Local Variables: |