diff options
author | Benoit Foucher <benoit@zeroc.com> | 2012-11-30 17:07:05 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2012-11-30 17:07:05 +0100 |
commit | bd79ab507f30c4c10c555520ac4fc381d1920d6a (patch) | |
tree | dc11c09bc70375c5c32333325ab89b02f399eac9 /scripts/Expect.py | |
parent | ICE-5066 - inconsistent indents in Python demo (diff) | |
download | ice-bd79ab507f30c4c10c555520ac4fc381d1920d6a.tar.bz2 ice-bd79ab507f30c4c10c555520ac4fc381d1920d6a.tar.xz ice-bd79ab507f30c4c10c555520ac4fc381d1920d6a.zip |
Fixed ICE-5065 - Fixed another exit status problem
Diffstat (limited to 'scripts/Expect.py')
-rwxr-xr-x | scripts/Expect.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/scripts/Expect.py b/scripts/Expect.py index b296e3e9a83..0c90141aebd 100755 --- a/scripts/Expect.py +++ b/scripts/Expect.py @@ -552,10 +552,7 @@ class Expect (object): if self.mapping == "java": if self.killed is not None: if win32: - if self.killed == signal.SIGINT: - test(self.exitstatus, 1) - else: - test(self.exitstatus, self.killed) + test(self.exitstatus, -self.killed) else: if self.killed == signal.SIGINT: test(130, self.exitstatus) |