summaryrefslogtreecommitdiff
path: root/TAO
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2022-09-19 09:55:44 +0200
committerGitHub <noreply@github.com>2022-09-19 09:55:44 +0200
commit5e96bb28fc7572f39b63ac2aca72800c45cdb1ee (patch)
tree6cf20737223a7f75c209547327771afc059777a5 /TAO
parent96f0f9c16668c07531ea8c60c7b912f2e7b55806 (diff)
parent84f0894d8f00fcb6e865c4dace75115eac98ac42 (diff)
downloadATCD-5e96bb28fc7572f39b63ac2aca72800c45cdb1ee.tar.gz
Merge pull request #1933 from jwillemsen/jwi-versionednamespacetest
Extend test IDL
Diffstat (limited to 'TAO')
-rw-r--r--TAO/tests/IDL_Test/Versioned_Namespace/TestVersionedNamespace.idl23
1 files changed, 23 insertions, 0 deletions
diff --git a/TAO/tests/IDL_Test/Versioned_Namespace/TestVersionedNamespace.idl b/TAO/tests/IDL_Test/Versioned_Namespace/TestVersionedNamespace.idl
index 3e5fa3e9592..caad747cd8f 100644
--- a/TAO/tests/IDL_Test/Versioned_Namespace/TestVersionedNamespace.idl
+++ b/TAO/tests/IDL_Test/Versioned_Namespace/TestVersionedNamespace.idl
@@ -15,3 +15,26 @@ module M1 {
};
};
+
+module M2 {
+ module M3 {
+ struct S2 {
+ octet o;
+ };
+
+ local interface L2 {
+ void op(in S2 s);
+ };
+
+ valuetype V2 {
+ public string valString;
+ public S2 valStruct;
+ public L2 valLocalIface;
+ };
+ valuetype V3 {
+ public string valString;
+ public M1::S1 valStruct;
+ public M1::LI valLocalIface;
+ };
+ };
+};