summaryrefslogtreecommitdiff
path: root/python/test/Ice/slicing/exceptions
diff options
context:
space:
mode:
authorJoe George <joe@zeroc.com>2016-08-30 11:37:01 -0400
committerJoe George <joe@zeroc.com>2016-08-30 11:38:46 -0400
commit5b34410c278acab9eb296ce4d24f80e69b6fd6dc (patch)
tree1aac49502a08970e9f730d6a4ebaa7cf03ee8048 /python/test/Ice/slicing/exceptions
parentFixed minor bug with client side user exception check that would occur with 1... (diff)
downloadice-5b34410c278acab9eb296ce4d24f80e69b6fd6dc.tar.bz2
ice-5b34410c278acab9eb296ce4d24f80e69b6fd6dc.tar.xz
ice-5b34410c278acab9eb296ce4d24f80e69b6fd6dc.zip
ICE-7242 - Cross test updates
Diffstat (limited to 'python/test/Ice/slicing/exceptions')
-rw-r--r--python/test/Ice/slicing/exceptions/ServerPrivateAMD.ice15
1 files changed, 15 insertions, 0 deletions
diff --git a/python/test/Ice/slicing/exceptions/ServerPrivateAMD.ice b/python/test/Ice/slicing/exceptions/ServerPrivateAMD.ice
index 3b9d0a22a00..5493dd451ed 100644
--- a/python/test/Ice/slicing/exceptions/ServerPrivateAMD.ice
+++ b/python/test/Ice/slicing/exceptions/ServerPrivateAMD.ice
@@ -34,4 +34,19 @@ exception UnknownMostDerived2 extends UnknownIntermediate
string umd2;
};
+class SPreservedClass extends BaseClass
+{
+ string spc;
+};
+
+exception SPreserved1 extends KnownPreservedDerived
+{
+ BaseClass p1;
+};
+
+exception SPreserved2 extends SPreserved1
+{
+ BaseClass p2;
+};
+
};