diff options
Diffstat (limited to 'cpp/test/Ice/servantLocator/run.py')
-rwxr-xr-x | cpp/test/Ice/servantLocator/run.py | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/cpp/test/Ice/servantLocator/run.py b/cpp/test/Ice/servantLocator/run.py index 6d8f4682523..1594867299b 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() |