summaryrefslogtreecommitdiffstats
path: root/tests/expr.test
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2021-02-18 08:46:21 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2021-02-18 08:46:21 (GMT)
commitf4032799de0b3f701b1801344e0b1adcfe1cf6c0 (patch)
tree139a0e88beb9b79a068c79e5a5154d0e012ea3b8 /tests/expr.test
parent28d58d74b0e3837b5ca9c2020bd14cf21ee98a41 (diff)
parent957890bf54197a9221fb3c3e65ef4cbc07490352 (diff)
downloadtcl-f4032799de0b3f701b1801344e0b1adcfe1cf6c0.zip
tcl-f4032799de0b3f701b1801344e0b1adcfe1cf6c0.tar.gz
tcl-f4032799de0b3f701b1801344e0b1adcfe1cf6c0.tar.bz2
Merge 8.6
Diffstat (limited to 'tests/expr.test')
-rw-r--r--tests/expr.test5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/expr.test b/tests/expr.test
index 5435a18..8d2f668 100644
--- a/tests/expr.test
+++ b/tests/expr.test
@@ -6699,9 +6699,12 @@ test expr-38.12 {abs and -0x0 [Bug 2954959]} {
test expr-38.13 {abs and 0.0 [Bug 2954959]} {
::tcl::mathfunc::abs 1e-324
} 1e-324
-test expr-38.14 {abs and WIDE_MIN special-case} {
+test expr-38.14 {abs and INT64_MIN special-case} {
::tcl::mathfunc::abs -9223372036854775808
} 9223372036854775808
+test expr-38.15 {abs and INT128_MIN special-case} {
+ ::tcl::mathfunc::abs -170141183460469231731687303715884105728
+} 170141183460469231731687303715884105728
testConstraint testexprlongobj [llength [info commands testexprlongobj]]
testConstraint testexprdoubleobj [llength [info commands testexprdoubleobj]]