diff options
author | Marc Laukien <marc@zeroc.com> | 2001-12-01 02:00:05 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2001-12-01 02:00:05 +0000 |
commit | 050f715b7e83296b1b204a0388919986b652369d (patch) | |
tree | 6a54560bef667e68393d1a98655e5e9485f34e8f /cpp/test/Freeze/cursor/run.py | |
parent | router protocol support (diff) | |
download | ice-050f715b7e83296b1b204a0388919986b652369d.tar.bz2 ice-050f715b7e83296b1b204a0388919986b652369d.tar.xz ice-050f715b7e83296b1b204a0388919986b652369d.zip |
fixes
Diffstat (limited to 'cpp/test/Freeze/cursor/run.py')
-rwxr-xr-x | cpp/test/Freeze/cursor/run.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cpp/test/Freeze/cursor/run.py b/cpp/test/Freeze/cursor/run.py index c20a913cf4d..290b9a81c68 100755 --- a/cpp/test/Freeze/cursor/run.py +++ b/cpp/test/Freeze/cursor/run.py @@ -24,10 +24,9 @@ name = "Freeze/cursor" testdir = os.path.normpath(toplevel + "/test/" + name) client = os.path.normpath(testdir + "/client") -clientOptions = " --Ice.Config=" + testdir + "/config " + testdir; print "starting client...", -clientPipe = os.popen(client + clientOptions) +clientPipe = os.popen(client) output = clientPipe.read().strip() if not output: print "failed!" |