diff options
author | Jose <jose@zeroc.com> | 2009-11-26 23:24:04 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2009-11-26 23:24:04 +0100 |
commit | cd2034a7bd10e15544479e40afc239b085070f46 (patch) | |
tree | bc5580709b76b15e55482316c2ed5f0df1375a84 /cpp/test/Freeze/complex/run.py | |
parent | 4385 - new StreamApi & UserExecption (diff) | |
download | ice-cd2034a7bd10e15544479e40afc239b085070f46.tar.bz2 ice-cd2034a7bd10e15544479e40afc239b085070f46.tar.xz ice-cd2034a7bd10e15544479e40afc239b085070f46.zip |
4279 - alllTest.py fails to run if source path contains white spaces.
Diffstat (limited to 'cpp/test/Freeze/complex/run.py')
-rwxr-xr-x | cpp/test/Freeze/complex/run.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/Freeze/complex/run.py b/cpp/test/Freeze/complex/run.py index 0d9204e7fe7..1ce79738e05 100755 --- a/cpp/test/Freeze/complex/run.py +++ b/cpp/test/Freeze/complex/run.py @@ -34,13 +34,13 @@ if TestUtil.appverifier: TestUtil.setAppVerifierSettings([client]) print "starting populate...", -populateProc = TestUtil.startClient(client, " --dbdir %s populate" % os.getcwd(), startReader = False) +populateProc = TestUtil.startClient(client, ' --dbdir "%s" populate' % os.getcwd(), startReader = False) print "ok" populateProc.startReader() populateProc.waitTestSuccess() print "starting verification client...", -clientProc = TestUtil.startClient(client, " --dbdir %s validate" % os.getcwd(), startReader = False) +clientProc = TestUtil.startClient(client, ' --dbdir "%s" validate' % os.getcwd(), startReader = False) print "ok" clientProc.startReader() clientProc.waitTestSuccess() |