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