git: 83693c121aec - main - stress2: Fix cleanup
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 12 Feb 2026 10:32:48 UTC
The branch main has been updated by pho:
URL: https://cgit.FreeBSD.org/src/commit/?id=83693c121aecccf3499c52fcf409157ee604cd53
commit 83693c121aecccf3499c52fcf409157ee604cd53
Author: Peter Holm <pho@FreeBSD.org>
AuthorDate: 2026-02-12 10:32:24 +0000
Commit: Peter Holm <pho@FreeBSD.org>
CommitDate: 2026-02-12 10:32:24 +0000
stress2: Fix cleanup
---
tools/test/stress2/misc/syzkaller67.sh | 2 +-
tools/test/stress2/misc/syzkaller78.sh | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/tools/test/stress2/misc/syzkaller67.sh b/tools/test/stress2/misc/syzkaller67.sh
index d5dc340442ae..d08c2d4d43b5 100755
--- a/tools/test/stress2/misc/syzkaller67.sh
+++ b/tools/test/stress2/misc/syzkaller67.sh
@@ -95,5 +95,5 @@ mycc -o /tmp/$prog -Wall -Wextra -O0 -m32 /tmp/$prog.c || exit 1
(cd /tmp; timeout 2m ./$prog)
-rm -rf /tmp/$prog /tmp/$prog.c /tmp/syzkaller.*
+rm -rf /tmp/$prog /tmp/$prog.c /tmp/$prog.core /tmp/syzkaller.*
exit 0
diff --git a/tools/test/stress2/misc/syzkaller78.sh b/tools/test/stress2/misc/syzkaller78.sh
index 1858129d4c81..e279bd8f4d1f 100755
--- a/tools/test/stress2/misc/syzkaller78.sh
+++ b/tools/test/stress2/misc/syzkaller78.sh
@@ -278,5 +278,5 @@ while pgrep -q $prog; do sleep 2; done
while pkill swap; do :; done
wait
-rm -rf /tmp/$prog /tmp/$prog.c /tmp/$prog.core /tmp/$prog.?????? $work
+rm -rf /tmp/$prog /tmp/$prog.c /tmp/$prog.core $work
exit 0