diff options
author | Michi Henning <michi@zeroc.com> | 2004-02-27 01:08:47 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2004-02-27 01:08:47 +0000 |
commit | 43b0b345f888c0b9e28324bc6b54f4fbc2f2e1d0 (patch) | |
tree | c2e101778fb5d52153a6f1f398ba17dfa7d864bb /java/test/Ice/slicing/exceptions/run.py | |
parent | fix (diff) | |
download | ice-43b0b345f888c0b9e28324bc6b54f4fbc2f2e1d0.tar.bz2 ice-43b0b345f888c0b9e28324bc6b54f4fbc2f2e1d0.tar.xz ice-43b0b345f888c0b9e28324bc6b54f4fbc2f2e1d0.zip |
Fixed bug in classpath setting of slicing tests.
Diffstat (limited to 'java/test/Ice/slicing/exceptions/run.py')
-rwxr-xr-x | java/test/Ice/slicing/exceptions/run.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/java/test/Ice/slicing/exceptions/run.py b/java/test/Ice/slicing/exceptions/run.py index ed558bf0436..b76c94ad59e 100755 --- a/java/test/Ice/slicing/exceptions/run.py +++ b/java/test/Ice/slicing/exceptions/run.py @@ -40,12 +40,13 @@ print "starting server...", cp = os.getenv("CLASSPATH", "") os.environ["CLASSPATH"] = os.path.join(testdirAMD, "classes") + TestUtil.sep + cp serverPipe = os.popen(server + TestUtil.serverOptions) +os.environ["CLASSPATH"] = cp TestUtil.getAdapterReady(serverPipe) print "ok" print "starting client...", -os.environ["CLASSPATH"] = cp os.environ["CLASSPATH"] = os.path.join(testdir, "cclasses") + TestUtil.sep + cp clientPipe = os.popen(client + TestUtil.clientOptions) +os.environ["CLASSPATH"] = cp print "ok" TestUtil.printOutputFromPipe(clientPipe) clientStatus = clientPipe.close() |