summaryrefslogtreecommitdiff
path: root/demoscript/Ice/throughput.py
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2007-08-27 09:22:22 -0400
committerDwayne Boone <dwayne@zeroc.com>2007-08-27 09:22:22 -0400
commit419382c9e021cb14d2fe23eecb94c4ac710a7da8 (patch)
tree8e108d3e65a68178f68d496215bbe4b569ba585c /demoscript/Ice/throughput.py
parentadd bug fix note to CHANGES file for http://bugzilla/bugzilla/show_bug.cgi?id... (diff)
downloadice-419382c9e021cb14d2fe23eecb94c4ac710a7da8.tar.bz2
ice-419382c9e021cb14d2fe23eecb94c4ac710a7da8.tar.xz
ice-419382c9e021cb14d2fe23eecb94c4ac710a7da8.zip
Fixed expect scripts on Sun
Diffstat (limited to 'demoscript/Ice/throughput.py')
-rwxr-xr-xdemoscript/Ice/throughput.py8
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):