diff options
Diffstat (limited to 'java/test/Ice/location/run.py')
-rwxr-xr-x | java/test/Ice/location/run.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/java/test/Ice/location/run.py b/java/test/Ice/location/run.py index 2971c29b33e..f4af7193109 100755 --- a/java/test/Ice/location/run.py +++ b/java/test/Ice/location/run.py @@ -26,6 +26,8 @@ sys.path.append(os.path.join(toplevel, "config")) import TestUtil name = os.path.join("Ice", "location") +testdir = os.path.join(toplevel, "test", name) +os.environ["CLASSPATH"] = os.path.join(testdir, "classes") + TestUtil.sep + os.environ["CLASSPATH"] -TestUtil.clientServerTest(toplevel, name) +TestUtil.mixedClientServerTest(name) sys.exit(0) |