From 2739fab817f2a71550052a8d6995a7ad14fac8e9 Mon Sep 17 00:00:00 2001 From: "Dmitry V. Levin" Date: Mon, 12 Jan 2026 15:11:22 +0000 Subject: [PATCH] tests: cksum: use more general strace syscall injection * tests/cksum/cksum-c.sh: Match "read" with a regex to match any of the read syscall variants. --- tests/cksum/cksum-c.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/cksum/cksum-c.sh b/tests/cksum/cksum-c.sh index 2e93ad6e1..b2b6c4759 100755 --- a/tests/cksum/cksum-c.sh +++ b/tests/cksum/cksum-c.sh @@ -202,18 +202,18 @@ grep 'the --tag option is meaningless when verifying checksums' err || fail=1 cksum -a md5 /dev/null | cksum --untagged --check || fail=1 # Ensure I/O errors handled appropriately -if strace -o /dev/null -P path -e fault=read:error=EIO true; then +if strace -o /dev/null -P path -e /read -e fault=all:error=EIO true; then touch ok eio || framework_failure_ cksum -a md5 eio ok > check.md5 || fail=1 # Test one of the files being checked returns EIO - returns_ 1 strace -o /dev/null -P eio -e fault=read:error=EIO \ + returns_ 1 strace -o /dev/null -P eio -e /read -e fault=all:error=EIO \ cksum --check check.md5 2>err >out || fail=1 printf '%s\n' 'eio: FAILED open or read' 'ok: OK' >exp || framework_failure_ compare exp out || fail=1 # Generate the expected error using cat: - strace -o /dev/null -P eio -e fault=read:error=EIO cat eio 2> exp.t + strace -o /dev/null -P eio -e /read -e fault=all:error=EIO cat eio 2> exp.t sed 's/cat/cksum/' < exp.t > exp && grep eio: exp && echo \ 'cksum: WARNING: 1 listed file could not be read' >>exp || framework_failure_ compare exp err || fail=1