From 2eeec1591b1006d318ab7e7862593acb6fa86dd7 Mon Sep 17 00:00:00 2001 From: Dan Gudmundsson Date: Thu, 18 Sep 2014 16:40:29 +0200 Subject: Fix BER code generation PKIX1Explicit-2009 did not compile. This commit was cherry-picked from 3ab3b07a already merged into master. --- lib/asn1/test/asn1_SUITE_data/DoubleEllipses.asn | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) (limited to 'lib/asn1/test/asn1_SUITE_data/DoubleEllipses.asn') 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 -- cgit v1.2.3 From e073ffc39c29dcec5dec0a0af070952e03c1fa8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Gustavsson?= Date: Fri, 6 Mar 2015 14:53:32 +0100 Subject: asn1ct_gen: Correct generation of .hrl files for multiple ellipses --- lib/asn1/test/asn1_SUITE_data/DoubleEllipses.asn | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'lib/asn1/test/asn1_SUITE_data/DoubleEllipses.asn') diff --git a/lib/asn1/test/asn1_SUITE_data/DoubleEllipses.asn b/lib/asn1/test/asn1_SUITE_data/DoubleEllipses.asn index a96425cbea..846c3e7569 100644 --- a/lib/asn1/test/asn1_SUITE_data/DoubleEllipses.asn +++ b/lib/asn1/test/asn1_SUITE_data/DoubleEllipses.asn @@ -59,6 +59,18 @@ SeqAltV2 ::= SEQUENCE g INTEGER } +SeqDoubleEmpty1 ::= SEQUENCE { + ..., + ... +} + +SeqDoubleEmpty2 ::= SEQUENCE { + a BOOLEAN, + b INTEGER OPTIONAL, + ..., + ... +} + Set ::= SET { a INTEGER, ..., -- cgit v1.2.3