diff options
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(): |