summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2017-08-29 15:22:01 -0700
committerWilliam Deegan <bill@baddogconsulting.com>2017-08-29 15:22:01 -0700
commita2961616ada197eb20e8f635b444c0c848afbbfc (patch)
tree9b344a44030d7b2ee8ed549830a31e96dcf764ff
parenta0a0d8c6e521866d1ada7c1774f74f09e8da70c3 (diff)
downloadscons-a2961616ada197eb20e8f635b444c0c848afbbfc.tar.gz
Add string of actual output when the commands in this test are run manually. It appears that on non-win and win+py2.7 some of the output is getting dropped and so the test passes when it should fail. with win+py3.5or6 it intermittently fails as it should based on expected output. Though in reality the output is correct.
-rw-r--r--test/Interactive/configure.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/Interactive/configure.py b/test/Interactive/configure.py
index 1a92f6c4..906a7e90 100644
--- a/test/Interactive/configure.py
+++ b/test/Interactive/configure.py
@@ -120,6 +120,20 @@ test.finish(scons, stdout = expect_stdout, match=TestSCons.match_re)
test.pass_test()
+actual_output_to_be_handled="""
+Actual output
+python3.6 ~/devel/scons/hg/scons/src/script/scons.py -Q --interactive
+scons>>> build foo.obj
+/opt/local/bin/python3.6 mycc.py foo.obj foo.cpp
+scons>>> build foo.obj
+scons: `foo.obj' is up to date.
+scons>>> b foo.obj
+/opt/local/bin/python3.6 mycc.py foo.obj foo.cpp
+scons>>> build foo.obj
+scons: `foo.obj' is up to date.
+scons>>>
+"""
+
# Local Variables:
# tab-width:4
# indent-tabs-mode:nil