summaryrefslogtreecommitdiff
path: root/php/test/Ice/exceptions/run.py
diff options
context:
space:
mode:
Diffstat (limited to 'php/test/Ice/exceptions/run.py')
-rwxr-xr-xphp/test/Ice/exceptions/run.py12
1 files changed, 10 insertions, 2 deletions
diff --git a/php/test/Ice/exceptions/run.py b/php/test/Ice/exceptions/run.py
index 0248812b4bb..7732c33648e 100755
--- a/php/test/Ice/exceptions/run.py
+++ b/php/test/Ice/exceptions/run.py
@@ -20,7 +20,15 @@ if len(path) == 0:
sys.path.append(os.path.join(path[0], "scripts"))
import TestUtil
-print("tests with regular server.")
+print("Running test with compact (default) format.")
TestUtil.clientServerTest()
-print("tests with AMD server.")
+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("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")