diff options
author | Dan Gudmundsson <[email protected]> | 2014-09-18 16:40:29 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2015-03-06 14:31:29 +0100 |
commit | 2eeec1591b1006d318ab7e7862593acb6fa86dd7 (patch) | |
tree | 795fe8d55d0f040a657410136ea79dafc582a9fa /lib/asn1/test/asn1_SUITE_data | |
parent | 41ede9c2b79cd67bf4d6d6ba5953e3e311c7574b (diff) | |
download | otp-2eeec1591b1006d318ab7e7862593acb6fa86dd7.tar.gz otp-2eeec1591b1006d318ab7e7862593acb6fa86dd7.tar.bz2 otp-2eeec1591b1006d318ab7e7862593acb6fa86dd7.zip |
Fix BER code generation
PKIX1Explicit-2009 did not compile.
This commit was cherry-picked from 3ab3b07a already
merged into master.
Diffstat (limited to 'lib/asn1/test/asn1_SUITE_data')
-rw-r--r-- | lib/asn1/test/asn1_SUITE_data/DoubleEllipses.asn | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/lib/asn1/test/asn1_SUITE_data/DoubleEllipses.asn b/lib/asn1/test/asn1_SUITE_data/DoubleEllipses.asn index e90cf55d61..a96425cbea 100644 --- a/lib/asn1/test/asn1_SUITE_data/DoubleEllipses.asn +++ b/lib/asn1/test/asn1_SUITE_data/DoubleEllipses.asn @@ -12,6 +12,15 @@ Seq ::= SEQUENCE c BOOLEAN } +SeqV1 ::= SEQUENCE + { + a INTEGER, + ..., + b BOOLEAN, + ... + } + + SeqV2 ::= SEQUENCE { a INTEGER, @@ -57,6 +66,14 @@ Set ::= SET { c BOOLEAN } + +SetV1 ::= SET { + a INTEGER, + ..., + b BOOLEAN, + ... + } + SetV2 ::= SET { a INTEGER, @@ -96,4 +113,4 @@ SetAltV2 ::= SET } -END
\ No newline at end of file +END |