Fix C++ template function matching in cooked index
[binutils-gdb.git] / gdb / testsuite / gdb.base / maint-print-frame-id.exp
blob257a16498873016726d002b03db970e822f85c04
1 # Copyright 2022-2024 Free Software Foundation, Inc.
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 3 of the License, or
6 # (at your option) any later version.
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 # GNU General Public License for more details.
13 # You should have received a copy of the GNU General Public License
14 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 # Test the 'maint print frame-id' command.
18 standard_testfile
20 if {[prepare_for_testing "failed to prepare" $testfile \
21          $srcfile {debug}]} {
22     return -1
25 if {![runto_main]} {
26     return -1
29 gdb_breakpoint foo
30 gdb_continue_to_breakpoint "run to foo"
32 proc get_frame_id { level } {
33     set id "**unknown**"
35     gdb_test_multiple "maint print frame-id ${level}" "" {
36         -wrap -re "^frame-id for frame #\[0-9\]+: (\[^\r\n\]+)" {
37             set id $expect_out(1,string)
38             pass $gdb_test_name
39         }
40     }
42     return $id
45 # Get the frame-id for each frame using the frame level.
46 array set ids {}
47 with_test_prefix "get id by level" {
48     for { set i 0 } { $i < 4 } { incr i } {
49         set ids($i) [get_frame_id $i]
50     }
53 # Now get the frame-id of the currently selected frame, and check it
54 # matches the frame-id we got earlier.  Then move up the stack,
55 # selecting a new frame.
56 for { set i 0 } { $i < 4 } { incr i } {
57     with_test_prefix "frame $i is current" {
58         set id [get_frame_id ""]
59         gdb_assert { [string equal $id $ids($i)] } \
60             "check frame-id matches"
61     }
62     gdb_test "up" ".*" \
63         "move up from frame $i"