diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2007-08-28 18:06:27 -0400 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2007-08-28 18:06:27 -0400 |
commit | 284571f9b231a06fb791010ccca4fc120f023166 (patch) | |
tree | 9511a045117c4c445926b23ed15b88a8fb438c13 /demoscript/Ice/throughput.py | |
parent | Merge branch 'master' of ssh://cvs.zeroc.com/home/git/ice (diff) | |
download | ice-284571f9b231a06fb791010ccca4fc120f023166.tar.bz2 ice-284571f9b231a06fb791010ccca4fc120f023166.tar.xz ice-284571f9b231a06fb791010ccca4fc120f023166.zip |
Fix expect scripts on HP
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 647d6535b0f..10090ddddec 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=1000) + client.expect('==> ', timeout=2000) print "twoway: %s " % (client.before) if not demoscript.Util.fast: client.sendline('o') client.expect('o') - client.expect('==> ', timeout=1000) + client.expect('==> ', timeout=2000) print "oneway: %s " % (client.before) client.sendline('r') client.expect('r') - client.expect('==> ', timeout=1000) + client.expect('==> ', timeout=2000) print "receive: %s" % (client.before) client.sendline('e') client.expect('e') - client.expect('==> ', timeout=1000) + client.expect('==> ', timeout=2000) print "echo: %s" % (client.before) def run(client, server): |