diff options
Diffstat (limited to 'cpp/test/IceGrid/noRestartUpdate/run.py')
-rwxr-xr-x | cpp/test/IceGrid/noRestartUpdate/run.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/cpp/test/IceGrid/noRestartUpdate/run.py b/cpp/test/IceGrid/noRestartUpdate/run.py index 8ebe5fddb3a..bf590fea5a2 100755 --- a/cpp/test/IceGrid/noRestartUpdate/run.py +++ b/cpp/test/IceGrid/noRestartUpdate/run.py @@ -34,9 +34,12 @@ if not os.path.exists(node2Dir): else: IceGridAdmin.cleanDbDir(node2Dir) -nodeOverrideOptions = '--IceBinDir="%s" --TestDir="%s" --NodePropertiesOverride="%s Ice.ServerIdleTime=0 Ice.PrintProcessId=0 Ice.PrintAdapterReady=0"' % ( + +TestUtil.addAdditionalBinDirectories([os.path.join(os.getcwd(), TestUtil.getTestDirectory("testservice"))]) + +nodeOverrideOptions = '--IceBinDir="%s" --ServerDir="%s" --NodePropertiesOverride="%s Ice.ServerIdleTime=0 Ice.PrintProcessId=0 Ice.PrintAdapterReady=0"' % ( TestUtil.getCppBinDir("cpp"), - os.getcwd(), + TestUtil.getTestDirectory("server"), TestUtil.getCommandLine("", TestUtil.DriverConfig("server")).replace("--", "")) IceGridAdmin.iceGridTest("", nodeOverrideOptions) |