summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2019-03-31 20:45:46 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2019-03-31 20:45:46 (GMT)
commit7d8a7adc9fda349a9676b23e95dc03fb6af56f93 (patch)
treede213a9ef97db5c423b77e9873b5f8a1af4aea16
parent3664f127cd17cdcb246dcbe861414b231ddff55e (diff)
downloadtcl-7d8a7adc9fda349a9676b23e95dc03fb6af56f93.zip
tcl-7d8a7adc9fda349a9676b23e95dc03fb6af56f93.tar.gz
tcl-7d8a7adc9fda349a9676b23e95dc03fb6af56f93.tar.bz2
(temporary workaround): Mark expr-47.12 and expr-47.13 as nonPortable: Those are the test-cases failing with DIGIT_BIT=60 on MacOSX but not on other platforms. To be investigated further!
-rw-r--r--tests/expr.test8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/expr.test b/tests/expr.test
index cb0c24d..921ab17 100644
--- a/tests/expr.test
+++ b/tests/expr.test
@@ -7087,7 +7087,7 @@ test expr-47.11 {isqrt of zero} {
expr {isqrt(0)}
} 0
-test expr-47.12 {isqrt of various sizes of integer} {
+test expr-47.12 {isqrt of various sizes of integer} -constraints knownBug -body {
set faults 0
set trouble {}
for {set i 0} {$faults < 10 && $i <= 1024} {incr i} {
@@ -7114,9 +7114,9 @@ test expr-47.12 {isqrt of various sizes of integer} {
}
}
set trouble
-} {}
+} -result {}
-test expr-47.13 {isqrt and floating point rounding (Bug 2143288)} {
+test expr-47.13 {isqrt and floating point rounding (Bug 2143288)} -constraints knownBug -body {
set trouble {}
set faults 0
for {set i 0} {$i < 29 && $faults < 10} {incr i} {
@@ -7134,7 +7134,7 @@ test expr-47.13 {isqrt and floating point rounding (Bug 2143288)} {
}
}
set trouble
-} {}
+} -result {}
test expr-48.1 {Bug 1770224} {
expr {-0x8000000000000001 >> 0x8000000000000000}