diff options
author | andreas_kupries <akupries@shaw.ca> | 2010-08-03 20:15:53 (GMT) |
---|---|---|
committer | andreas_kupries <akupries@shaw.ca> | 2010-08-03 20:15:53 (GMT) |
commit | f5169dbe59924b18e67ece3867b7ddddc5820324 (patch) | |
tree | c968b3c4adc830be7db3be5a5096fe7f3c5f0f9d /tests | |
parent | 569005aa5248cfbd40d130d89bed5eb16e4d7a9f (diff) | |
download | tcl-f5169dbe59924b18e67ece3867b7ddddc5820324.zip tcl-f5169dbe59924b18e67ece3867b7ddddc5820324.tar.gz tcl-f5169dbe59924b18e67ece3867b7ddddc5820324.tar.bz2 |
Fix OBOE error in the forward ported info-39.1
Diffstat (limited to 'tests')
-rw-r--r-- | tests/info.test | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/info.test b/tests/info.test index 9a919bc..fd126a7 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.77 2010/08/03 16:58:01 andreas_kupries Exp $ +# RCS: @(#) $Id: info.test,v 1.78 2010/08/03 20:15:53 andreas_kupries Exp $ if {{::tcltest} ni [namespace children]} { package require tcltest 2 @@ -1852,12 +1852,12 @@ test info-39.1 {location information not confused by literal sharing, bug 293308 if "$x != 1" { } else { print_one - } ;#line 1855^ + } ;#line 1854^ if "$$y != 1" { } else { print_one - } ;#line 1860^ + } ;#line 1859^ # Do not put the comments listing the line numbers into the # branches. We need shared literals, and the comments would # make them different, thus unshared. @@ -1875,8 +1875,8 @@ test info-39.1 {location information not confused by literal sharing, bug 293308 rename get_frame_info {} rename test_info_frame {} rename print_one {} -} -result {type source line 1855 file info.test cmd print_one proc ::test_info_frame level 1 -type source line 1860 file info.test cmd print_one proc ::test_info_frame level 1} +} -result {type source line 1854 file info.test cmd print_one proc ::test_info_frame level 1 +type source line 1859 file info.test cmd print_one proc ::test_info_frame level 1} # ------------------------------------------------------------------------- unset -nocomplain res |