summaryrefslogtreecommitdiff
path: root/cpp/test/IceGrid/simple/run.py
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/IceGrid/simple/run.py')
-rwxr-xr-xcpp/test/IceGrid/simple/run.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/cpp/test/IceGrid/simple/run.py b/cpp/test/IceGrid/simple/run.py
index 20993bfd697..ab4089798f0 100755
--- a/cpp/test/IceGrid/simple/run.py
+++ b/cpp/test/IceGrid/simple/run.py
@@ -22,15 +22,16 @@ import TestUtil
import IceGridAdmin
name = os.path.join("IceGrid", "simple")
+testdir = os.path.dirname(os.path.abspath(__file__))
#
# Test client/server without on demand activation.
#
-IceGridAdmin.iceGridClientServerTest(name, "", "--TestAdapter.Endpoints=default" + \
- " --TestAdapter.AdapterId=TestAdapter")
+IceGridAdmin.iceGridClientServerTest(testdir, name, "", "--TestAdapter.Endpoints=default" + \
+ " --TestAdapter.AdapterId=TestAdapter")
#
# Test client/server with on demand activation.
#
-IceGridAdmin.iceGridTest(name, "simple_server.xml", "--with-deploy")
+IceGridAdmin.iceGridTest(testdir, name, "simple_server.xml", "--with-deploy")
sys.exit(0)