diff options
Diffstat (limited to 'java/test/Freeze/complex/run.py')
-rwxr-xr-x | java/test/Freeze/complex/run.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/test/Freeze/complex/run.py b/java/test/Freeze/complex/run.py index ae695fb341b..88b44489485 100755 --- a/java/test/Freeze/complex/run.py +++ b/java/test/Freeze/complex/run.py @@ -33,7 +33,7 @@ TestUtil.cleanDbDir(dbdir) client = "java -ea Client" print "starting populate...", -populatePipe = os.popen(client + TestUtil.clientOptions + " --dbdir " + testdir + " populate" + " 2>&1", "r", 0) +populatePipe = os.popen(client + TestUtil.clientOptions + " --dbdir " + testdir + " populate" + " 2>&1") print "ok" TestUtil.printOutputFromPipe(populatePipe) @@ -44,7 +44,7 @@ if populateStatus: sys.exit(1) print "starting verification client...", -clientPipe = os.popen(client + TestUtil.clientOptions + " --dbdir " + testdir + " validate" + " 2>&1", "r", 0) +clientPipe = os.popen(client + TestUtil.clientOptions + " --dbdir " + testdir + " validate" + " 2>&1") print "ok" TestUtil.printOutputFromPipe(clientPipe) |