From 82b72e5d6c74ae5b78313c5abac4ea93dee53d79 Mon Sep 17 00:00:00 2001 From: timurgol007 Date: Fri, 26 Sep 2025 17:51:24 +0300 Subject: [PATCH] Enable process record testsuite for RISC-V When I ran GDB testsuite, I noticed that process record tests are not currently supported on RISC-V. This patch fixes it. Approved-By: Guinevere Larsen --- gdb/testsuite/lib/gdb.exp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp index 94978504a5b..797591801b3 100644 --- a/gdb/testsuite/lib/gdb.exp +++ b/gdb/testsuite/lib/gdb.exp @@ -3905,7 +3905,8 @@ proc supports_process_record {} { || [istarget "aarch64*-*-linux*"] || [istarget "loongarch*-*-linux*"] || [istarget "powerpc*-*-linux*"] - || [istarget "s390*-*-linux*"] } { + || [istarget "s390*-*-linux*"] + || [istarget "riscv*-*-*"] } { return 1 } -- 2.47.3