From owner-svn-src-user@freebsd.org Thu Oct 22 06:51:47 2020 Return-Path: Delivered-To: svn-src-user@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id D41EC440432 for ; Thu, 22 Oct 2020 06:51:47 +0000 (UTC) (envelope-from pho@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CGyhM5NCzz4Sd4; Thu, 22 Oct 2020 06:51:47 +0000 (UTC) (envelope-from pho@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9D43712B5A; Thu, 22 Oct 2020 06:51:47 +0000 (UTC) (envelope-from pho@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 09M6plPc041561; Thu, 22 Oct 2020 06:51:47 GMT (envelope-from pho@FreeBSD.org) Received: (from pho@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 09M6plUe041560; Thu, 22 Oct 2020 06:51:47 GMT (envelope-from pho@FreeBSD.org) Message-Id: <202010220651.09M6plUe041560@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pho set sender to pho@FreeBSD.org using -f From: Peter Holm Date: Thu, 22 Oct 2020 06:51:47 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r366928 - user/pho/stress2/misc X-SVN-Group: user X-SVN-Commit-Author: pho X-SVN-Commit-Paths: user/pho/stress2/misc X-SVN-Commit-Revision: 366928 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Oct 2020 06:51:47 -0000 Author: pho Date: Thu Oct 22 06:51:47 2020 New Revision: 366928 URL: https://svnweb.freebsd.org/changeset/base/366928 Log: Limit run time. Style fix while here. Modified: user/pho/stress2/misc/snap8.sh Modified: user/pho/stress2/misc/snap8.sh ============================================================================== --- user/pho/stress2/misc/snap8.sh Thu Oct 22 06:50:20 2020 (r366927) +++ user/pho/stress2/misc/snap8.sh Thu Oct 22 06:51:47 2020 (r366928) @@ -43,7 +43,8 @@ mdconfig -l | grep -q md$mdstart && mdconfig -d -u $md parallel=20 size=25 # Gb -[ `df -k $(dirname $diskimage) | tail -1 | awk '{print $4'}` -lt $((size * 1024 * 1024)) ] && \ +[ `df -k $(dirname $diskimage) | tail -1 | awk '{print $4'}` -lt \ + $((size * 1024 * 1024)) ] && \ echo "Not enough disk space." && exit 1 truncate -s ${size}G $diskimage @@ -55,7 +56,8 @@ mount /dev/md${mdstart}$part $mntpoint mycc -o /tmp/fstool -Wall ../tools/fstool.c for i in `jot $parallel`; do - (mkdir $mntpoint/test$i; cd $mntpoint/test$i; /tmp/fstool -l -f 50 -n 500 -s 8k) & + (mkdir $mntpoint/test$i; cd $mntpoint/test$i; \ + timeout 10m /tmp/fstool -l -f 50 -n 500 -s 8k) & done for i in `jot $parallel`; do wait