diff options
Diffstat (limited to 'demoscript/Ice/throughput.py')
-rwxr-xr-x | demoscript/Ice/throughput.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/demoscript/Ice/throughput.py b/demoscript/Ice/throughput.py index f490fa0788c..647d6535b0f 100755 --- a/demoscript/Ice/throughput.py +++ b/demoscript/Ice/throughput.py @@ -15,24 +15,24 @@ def runseries(client): client.sendline('t') client.expect('t') - client.expect('==> ', timeout=240) + client.expect('==> ', timeout=1000) print "twoway: %s " % (client.before) if not demoscript.Util.fast: client.sendline('o') client.expect('o') - client.expect('==> ', timeout=240) + client.expect('==> ', timeout=1000) print "oneway: %s " % (client.before) client.sendline('r') client.expect('r') - client.expect('==> ', timeout=240) + client.expect('==> ', timeout=1000) print "receive: %s" % (client.before) client.sendline('e') client.expect('e') - client.expect('==> ', timeout=240) + client.expect('==> ', timeout=1000) print "echo: %s" % (client.before) def run(client, server): |