aboutsummaryrefslogtreecommitdiffstats
path: root/tests/90-cond-int-type-OK.asn1
diff options
context:
space:
mode:
authorLev Walkin <vlm@lionet.info>2005-08-14 02:40:04 +0000
committerLev Walkin <vlm@lionet.info>2005-08-14 02:40:04 +0000
commitc3f0b89c0ed97cf34a6a7e7730cb7a6eba540b27 (patch)
tree074771a9f2e6393923bf5112054f3443d563a92a /tests/90-cond-int-type-OK.asn1
parent082cadcaaa610df424a1327656abb3055c9f6873 (diff)
PER visible constraints are used to select the native representation for INTEGER types
Diffstat (limited to 'tests/90-cond-int-type-OK.asn1')
-rw-r--r--tests/90-cond-int-type-OK.asn114
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/90-cond-int-type-OK.asn1 b/tests/90-cond-int-type-OK.asn1
index e4745150..7fe18e00 100644
--- a/tests/90-cond-int-type-OK.asn1
+++ b/tests/90-cond-int-type-OK.asn1
@@ -14,19 +14,19 @@ BEGIN
CN-IntegerUnlimited ::= INTEGER
CN-IntegerMinMax ::= INTEGER (MIN..MAX)
CN-IntegerMinLow ::= INTEGER (MIN..1)
- NO-IntegerMinHigh ::= INTEGER (MIN..5000000000)
- NO-IntegerLowHigh ::= INTEGER (1..5000000000)
+ NO-IntegerMinHigh ::= INTEGER (MIN..3000000000)
+ NO-IntegerLowHigh ::= INTEGER (1..3000000000)
CN-IntegerLowMax ::= INTEGER (1..MAX)
- NO-IntegerHighMax ::= INTEGER (5000000000..MAX)
- NO-IntegerLowestMax ::= INTEGER (-5000000000..MAX)
- NO-IntegerOutRange ::= INTEGER (5000000000..5000000001)
- NO-IntegerOutValue ::= INTEGER (5000000000)
+ NO-IntegerHighMax ::= INTEGER (3000000000..MAX)
+ NO-IntegerLowestMax ::= INTEGER (-3000000000..MAX)
+ NO-IntegerOutRange ::= INTEGER (3000000000..3000000001)
+ NO-IntegerOutValue ::= INTEGER (3000000000)
OK-IntegerInRange1 ::= INTEGER (-100..100)
OK-IntegerInRange2 ::= INTEGER (-100|100)
OK-IntegerInRange3 ::= INTEGER (-2147483648..2147483647)
OK-IntegerInRange4 ::= INTEGER (-2147483648|2147483647)
OK-IntegerInRange5 ::= INTEGER (-2147483648|2147483647,...)
CN-IntegerEnumerated1 ::= INTEGER { a(1), b(2) }
- NO-IntegerEnumerated2 ::= INTEGER { a(1), b(5000000000) }
+ NO-IntegerEnumerated2 ::= INTEGER { a(1), b(3000000000) }
END