diff options
author | Björn Gustavsson <[email protected]> | 2013-08-08 11:58:58 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2013-09-03 16:27:41 +0200 |
commit | c28e00b24d4d67a8aac55415c36dcab2537db2cc (patch) | |
tree | 46c26d378b4e64aea81cb28c6fa18ab1f77e5429 /lib/asn1/test/asn1_SUITE.erl | |
parent | df7bb30fd0e8161e5146705fd117aa0bb115fbe7 (diff) | |
download | otp-c28e00b24d4d67a8aac55415c36dcab2537db2cc.tar.gz otp-c28e00b24d4d67a8aac55415c36dcab2537db2cc.tar.bz2 otp-c28e00b24d4d67a8aac55415c36dcab2537db2cc.zip |
PER, UPER: Fix encoding/decoding of open types greater than 16K
Diffstat (limited to 'lib/asn1/test/asn1_SUITE.erl')
-rw-r--r-- | lib/asn1/test/asn1_SUITE.erl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/asn1/test/asn1_SUITE.erl b/lib/asn1/test/asn1_SUITE.erl index 2617f975a5..9a149a495a 100644 --- a/lib/asn1/test/asn1_SUITE.erl +++ b/lib/asn1/test/asn1_SUITE.erl @@ -150,6 +150,7 @@ groups() -> per_open_type, testInfObjectClass, testParameterizedInfObj, + testFragmented, testMergeCompile, testobj, testDeepTConstr, @@ -830,6 +831,12 @@ testParameterizedInfObj(Config, Rule, Opts) -> asn1_test_lib:compile_all(Files, Config, [Rule|Opts]), testParameterizedInfObj:main(Config, Rule). +testFragmented(Config) -> + test(Config, fun testFragmented/3). +testFragmented(Config, Rule, Opts) -> + asn1_test_lib:compile("Fragmented", Config, [Rule|Opts]), + testFragmented:main(Rule). + testMergeCompile(Config) -> test(Config, fun testMergeCompile/3). testMergeCompile(Config, Rule, Opts) -> Files = ["MS.set.asn", "RANAPSET.set.asn1", "Mvrasn4.set.asn", |