diff options
Diffstat (limited to 'java/test/Freeze/complex/run.py')
-rwxr-xr-x | java/test/Freeze/complex/run.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/java/test/Freeze/complex/run.py b/java/test/Freeze/complex/run.py index f293046a8fb..6ebf89e573f 100755 --- a/java/test/Freeze/complex/run.py +++ b/java/test/Freeze/complex/run.py @@ -29,13 +29,15 @@ dbdir = os.path.join(os.getcwd(), "db") TestUtil.cleanDbDir(dbdir) print "starting populate...", -populateProc = TestUtil.startClient("Client", " --dbdir %s populate" % os.getcwd()) +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()) +clientProc = TestUtil.startClient("Client", " --dbdir %s validate" % os.getcwd(), startReader = False) print "ok" +clientProc.startReader() clientProc.waitTestSuccess() |