[lit] Fix bug where InternalShellError messages were discarded.

- Also, change the exit code to match 'sh'.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174089 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Daniel Dunbar 2013-01-31 20:58:16 +00:00
parent 3ab115ce8f
commit b62fb4ba5c

View File

@ -256,9 +256,8 @@ def executeScriptInternal(test, litConfig, tmpBase, commands, cwd):
try: try:
exitCode = executeShCmd(cmd, test.config, cwd, results) exitCode = executeShCmd(cmd, test.config, cwd, results)
except InternalShellError,e: except InternalShellError,e:
out = '' exitCode = 127
err = e.message results.append((e.command, '', e.message, exitCode))
exitCode = 255
out = err = '' out = err = ''
for i,(cmd, cmd_out,cmd_err,res) in enumerate(results): for i,(cmd, cmd_out,cmd_err,res) in enumerate(results):