summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/stream/run.py
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/Ice/stream/run.py')
-rwxr-xr-xcpp/test/Ice/stream/run.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/Ice/stream/run.py b/cpp/test/Ice/stream/run.py
index ea2c2e19ffb..f02c24346b6 100755
--- a/cpp/test/Ice/stream/run.py
+++ b/cpp/test/Ice/stream/run.py
@@ -20,10 +20,10 @@ else:
sys.path.append(os.path.join(toplevel, "config"))
import TestUtil
-client = os.path.join(toplevel, "test", "Ice", "stream", "client")
+client = os.path.join(os.path.dirname(os.path.abspath(__file__)), "client")
print "starting test...",
-clientPipe = os.popen(client + TestUtil.clientOptions + " 2>&1")
+clientPipe = os.popen(TestUtil.getCommandLine(client, TestUtil.DriverConfig("client")) + " 2>&1")
print "ok"
TestUtil.printOutputFromPipe(clientPipe)