diff options
Diffstat (limited to 'csharp/test/Ice/optional/run.py')
-rwxr-xr-x | csharp/test/Ice/optional/run.py | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/csharp/test/Ice/optional/run.py b/csharp/test/Ice/optional/run.py index 95214f14a11..0800854ef5c 100755 --- a/csharp/test/Ice/optional/run.py +++ b/csharp/test/Ice/optional/run.py @@ -20,9 +20,10 @@ if len(path) == 0: sys.path.append(os.path.join(path[0], "scripts")) import TestUtil -print("Running test with compact (default) format.") -TestUtil.clientServerTest() -print("Running test with sliced format.") -TestUtil.clientServerTest(additionalClientOptions="--Ice.Default.SlicedFormat", additionalServerOptions="--Ice.Default.SlicedFormat") -print("Running test with AMD server.") -TestUtil.clientServerTest(server="serveramd") +TestUtil.queueClientServerTest(configName = "compact", message = "Running test with compact (default) format.") +TestUtil.queueClientServerTest(configName = "sliced", message = "Running test with sliced format.", + additionalClientOptions="--Ice.Default.SlicedFormat", + additionalServerOptions="--Ice.Default.SlicedFormat") +TestUtil.queueClientServerTest(configName = "amd", localOnly = True, message = "Running test with AMD server.", + server="serveramd") +TestUtil.runQueuedTests() |