summaryrefslogtreecommitdiff
path: root/scripts/TestUtil.py
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2010-01-08 11:25:51 +0100
committerBenoit Foucher <benoit@zeroc.com>2010-01-08 11:25:51 +0100
commit8a0550434e374aa7cc22dbc99786a17c675fccfd (patch)
tree487118fe205b4eb9eb797c494eab22c5b4b89224 /scripts/TestUtil.py
parentfixing bug in py/test/Ice/ami/Server.py (diff)
downloadice-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-xscripts/TestUtil.py2
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():