svn commit: r364243 - user/pho/stress2/misc

Peter Holm pho at FreeBSD.org
Sat Aug 15 06:24:08 UTC 2020


Author: pho
Date: Sat Aug 15 06:24:07 2020
New Revision: 364243
URL: https://svnweb.freebsd.org/changeset/base/364243

Log:
  Added comment about fixed revision.
  Wait for "swap" to terminate.

Modified:
  user/pho/stress2/misc/syzkaller13.sh

Modified: user/pho/stress2/misc/syzkaller13.sh
==============================================================================
--- user/pho/stress2/misc/syzkaller13.sh	Sat Aug 15 06:21:39 2020	(r364242)
+++ user/pho/stress2/misc/syzkaller13.sh	Sat Aug 15 06:24:07 2020	(r364243)
@@ -68,6 +68,7 @@
 # $FreeBSD$
 
 # Reproduced on r361889
+# Fixed by r363682
 
 [ `uname -p` = "i386" ] && exit 0
 
@@ -242,8 +243,9 @@ mycc -o /tmp/syzkaller13 -Wall -Wextra -O2 /tmp/syzkal
 (cd ../testcases/swap; ./swap -t 1m -i 20 -h > /dev/null 2>&1) &
 (cd /tmp; ./syzkaller13) &
 sleep 60
-pkill -9 syzkaller13 swap
+while pkill swap; do sleep .1; done
+pkill -9 syzkaller13
 wait
 
-rm -f /tmp/syzkaller13 /tmp/syzkaller13.c /tmp/syzkaller13.core /tmp/file0
+rm -f /tmp/syzkaller13 /tmp/syzkaller13.* /tmp/file0
 exit 0


More information about the svn-src-user mailing list