diff options
author | Björn Gustavsson <[email protected]> | 2013-12-02 12:31:11 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2013-12-02 12:31:11 +0100 |
commit | 8d48725f062b16d94fc3371d2940d451b94a141d (patch) | |
tree | 4107fa190707e11eff5f3c2c84066c6c95f52c73 /lib/asn1/test/testConstraints.erl | |
parent | 301a7c2de81559fce4ab504afe5db68744a7c6d7 (diff) | |
parent | bdf9ae38e1563c8304bf411c6e0655622246b20b (diff) | |
download | otp-8d48725f062b16d94fc3371d2940d451b94a141d.tar.gz otp-8d48725f062b16d94fc3371d2940d451b94a141d.tar.bz2 otp-8d48725f062b16d94fc3371d2940d451b94a141d.zip |
Merge branch 'bjorn/asn1/fix-integer-constraint/OTP-11504' into maint
* bjorn/asn1/fix-integer-constraint/OTP-11504:
PER/UPER: Handle a range in the extension part of the constraint
Diffstat (limited to 'lib/asn1/test/testConstraints.erl')
-rw-r--r-- | lib/asn1/test/testConstraints.erl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/asn1/test/testConstraints.erl b/lib/asn1/test/testConstraints.erl index 23322f5e88..54ba748519 100644 --- a/lib/asn1/test/testConstraints.erl +++ b/lib/asn1/test/testConstraints.erl @@ -70,6 +70,8 @@ int_constraints(Rules) -> %%========================================================== LastNumWithoutLengthEncoding = 65536, roundtrip('Range256to65536', LastNumWithoutLengthEncoding), + roundtrip('Range256to65536Ext', LastNumWithoutLengthEncoding), + roundtrip('Range256to65536Ext', 42), FirstNumWithLengthEncoding = 65537, roundtrip('LargeConstraints', 'RangeMax', FirstNumWithLengthEncoding), @@ -95,6 +97,8 @@ int_constraints(Rules) -> %% Random number within longlong range LongLong = 12672809400538808320, roundtrip('LongLong', LongLong), + roundtrip('LongLongExt', LongLong), + roundtrip('LongLongExt', -10000), %%========================================================== %% Constraint Combinations (Duboisson p. 285) |