Remove leftover "shell pwd" debug statement.
authorstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Wed, 21 Jan 2009 19:37:35 +0000 (19:37 +0000)
committerstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Wed, 21 Jan 2009 19:37:35 +0000 (19:37 +0000)
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

test/Interactive/shell.py
test/Interactive/variant_dir.py

index 9d5e8a2def07748c8788397941dde947c7ee66dc..5b35f87e5f78605ca8fe9345f16b6b8c3e498dae 100644 (file)
@@ -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.
index 7de25cc9fa7e6b1d953ff5d75cc94a8a5e295462..68ee2a3251e407ad0d5953b1975cbec5f8423162 100644 (file)
@@ -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)