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

Peter Holm pho at FreeBSD.org
Thu Feb 27 06:36:29 UTC 2020


Author: pho
Date: Thu Feb 27 06:36:28 2020
New Revision: 358368
URL: https://svnweb.freebsd.org/changeset/base/358368

Log:
  Limit runtime.

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

Modified: user/pho/stress2/misc/callout_reset_on.sh
==============================================================================
--- user/pho/stress2/misc/callout_reset_on.sh	Thu Feb 27 06:33:11 2020	(r358367)
+++ user/pho/stress2/misc/callout_reset_on.sh	Thu Feb 27 06:36:28 2020	(r358368)
@@ -328,7 +328,7 @@ for i in `jot 40`; do
 	for j in `jot $N`; do
 		wait
 	done
-	[ $((`date '+%s'` - start)) -gt 1800 ] && break
+	[ $((`date '+%s'` - start)) -gt 1200 ] && break
 done
 rm -f /tmp/crwriter /tmp/crlogger ./barrier.*
 exit 0


More information about the svn-src-user mailing list