summaryrefslogtreecommitdiffstats
path: root/tests/expr-old.test
diff options
context:
space:
mode:
authorhershey <hershey>1998-07-28 11:08:25 (GMT)
committerhershey <hershey>1998-07-28 11:08:25 (GMT)
commit39297f4d688d9dd85ac96585a3747a2a69ecc378 (patch)
treecef3c225b0557de91c036689a934c3fe0840b930 /tests/expr-old.test
parentb58c7260ecf6cdb6a6a3ebf94e64da146b4105dc (diff)
downloadtcl-39297f4d688d9dd85ac96585a3747a2a69ecc378.zip
tcl-39297f4d688d9dd85ac96585a3747a2a69ecc378.tar.gz
tcl-39297f4d688d9dd85ac96585a3747a2a69ecc378.tar.bz2
checks for existence of test commands
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: