diff options
author | Benoit Foucher <benoit@zeroc.com> | 2008-01-10 09:49:56 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2008-01-10 09:49:56 +0100 |
commit | 1affba103b4541329d0402780bf0c363aadf6821 (patch) | |
tree | 200a44b8e7b37a4872597bafbc106d225ea213b5 /java/test/IceBox/configuration/run.py | |
parent | Moved various classes from IceUtil to IceUtilInternal (diff) | |
download | ice-1affba103b4541329d0402780bf0c363aadf6821.tar.bz2 ice-1affba103b4541329d0402780bf0c363aadf6821.tar.xz ice-1affba103b4541329d0402780bf0c363aadf6821.zip |
Fixed bug 2636
Diffstat (limited to 'java/test/IceBox/configuration/run.py')
-rwxr-xr-x | java/test/IceBox/configuration/run.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/test/IceBox/configuration/run.py b/java/test/IceBox/configuration/run.py index 0e707dae551..0a1014c2bde 100755 --- a/java/test/IceBox/configuration/run.py +++ b/java/test/IceBox/configuration/run.py @@ -25,10 +25,10 @@ name = os.path.join("IceBox", "configuration") testdir = os.path.dirname(os.path.abspath(__file__)) icebox = TestUtil.getIceBox(testdir); -TestUtil.addLdPath(testdir) - cwd = os.getcwd() os.chdir(testdir) + +os.environ["CLASSPATH"] = os.path.join(testdir, "classes") + os.pathsep + os.getenv("CLASSPATH", "") TestUtil.clientServerTestWithOptionsAndNames(name, "--Ice.Config=config.icebox", "", icebox, "Client") TestUtil.clientServerTestWithOptionsAndNames(name, "--Ice.Config=config.icebox2", "", icebox, "Client") |