diff options
author | Benoit Foucher <benoit@zeroc.com> | 2010-01-08 11:25:51 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2010-01-08 11:25:51 +0100 |
commit | 8a0550434e374aa7cc22dbc99786a17c675fccfd (patch) | |
tree | 487118fe205b4eb9eb797c494eab22c5b4b89224 /scripts/TestUtil.py | |
parent | fixing bug in py/test/Ice/ami/Server.py (diff) | |
download | ice-8a0550434e374aa7cc22dbc99786a17c675fccfd.tar.bz2 ice-8a0550434e374aa7cc22dbc99786a17c675fccfd.tar.xz ice-8a0550434e374aa7cc22dbc99786a17c675fccfd.zip |
Fixed bug 4586 - TestUtil.py doesn't correctly set CLASSPATH
Diffstat (limited to 'scripts/TestUtil.py')
-rwxr-xr-x | scripts/TestUtil.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/TestUtil.py b/scripts/TestUtil.py index e289995803b..559c1797664 100755 --- a/scripts/TestUtil.py +++ b/scripts/TestUtil.py @@ -1259,7 +1259,7 @@ def getTestEnv(lang, testdir): if lang == "cpp": addLdPath(os.path.join(testdir), env) elif lang == "java": - addClasspath(os.path.join(toplevel, "java", "lib", "IceTest.jar")) + addClasspath(os.path.join(toplevel, "java", "lib", "IceTest.jar"), env) return env; def getTestName(): |