summaryrefslogtreecommitdiff
path: root/scripts/TestUtil.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/TestUtil.py')
-rwxr-xr-xscripts/TestUtil.py14
1 files changed, 12 insertions, 2 deletions
diff --git a/scripts/TestUtil.py b/scripts/TestUtil.py
index 85b6058810d..d04186e9923 100755
--- a/scripts/TestUtil.py
+++ b/scripts/TestUtil.py
@@ -184,7 +184,12 @@ def configurePaths():
if iceHome == "/usr":
javaDir = os.path.join("/", "usr", "share", "java")
addClasspath(os.path.join(javaDir, "Ice.jar"))
+ addClasspath(os.path.join(javaDir, "Glacier2.jar"))
addClasspath(os.path.join(javaDir, "Freeze.jar"))
+ addClasspath(os.path.join(javaDir, "IceBox.jar"))
+ addClasspath(os.path.join(javaDir, "IceStorm.jar"))
+ addClasspath(os.path.join(javaDir, "IceGrid.jar"))
+ addClasspath(os.path.join(javaDir, "IcePatch2.jar"))
return # That's it, we're done!
if isWin32():
@@ -212,8 +217,13 @@ def configurePaths():
# The Ice.jar and Freeze.jar comes from the installation
# directory or the toplevel dir.
javaDir = os.path.join(getIceDir("java"), "lib")
- addClasspath(os.path.join(javaDir, "Ice.jar"))
- addClasspath(os.path.join(javaDir, "Freeze.jar"))
+ addClasspath(os.path.join(javaDir, "Ice.jar"))
+ addClasspath(os.path.join(javaDir, "Glacier2.jar"))
+ addClasspath(os.path.join(javaDir, "Freeze.jar"))
+ addClasspath(os.path.join(javaDir, "IceBox.jar"))
+ addClasspath(os.path.join(javaDir, "IceStorm.jar"))
+ addClasspath(os.path.join(javaDir, "IceGrid.jar"))
+ addClasspath(os.path.join(javaDir, "IcePatch2.jar"))
addClasspath(os.path.join(javaDir))
#