diff options
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') |