diff options
author | hershey <hershey> | 1998-07-28 11:08:25 (GMT) |
---|---|---|
committer | hershey <hershey> | 1998-07-28 11:08:25 (GMT) |
commit | 39297f4d688d9dd85ac96585a3747a2a69ecc378 (patch) | |
tree | cef3c225b0557de91c036689a934c3fe0840b930 /tests/expr-old.test | |
parent | b58c7260ecf6cdb6a6a3ebf94e64da146b4105dc (diff) | |
download | tcl-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.test | 11 |
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: |