diff options
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 03a703b953c..ced3120bc64 100755 --- a/cpp/test/Ice/gc/run.py +++ b/cpp/test/Ice/gc/run.py @@ -25,5 +25,8 @@ client = os.path.join(os.getcwd(), "client") seedfile = os.path.join(os.getcwd(), "seed") TestUtil.simpleTest(client, seedfile) -TestUtil.startClient(client, seedfile) + +clientProc = TestUtil.startClient(client, seedfile) +clientProc.waitTestSuccess() + os.remove(seedfile) |