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

Peter Holm pho at FreeBSD.org
Fri Oct 4 11:16:49 UTC 2013


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


More information about the svn-src-user mailing list