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.
20 if {[prepare_for_testing "failed to prepare" $testfile \
30 gdb_continue_to_breakpoint "run to foo"
32 proc get_frame_id { level } {
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)
45 # Get the frame-id for each frame using the frame level.
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]
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"
63 "move up from frame $i"