diff options
Diffstat (limited to 'java/config/TestUtil.py')
-rw-r--r-- | java/config/TestUtil.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/config/TestUtil.py b/java/config/TestUtil.py index 0aa8d7c6ab5..6220ef44526 100644 --- a/java/config/TestUtil.py +++ b/java/config/TestUtil.py @@ -153,8 +153,8 @@ def clientServerTestWithClasspath(serverClasspath, clientClasspath): scp = serverClasspath + sep + classpath ccp = clientClasspath + sep + classpath - server = "java -ea -cp " + scp + " Server --Ice.ProgramName=Server" - client = "java -ea -cp " + ccp + " Client --Ice.ProgramName=Client" + server = "java -ea -cp '" + scp + "' Server --Ice.ProgramName=Server" + client = "java -ea -cp '" + ccp + "' Client --Ice.ProgramName=Client" print "starting server...", serverPipe = os.popen(server + serverOptions) |