summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/gc/run.py
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2009-03-12 10:26:37 +0100
committerBenoit Foucher <benoit@zeroc.com>2009-03-12 10:26:37 +0100
commit2f8ff1f01af2416dce3cda6c6093374d95fc453d (patch)
tree9392f8267b919d2a8974eb275515e0212f74deed /cpp/test/Ice/gc/run.py
parentMerge branch 'R3_3_branch' of ssh://cvs.zeroc.com/home/git/ice into R3_3_branch (diff)
downloadice-2f8ff1f01af2416dce3cda6c6093374d95fc453d.tar.bz2
ice-2f8ff1f01af2416dce3cda6c6093374d95fc453d.tar.xz
ice-2f8ff1f01af2416dce3cda6c6093374d95fc453d.zip
- Fixed potential assert when establishing connection for proxies with
different endpoint combinations - Added test for connection establishment using proxies with different endpoint combination. - Improved connection establishment to better handle failures when many AMI requests (invoked on different proxies) are queued. The failure is now reported to all pending requests.
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 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)