diff options
Diffstat (limited to 'cpp/test/Ice/plugin/run.py')
-rwxr-xr-x | cpp/test/Ice/plugin/run.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/test/Ice/plugin/run.py b/cpp/test/Ice/plugin/run.py index e925f3c7010..ac2496acf58 100755 --- a/cpp/test/Ice/plugin/run.py +++ b/cpp/test/Ice/plugin/run.py @@ -20,5 +20,6 @@ if len(path) == 0: sys.path.append(os.path.join(path[0], "scripts")) import TestUtil -client = os.path.join(os.getcwd(), "client") +TestUtil.addAdditionalBinDirectories([os.path.join(os.getcwd(), TestUtil.getTestDirectory("testplugin"))]) +client = os.path.join(os.getcwd(), TestUtil.getTestExecutable("client")) TestUtil.simpleTest(client) |