diff options
author | Kenneth Lundin <[email protected]> | 2010-02-19 14:01:57 +0000 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2010-02-19 14:01:57 +0000 |
commit | 18bd1239bee04427340a44f57f993ea92c264e41 (patch) | |
tree | dbb3031dcd2e446eb457ff7ac5229949517d7557 /lib/asn1/test/asn1_SUITE_data/SetOf.py | |
parent | 729565dc3f8bcf8829508136498aef6a542840f4 (diff) | |
download | otp-18bd1239bee04427340a44f57f993ea92c264e41.tar.gz otp-18bd1239bee04427340a44f57f993ea92c264e41.tar.bz2 otp-18bd1239bee04427340a44f57f993ea92c264e41.zip |
OTP-8463 Support for EXTENSIBILITY IMPLIED and SET/SEQ OF NamedType is
added.
Diffstat (limited to 'lib/asn1/test/asn1_SUITE_data/SetOf.py')
-rw-r--r-- | lib/asn1/test/asn1_SUITE_data/SetOf.py | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/lib/asn1/test/asn1_SUITE_data/SetOf.py b/lib/asn1/test/asn1_SUITE_data/SetOf.py new file mode 100644 index 0000000000..4e2ea16fcc --- /dev/null +++ b/lib/asn1/test/asn1_SUITE_data/SetOf.py @@ -0,0 +1,42 @@ +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 +} + +END |