diff options
author | Jose <jose@zeroc.com> | 2014-12-16 16:43:18 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2014-12-16 16:43:18 +0100 |
commit | d7911765a90af712d8a44b5b36291664c7258ae7 (patch) | |
tree | de6886b29606b217f72d72ca6bef048270238c94 /demoscript/Ice | |
parent | Fixed default compiler setting in TestUtil (diff) | |
download | ice-d7911765a90af712d8a44b5b36291664c7258ae7.tar.bz2 ice-d7911765a90af712d8a44b5b36291664c7258ae7.tar.xz ice-d7911765a90af712d8a44b5b36291664c7258ae7.zip |
Bump some demoscript timeouts that could cause problems
Diffstat (limited to 'demoscript/Ice')
-rw-r--r-- | demoscript/Ice/async.py | 2 | ||||
-rw-r--r-- | demoscript/Ice/hello.py | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/demoscript/Ice/async.py b/demoscript/Ice/async.py index 72a4f6d7be0..182e5f3fd71 100644 --- a/demoscript/Ice/async.py +++ b/demoscript/Ice/async.py @@ -18,7 +18,7 @@ def run(client, server): server.expect('Hello World!') client.sendline('d') try: - server.expect('Hello World!', timeout=1) + server.expect('Hello World!', timeout=120) except Expect.TIMEOUT: pass client.sendline('i') diff --git a/demoscript/Ice/hello.py b/demoscript/Ice/hello.py index 9f562a93c2b..a6d2d6ba9e6 100644 --- a/demoscript/Ice/hello.py +++ b/demoscript/Ice/hello.py @@ -31,7 +31,7 @@ def runtests(client, server, secure, datagram): sys.stdout.flush() client.sendline('O') try: - server.expect('Hello World!', timeout=1) + server.expect('Hello World!', timeout=120) except Expect.TIMEOUT: pass client.sendline('O') @@ -43,7 +43,7 @@ def runtests(client, server, secure, datagram): sys.stdout.flush() client.sendline('D') try: - server.expect('Hello World!', timeout=1) + server.expect('Hello World!', timeout=120) except Expect.TIMEOUT: pass client.sendline('D') |