summaryrefslogtreecommitdiff
path: root/cpp/test
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2002-11-22 20:16:40 +0000
committerMarc Laukien <marc@zeroc.com>2002-11-22 20:16:40 +0000
commit97abd04f63423218fcf9e39b99879eedf67ff94c (patch)
tree83312b8531056adce84a01187823b44eaa825ebc /cpp/test
parentFixed incorrect comment about lock upgrade. (diff)
downloadice-97abd04f63423218fcf9e39b99879eedf67ff94c.tar.bz2
ice-97abd04f63423218fcf9e39b99879eedf67ff94c.tar.xz
ice-97abd04f63423218fcf9e39b99879eedf67ff94c.zip
destroy fix
Diffstat (limited to 'cpp/test')
-rwxr-xr-xcpp/test/Freeze/cursor/run.py3
-rwxr-xr-xcpp/test/IceXML/encoding/run.py2
2 files changed, 2 insertions, 3 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():
diff --git a/cpp/test/IceXML/encoding/run.py b/cpp/test/IceXML/encoding/run.py
index 51a630de65c..f9465907ece 100755
--- a/cpp/test/IceXML/encoding/run.py
+++ b/cpp/test/IceXML/encoding/run.py
@@ -31,7 +31,7 @@ testdir = os.path.join(toplevel, "test", name)
client = os.path.join(testdir, "client")
print "starting client...",
-clientPipe = os.popen(client + " " + testdir)
+clientPipe = os.popen(client + TestUtil.clientOptions + " " + testdir)
print "ok"
for output in clientPipe.xreadlines():