summaryrefslogtreecommitdiff
path: root/py/test/Ice/slicing/exceptions/run.py
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2012-11-06 16:58:38 +0100
committerBenoit Foucher <benoit@zeroc.com>2012-11-06 16:58:38 +0100
commit948c18ac0abd7ff12d29da584ad7b21822945a2f (patch)
tree3501e0c45ee39020ee537cbd6413db0659d04141 /py/test/Ice/slicing/exceptions/run.py
parent3.5b TP installer build (diff)
downloadice-948c18ac0abd7ff12d29da584ad7b21822945a2f.tar.bz2
ice-948c18ac0abd7ff12d29da584ad7b21822945a2f.tar.xz
ice-948c18ac0abd7ff12d29da584ad7b21822945a2f.zip
Lots of minor test and build fixes.
- Added --client-home option to allow running tests against clients from another source distribution. - Fixed bogus identation in some Makefiles - Fixed installation of Ice for Java on platforms where the GUI isn't built. - Added more cross language tests. - Fixed issues with running the tests against a binary distribution.
Diffstat (limited to 'py/test/Ice/slicing/exceptions/run.py')
-rwxr-xr-xpy/test/Ice/slicing/exceptions/run.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/py/test/Ice/slicing/exceptions/run.py b/py/test/Ice/slicing/exceptions/run.py
index bcd92b267d6..fc2b7f50cd3 100755
--- a/py/test/Ice/slicing/exceptions/run.py
+++ b/py/test/Ice/slicing/exceptions/run.py
@@ -22,9 +22,15 @@ import TestUtil
print("Running test with sliced format.")
TestUtil.clientServerTest()
+
print("Running test with 1.0 encoding.")
-TestUtil.clientServerTest(additionalClientOptions="--Ice.Default.EncodingVersion=1.0", additionalServerOptions="--Ice.Default.EncodingVersion=1.0")
+TestUtil.clientServerTest(additionalClientOptions="--Ice.Default.EncodingVersion=1.0",
+ additionalServerOptions="--Ice.Default.EncodingVersion=1.0")
+
print("Running test with sliced format and AMD server.")
TestUtil.clientServerTest(server="ServerAMD.py")
+
print("Running test with 1.0 encoding and AMD server.")
-TestUtil.clientServerTest(server="ServerAMD.py", additionalClientOptions="--Ice.Default.EncodingVersion=1.0", additionalServerOptions="--Ice.Default.EncodingVersion=1.0")
+TestUtil.clientServerTest(server="ServerAMD.py",
+ additionalClientOptions="--Ice.Default.EncodingVersion=1.0",
+ additionalServerOptions="--Ice.Default.EncodingVersion=1.0")