diff options
author | Michi Henning <michi@zeroc.com> | 2004-05-10 02:48:56 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2004-05-10 02:48:56 +0000 |
commit | 3dfce9518b0e65a824c8812fbc4002b46ebea01b (patch) | |
tree | 52607ae520395e093b17ff2a3d5eebe8228d73f3 /java/test/Ice/exceptions/run.py | |
parent | Merged changes from michi_pre_e3 branch (diff) | |
download | ice-3dfce9518b0e65a824c8812fbc4002b46ebea01b.tar.bz2 ice-3dfce9518b0e65a824c8812fbc4002b46ebea01b.tar.xz ice-3dfce9518b0e65a824c8812fbc4002b46ebea01b.zip |
merging changes from branch michi_pre_e3
Diffstat (limited to 'java/test/Ice/exceptions/run.py')
-rwxr-xr-x | java/test/Ice/exceptions/run.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/test/Ice/exceptions/run.py b/java/test/Ice/exceptions/run.py index 5f6c6bb40fb..1245d90af96 100755 --- a/java/test/Ice/exceptions/run.py +++ b/java/test/Ice/exceptions/run.py @@ -33,7 +33,7 @@ testdirAMD = os.path.join(toplevel, "test", nameAMD) print "tests with regular server." classpath = os.getenv("CLASSPATH", "") os.environ["CLASSPATH"] = os.path.join(testdir, "classes") + TestUtil.sep + classpath -TestUtil.clientServerTest() +TestUtil.clientServerTestWithOptions("", " --Ice.Warn.Connections=0") print "tests with AMD server." server = "java -ea Server --Ice.ProgramName=Server " @@ -47,7 +47,7 @@ print "ok" print "starting client...", classpath = os.getenv("CLASSPATH", "") os.environ["CLASSPATH"] = os.path.join(testdir, "classes") + TestUtil.sep + classpath -clientPipe = os.popen(client + TestUtil.clientOptions + " 2>&1") +(clientPipeIn, clientPipe) = os.popen4(client + TestUtil.clientOptions + " --Ice.Warn.Connections=0") print "ok" TestUtil.printOutputFromPipe(clientPipe) clientStatus = clientPipe.close() |