diff options
author | Mark Spruiell <mes@zeroc.com> | 2009-05-18 14:03:42 -0700 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2009-05-18 14:03:42 -0700 |
commit | b30ccc77d3a9822c6ffcebf9b45945822df200bc (patch) | |
tree | 94105ea42fa81ad0b8731b05a46c7f64304dec55 /scripts/TestUtil.py | |
parent | Removed Freeze.UseNonmutating (diff) | |
download | ice-b30ccc77d3a9822c6ffcebf9b45945822df200bc.tar.bz2 ice-b30ccc77d3a9822c6ffcebf9b45945822df200bc.tar.xz ice-b30ccc77d3a9822c6ffcebf9b45945822df200bc.zip |
bug 252 - Freeze finalizers
bug 2552 - Update Freeze for Java5
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)) # |