summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/optional/run.py
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/Ice/optional/run.py')
-rwxr-xr-xcpp/test/Ice/optional/run.py13
1 files changed, 7 insertions, 6 deletions
diff --git a/cpp/test/Ice/optional/run.py b/cpp/test/Ice/optional/run.py
index 54cbcb67bee..a9baaa0b508 100755
--- a/cpp/test/Ice/optional/run.py
+++ b/cpp/test/Ice/optional/run.py
@@ -20,9 +20,10 @@ if len(path) == 0:
sys.path.append(os.path.join(path[0], "scripts"))
import TestUtil
-print("Running test with compact (default) format.")
-TestUtil.clientServerTest()
-print("Running test with sliced format.")
-TestUtil.clientServerTest(additionalClientOptions="--Ice.Default.SlicedFormat", additionalServerOptions="--Ice.Default.SlicedFormat")
-print("Running test with AMD server.")
-TestUtil.clientServerTest(server = "serveramd")
+TestUtil.queueClientServerTest(configName = "compact", message = "Running test with compact (default) format.")
+TestUtil.queueClientServerTest(configName = "sliced", message = "Running test with sliced format.",
+ additionalClientOptions="--Ice.Default.SlicedFormat",
+ additionalServerOptions="--Ice.Default.SlicedFormat")
+TestUtil.queueClientServerTest(configName = "amd", localOnly = True, message = "Running test with AMD server.",
+ server = "serveramd")
+TestUtil.runQueuedTests()