summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/gc/run.py
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2007-06-15 15:32:38 +1000
committerMichi Henning <michi@zeroc.com>2007-06-15 15:32:38 +1000
commitd20a908a06e260c39bac12426495a943a9d1f50b (patch)
treeb2aea880e028d343660285ea913c22d12667bbde /cpp/test/Ice/gc/run.py
parentDo not recreate ProcessI on refreshPublishedEndpoints (diff)
downloadice-d20a908a06e260c39bac12426495a943a9d1f50b.tar.bz2
ice-d20a908a06e260c39bac12426495a943a9d1f50b.tar.xz
ice-d20a908a06e260c39bac12426495a943a9d1f50b.zip
Bug 2257.
Diffstat (limited to 'cpp/test/Ice/gc/run.py')
-rwxr-xr-xcpp/test/Ice/gc/run.py5
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)