diff options
Diffstat (limited to 'php/test/Ice/objects/run.py')
-rwxr-xr-x | php/test/Ice/objects/run.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/php/test/Ice/objects/run.py b/php/test/Ice/objects/run.py index 751a8e1d456..3d61174d3d1 100755 --- a/php/test/Ice/objects/run.py +++ b/php/test/Ice/objects/run.py @@ -20,4 +20,9 @@ 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") |