summaryrefslogtreecommitdiff
path: root/scripts/Expect.py
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2014-12-12 09:56:33 +0100
committerJose <jose@zeroc.com>2014-12-12 09:56:33 +0100
commit0eb4f7af9096c5bb520df0fd07e9269a4895edf0 (patch)
treeb9967e5be4f48d5c4f3f1bab6639c9d45b15bac8 /scripts/Expect.py
parentadding Slice comment (diff)
downloadice-0eb4f7af9096c5bb520df0fd07e9269a4895edf0.tar.bz2
ice-0eb4f7af9096c5bb520df0fd07e9269a4895edf0.tar.xz
ice-0eb4f7af9096c5bb520df0fd07e9269a4895edf0.zip
Bump expect/expectall default timeouts
Diffstat (limited to 'scripts/Expect.py')
-rwxr-xr-xscripts/Expect.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/Expect.py b/scripts/Expect.py
index a89283aa96d..886d8a8f508 100755
--- a/scripts/Expect.py
+++ b/scripts/Expect.py
@@ -388,7 +388,7 @@ class Expect (object):
self.r.setWatchDog(watchDog)
self.r.start()
- def expect(self, pattern, timeout = 20):
+ def expect(self, pattern, timeout = 60):
"""pattern is either a string, or a list of string regexp patterns.
timeout == None expect can block indefinitely.
@@ -416,7 +416,7 @@ class Expect (object):
raise e
return self.matchindex
- def expectall(self, pattern, timeout = 10):
+ def expectall(self, pattern, timeout = 60):
"""pattern is a list of string regexp patterns.
timeout == None expect can block indefinitely.