diff options
author | Michi Henning <michi@zeroc.com> | 2007-06-15 15:32:38 +1000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2007-06-15 15:32:38 +1000 |
commit | d20a908a06e260c39bac12426495a943a9d1f50b (patch) | |
tree | b2aea880e028d343660285ea913c22d12667bbde /cpp/test/Ice/gc/run.py | |
parent | Do not recreate ProcessI on refreshPublishedEndpoints (diff) | |
download | ice-d20a908a06e260c39bac12426495a943a9d1f50b.tar.bz2 ice-d20a908a06e260c39bac12426495a943a9d1f50b.tar.xz ice-d20a908a06e260c39bac12426495a943a9d1f50b.zip |
Bug 2257.
Diffstat (limited to 'cpp/test/Ice/gc/run.py')
-rwxr-xr-x | cpp/test/Ice/gc/run.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cpp/test/Ice/gc/run.py b/cpp/test/Ice/gc/run.py index 9eea4f939ee..0430fd0fe33 100755 --- a/cpp/test/Ice/gc/run.py +++ b/cpp/test/Ice/gc/run.py @@ -26,7 +26,8 @@ testdir = os.path.join(toplevel, "test", name) client = os.path.join(testdir, "client") print "starting client...", -clientPipe = os.popen(client + TestUtil.clientOptions + " 2>&1") +seedfile = testdir + "/seed" +clientPipe = os.popen(client + TestUtil.clientOptions + " " + seedfile + " 2>&1") print "ok" TestUtil.printOutputFromPipe(clientPipe) @@ -36,4 +37,6 @@ clientStatus = TestUtil.closePipe(clientPipe) if clientStatus: sys.exit(1) +os.remove(seedfile) + sys.exit(0) |