diff options
Diffstat (limited to 'demoscript/Ice/session.py')
-rwxr-xr-x | demoscript/Ice/session.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/demoscript/Ice/session.py b/demoscript/Ice/session.py index 3c3385b0949..1d9ae3992eb 100755 --- a/demoscript/Ice/session.py +++ b/demoscript/Ice/session.py @@ -8,10 +8,11 @@ # # ********************************************************************** -import sys, demoscript +import sys +from demoscript import * def run(clientStr, server): - client = demoscript.Util.spawn(clientStr) + client = Util.spawn(clientStr) client.expect('==>') client.sendline('foo') @@ -20,7 +21,7 @@ def run(clientStr, server): server.expect('The session foo is now created.') client.sendline('c') client.sendline('0') - server.expect("Hello object #0 for session `foo' says:\r{1,2}\nHello foo!") + server.expect("Hello object #0 for session `foo' says:\nHello foo!") client.sendline('1') client.expect('Index is too high') client.sendline('x') @@ -30,22 +31,21 @@ def run(clientStr, server): print "testing session cleanup...", sys.stdout.flush() - client = demoscript.Util.spawn(clientStr) + client = Util.spawn(clientStr) client.expect('==>') client.sendline('foo') server.expect('The session foo is now created.') client.sendline('c') client.sendline('t') client.waitTestSuccess() - server.expect("The session foo is now destroyed.\r{1,2}\n.*The session foo has timed out.", timeout=25) + server.expect("The session foo is now destroyed.\n.*The session foo has timed out.", timeout=25) print "ok" - client = demoscript.Util.spawn(clientStr) + client = Util.spawn(clientStr) client.expect('==>') client.sendline('foo') server.expect('The session foo is now created.') client.sendline('s') server.waitTestSuccess() - client.sendline('x') client.waitTestSuccess() |