diff options
author | Mats Wichmann <mats@linux.com> | 2020-05-12 17:37:19 (GMT) |
---|---|---|
committer | Mats Wichmann <mats@linux.com> | 2020-05-12 17:37:19 (GMT) |
commit | cf156d9524cdb1140c57ef376ff6a05f06c79534 (patch) | |
tree | f2317dfb9d7df65f0d4964bbaa8748f2637c929f /test/Interactive | |
parent | 190bc3bfbb582d49480bb24d90bf6e09b596488c (diff) | |
download | SCons-cf156d9524cdb1140c57ef376ff6a05f06c79534.zip SCons-cf156d9524cdb1140c57ef376ff6a05f06c79534.tar.gz SCons-cf156d9524cdb1140c57ef376ff6a05f06c79534.tar.bz2 |
Some more fixups for project directory moves
Signed-off-by: Mats Wichmann <mats@linux.com>
Diffstat (limited to 'test/Interactive')
-rw-r--r-- | test/Interactive/configure.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/test/Interactive/configure.py b/test/Interactive/configure.py index 9c7ef49..44a53eb 100644 --- a/test/Interactive/configure.py +++ b/test/Interactive/configure.py @@ -21,7 +21,6 @@ # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # -__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" """ Verify basic operation of the --interactive command line option to build @@ -30,6 +29,8 @@ a target, while using a Configure context within the environment. Also tests that "b" can be used as a synonym for "build". """ +__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" + import TestSCons _python_ = TestSCons._python_ @@ -118,15 +119,15 @@ test.finish(scons, stdout = expect_stdout, match=TestSCons.match_re) test.pass_test() + +# not used: just record here to help debugging the expect_stdout pattern 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 +/usr/bin/python3 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 +/usr/bin/python3 mycc.py foo.obj foo.cpp scons>>> build foo.obj scons: `foo.obj' is up to date. scons>>> |