From owner-svn-src-user@FreeBSD.ORG Fri Oct 4 11:16:49 2013 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 0591B15A; Fri, 4 Oct 2013 11:16:49 +0000 (UTC) (envelope-from pho@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E6BDF2654; Fri, 4 Oct 2013 11:16:48 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r94BGmdu082197; Fri, 4 Oct 2013 11:16:48 GMT (envelope-from pho@svn.freebsd.org) Received: (from pho@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r94BGmGv082196; Fri, 4 Oct 2013 11:16:48 GMT (envelope-from pho@svn.freebsd.org) Message-Id: <201310041116.r94BGmGv082196@svn.freebsd.org> From: Peter Holm Date: Fri, 4 Oct 2013 11:16:48 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r256047 - 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.14 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: Fri, 04 Oct 2013 11:16:49 -0000 Author: pho Date: Fri Oct 4 11:16:48 2013 New Revision: 256047 URL: http://svnweb.freebsd.org/changeset/base/256047 Log: Make sure mount point exists. Sponsored by: EMC / Isilon storage division Modified: user/pho/stress2/misc/fdescfs.sh Modified: user/pho/stress2/misc/fdescfs.sh ============================================================================== --- user/pho/stress2/misc/fdescfs.sh Fri Oct 4 11:11:51 2013 (r256046) +++ user/pho/stress2/misc/fdescfs.sh Fri Oct 4 11:16:48 2013 (r256047) @@ -41,6 +41,7 @@ D=$diskimage if [ $# -eq 0 ]; then # start the parallel tests for i in `jot $mounts`; do + [ -d ${mntpoint}$i ] || mkdir -p ${mntpoint}$i ./$0 $i & ./$0 find & done