diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | tests/info.test | 4 |
2 files changed, 8 insertions, 2 deletions
@@ -1,3 +1,9 @@ +2008-10-02 Andreas Kupries <andreask@activestate.com> + + * tests/info.test (info-22.8): Fixed [SF Bug 2129828]. Made + pattern for file containing tcltest less specific to accept both + .tcl and .tm variants of the file during matching. + 2008-10-02 Don Porter <dgp@users.sourceforge.net> TIP #330 IMPLEMENTATION diff --git a/tests/info.test b/tests/info.test index d51390f..7388e08 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.58 2008/08/01 17:07:48 dgp Exp $ +# RCS: @(#) $Id: info.test,v 1.59 2008/10/02 22:55:58 andreas_kupries Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest 2 @@ -765,7 +765,7 @@ test info-22.8 {info frame, basic trace} -match glob -body { join [lrange [etrace] 0 2] \n } -result {* {type source line 728 file info.test cmd {info frame $level} proc ::etrace level 0} * {type source line 765 file info.test cmd etrace proc ::tcltest::RunTest} -* {type source line * file tcltest.tcl cmd {uplevel 1 $script} proc ::tcltest::RunTest}} +* {type source line * file tcltest* cmd {uplevel 1 $script} proc ::tcltest::RunTest}} ## The line 1967 is off by 5 from the true value of 1972. This is a knownBug, see testcase 30.0 test info-23.0.0 {eval'd info frame} {!singleTestInterp} { |