2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
|
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
|
+
+
+
+
+
+
+
+
+
|
[child invokehidden info frame 1] \
[catch {child invokehidden info frame -1} msg] $msg \
[catch {child invokehidden info frame 2} msg] $msg
} -cleanup {
interp delete child
unset -nocomplain msg
} -result {1 {type precompiled} {type precompiled} 1 {bad level "-1"} 1 {bad level "2"}}
test info-41.1 {Bug 0de6c1d79c crash} -setup {
interp create child
child hide info
} -cleanup {
interp delete child
} -body {
child invokehidden info frame
} -result 1
# cleanup
catch {namespace delete test_ns_info1 test_ns_info2}
::tcltest::cleanupTests
return
|