summaryrefslogtreecommitdiffstats
path: root/tests/expr.test
diff options
context:
space:
mode:
authordkf <dkf@noemail.net>2004-09-19 15:02:35 (GMT)
committerdkf <dkf@noemail.net>2004-09-19 15:02:35 (GMT)
commit1fdec42fa3cc8d598cc9a2a8a9e50f3f57548d45 (patch)
tree2abd6f6679a97713e6dd3bc9eee81b6d2f83f52b /tests/expr.test
parentbfe121a28e1ccf012a4199b753df9f5917805bd4 (diff)
downloadtcl-1fdec42fa3cc8d598cc9a2a8a9e50f3f57548d45.zip
tcl-1fdec42fa3cc8d598cc9a2a8a9e50f3f57548d45.tar.gz
tcl-1fdec42fa3cc8d598cc9a2a8a9e50f3f57548d45.tar.bz2
Some tests were non-portable, alas.
FossilOrigin-Name: 47a22ed028641ce4924ae1aa88805e4a57c8aaea
Diffstat (limited to 'tests/expr.test')
-rw-r--r--tests/expr.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/expr.test b/tests/expr.test
index b4b6917..9ba169a 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.17.2.2 2004/09/18 19:17:13 dkf Exp $
+# RCS: @(#) $Id: expr.test,v 1.17.2.3 2004/09/19 15:02:36 dkf Exp $
if {[lsearch [namespace children] ::tcltest] == -1} {
package require tcltest
@@ -812,7 +812,7 @@ test expr-24.2 {expr edge cases; shifting} {expr int(5)>>63} 0
test expr-24.3 {expr edge cases; shifting} {expr wide(5)>>31} 0
test expr-24.4 {expr edge cases; shifting} {expr wide(5)>>63} 0
test expr-24.5 {expr edge cases; shifting} nonPortable {expr int(5)<<31} 0
-test expr-24.6 {expr edge cases; shifting} {expr int(5)<<63} 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)<<31} 10737418240
test expr-24.8 {expr edge cases; shifting} nonPortable {expr wide(5)<<63} -9223372036854775808
test expr-24.9 {expr edge cases; shifting} {expr 5>>32} 0