diff options
Diffstat (limited to 'cpp/test/Ice/objects/run.py')
-rwxr-xr-x | cpp/test/Ice/objects/run.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cpp/test/Ice/objects/run.py b/cpp/test/Ice/objects/run.py index 802eadb48e8..b71b37f48fd 100755 --- a/cpp/test/Ice/objects/run.py +++ b/cpp/test/Ice/objects/run.py @@ -20,5 +20,11 @@ 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 1.0 encoding.") +TestUtil.clientServerTest(additionalClientOptions="--Ice.Default.EncodingVersion=1.0", additionalServerOptions="--Ice.Default.EncodingVersion=1.0") +print("Running collocated test.") TestUtil.collocatedTest() |