mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
[lit] Avoid comparisons with None.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187919 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a1ba7527de
commit
bd9bb2c515
@ -224,7 +224,9 @@ def executeShCmd(cmd, cfg, cwd, results):
|
||||
results.append((cmd.commands[i], out, err, res))
|
||||
if cmd.pipe_err:
|
||||
# Python treats the exit code as a signed char.
|
||||
if res < 0:
|
||||
if exitCode is None:
|
||||
exitCode = res
|
||||
elif res < 0:
|
||||
exitCode = min(exitCode, res)
|
||||
else:
|
||||
exitCode = max(exitCode, res)
|
||||
|
Loading…
Reference in New Issue
Block a user