mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-07-29 12:53:43 +08:00
Enables gdb.reverse testsuite for aarch64*-linux targets
This patch enable gdb.reverse tests for aarch64*-linux targets. With this patch, there are 7 FAILs in gdb.reverse/ tests. FAIL: gdb.reverse/finish-reverse-bkpt.exp: reverse-finish from void_func trips breakpoint at entry FAIL: gdb.reverse/finish-reverse-bkpt.exp: no spurious proceed after breakpoint stop FAIL: gdb.reverse/next-reverse-bkpt-over-sr.exp: reverse-next over call trips user breakpoint at function entry FAIL: gdb.reverse/step-precsave.exp: reverse step into fn call FAIL: gdb.reverse/step-precsave.exp: reverse step out of called fn FAIL: gdb.reverse/step-reverse.exp: reverse step into fn call FAIL: gdb.reverse/step-reverse.exp: reverse step out of called fn gdb/testsuite: 2015-05-26 Omair Javaid <omair.javaid@linaro.org> * lib/gdb.exp (supports_process_record): Return true for aarch64*-linux*. (supports_reverse): Likewise.
This commit is contained in:
@ -1,3 +1,8 @@
|
||||
2015-05-26 Omair Javaid <omair.javaid@linaro.org>
|
||||
|
||||
* lib/gdb.exp (supports_process_record): Return true for aarch64*-linux*.
|
||||
(supports_reverse): Likewise.
|
||||
|
||||
2015-05-22 Patrick Palka <patrick@parcs.ath.cx>
|
||||
|
||||
* gdb.base/gdbinit-history.exp (test_gdbinit_history_setting):
|
||||
|
@ -2024,6 +2024,7 @@ proc supports_process_record {} {
|
||||
|
||||
if { [istarget "arm*-*-linux*"] || [istarget "x86_64-*-linux*"]
|
||||
|| [istarget "i\[34567\]86-*-linux*"]
|
||||
|| [istarget "aarch64*-*-linux*"]
|
||||
|| [istarget "powerpc*-*-linux*"] } {
|
||||
return 1
|
||||
}
|
||||
@ -2041,6 +2042,7 @@ proc supports_reverse {} {
|
||||
|
||||
if { [istarget "arm*-*-linux*"] || [istarget "x86_64-*-linux*"]
|
||||
|| [istarget "i\[34567\]86-*-linux*"]
|
||||
|| [istarget "aarch64*-*-linux*"]
|
||||
|| [istarget "powerpc*-*-linux*"] } {
|
||||
return 1
|
||||
}
|
||||
|
Reference in New Issue
Block a user