From owner-svn-src-user@freebsd.org Thu Feb 18 20:37:13 2016 Return-Path: Delivered-To: svn-src-user@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B84B7AACB60 for ; Thu, 18 Feb 2016 20:37:13 +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 mx1.freebsd.org (Postfix) with ESMTPS id 86686B51; Thu, 18 Feb 2016 20:37:13 +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 u1IKbCR3001089; Thu, 18 Feb 2016 20:37:12 GMT (envelope-from pho@FreeBSD.org) Received: (from pho@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u1IKbCrE001087; Thu, 18 Feb 2016 20:37:12 GMT (envelope-from pho@FreeBSD.org) Message-Id: <201602182037.u1IKbCrE001087@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pho set sender to pho@FreeBSD.org using -f From: Peter Holm Date: Thu, 18 Feb 2016 20:37:12 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r295770 - user/pho/stress2/misc X-SVN-Group: user 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.20 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, 18 Feb 2016 20:37:13 -0000 Author: pho Date: Thu Feb 18 20:37:12 2016 New Revision: 295770 URL: https://svnweb.freebsd.org/changeset/base/295770 Log: Add new finding and fix id checking. Sponsored by: EMC / Isilon Storage Division Modified: user/pho/stress2/misc/all.sh user/pho/stress2/misc/posix_fadvise3.sh Modified: user/pho/stress2/misc/all.sh ============================================================================== --- user/pho/stress2/misc/all.sh Thu Feb 18 20:20:36 2016 (r295769) +++ user/pho/stress2/misc/all.sh Thu Feb 18 20:37:12 2016 (r295770) @@ -185,7 +185,7 @@ minspace=$((1024 * 1024)) # in k [ `df -k $(dirname $RUNDIR) | tail -1 | awk '{print $4'}` -lt \ $minspace ] && echo "Warn: Not enough disk space on `dirname $RUNDIR` for \$RUNDIR" -grep -wq "$testuser" /etc/passwd || +id $testuser > /dev/null 2>&1 || { echo "\$testuser \"$testuser\" not found."; exit 1; } probe=`dirname $RUNDIR`/probe su $testuser -c "touch $probe" > /dev/null 2>&1 Modified: user/pho/stress2/misc/posix_fadvise3.sh ============================================================================== --- user/pho/stress2/misc/posix_fadvise3.sh Thu Feb 18 20:20:36 2016 (r295769) +++ user/pho/stress2/misc/posix_fadvise3.sh Thu Feb 18 20:37:12 2016 (r295770) @@ -32,6 +32,10 @@ # https://people.freebsd.org/~pho/stress/log/kostik855.txt # Fixed by r293197. +# Again on i386: +# https://people.freebsd.org/~pho/stress/log/kostik867.txt +# Fixed by r295716. + . ../default.cfg odir=`pwd`