diff options
author | Benoit Foucher <benoit@zeroc.com> | 2009-12-08 10:25:49 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2009-12-08 10:25:49 +0100 |
commit | 8ce118faab2d388822c58f4dbe8dcaebb7fa026e (patch) | |
tree | d7ebb31d30a11a1570ac6fe06f41090a1fe09886 /cpp/demo/Ice/plugin/expect.py | |
parent | Disabled new AMI tests for VC6 (diff) | |
download | ice-8ce118faab2d388822c58f4dbe8dcaebb7fa026e.tar.bz2 ice-8ce118faab2d388822c58f4dbe8dcaebb7fa026e.tar.xz ice-8ce118faab2d388822c58f4dbe8dcaebb7fa026e.zip |
Fixes for the plugin demo
Diffstat (limited to 'cpp/demo/Ice/plugin/expect.py')
-rwxr-xr-x | cpp/demo/Ice/plugin/expect.py | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/cpp/demo/Ice/plugin/expect.py b/cpp/demo/Ice/plugin/expect.py index 1c80743a4a9..f35e50a72ca 100755 --- a/cpp/demo/Ice/plugin/expect.py +++ b/cpp/demo/Ice/plugin/expect.py @@ -22,9 +22,7 @@ sys.path.append(path[0]) from demoscript import * from demoscript.Ice import plugin -libraryPath = os.environ["LD_LIBRARY_PATH"]; -if Util.isLinux(): - os.environ["LD_LIBRARY_PATH"] = libraryPath + ":." +Util.addLdPath(os.getcwd()) server = Util.spawn('./server --Ice.PrintAdapterReady --Ice.Warn.Connections=0') server.expect('.* ready') @@ -32,6 +30,3 @@ client = Util.spawn('./client --Ice.Warn.Connections=0') client.expect('.*==>') plugin.run(client, server) - -if Util.isLinux(): - os.environ["LD_LIBRARY_PATH"] = libraryPath
\ No newline at end of file |