diff options
author | dgp <dgp@users.sourceforge.net> | 2007-09-11 21:26:25 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2007-09-11 21:26:25 (GMT) |
commit | d30c9675dd147e8905633d5e8545106d75a4dc58 (patch) | |
tree | 365b25cf1886c9abef9a2ad5871a2c20eea2169f /library/tcltest/pkgIndex.tcl | |
parent | 05d4bff61c4b959be0020c6a2b74a82cddb1e71e (diff) | |
download | tcl-d30c9675dd147e8905633d5e8545106d75a4dc58.zip tcl-d30c9675dd147e8905633d5e8545106d75a4dc58.tar.gz tcl-d30c9675dd147e8905633d5e8545106d75a4dc58.tar.bz2 |
* library/tcltest/tcltest.tcl: Accept underscores and colons in
* library/tcltest/pkgIndex.tcl: constraint names. Properly handle
constraint expressions that return non-numeric boolean results like
"false". Bump to tcltest 2.3b1. [Bug 1772989; RFE 1071322]
* tests/info.test: Disable fragile tests.
Diffstat (limited to 'library/tcltest/pkgIndex.tcl')
-rw-r--r-- | library/tcltest/pkgIndex.tcl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/library/tcltest/pkgIndex.tcl b/library/tcltest/pkgIndex.tcl index 80991ab..a5c8778 100644 --- a/library/tcltest/pkgIndex.tcl +++ b/library/tcltest/pkgIndex.tcl @@ -9,5 +9,4 @@ # full path name of this file's directory. if {![package vsatisfies [package provide Tcl] 8.5]} {return} -if {![package vsatisfies [package provide Tcl] 8.3]} {return} -package ifneeded tcltest 2.3a1 [list source [file join $dir tcltest.tcl]] +package ifneeded tcltest 2.3b1 [list source [file join $dir tcltest.tcl]] |