diff options
author | Björn Gustavsson <[email protected]> | 2012-12-10 10:56:10 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2012-12-10 10:56:10 +0100 |
commit | 13bf84f59fca26e3fcf644b566db0100b8f01546 (patch) | |
tree | 9552867dd790eb5cdcc4f28aa391c21b511f70bc /lib/asn1/test/asn1_SUITE.erl | |
parent | d4b42df28b1d696ce7b2b634be09a7fa5bc0b9cb (diff) | |
parent | 5c407a3477e0f35e6e60ff86c664e3de812a8c7a (diff) | |
download | otp-13bf84f59fca26e3fcf644b566db0100b8f01546.tar.gz otp-13bf84f59fca26e3fcf644b566db0100b8f01546.tar.bz2 otp-13bf84f59fca26e3fcf644b566db0100b8f01546.zip |
Merge branch 'bjorn/asn1/optimize/OTP-10519'
* bjorn/asn1/optimize/OTP-10519:
Remove unused run-time functions
Optimize decoding of extensions
Do alignment optimization of SEQUENCEs and SETs
Refactor code generation for decoding SEQUENCE/SET
Teach asn1ct_imm to optimize alignment
Optimize decoding of OCTET STRINGs
Implement encoding of fragmented OCTET STRINGs
Use asn1ct_imm to optimize decoding of per and uper
Use asn1ct_imm:effective_constraint/2
Add the asn1ct_imm module
Makefile: Add dependencies for header files
Eliminate the useless 'telltype' argument in component decoding
testPrimString: Increase readability by introducing a roundtrip function
asn1_SUITE: Let the per/1 test case also test 'uper'
asn1ct_value: Fix type for open type value for uper
Optimize encoding/decoding of NULL in the per and uper back-ends
Suppress warnings for unused variables using a compiler option
Diffstat (limited to 'lib/asn1/test/asn1_SUITE.erl')
-rw-r--r-- | lib/asn1/test/asn1_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/asn1/test/asn1_SUITE.erl b/lib/asn1/test/asn1_SUITE.erl index fd5ea15323..38ec72c473 100644 --- a/lib/asn1/test/asn1_SUITE.erl +++ b/lib/asn1/test/asn1_SUITE.erl @@ -631,7 +631,7 @@ parse(Config) -> [asn1_test_lib:compile(M, Config, [abs]) || M <- test_modules()]. per(Config) -> - test(Config, fun per/3, [per]). + test(Config, fun per/3, [per,uper]). per(Config, Rule, Opts) -> [module_test(M, Config, Rule, Opts) || M <- per_modules()]. |