diff options
author | Björn Gustavsson <[email protected]> | 2013-02-14 16:03:13 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2013-02-14 17:02:09 +0100 |
commit | 244b486f73bedbfae83b408d59ddb3b7a095d0b7 (patch) | |
tree | d0edf1ad82f98c904d19279a7211483dff8e9f37 /lib/asn1/test/asn1_SUITE.erl | |
parent | 4613b7d6c65a1bbced21e84edb45fd26dd440bae (diff) | |
download | otp-244b486f73bedbfae83b408d59ddb3b7a095d0b7.tar.gz otp-244b486f73bedbfae83b408d59ddb3b7a095d0b7.tar.bz2 otp-244b486f73bedbfae83b408d59ddb3b7a095d0b7.zip |
Smoke test the 'der' option
Diffstat (limited to 'lib/asn1/test/asn1_SUITE.erl')
-rw-r--r-- | lib/asn1/test/asn1_SUITE.erl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/asn1/test/asn1_SUITE.erl b/lib/asn1/test/asn1_SUITE.erl index 7458fdd0f2..abf1ba83a5 100644 --- a/lib/asn1/test/asn1_SUITE.erl +++ b/lib/asn1/test/asn1_SUITE.erl @@ -86,6 +86,7 @@ groups() -> testInvokeMod, per, ber_other, + der, h323test, per_GeneralString]}, testChoPrim, @@ -686,6 +687,8 @@ ber_other(Config) -> ber_other(Config, Rule, Opts) -> [module_test(M, Config, Rule, Opts) || M <- ber_modules()]. +der(Config) -> + asn1_test_lib:compile_all(ber_modules(), Config, [der]). module_test(M, Config, Rule, Opts) -> asn1_test_lib:compile(M, Config, [Rule|Opts]), |