diff options
author | Gustav Simonsson <[email protected]> | 2012-08-15 17:03:28 +0200 |
---|---|---|
committer | Gustav Simonsson <[email protected]> | 2012-08-15 17:03:28 +0200 |
commit | 80cada1182d0a1a8afc84e3c3fa316bcf5649736 (patch) | |
tree | 02ed79c00de04fa227f2512fee014908ffa306b1 /lib/asn1/test/asn1_SUITE.erl | |
parent | 89dbbd069886869ab7797ca938fb54d152cd77d4 (diff) | |
parent | 49a4c58106ca913328b5f28e7124e820b15e4b43 (diff) | |
download | otp-80cada1182d0a1a8afc84e3c3fa316bcf5649736.tar.gz otp-80cada1182d0a1a8afc84e3c3fa316bcf5649736.tar.bz2 otp-80cada1182d0a1a8afc84e3c3fa316bcf5649736.zip |
Merge branch 'gustav/asn1/per_integer_ranges/OTP-10128' into maint
* gustav/asn1/per_integer_ranges/OTP-10128:
Keep encoded octets of constrained whole number value and range as binaries and use erlang:byte_size to get length of octets and range. For speed.
Add support for larger integer ranges in per encode/decode
Diffstat (limited to 'lib/asn1/test/asn1_SUITE.erl')
-rw-r--r-- | lib/asn1/test/asn1_SUITE.erl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/asn1/test/asn1_SUITE.erl b/lib/asn1/test/asn1_SUITE.erl index 3b9a7532c0..084e77f32f 100644 --- a/lib/asn1/test/asn1_SUITE.erl +++ b/lib/asn1/test/asn1_SUITE.erl @@ -773,6 +773,7 @@ per_open_type(Config, Rule, Opts) -> testConstraints(Config) -> test(Config, fun testConstraints/3). testConstraints(Config, Rule, Opts) -> asn1_test_lib:compile("Constraints", Config, [Rule|Opts]), + asn1_test_lib:compile("LargeConstraints", Config, [Rule|Opts]), testConstraints:int_constraints(Rule). |