diff options
Diffstat (limited to 'cpp/test/IceUtil/condvar/run.py')
-rwxr-xr-x | cpp/test/IceUtil/condvar/run.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/IceUtil/condvar/run.py b/cpp/test/IceUtil/condvar/run.py index f9061c339b7..26ef0f18245 100755 --- a/cpp/test/IceUtil/condvar/run.py +++ b/cpp/test/IceUtil/condvar/run.py @@ -20,11 +20,11 @@ if len(path) == 0: sys.path.append(os.path.join(path[0], "scripts")) import TestUtil -workqueue = os.path.join(os.getcwd(), "workqueue") +workqueue = os.path.join(os.getcwd(), TestUtil.getTestExecutable("workqueue")) TestUtil.simpleTest(workqueue) -match = os.path.join(os.getcwd(), "match") +match = os.path.join(os.getcwd(), TestUtil.getTestExecutable("match")) TestUtil.simpleTest(match) |