diff options
Diffstat (limited to 'csharp/test/Ice/dictMapping/run.py')
-rwxr-xr-x | csharp/test/Ice/dictMapping/run.py | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/csharp/test/Ice/dictMapping/run.py b/csharp/test/Ice/dictMapping/run.py index eec082f03e5..d25963849a4 100755 --- a/csharp/test/Ice/dictMapping/run.py +++ b/csharp/test/Ice/dictMapping/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="serveramd") +TestUtil.queueCollocatedTest() +TestUtil.runQueuedTests() |