summaryrefslogtreecommitdiff
path: root/cpp/test/IceGrid/update/run.py
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/IceGrid/update/run.py')
-rwxr-xr-xcpp/test/IceGrid/update/run.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/cpp/test/IceGrid/update/run.py b/cpp/test/IceGrid/update/run.py
index 959c5e0741d..393ed116f15 100755
--- a/cpp/test/IceGrid/update/run.py
+++ b/cpp/test/IceGrid/update/run.py
@@ -34,7 +34,11 @@ if not os.path.exists(node2Dir):
else:
IceGridAdmin.cleanDbDir(node2Dir)
-nodeOverrideOptions = '--IceBinDir="%s" --TestDir="%s" ' % (TestUtil.getCppBinDir(), os.getcwd()) + \
+bindir = TestUtil.getCppBinDir()
+testdir = os.getcwd()
+serverdir = os.path.join(os.getcwd(), TestUtil.getTestDirectory("server"))
+
+nodeOverrideOptions = '--IceBinDir="%s" --TestDir="%s" --ServerDir="%s" ' % (bindir, testdir, serverdir) + \
'--NodePropertiesOverride=\"%s Ice.ServerIdleTime=0 Ice.PrintProcessId=0 Ice.PrintAdapterReady=0\"' % \
IceGridAdmin.iceGridNodePropertiesOverride()