summaryrefslogtreecommitdiff
path: root/demoscript/Ice
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2014-05-23 11:59:44 +0200
committerBenoit Foucher <benoit@zeroc.com>2014-05-23 11:59:44 +0200
commitd81701ca8182942b7936f9fd84a019b695e9c890 (patch)
treedc036c9d701fbbe1afad67782bd78572c0f61974 /demoscript/Ice
parentFixed bug ICE-5543: stringToIdentity bug with escaped escapes (diff)
downloadice-d81701ca8182942b7936f9fd84a019b695e9c890.tar.bz2
ice-d81701ca8182942b7936f9fd84a019b695e9c890.tar.xz
ice-d81701ca8182942b7936f9fd84a019b695e9c890.zip
Added support for invocation timeouts and ACM heartbeats
Diffstat (limited to 'demoscript/Ice')
-rw-r--r--demoscript/Ice/hello.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/demoscript/Ice/hello.py b/demoscript/Ice/hello.py
index f4cb5770b5b..9f562a93c2b 100644
--- a/demoscript/Ice/hello.py
+++ b/demoscript/Ice/hello.py
@@ -58,9 +58,8 @@ def runtests(client, server, secure, datagram):
client.sendline('P')
client.expect('server delay is now set to 2500ms')
client.sendline('t')
- client.expect('.*TimeoutException.*', timeout=10)
+ client.expect('.*InvocationTimeoutException.*', timeout=10)
server.expect('Hello World!')
- server.expect('Hello World!') # second because op is idempotent
client.sendline('P')
client.expect('server delay is now deactivated')
client.sendline('t')
@@ -82,4 +81,4 @@ def run(client, server, sslSupport = True, datagramSupport = True):
print("server shutdown");
client.sendline('x')
client.waitTestSuccess()
- print("client shutdown"); \ No newline at end of file
+ print("client shutdown");