summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2004-09-19 15:03:48 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2004-09-19 15:03:48 (GMT)
commit0128966eb26542c2e43adc50bb9324bd4479bd46 (patch)
treeff211f941c142f0fbfab46f6af654c0999ebc539 /tests
parent5de0fcd24a2767686fe1e1c937e666a7b48577d4 (diff)
downloadtcl-0128966eb26542c2e43adc50bb9324bd4479bd46.zip
tcl-0128966eb26542c2e43adc50bb9324bd4479bd46.tar.gz
tcl-0128966eb26542c2e43adc50bb9324bd4479bd46.tar.bz2
Some tests were non-portable, alas.
Diffstat (limited to 'tests')
-rw-r--r--tests/expr.test6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/expr.test b/tests/expr.test
index 001412c..8ee890c 100644
--- a/tests/expr.test
+++ b/tests/expr.test
@@ -10,7 +10,7 @@
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
-# RCS: @(#) $Id: expr.test,v 1.24 2004/09/18 19:24:54 dkf Exp $
+# RCS: @(#) $Id: expr.test,v 1.25 2004/09/19 15:03:48 dkf Exp $
if {[lsearch [namespace children] ::tcltest] == -1} {
package require tcltest
@@ -865,8 +865,8 @@ test expr-24.1 {expr edge cases; shifting} {expr int(5)>>32} 0
test expr-24.2 {expr edge cases; shifting} {expr int(5)>>63} 0
test expr-24.3 {expr edge cases; shifting} {expr wide(5)>>32} 0
test expr-24.4 {expr edge cases; shifting} {expr wide(5)>>63} 0
-test expr-24.5 {expr edge cases; shifting} {expr int(5)<<32} 0
-test expr-24.6 {expr edge cases; shifting} {expr int(5)<<63} 0
+test expr-24.5 {expr edge cases; shifting} nonPortable {expr int(5)<<32} 0
+test expr-24.6 {expr edge cases; shifting} nonPortable {expr int(5)<<63} 0
test expr-24.7 {expr edge cases; shifting} {expr wide(5)<<32} 21474836480
test expr-24.8 {expr edge cases; shifting} {expr wide(10)<<63} 0
test expr-24.9 {expr edge cases; shifting} {expr 5>>32} 0