diff options
author | Jose <jose@zeroc.com> | 2012-03-15 22:03:10 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2012-03-15 22:03:10 +0100 |
commit | a4db75cf3f550e05781754a41c66cb4c9e740c75 (patch) | |
tree | b0d115819f231cf675e4c0aa1759aefabcbee904 /scripts/TestUtil.py | |
parent | ICE-4791 - Include generated header in dependency rules emitted by slice2cpp. (diff) | |
download | ice-a4db75cf3f550e05781754a41c66cb4c9e740c75.tar.bz2 ice-a4db75cf3f550e05781754a41c66cb4c9e740c75.tar.xz ice-a4db75cf3f550e05781754a41c66cb4c9e740c75.zip |
ICE-3303 - Build Ice services in separate JAR files
Diffstat (limited to 'scripts/TestUtil.py')
-rwxr-xr-x | scripts/TestUtil.py | 14 |
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)) # |