aboutsummaryrefslogtreecommitdiffstats
path: root/lib/asn1/test/asn1_bin_SUITE_data/SetOf.asn1
diff options
context:
space:
mode:
Diffstat (limited to 'lib/asn1/test/asn1_bin_SUITE_data/SetOf.asn1')
-rw-r--r--lib/asn1/test/asn1_bin_SUITE_data/SetOf.asn161
1 files changed, 61 insertions, 0 deletions
diff --git a/lib/asn1/test/asn1_bin_SUITE_data/SetOf.asn1 b/lib/asn1/test/asn1_bin_SUITE_data/SetOf.asn1
new file mode 100644
index 0000000000..cdb770f8de
--- /dev/null
+++ b/lib/asn1/test/asn1_bin_SUITE_data/SetOf.asn1
@@ -0,0 +1,61 @@
+SetOf DEFINITIONS IMPLICIT TAGS ::=
+
+BEGIN
+
+Set1 ::= SET
+{
+ bool1 BOOLEAN,
+ int1 INTEGER,
+ set1 SET OF SetIn DEFAULT {}
+}
+
+Set2 ::= SET
+{
+ set2 SET OF SetIn DEFAULT {},
+ bool2 BOOLEAN,
+ int2 INTEGER
+}
+
+Set3 ::= SET
+{
+ bool3 BOOLEAN,
+ set3 SET OF SetIn DEFAULT {},
+ int3 INTEGER
+}
+
+Set4 ::= SET
+{
+ set41 [41] SET OF SetIn DEFAULT {},
+ set42 [42] SET OF SetIn DEFAULT {},
+ set43 [43] SET OF SetIn DEFAULT {}
+}
+
+
+
+SetIn ::= SET
+{
+ boolIn BOOLEAN,
+ intIn INTEGER
+}
+
+
+SetOs ::= SET OF OCTET STRING
+SetOsImp ::= [23] SET OF OCTET STRING
+SetOsExp ::= [24] EXPLICIT SET OF OCTET STRING
+
+SetCho ::= SET OF CHOICE {bool BOOLEAN,
+ int INTEGER,
+ last NULL}
+
+
+
+SetEmp ::= SET
+{
+ set1 SET OF Empty DEFAULT {}
+}
+
+Empty ::= SET
+{
+}
+
+END