diff options
Diffstat (limited to 'cpp/test/Ice/operations/run.py')
-rwxr-xr-x | cpp/test/Ice/operations/run.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cpp/test/Ice/operations/run.py b/cpp/test/Ice/operations/run.py index 996d09d4d36..d69e9be2733 100755 --- a/cpp/test/Ice/operations/run.py +++ b/cpp/test/Ice/operations/run.py @@ -20,9 +20,9 @@ if len(path) == 0: sys.path.append(os.path.join(path[0], "scripts")) import TestUtil -print("tests with regular server.") -TestUtil.clientServerTest(additionalClientOptions = "--Ice.Warn.AMICallback=0") -print("tests with AMD server.") -TestUtil.clientServerTest(additionalClientOptions = "--Ice.Warn.AMICallback=0", server = "serveramd") -print("tests with collocated server.") -TestUtil.collocatedTest() +TestUtil.queueClientServerTest(additionalClientOptions = "--Ice.Warn.AMICallback=0") +TestUtil.queueClientServerTest(configName = "amd", localOnly = True, message = "Running test with AMD server.", + additionalClientOptions = "--Ice.Warn.AMICallback=0", + server = "serveramd") +TestUtil.queueCollocatedTest() +TestUtil.runQueuedTests() |