summaryrefslogtreecommitdiffstats
path: root/tests/info.test
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2007-09-11 21:26:25 (GMT)
committerdgp <dgp@users.sourceforge.net>2007-09-11 21:26:25 (GMT)
commitd30c9675dd147e8905633d5e8545106d75a4dc58 (patch)
tree365b25cf1886c9abef9a2ad5871a2c20eea2169f /tests/info.test
parent05d4bff61c4b959be0020c6a2b74a82cddb1e71e (diff)
downloadtcl-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 'tests/info.test')
-rw-r--r--tests/info.test6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/info.test b/tests/info.test
index 94db6e7..12fd713 100644
--- a/tests/info.test
+++ b/tests/info.test
@@ -13,7 +13,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.45 2007/06/12 12:34:04 dkf Exp $
+# RCS: @(#) $Id: info.test,v 1.46 2007/09/11 21:26:26 dgp Exp $
if {[lsearch [namespace children] ::tcltest] == -1} {
package require tcltest 2
@@ -761,7 +761,7 @@ test info-22.6 {info frame, global, relative} {!singleTestInterp} {
test info-22.7 {info frame, global, absolute} {!singleTestInterp} {
reduce [info frame 1]
} {type source line 761 file info.test cmd test\ info-22.7\ \{info\ frame,\ global,\ absolute\}\ \{!singleTestInter level 0}
-test info-22.8 {info frame, basic trace} {!singleTestInterp} {
+test info-22.8 {info frame, basic trace} {knownBug !singleTestInterp} {
join [etrace] \n
} {8 {type source line 728 file info.test cmd {info frame $level} proc ::etrace level 0}
7 {type eval line 2 cmd etrace}
@@ -795,7 +795,7 @@ test info-23.5 {eval'd info frame, dynamic} {
set script {info frame 0}
eval $script
} {type eval line 1 cmd {info frame 0}}
-test info-23.6 {eval'd info frame, trace} {!singleTestInterp} {
+test info-23.6 {eval'd info frame, trace} {knownBug !singleTestInterp} {
set script {etrace}
join [eval $script] \n
} {9 {type source line 728 file info.test cmd {info frame $level} proc ::etrace level 0}