summaryrefslogtreecommitdiffstats
path: root/tests/expr-old.test
diff options
context:
space:
mode:
authorhershey <hershey@noemail.net>1998-07-28 11:08:25 (GMT)
committerhershey <hershey@noemail.net>1998-07-28 11:08:25 (GMT)
commitcd40648406ead234d752a23ec131ad1af4a22e6e (patch)
treecef3c225b0557de91c036689a934c3fe0840b930 /tests/expr-old.test
parent7bb7ee7bd7ed5566f032e7ffd06f34fad4247eda (diff)
downloadtcl-cd40648406ead234d752a23ec131ad1af4a22e6e.zip
tcl-cd40648406ead234d752a23ec131ad1af4a22e6e.tar.gz
tcl-cd40648406ead234d752a23ec131ad1af4a22e6e.tar.bz2
checks for existence of test commands
FossilOrigin-Name: 4f1d1c6ccd0eb64acfbbbf2736dadbb2246b99cb
Diffstat (limited to 'tests/expr-old.test')
-rw-r--r--tests/expr-old.test11
1 files changed, 10 insertions, 1 deletions
diff --git a/tests/expr-old.test b/tests/expr-old.test
index 8fb8ad9..e11ecd2 100644
--- a/tests/expr-old.test
+++ b/tests/expr-old.test
@@ -900,15 +900,24 @@ test expr-old-36.10 {ExprLooksLikeInt procedure} {nonPortable unixOnly} {
list [catch {expr 78e} msg] $msg
} {1 {syntax error in expression "78e"}}
+if {[info commands testexprlong] == {}} {
+ puts "This application hasn't been compiled with the \"testexprlong\""
+ puts "command, so I can't test Tcl_ExprLong etc."
+} else {
test expr-old-37.1 {Check that Tcl_ExprLong doesn't modify interpreter result if no error} {
testexprlong
} {This is a result: 5}
+}
+if {[info commands testexprstring] == {}} {
+ puts "This application hasn't been compiled with the \"testexprstring\""
+ puts "command, so I can't test Tcl_ExprString etc."
+} else {
test expr-old-38.1 {Verify Tcl_ExprString's basic operation} {
list [testexprstring "1+4"] [testexprstring "2*3+4.2"] \
[catch {testexprstring "1+"} msg] $msg
} {5 10.2 1 {syntax error in expression "1+"}}
-
+}
# Special test for Pentium arithmetic bug of 1994: