summaryrefslogtreecommitdiff
path: root/scripts/Expect.py
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2014-12-05 09:43:35 +0100
committerJose <jose@zeroc.com>2014-12-05 09:43:35 +0100
commit860e6802076f6d3c861918020616b03c68a23664 (patch)
tree68830d66f529a5374bb8dad7c2c685d064d24ea4 /scripts/Expect.py
parentCleanup remaining process when test fails (diff)
downloadice-860e6802076f6d3c861918020616b03c68a23664.tar.bz2
ice-860e6802076f6d3c861918020616b03c68a23664.tar.xz
ice-860e6802076f6d3c861918020616b03c68a23664.zip
Don't cleanup on timeout some tests expect timeout
Diffstat (limited to 'scripts/Expect.py')
-rwxr-xr-xscripts/Expect.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/scripts/Expect.py b/scripts/Expect.py
index 92baf5e5618..53ab939f7bb 100755
--- a/scripts/Expect.py
+++ b/scripts/Expect.py
@@ -412,7 +412,6 @@ class Expect (object):
try:
self.buf, self.before, self.after, self.match, self.matchindex = self.r.match(pattern, timeout)
except TIMEOUT as e:
- cleanup()
self.buf = ""
self.before = ""
self.after = ""
@@ -439,7 +438,6 @@ class Expect (object):
self.matchindex = 0
self.match = None
except TIMEOUT as e:
- cleanup()
self.buf = ""
self.before = ""
self.after = ""