diff options
author | Steven Knight <knight@baldmt.com> | 2002-01-11 07:03:58 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2002-01-11 07:03:58 (GMT) |
commit | 1337a21f86a49c41940e9b95b7ebf5139cfa03d3 (patch) | |
tree | a35eb93886633346141fd0032f4c9c784f73ead4 /runtest.py | |
parent | 73d5fcf51f9002bb3a0da8a32576b2e8ce0cb54a (diff) | |
download | SCons-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.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |