* Fix 16.0 handling. - Patches added: * gdb-testsuite-fix-gdb.python-py-format-string.exp-wi.patch * gdb-testsuite-fix-gdb.python-py-mi-cmd.exp-with-pyth.patch * gdb-testsuite-fix-gdb.ada-mi_task_arg.exp-on-arm-lin.patch * gdb-testsuite-fix-regexp-in-gdb.ada-mi_var_access.ex.patch * gdb-testsuite-check-gnatmake-version-in-gdb.ada-scal.patch * gdb-testsuite-fix-gdb.arch-arm-pseudo-unwind.exp-wit.patch * gdb-symtab-fix-target-type-of-complex-long-double-on.patch * gdb-testsuite-don-t-use-set-auto-solib-add-off.patch * gdb-tdep-fix-arm-thumb2-hw-breakpoint.patch * gdb-testsuite-fix-gdb.cp-m-static.exp-on-arm.patch * gdb-testsuite-fix-gdb.dwarf2-dw2-fixed-point.exp-on-.patch * gdb-testsuite-fix-gdb.dwarf2-dw2-lines.exp-on-arm-li.patch * gdb-exp-fix-gdb.fortran-intrinsics.exp-fail-on-arm.patch * gdb-tdep-handle-sycall-statx-for-arm-linux.patch * gdb-tdep-fix-recording-of-t1-push.patch * gdb-tdep-handle-syscall-clock_gettime64-for-arm-linu.patch * fix-gdb.dwarf2-shortpiece.exp-on-s390x.patch * handle-address-class-annotation-for-s390x-in-some-te.patch * fix-gdb.dap-step-out.exp-on-s390x.patch * use-setvariable-in-gdb.dap-scopes.exp.patch * fix-gdb.base-finish-pretty.exp-on-s390x.patch * fix-gdb.base-readnever.exp-on-s390x.patch * add-dwarf_expr_piece.op.patch * add-gdbarch_dwarf2_reg_piece_offset-hook.patch * fix-gdb.base-store.exp-on-s390x.patch * fix-gdb.ada-o2_float_param.exp-on-s390x-linux.patch * gdb-testsuite-fix-gdb.base-branch-to-self.exp-on-arm.patch * gdb-tdep-fix-gdb.cp-non-trivial-retval.exp-on-riscv6.patch * gdb-testsuite-fix-gdb.cp-non-trivial-retval.exp-on-a.patch * gdb-testsuite-fix-gdb.rust-completion.exp-timeout-on.patch * gdb-testsuite-require-supports_process_record-in-gdb.patch * gdb-testsuite-fix-regexp-in-gdb.arch-i386-disp-step-.patch * gdb-testsuite-fix-gdb.arch-arm-single-step-kernel-he.patch * gdb-testsuite-fix-gdb.python-py-format-address.exp-o.patch * gdb-testsuite-fix-gdb.arch-riscv-tdesc-regs.exp.patch * gdb-testsuite-fix-gdb.base-list-dot-nodebug-and-make.patch * gdb-testsuite-fix-gdb.base-list-dot-nodebug.exp-on-o.patch * gdb-testsuite-fix-gdb.base-empty-host-env-vars.exp.patch * gdb-prune-inferior-after-switching-inferior.patch * gdb-testsuite-use-nostdlib-in-gdb.base-list-dot-node.patch * gdb-testsuite-fix-timeout-in-gdb.mi-mi-multi-command.patch * gdb-testsuite-require-can_spawn_for_attach-in-gdb.ba.patch * fixup-gdb-6.5-gcore-buffer-limit-test.patch * gdb-testsuite-fix-gdb.ada-big_packed_array.exp-on-s3.patch * gdb-testsuite-fix-gdb.ada-convvar_comp.exp-on-s390x-.patch * gdb-testsuite-fix-regexp-in-gdb.threads-stepi-over-c.patch OBS-URL: https://build.opensuse.org/package/show/devel:gcc/gdb?expand=0&rev=437
80 lines
2.8 KiB
Diff
80 lines
2.8 KiB
Diff
From eb20b0f725b114eb117093971cf0146113517e6b Mon Sep 17 00:00:00 2001
|
|
From: Tom de Vries <tdevries@suse.de>
|
|
Date: Fri, 16 Aug 2024 14:22:46 +0200
|
|
Subject: [PATCH 33/46] [gdb/testsuite] Fix
|
|
gdb.arch/arm-single-step-kernel-helper.exp
|
|
|
|
On arm-linux I run into:
|
|
...
|
|
(gdb) p *kernel_user_helper_version^M
|
|
Cannot access memory at address 0xffff0ffc^M
|
|
(gdb) FAIL: gdb.arch/arm-single-step-kernel-helper.exp: check kernel helper version
|
|
...
|
|
|
|
What the test-case is trying to do, is to access a special address in the arm
|
|
linux kernel [1] using ptrace, which doesn't seem to work.
|
|
|
|
This is with kernel version 6.1.55. Perhaps this used to work, but the kernel
|
|
was modified to be more strict with respect to access to this special address.
|
|
|
|
Fix this by making the inferior access that special address instead.
|
|
|
|
Tested on arm-linux.
|
|
|
|
Approved-By: Luis Machado <luis.machado@arm.com>
|
|
|
|
PR testsuite/32070
|
|
Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=32070
|
|
|
|
[1] https://www.kernel.org/doc/Documentation/arm/kernel_user_helpers.txt
|
|
---
|
|
gdb/testsuite/gdb.arch/arm-single-step-kernel-helper.c | 5 ++++-
|
|
gdb/testsuite/gdb.arch/arm-single-step-kernel-helper.exp | 5 ++++-
|
|
2 files changed, 8 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/gdb/testsuite/gdb.arch/arm-single-step-kernel-helper.c b/gdb/testsuite/gdb.arch/arm-single-step-kernel-helper.c
|
|
index 393004e623a..9b5e137992d 100644
|
|
--- a/gdb/testsuite/gdb.arch/arm-single-step-kernel-helper.c
|
|
+++ b/gdb/testsuite/gdb.arch/arm-single-step-kernel-helper.c
|
|
@@ -15,7 +15,8 @@
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
|
|
-static int *kernel_user_helper_version = (int *) 0xffff0ffc;
|
|
+static int *kernel_user_helper_version_ptr = (int *) 0xffff0ffc;
|
|
+static int kernel_user_helper_version;
|
|
|
|
typedef void * (kernel_user_func_t)(void);
|
|
#define kernel_user_get_tls (*(kernel_user_func_t *) 0xffff0fe0)
|
|
@@ -25,6 +26,8 @@ main (void)
|
|
{
|
|
int i;
|
|
|
|
+ kernel_user_helper_version = *kernel_user_helper_version_ptr;
|
|
+
|
|
for (i = 0; i < 8; i++)
|
|
kernel_user_get_tls ();
|
|
}
|
|
diff --git a/gdb/testsuite/gdb.arch/arm-single-step-kernel-helper.exp b/gdb/testsuite/gdb.arch/arm-single-step-kernel-helper.exp
|
|
index 27be5d56883..788bc863799 100644
|
|
--- a/gdb/testsuite/gdb.arch/arm-single-step-kernel-helper.exp
|
|
+++ b/gdb/testsuite/gdb.arch/arm-single-step-kernel-helper.exp
|
|
@@ -26,10 +26,13 @@ if { ![runto_main] } {
|
|
return -1
|
|
}
|
|
|
|
+# Initialize kernel_user_helper_version.
|
|
+gdb_test "next" "for .*"
|
|
+
|
|
# Check kernel helpers are supported or not.
|
|
|
|
set kernel_helper_supported 0
|
|
-gdb_test_multiple "p *kernel_user_helper_version" \
|
|
+gdb_test_multiple "p kernel_user_helper_version" \
|
|
"check kernel helper version" {
|
|
-re " = ($decimal)\r\n$gdb_prompt $" {
|
|
if { $expect_out(1,string) >= 1 } {
|
|
--
|
|
2.43.0
|
|
|