forked from Imagelibrary/binutils-gdb
In a record session, when we move backward, GDB switches from normal execution to simulation. Moving forward again, the emulation continues until the end of the reverse history. When the end is reached, the execution stops, and a warning message is shown. This message has been modified to indicate that the forward emulation has reached the end, but the execution can continue as normal, and the recording will also continue. Before this patch, the warning message shown in that case was the same as in the reverse case. This meant that when the end of history was reached in either backward or forward emulation, the same message was displayed: "No more reverse-execution history." This message has changed for these two cases. Backward emulation: "Reached end of recorded history; stopping. Backward execution from here not possible." Forward emulation: "Reached end of recorded history; stopping. Following forward execution will be added to history." The reason for this change is that the initial message was deceiving, for the forward case, making the user believe that forward debugging could not continue. Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=31224 Reviewed-By: Markus T. Metzger <markus.t.metzger@intel.com> (btrace) Approved-By: Guinevere Larsen <blarsen@redhat.com>
87 lines
2.8 KiB
Plaintext
87 lines
2.8 KiB
Plaintext
# Copyright 2008-2024 Free Software Foundation, Inc.
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
# This file is part of the GDB testsuite. It tests reverse debugging
|
|
# with breakpoints.
|
|
|
|
require supports_reverse
|
|
|
|
standard_testfile
|
|
|
|
if { [prepare_for_testing "failed to prepare" $testfile $srcfile] } {
|
|
return -1
|
|
}
|
|
|
|
set foo_location [gdb_get_line_number "break in foo" ]
|
|
set bar_location [gdb_get_line_number "break in bar" ]
|
|
set main_location [gdb_get_line_number "break in main"]
|
|
set end_location [gdb_get_line_number "end of main" ]
|
|
|
|
runto_main
|
|
|
|
if [supports_process_record] {
|
|
# Activate process record/replay
|
|
gdb_test_no_output "record" "turn on process record"
|
|
}
|
|
|
|
gdb_test "break foo" \
|
|
"Breakpoint $decimal at .* line $foo_location\." \
|
|
"set breakpoint on foo"
|
|
|
|
gdb_test "break bar" \
|
|
"Breakpoint $decimal at .* line $bar_location\." \
|
|
"set breakpoint on bar"
|
|
|
|
gdb_test "break $end_location" \
|
|
"Breakpoint $decimal at .* line $end_location\." \
|
|
"set breakpoint at end of main"
|
|
|
|
gdb_continue_to_breakpoint "foo forward, the first time" \
|
|
".*$srcfile:$foo_location.*"
|
|
gdb_continue_to_breakpoint "bar forward, the first time" \
|
|
".*$srcfile:$bar_location.*"
|
|
gdb_continue_to_breakpoint "end forward, the first time" \
|
|
".*$srcfile:$end_location.*"
|
|
|
|
gdb_test_no_output "set exec-direction reverse" "set reverse"
|
|
|
|
gdb_continue_to_breakpoint "bar backward" ".*$srcfile:$bar_location.*"
|
|
gdb_continue_to_breakpoint "foo backward" ".*$srcfile:$foo_location.*"
|
|
|
|
gdb_test_multiple "continue" "main backward" {
|
|
-re ".*Breakpoint $decimal,.*$srcfile:$main_location.*$gdb_prompt $" {
|
|
pass "main backward"
|
|
}
|
|
-re -wrap "Reached end of recorded history.*Backward execution.*" {
|
|
pass "main backward"
|
|
}
|
|
}
|
|
|
|
gdb_test_no_output "set exec-direction forward" "set forward"
|
|
|
|
gdb_continue_to_breakpoint "foo forward again" \
|
|
".*$srcfile:$foo_location.*"
|
|
gdb_continue_to_breakpoint "bar forward again" \
|
|
".*$srcfile:$bar_location.*"
|
|
|
|
gdb_test_multiple "continue" "end of record log" {
|
|
-re ".*Breakpoint $decimal,.*$srcfile:$end_location.*$gdb_prompt $" {
|
|
pass "end of record log"
|
|
}
|
|
-re -wrap "Reached end of recorded history.*Following forward.*" {
|
|
pass "end of record log"
|
|
}
|
|
}
|