diff options
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 1d3a3bf9f6d..d9cdbcd0b2e 100755 --- a/cpp/test/Freeze/cursor/run.py +++ b/cpp/test/Freeze/cursor/run.py @@ -32,10 +32,9 @@ dbdir = os.path.join(testdir, "db") TestUtil.cleanDbDir(dbdir) client = os.path.join(testdir, "client") -clientOptions = ' ' + testdir; print "starting client...", -clientPipe = os.popen(client + clientOptions) +clientPipe = os.popen(client + TestUtil.clientOptions + " " + testdir) print "ok" for output in clientPipe.xreadlines(): |