From owner-svn-src-user@freebsd.org Thu Feb 4 19:30:25 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 7DF63A9CBAF for ; Thu, 4 Feb 2016 19:30:25 +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 594EA3A7; Thu, 4 Feb 2016 19:30:25 +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 u14JUOWR093072; Thu, 4 Feb 2016 19:30:24 GMT (envelope-from pho@FreeBSD.org) Received: (from pho@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u14JUO9K093071; Thu, 4 Feb 2016 19:30:24 GMT (envelope-from pho@FreeBSD.org) Message-Id: <201602041930.u14JUO9K093071@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pho set sender to pho@FreeBSD.org using -f From: Peter Holm Date: Thu, 4 Feb 2016 19:30:24 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r295275 - 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, 04 Feb 2016 19:30:25 -0000 Author: pho Date: Thu Feb 4 19:30:24 2016 New Revision: 295275 URL: https://svnweb.freebsd.org/changeset/base/295275 Log: Updated the exclude list. Move the check for the non-root test user up before using it. Noticed by bob prohaska Fix access check to $RUNDIR. Sponsored by: EMC / Isilon Storage Division Modified: user/pho/stress2/misc/all.sh Modified: user/pho/stress2/misc/all.sh ============================================================================== --- user/pho/stress2/misc/all.sh Thu Feb 4 18:12:42 2016 (r295274) +++ user/pho/stress2/misc/all.sh Thu Feb 4 19:30:24 2016 (r295275) @@ -43,8 +43,7 @@ # crossmp4.sh Known nullfs issue 20150523 # crossmp6.sh Known lockd issue 20150625 # dfull.sh umount stuck in "mount drain" 20111227 -# ext2fs.sh Deadlock 20120510 -# ext2fs2.sh panic 20140716 +# full.sh OOM 20160116 # fuse.sh Memory corruption seen in log file kostik734.txt 20141114 # fuse2.sh Deadlock seen 20121129 # fuse3.sh Deadlock seen 20141120 @@ -62,11 +61,17 @@ # mkfifo.sh Page fault in softdep_count_dependencies+0x27 seen 20150524 # mmap18.sh panic: vm_fault_copy_entry: main object missing page 20141015 # mmap21.sh rangelock issue? 20150326 +# msdos4.sh OOM 20160115 # msdos5.sh Panic: Freeing unused sector ... 20141118 # newfs4.sh Deadlock seen 20150906 # nfs10.sh Double fault 20151013 +# oovm.sh WiP 20151206 +# oovm2.sh WiP 20151206 # pfl3.sh panic: handle_written_inodeblock: live inodedep 20140812 # pmc.sh NMI ... going to debugger 20111217 +# posix_openpt2.sh +# WiP 20160109 +# pty.sh WiP 20160111 # snap5-1.sh mksnap_ffs deadlock 20111218 # quota2.sh panic: dqflush: stray dquot 20120221 # quota3.sh panic: softdep_deallocate_dependencies: unrecovered ... 20111222 @@ -84,6 +89,7 @@ # suj11.sh panic: ufsdirhash_newblk: bad offset 20120118 # suj13.sh general protection fault in bufdaemon 20141130 # suj18.sh panic: Bad tailq NEXT(0xc1e2a6088->tqh_last_s) != NULL 20120213 +# suj29.sh OOM 20160116 # suj30.sh panic: flush_pagedep_deps: MKDIR_PARENT 20121020 # suj34.sh Various hangs and panics (SUJ + NULLFS iisue) 20131210 # swap3.sh WiP 20151120 @@ -97,10 +103,9 @@ # Test not to run for other reasons: # fuzz.sh A know issue +# marcus3.sh OK, but runs for a long time +# marcus4.sh OK, but runs for a long time # statfs.sh Not very interesting -# syscall.sh OK, but runs for a very long time -# syscall2.sh OK, but runs for a very long time -# syscall3.sh OK, but syscall4.sh is better # vunref.sh No problems ever seen # vunref2.sh No problems ever seen @@ -180,14 +185,14 @@ 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 || + { echo "\$testuser \"$testuser\" not found."; exit 1; } probe=`dirname $RUNDIR`/probe su $testuser -c "touch $probe" > /dev/null 2>&1 -[ -f `dirname $RUNDIR`/probe ] && rm $probe || +[ -f $probe ] && rm $probe || { echo "No write access to `dirname $RUNDIR`."; exit 1; } [ `swapinfo | wc -l` -eq 1 ] && echo "Consider adding a swap disk. Many tests rely on this." -grep -wq "$testuser" /etc/passwd || - { echo "\$testuser not found."; exit 1; } [ -x ../testcases/run/run ] || { echo "Please run \"cd stress2; make\" first." && exit 1; } ping -c 2 -t 2 $BLASTHOST > /dev/null 2>&1 ||