diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2007-08-27 09:22:22 -0400 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2007-08-27 09:22:22 -0400 |
commit | 419382c9e021cb14d2fe23eecb94c4ac710a7da8 (patch) | |
tree | 8e108d3e65a68178f68d496215bbe4b569ba585c /demoscript/Ice/throughput.py | |
parent | add bug fix note to CHANGES file for http://bugzilla/bugzilla/show_bug.cgi?id... (diff) | |
download | ice-419382c9e021cb14d2fe23eecb94c4ac710a7da8.tar.bz2 ice-419382c9e021cb14d2fe23eecb94c4ac710a7da8.tar.xz ice-419382c9e021cb14d2fe23eecb94c4ac710a7da8.zip |
Fixed expect scripts on Sun
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): |