summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2012-11-30 17:07:05 +0100
committerBenoit Foucher <benoit@zeroc.com>2012-11-30 17:07:05 +0100
commitbd79ab507f30c4c10c555520ac4fc381d1920d6a (patch)
treedc11c09bc70375c5c32333325ab89b02f399eac9
parentICE-5066 - inconsistent indents in Python demo (diff)
downloadice-bd79ab507f30c4c10c555520ac4fc381d1920d6a.tar.bz2
ice-bd79ab507f30c4c10c555520ac4fc381d1920d6a.tar.xz
ice-bd79ab507f30c4c10c555520ac4fc381d1920d6a.zip
Fixed ICE-5065 - Fixed another exit status problem
-rwxr-xr-xscripts/Expect.py5
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)