diff options
Diffstat (limited to 'scripts/TestUtil.py')
-rwxr-xr-x | scripts/TestUtil.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/TestUtil.py b/scripts/TestUtil.py index fd277b178dc..3c2cbcc49fa 100755 --- a/scripts/TestUtil.py +++ b/scripts/TestUtil.py @@ -144,6 +144,7 @@ def configurePaths(): if iceHome == "/usr": javaDir = os.path.join("/", "usr", "share", "java") addClasspath(os.path.join(javaDir, "Ice.jar")) + addClasspath(os.path.join(javaDir, "Freeze.jar")) return # That's it, we're done! if isWin32(): @@ -167,6 +168,7 @@ def configurePaths(): else: 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)) # |