summaryrefslogtreecommitdiffstats
path: root/tests/expr.test
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2021-02-18 08:51:53 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2021-02-18 08:51:53 (GMT)
commitcdfb697e13091bb9f205d581b83f1c5854be98da (patch)
tree9ab7f5e952535d99feb25ff4a5c740310d0c9f57 /tests/expr.test
parent9e89327bdf29379e7d2ca6af75ffad273e8babba (diff)
parentf4032799de0b3f701b1801344e0b1adcfe1cf6c0 (diff)
downloadtcl-cdfb697e13091bb9f205d581b83f1c5854be98da.zip
tcl-cdfb697e13091bb9f205d581b83f1c5854be98da.tar.gz
tcl-cdfb697e13091bb9f205d581b83f1c5854be98da.tar.bz2
Merge 8.7
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 5171cde..982cd43 100644
--- a/tests/expr.test
+++ b/tests/expr.test
@@ -6698,9 +6698,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]]