diff options
Diffstat (limited to 'cpp/test/IcePack/deployer/run.py')
-rwxr-xr-x | cpp/test/IcePack/deployer/run.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cpp/test/IcePack/deployer/run.py b/cpp/test/IcePack/deployer/run.py index 45a41cc2c07..c8bed4755d1 100755 --- a/cpp/test/IcePack/deployer/run.py +++ b/cpp/test/IcePack/deployer/run.py @@ -26,6 +26,8 @@ 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", "") |