diff options
author | Marc Laukien <marc@zeroc.com> | 2002-11-22 20:40:21 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-11-22 20:40:21 +0000 |
commit | 04a74c1e50fa8df992215957112fbd361f3cca6f (patch) | |
tree | 6329bb7f1c831d7fcf934c4460c2793c61597b12 /java/test/IceXML/encoding/run.py | |
parent | destroy fix (diff) | |
download | ice-04a74c1e50fa8df992215957112fbd361f3cca6f.tar.bz2 ice-04a74c1e50fa8df992215957112fbd361f3cca6f.tar.xz ice-04a74c1e50fa8df992215957112fbd361f3cca6f.zip |
destroy fixes; run.py fixes
Diffstat (limited to 'java/test/IceXML/encoding/run.py')
-rwxr-xr-x | java/test/IceXML/encoding/run.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/test/IceXML/encoding/run.py b/java/test/IceXML/encoding/run.py index d911d5c207d..c4b1e4609ea 100755 --- a/java/test/IceXML/encoding/run.py +++ b/java/test/IceXML/encoding/run.py @@ -32,7 +32,7 @@ os.environ["CLASSPATH"] = os.path.join(testdir, "classes") + TestUtil.sep + os.e client = "java -ea Client" print "starting client...", -clientPipe = os.popen(client + " " + testdir) +clientPipe = os.popen(client + TestUtil.clientOptions + " " + testdir) print "ok" for output in clientPipe.xreadlines(): |