diff options
author | dgp <dgp@users.sourceforge.net> | 2006-04-06 18:19:22 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2006-04-06 18:19:22 (GMT) |
commit | 5236fc67c64ed64fa5b75bc48a4ef5dd2ae44e0f (patch) | |
tree | 8972f9a966520304e7c3505242e7e72873dfdf9d /tests/info.test | |
parent | c1ce8705873d255a95b5b41c4ade4f70afef5422 (diff) | |
download | tcl-5236fc67c64ed64fa5b75bc48a4ef5dd2ae44e0f.zip tcl-5236fc67c64ed64fa5b75bc48a4ef5dd2ae44e0f.tar.gz tcl-5236fc67c64ed64fa5b75bc48a4ef5dd2ae44e0f.tar.bz2 |
* tests/compExpr-old.test: Updated testmathfunctions constraint
* tests/compExpr.test: to post-TIP-232 world.
* tests/expr-old.test:
* tests/expr.test:
* tests/info.test:
* tests/indexObj.test: Corrected other test errors revealed by
* tests/upvar.test: testing outside the tcltest application.
Diffstat (limited to 'tests/info.test')
-rw-r--r-- | tests/info.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/info.test b/tests/info.test index 0dab4bd..a7a9913 100644 --- a/tests/info.test +++ b/tests/info.test @@ -11,7 +11,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: info.test,v 1.34 2005/10/10 21:50:01 dkf Exp $ +# RCS: @(#) $Id: info.test,v 1.35 2006/04/06 18:19:26 dgp Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest 2 @@ -627,7 +627,7 @@ test info-19.6 {info vars: Bug 1072654} -setup { set functions {abs acos asin atan atan2 bool ceil cos cosh double entier exp floor fmod hypot int log log10 max min pow rand round sin sinh sqrt srand tan tanh wide} # Check whether the extra testing functions are defined... -if {!([catch {expr T1()} msg] && ($msg eq {unknown math function "T1"}))} { +if {!([catch {expr T1()} msg] && ($msg eq {invalid command name "tcl::mathfunc::T1"}))} { set functions "T1 T2 T3 $functions" ;# A lazy way of prepending! } test info-20.1 {info functions option} {info functions sin} sin |