diff options
Diffstat (limited to 'cpp/test/IceUtil/condvar/run.py')
-rwxr-xr-x | cpp/test/IceUtil/condvar/run.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/test/IceUtil/condvar/run.py b/cpp/test/IceUtil/condvar/run.py index 50c762bf86b..9252afedd4c 100755 --- a/cpp/test/IceUtil/condvar/run.py +++ b/cpp/test/IceUtil/condvar/run.py @@ -22,13 +22,13 @@ from scripts import * workqueue = os.path.join(os.getcwd(), "workqueue") -client = TestUtil.spawnClient(workqueue) +client = TestUtil.spawnClient(workqueue, startReader = True) client.waitTestSuccess() match = os.path.join(os.getcwd(), "match") -client = TestUtil.spawnClient(match) +client = TestUtil.spawnClient(match, startReader = True) client.waitTestSuccess() -client = TestUtil.spawnClient(match + " -b") +client = TestUtil.spawnClient(match + " -b", startReader = True) client.waitTestSuccess() |