diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2009-10-08 10:22:17 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2009-10-08 10:22:17 -0230 |
commit | c7629a673eb7573b276ca2650e09f88022036d3e (patch) | |
tree | 6f2985821a21514924bfa40837e37b0590b13538 /cpp/test/IceUtil/condvar/run.py | |
parent | Added *.SQL.Port property (diff) | |
download | ice-c7629a673eb7573b276ca2650e09f88022036d3e.tar.bz2 ice-c7629a673eb7573b276ca2650e09f88022036d3e.tar.xz ice-c7629a673eb7573b276ca2650e09f88022036d3e.zip |
Bug 4261 - modify run.py in condvar test
Diffstat (limited to 'cpp/test/IceUtil/condvar/run.py')
-rwxr-xr-x | cpp/test/IceUtil/condvar/run.py | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/cpp/test/IceUtil/condvar/run.py b/cpp/test/IceUtil/condvar/run.py index 4ffd03456ac..9d5aed0aa5f 100755 --- a/cpp/test/IceUtil/condvar/run.py +++ b/cpp/test/IceUtil/condvar/run.py @@ -22,15 +22,12 @@ from scripts import * workqueue = os.path.join(os.getcwd(), "workqueue") -client = TestUtil.spawnClient(workqueue, startReader = True) -client.waitTestSuccess() +TestUtil.simpleTest(workqueue) match = os.path.join(os.getcwd(), "match") -client = TestUtil.spawnClient(match, startReader = True) -client.waitTestSuccess() +TestUtil.simpleTest(match) -client = TestUtil.spawnClient(match + " -b", startReader = True) -client.waitTestSuccess() +TestUtil.simpleTest(match + " -b") TestUtil.cleanup() |