From 7ebe83ddb788568181aa0916b23284cdce639b3c Mon Sep 17 00:00:00 2001 From: Peter Holm Date: Mon, 5 Jul 2021 09:14:05 +0200 Subject: stress2: Limit scope of rm(1) wildcard in cleanup. Reviewed by: rgrimes --- tools/test/stress2/misc/mmap3.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'tools') diff --git a/tools/test/stress2/misc/mmap3.sh b/tools/test/stress2/misc/mmap3.sh index 9175b77842f3..8a319377070f 100755 --- a/tools/test/stress2/misc/mmap3.sh +++ b/tools/test/stress2/misc/mmap3.sh @@ -42,12 +42,13 @@ while [ `date '+%s'` -lt $((start + 5 * 60)) ]; do ./mmap3 done echo "Expect Segmentation faults" -trap "rm -f /tmp/mmap3.0*" EXIT INT +trap "ls /tmp/mmap3* | grep -E 'mmap3\.[0-9]{6}\.[0-9]{4}$' | xargs rm -v" \ + EXIT INT start=`date '+%s'` while [ `date '+%s'` -lt $((start + 5 * 60)) ]; do ./mmap3 random done -rm -f mmap3 mmap3.core /tmp/mmap3.0* +rm -f mmap3 mmap3.core exit EOF -- cgit v1.2.3