summaryrefslogtreecommitdiff
path: root/python/test/Ice/operations/run.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/test/Ice/operations/run.py')
-rwxr-xr-xpython/test/Ice/operations/run.py11
1 files changed, 5 insertions, 6 deletions
diff --git a/python/test/Ice/operations/run.py b/python/test/Ice/operations/run.py
index 600e5723b9d..83b76a7726f 100755
--- a/python/test/Ice/operations/run.py
+++ b/python/test/Ice/operations/run.py
@@ -20,9 +20,8 @@ if len(path) == 0:
sys.path.append(os.path.join(path[0], "scripts"))
import TestUtil
-print("tests with regular server.")
-TestUtil.clientServerTest()
-print("tests with AMD server.")
-TestUtil.clientServerTest(server="ServerAMD.py")
-print("tests with collocated server.")
-TestUtil.collocatedTest(" --Ice.ThreadPool.Client.SizeMax=2 --Ice.ThreadPool.Client.SizeWarn=0")
+TestUtil.queueClientServerTest()
+TestUtil.queueClientServerTest(configName = "amd", localOnly = True, message = "Running test with AMD server.",
+ server="ServerAMD.py")
+TestUtil.queueCollocatedTest(additionalOptions = " --Ice.ThreadPool.Client.SizeMax=2 --Ice.ThreadPool.Client.SizeWarn=0")
+TestUtil.runQueuedTests()