diff options
author | Matthew Newhook <matthew@zeroc.com> | 2006-06-16 12:00:09 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2006-06-16 12:00:09 +0000 |
commit | 51eadf75441e906228500fab15b045606cb1000a (patch) | |
tree | be46796b8f3179d26a4f0ea876a7ec562542d20f /cpp/test/IceGrid/replication/run.py | |
parent | Renamed interface (diff) | |
download | ice-51eadf75441e906228500fab15b045606cb1000a.tar.bz2 ice-51eadf75441e906228500fab15b045606cb1000a.tar.xz ice-51eadf75441e906228500fab15b045606cb1000a.zip |
fix bug with IceGrid test python scripts.
Diffstat (limited to 'cpp/test/IceGrid/replication/run.py')
-rwxr-xr-x | cpp/test/IceGrid/replication/run.py | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/cpp/test/IceGrid/replication/run.py b/cpp/test/IceGrid/replication/run.py index e6b53250a08..23a03ec8064 100755 --- a/cpp/test/IceGrid/replication/run.py +++ b/cpp/test/IceGrid/replication/run.py @@ -24,13 +24,7 @@ import IceGridAdmin name = os.path.join("IceGrid", "replication") testdir = os.path.join(toplevel, "test", name) -if TestUtil.isWin32(): - os.environ["PATH"] = testdir + ";" + os.getenv("PATH", "") -elif TestUtil.isAIX(): - os.environ["LIBPATH"] = testdir + ":" + os.getenv("LIBPATH", "") -else: - os.environ["LD_LIBRARY_PATH"] = testdir + ":" + os.getenv("LD_LIBRARY_PATH", "") - os.environ["LD_LIBRARY_PATH_64"] = testdir + ":" + os.getenv("LD_LIBRARY_PATH_64", "") +TestUtil.addLdPath(testdir) # # Add locator options for the client and server. Since the server |