https://bugs.kde.org/show_bug.cgi?id=468575
--- Comment #38 from Mark Wielaard <m...@klomp.org> --- The none/tests/procfs-linux (stderr) issue was a change in the handling of readlinkat. Adding a POST handler fixes it and makes the test pass: diff --git a/coregrind/m_syswrap/syswrap-riscv64-linux.c b/coregrind/m_syswrap/syswrap-riscv64-linux.c index b959bc861..602d4ad38 100644 --- a/coregrind/m_syswrap/syswrap-riscv64-linux.c +++ b/coregrind/m_syswrap/syswrap-riscv64-linux.c @@ -386,7 +386,7 @@ static SyscallTableEntry syscall_main_table[] = { LINX_(__NR_vmsplice, sys_vmsplice), /* 75 */ LINX_(__NR_splice, sys_splice), /* 76 */ LINX_(__NR_tee, sys_tee), /* 77 */ - LINX_(__NR_readlinkat, sys_readlinkat), /* 78 */ + LINXY(__NR_readlinkat, sys_readlinkat), /* 78 */ LINXY(__NR_newfstatat, sys_newfstatat), /* 79 */ GENXY(__NR_fstat, sys_newfstat), /* 80 */ GENX_(__NR_sync, sys_sync), /* 81 */ -- You are receiving this mail because: You are watching all bug changes.