diff options
author | Marc Laukien <marc@zeroc.com> | 2002-11-08 20:04:42 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-11-08 20:04:42 +0000 |
commit | 3a7cdf47e7923258e65e08760f0d236ded04cc7a (patch) | |
tree | b9d103da713bf94b53419830935852d2bb77821d /cpp/test/IceXML/encoding/run.py | |
parent | Fix (diff) | |
download | ice-3a7cdf47e7923258e65e08760f0d236ded04cc7a.tar.bz2 ice-3a7cdf47e7923258e65e08760f0d236ded04cc7a.tar.xz ice-3a7cdf47e7923258e65e08760f0d236ded04cc7a.zip |
many run.py fixes
Diffstat (limited to 'cpp/test/IceXML/encoding/run.py')
-rwxr-xr-x | cpp/test/IceXML/encoding/run.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/IceXML/encoding/run.py b/cpp/test/IceXML/encoding/run.py index 122dc46a26c..bedb99983ce 100755 --- a/cpp/test/IceXML/encoding/run.py +++ b/cpp/test/IceXML/encoding/run.py @@ -29,10 +29,10 @@ name = os.path.join("IceXML", "encoding") testdir = os.path.join(toplevel, "test", name) -client = os.path.join(testdir, "client" + ' ' + testdir) +client = os.path.join(testdir, "client") print "starting client...", -clientPipe = os.popen(client) +clientPipe = os.popen(client + " " + testdir) print "ok" for output in clientPipe.xreadlines(): |