From: timurgol007 Date: Fri, 26 Sep 2025 14:51:24 +0000 (+0300) Subject: Enable process record testsuite for RISC-V X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=82b72e5d6c74ae5b78313c5abac4ea93dee53d79;p=thirdparty%2Fbinutils-gdb.git 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 --- 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 }