aboutsummaryrefslogtreecommitdiff
path: root/tests/expr.test
diff options
context:
space:
mode:
authorSteve Bennett <steveb@workware.net.au>2010-10-30 15:21:21 +1000
committerSteve Bennett <steveb@workware.net.au>2010-11-22 13:27:14 +1000
commit192056900583884bc1f07f371df6478d856ada3b (patch)
tree540618a3e81d8d9e14261e267edb912f5b73710a /tests/expr.test
parentd98489727fe31fa217d237b36901211adc35282d (diff)
downloadjimtcl-192056900583884bc1f07f371df6478d856ada3b.zip
jimtcl-192056900583884bc1f07f371df6478d856ada3b.tar.gz
jimtcl-192056900583884bc1f07f371df6478d856ada3b.tar.bz2
Overhaul unit test framework
Much closer to tcltest now, including constraints. Try to get all appropriate tests running under both Jim and Tcl. Signed-off-by: Steve Bennett <steveb@workware.net.au>
Diffstat (limited to 'tests/expr.test')
-rw-r--r--tests/expr.test12
1 files changed, 5 insertions, 7 deletions
diff --git a/tests/expr.test b/tests/expr.test
index a7ba78c..682af89 100644
--- a/tests/expr.test
+++ b/tests/expr.test
@@ -1,6 +1,4 @@
-source testing.tcl
-
-section "String comparison"
+source [file dirname [info script]]/testing.tcl
test expr-1.1 "Compare strings lt" {
expr {"V000500" < "V000405"}
@@ -68,19 +66,19 @@ test expr-1.13 "Short circuit evaluation" {
list $a $c
} {100 1}
-test expr-1.14 "Rotate left" {
+test expr-1.14 "Rotate left" jim {
expr {1 <<< 5}
} {32}
-test expr-1.15 "Rotate left" {
+test expr-1.15 "Rotate left" jim {
expr {1 <<< 65}
} {2}
-test expr-1.16 "Rotate right" {
+test expr-1.16 "Rotate right" jim {
expr {1 >>> 48}
} {65536}
-test expr-1.17 "Rotate left" {
+test expr-1.17 "Rotate left" jim {
expr {1 >>> 63}
} {2}