diff options
author | Jose <jose@zeroc.com> | 2014-12-16 16:43:18 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2014-12-16 16:43:18 +0100 |
commit | d7911765a90af712d8a44b5b36291664c7258ae7 (patch) | |
tree | de6886b29606b217f72d72ca6bef048270238c94 /cpp/demo/IceGrid/customLoadBalancing/expect.py | |
parent | Fixed default compiler setting in TestUtil (diff) | |
download | ice-d7911765a90af712d8a44b5b36291664c7258ae7.tar.bz2 ice-d7911765a90af712d8a44b5b36291664c7258ae7.tar.xz ice-d7911765a90af712d8a44b5b36291664c7258ae7.zip |
Bump some demoscript timeouts that could cause problems
Diffstat (limited to 'cpp/demo/IceGrid/customLoadBalancing/expect.py')
-rwxr-xr-x | cpp/demo/IceGrid/customLoadBalancing/expect.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/demo/IceGrid/customLoadBalancing/expect.py b/cpp/demo/IceGrid/customLoadBalancing/expect.py index 09f00e76ac0..7e1d2f9e442 100755 --- a/cpp/demo/IceGrid/customLoadBalancing/expect.py +++ b/cpp/demo/IceGrid/customLoadBalancing/expect.py @@ -62,7 +62,7 @@ sys.stdout.flush() client = Util.spawn('./client --Ice.Default.Locator.Context.currency=EUR') client.expect('Preferred currency configured for the client: EUR') client.expect('Preferred currencies of the server: .*EUR.*') -client.waitTestSuccess(timeout=1) +client.waitTestSuccess(timeout=120) print("ok") sys.stdout.write("testing preferred currency GBP... ") @@ -70,7 +70,7 @@ sys.stdout.flush() client = Util.spawn('./client --Ice.Default.Locator.Context.currency=GBP') client.expect('Preferred currency configured for the client: GBP') client.expect('Preferred currencies of the server: .*GBP.*') -client.waitTestSuccess(timeout=1) +client.waitTestSuccess(timeout=120) print("ok") sys.stdout.write("testing preferred currency JPY... ") @@ -78,7 +78,7 @@ sys.stdout.flush() client = Util.spawn('./client --Ice.Default.Locator.Context.currency=JPY') client.expect('Preferred currency configured for the client: JPY') client.expect('Preferred currencies of the server: .*JPY.*') -client.waitTestSuccess(timeout=1) +client.waitTestSuccess(timeout=120) print("ok") admin.sendline('registry shutdown Master') |