summaryrefslogtreecommitdiffstats
path: root/runtest.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2002-01-11 07:03:58 (GMT)
committerSteven Knight <knight@baldmt.com>2002-01-11 07:03:58 (GMT)
commit1337a21f86a49c41940e9b95b7ebf5139cfa03d3 (patch)
treea35eb93886633346141fd0032f4c9c784f73ead4 /runtest.py
parent73d5fcf51f9002bb3a0da8a32576b2e8ce0cb54a (diff)
downloadSCons-1337a21f86a49c41940e9b95b7ebf5139cfa03d3.zip
SCons-1337a21f86a49c41940e9b95b7ebf5139cfa03d3.tar.gz
SCons-1337a21f86a49c41940e9b95b7ebf5139cfa03d3.tar.bz2
Add command-line redirection (Charles Crain).
Diffstat (limited to 'runtest.py')
-rw-r--r--runtest.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtest.py b/runtest.py
index 4535064..4e4ed0c 100644
--- a/runtest.py
+++ b/runtest.py
@@ -150,9 +150,9 @@ for path in tests:
if printcmd:
print cmd
s = os.system(cmd)
- if s == 1:
+ if s == 1 or s == 256:
fail.append(path)
- elif s == 2:
+ elif s == 2 or s == 512:
no_result.append(path)
elif s != 0:
print "Unexpected exit status %d" % s