diff options
author | andreas_kupries <akupries@shaw.ca> | 2008-10-02 22:55:58 (GMT) |
---|---|---|
committer | andreas_kupries <akupries@shaw.ca> | 2008-10-02 22:55:58 (GMT) |
commit | 370d9d65a2415686b7f006ae6073e52fd9156b69 (patch) | |
tree | 53398cc2a465016d35a025e64b741fa3062e61b8 /tests | |
parent | 1c72973d895e9efb23ecda2553cee0a5a901f650 (diff) | |
download | tcl-370d9d65a2415686b7f006ae6073e52fd9156b69.zip tcl-370d9d65a2415686b7f006ae6073e52fd9156b69.tar.gz tcl-370d9d65a2415686b7f006ae6073e52fd9156b69.tar.bz2 |
* 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.
Diffstat (limited to 'tests')
-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 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} { |