diff options
author | Björn Gustavsson <[email protected]> | 2013-08-06 12:05:21 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2013-08-08 15:30:06 +0200 |
commit | 302ad9890fbd71ad54cb6a0ae4f5e6cfe198b485 (patch) | |
tree | de88653f5c0acfc4c748bb86c995320add1befb3 /lib/asn1/test/asn1_SUITE.erl | |
parent | 90f6229822c720d7616f9a11d1ca51e522586564 (diff) | |
download | otp-302ad9890fbd71ad54cb6a0ae4f5e6cfe198b485.tar.gz otp-302ad9890fbd71ad54cb6a0ae4f5e6cfe198b485.tar.bz2 otp-302ad9890fbd71ad54cb6a0ae4f5e6cfe198b485.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 be3a6c52c2..b052529ebd 100644 --- a/lib/asn1/test/asn1_SUITE.erl +++ b/lib/asn1/test/asn1_SUITE.erl @@ -168,6 +168,7 @@ groups() -> per_open_type, testInfObjectClass, testParameterizedInfObj, + testFragmented, testMergeCompile, testobj, testDeepTConstr, @@ -816,6 +817,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", |