diff options
author | Benoit Foucher <benoit@zeroc.com> | 2005-08-01 13:29:51 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2005-08-01 13:29:51 +0000 |
commit | 06299c499ff6e159fd8518bc11390ca530a8ff72 (patch) | |
tree | b69be8a0fc4c3cde653fa6fa13246697a706e3a2 /cpp/test/IceGrid/update/run.py | |
parent | Fix (diff) | |
download | ice-06299c499ff6e159fd8518bc11390ca530a8ff72.tar.bz2 ice-06299c499ff6e159fd8518bc11390ca530a8ff72.tar.xz ice-06299c499ff6e159fd8518bc11390ca530a8ff72.zip |
Fix
Diffstat (limited to 'cpp/test/IceGrid/update/run.py')
-rwxr-xr-x | cpp/test/IceGrid/update/run.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cpp/test/IceGrid/update/run.py b/cpp/test/IceGrid/update/run.py index cad8fd17f1a..acdee31770f 100755 --- a/cpp/test/IceGrid/update/run.py +++ b/cpp/test/IceGrid/update/run.py @@ -46,8 +46,11 @@ if not os.path.exists(node2Dir): os.mkdir(node2Dir) IceGridAdmin.cleanServerDir(node2Dir); +nodeOverrideOptions = ' --NodePropertiesOverride="' + TestUtil.clientServerOptions.replace("--", "") + \ + ' Ice.ServerIdleTime=0 Ice.PrintProcessId=0 Ice.PrintAdapterReady=0' + '"' + print "starting client...", -clientPipe = os.popen(client + TestUtil.clientServerOptions + additionalOptions + " 2>&1") +clientPipe = os.popen(client + TestUtil.clientServerOptions + additionalOptions + nodeOverrideOptions + " 2>&1") print "ok" try: |