summaryrefslogtreecommitdiff
path: root/cpp/test/IceGrid/noRestartUpdate/AllTests.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/IceGrid/noRestartUpdate/AllTests.cpp')
-rw-r--r--cpp/test/IceGrid/noRestartUpdate/AllTests.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/IceGrid/noRestartUpdate/AllTests.cpp b/cpp/test/IceGrid/noRestartUpdate/AllTests.cpp
index 1616e8be39b..6e0f5ebe0b0 100644
--- a/cpp/test/IceGrid/noRestartUpdate/AllTests.cpp
+++ b/cpp/test/IceGrid/noRestartUpdate/AllTests.cpp
@@ -527,7 +527,7 @@ allTests(const Ice::CommunicatorPtr& communicator)
addProperty(service, "Ice.Warn.UnknownProperties", "0");
//addProperty(service, "Ice.Trace.Admin.Properties", "1");
service->name = "Service1";
- service->entry = "./TestService:create";
+ service->entry = properties->getProperty("ServerDir") + "/TestService:create";
adapter = AdapterDescriptor();
adapter.name = "${service}";
adapter.id = "${server}.${service}";
@@ -631,7 +631,7 @@ allTests(const Ice::CommunicatorPtr& communicator)
cout << "testing service update... " << flush;
try
{
- icebox->services[0].descriptor->entry = "TestService:create2";
+ icebox->services[0].descriptor->entry = properties->getProperty("ServerDir") + "/TestService:create2";
admin->updateApplicationWithoutRestart(update);
test(false);
}