diff options
author | Björn Gustavsson <[email protected]> | 2014-12-11 15:29:58 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2015-01-12 12:22:57 +0100 |
commit | a7521902cbf4ae2e6cf78689dc98c2da944f142f (patch) | |
tree | 0427637c60e429e20dd93f640cb6204f495cff0b /lib/asn1/test/asn1_SUITE.erl | |
parent | e96b4bbb802cd00fa14deb12d7200873c7a79e85 (diff) | |
download | otp-a7521902cbf4ae2e6cf78689dc98c2da944f142f.tar.gz otp-a7521902cbf4ae2e6cf78689dc98c2da944f142f.tar.bz2 otp-a7521902cbf4ae2e6cf78689dc98c2da944f142f.zip |
Add a test case for EXTENSIBILITY IMPLIED
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 5e8da14fdf..9dfcc3f571 100644 --- a/lib/asn1/test/asn1_SUITE.erl +++ b/lib/asn1/test/asn1_SUITE.erl @@ -87,6 +87,7 @@ groups() -> ber_other, der, h323test]}, + testExtensibilityImplied, testChoPrim, testChoExtension, testChoOptional, @@ -375,6 +376,12 @@ testExternal(Config, Rule, Opts) -> testSetOfTag:main(Rule), testSetTag:main(Rule). +testExtensibilityImplied(Config) -> + test(Config, fun testExtensibilityImplied/3). +testExtensibilityImplied(Config, Rule, Opts) -> + asn1_test_lib:compile("ExtensibilityImplied", Config, + [Rule,no_ok_wrapper|Opts]), + testExtensibilityImplied:main(). testChoPrim(Config) -> test(Config, fun testChoPrim/3). testChoPrim(Config, Rule, Opts) -> |