summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/servantLocator/run.py
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/Ice/servantLocator/run.py')
-rwxr-xr-xcpp/test/Ice/servantLocator/run.py11
1 files changed, 5 insertions, 6 deletions
diff --git a/cpp/test/Ice/servantLocator/run.py b/cpp/test/Ice/servantLocator/run.py
index 8700ef96bab..7921ce9e9ff 100755
--- a/cpp/test/Ice/servantLocator/run.py
+++ b/cpp/test/Ice/servantLocator/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")
-print("tests with collocated server.")
-TestUtil.collocatedTest()
+TestUtil.queueClientServerTest()
+TestUtil.queueClientServerTest(configName = "amd", localOnly = True, message = "Running test with AMD server.",
+ server = TestUtil.getTestExecutable("serveramd"))
+TestUtil.queueCollocatedTest()
+TestUtil.runQueuedTests()