From: stevenknight Date: Wed, 21 Jan 2009 19:37:35 +0000 (+0000) Subject: Remove leftover "shell pwd" debug statement. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=b5ecd42343babc478fde4715a8ca1928c33e2692;p=scons.git Remove leftover "shell pwd" debug statement. Update error messages now that the Windows cmd interpreter is looking for the shell-out executables. git-svn-id: http://scons.tigris.org/svn/scons/trunk@3918 fdb21ef1-2011-0410-befe-b5e4ea1792b1 --- diff --git a/test/Interactive/shell.py b/test/Interactive/shell.py index 9d5e8a2d..5b35f87e 100644 --- a/test/Interactive/shell.py +++ b/test/Interactive/shell.py @@ -84,9 +84,9 @@ scons.send("build foo.out\n") scons.send("\n") if sys.platform == 'win32': - no_such_error = 'The system cannot find the file specified' + no_such_error = "'no_such_command' is not recognized as an internal or external command,\noperable program or batch file." else: - no_such_error = 'No such file or directory' + no_such_error = 'scons: no_such_command: No such file or directory' expect_stdout = """\ scons>>> Copy("foo.out", "foo.in") @@ -100,9 +100,9 @@ hello from shell_command.py scons>>> hello from shell_command.py scons>>> sh %(_python_)s %(_shell_command_py_)s hello from shell_command.py -scons>>> scons: no_such_command: %(no_such_error)s +scons>>> %(no_such_error)s scons>>> !no_such_command arg1 arg2 -scons: no_such_command: %(no_such_error)s +%(no_such_error)s scons>>> scons: `foo.out' is up to date. scons>>> build foo.out scons: `foo.out' is up to date. diff --git a/test/Interactive/variant_dir.py b/test/Interactive/variant_dir.py index 7de25cc9..68ee2a32 100644 --- a/test/Interactive/variant_dir.py +++ b/test/Interactive/variant_dir.py @@ -76,8 +76,6 @@ import os os.chdir('work/sub1') scons = test.start(chdir = 'work/sub1', arguments = '-Q -u --interactive') -scons.send("shell pwd\n") - scons.send("build\n") scons.send("build %s\n" % marker_1)