summaryrefslogtreecommitdiffstats
path: root/etc/TestSCons.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2003-01-05 13:11:27 (GMT)
committerSteven Knight <knight@baldmt.com>2003-01-05 13:11:27 (GMT)
commit51974ccdc1ee8340c54f8fa02670c554d20ef157 (patch)
tree78aeb47be219e4ad28483e7d57855ef9e72ef411 /etc/TestSCons.py
parentd88f61db921461663b934595e38a15e2ca09c225 (diff)
downloadSCons-51974ccdc1ee8340c54f8fa02670c554d20ef157.zip
SCons-51974ccdc1ee8340c54f8fa02670c554d20ef157.tar.gz
SCons-51974ccdc1ee8340c54f8fa02670c554d20ef157.tar.bz2
Fix problems returning the appropriate exit status on build errors.
Diffstat (limited to 'etc/TestSCons.py')
-rw-r--r--etc/TestSCons.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/TestSCons.py b/etc/TestSCons.py
index c97fd48..4b392d4 100644
--- a/etc/TestSCons.py
+++ b/etc/TestSCons.py
@@ -34,7 +34,7 @@ if os.name == 'posix':
def _failed(self, status = 0):
if self.status is None:
return None
- if os.WIFSIGNALED(status):
+ if os.WIFSIGNALED(self.status):
return None
return _status(self) != status
def _status(self):