diff options
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() |