diff options
author | Marc Laukien <marc@zeroc.com> | 2001-09-29 20:31:32 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2001-09-29 20:31:32 +0000 |
commit | 8e110997e5b73acbca384db269e3e58a6ebb0129 (patch) | |
tree | a319cb39ced69d8005b8c9c9a71f53620f841a2a /cpp/allTests.py | |
parent | runtest fixes (diff) | |
download | ice-8e110997e5b73acbca384db269e3e58a6ebb0129.tar.bz2 ice-8e110997e5b73acbca384db269e3e58a6ebb0129.tar.xz ice-8e110997e5b73acbca384db269e3e58a6ebb0129.zip |
bug fix
Diffstat (limited to 'cpp/allTests.py')
-rwxr-xr-x | cpp/allTests.py | 6 |
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) |