From: William Deegan Date: Tue, 29 Aug 2017 22:22:01 +0000 (-0700) Subject: Add string of actual output when the commands in this test are run manually. It appea... X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2d98882f5bb40cd97609d99ad6b3628315a90585;p=platform%2Fupstream%2Fscons.git 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. --- 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