summaryrefslogtreecommitdiff
path: root/cpp/allTests.py
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2001-09-29 20:31:32 +0000
committerMarc Laukien <marc@zeroc.com>2001-09-29 20:31:32 +0000
commit8e110997e5b73acbca384db269e3e58a6ebb0129 (patch)
treea319cb39ced69d8005b8c9c9a71f53620f841a2a /cpp/allTests.py
parentruntest fixes (diff)
downloadice-8e110997e5b73acbca384db269e3e58a6ebb0129.tar.bz2
ice-8e110997e5b73acbca384db269e3e58a6ebb0129.tar.xz
ice-8e110997e5b73acbca384db269e3e58a6ebb0129.zip
bug fix
Diffstat (limited to 'cpp/allTests.py')
-rwxr-xr-xcpp/allTests.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/allTests.py b/cpp/allTests.py
index 294bd044161..4047b0b1cfc 100755
--- a/cpp/allTests.py
+++ b/cpp/allTests.py
@@ -36,9 +36,9 @@ for i in \
try:
execfile(os.path.normpath(dir + "/run.py"))
- except SystemExit, (ex,):
- if ex:
- sys.exit(ex)
+ except SystemExit, (status,):
+ if status:
+ sys.exit(status)