aboutsummaryrefslogtreecommitdiffstats
path: root/lib/asn1/test/asn1_SUITE_data
diff options
context:
space:
mode:
authorDan Gudmundsson <[email protected]>2014-09-18 16:40:29 +0200
committerBjörn Gustavsson <[email protected]>2015-03-06 14:31:29 +0100
commit2eeec1591b1006d318ab7e7862593acb6fa86dd7 (patch)
tree795fe8d55d0f040a657410136ea79dafc582a9fa /lib/asn1/test/asn1_SUITE_data
parent41ede9c2b79cd67bf4d6d6ba5953e3e311c7574b (diff)
downloadotp-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.asn19
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