diff options
author | Michi Henning <michi@zeroc.com> | 2004-07-06 04:10:07 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2004-07-06 04:10:07 +0000 |
commit | 65d19258f37bec2de10cb85ce850868eea18251b (patch) | |
tree | 846c4d9b304888005055412fde76cbca9beb10c3 /java/test/Freeze/complex/run.py | |
parent | Changed test scripts to use unbuffered I/O so when we run the scripts from (diff) | |
download | ice-65d19258f37bec2de10cb85ce850868eea18251b.tar.bz2 ice-65d19258f37bec2de10cb85ce850868eea18251b.tar.xz ice-65d19258f37bec2de10cb85ce850868eea18251b.zip |
Got carried away when changing the tests to unbuffered I/O and changed more
than necessary. Changed back now :-)
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) |