diff options
Diffstat (limited to 'csharp/test')
-rwxr-xr-x | csharp/test/Ice/exceptions/run.py | 28 |
1 files changed, 24 insertions, 4 deletions
diff --git a/csharp/test/Ice/exceptions/run.py b/csharp/test/Ice/exceptions/run.py index 49048adf651..57808be6caf 100755 --- a/csharp/test/Ice/exceptions/run.py +++ b/csharp/test/Ice/exceptions/run.py @@ -20,9 +20,29 @@ 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.Connections=0") -print("tests with AMD server.") +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 1.0 encoding.") +TestUtil.clientServerTest(additionalClientOptions="--Ice.Default.EncodingVersion=1.0", + additionalServerOptions="--Ice.Default.EncodingVersion=1.0") + +print("Running test with compact (default) format and AMD server.") TestUtil.clientServerTest(server="serveramd") -print("tests with collocated server.") + +print("Running test with sliced format and AMD server.") +TestUtil.clientServerTest(server="serveramd", + additionalClientOptions="--Ice.Default.SlicedFormat", + additionalServerOptions="--Ice.Default.SlicedFormat") + +print("Running test with 1.0 encoding and AMD server.") +TestUtil.clientServerTest(server="serveramd", + additionalClientOptions="--Ice.Default.EncodingVersion=1.0", + additionalServerOptions="--Ice.Default.EncodingVersion=1.0") + +print("Running collocated test.") TestUtil.collocatedTest() |