svn commit: r273628 - head/tools/regression/zfs

Garrett Cooper ngie at FreeBSD.org
Sat Oct 25 05:31:19 UTC 2014


Author: ngie
Date: Sat Oct 25 05:31:18 2014
New Revision: 273628
URL: https://svnweb.freebsd.org/changeset/base/273628

Log:
  Move the redirection to stderr out of the cmd variable assignment
  
  Putting 2>/dev/null in cmd= escapes the redirection operation, which causes
  mdconfig to think it's a filename
  
  MFC after: 2 weeks
  X-MFC with: r273627
  Sponsored by: EMC / Isilon Storage Division

Modified:
  head/tools/regression/zfs/misc.sh

Modified: head/tools/regression/zfs/misc.sh
==============================================================================
--- head/tools/regression/zfs/misc.sh	Sat Oct 25 04:52:48 2014	(r273627)
+++ head/tools/regression/zfs/misc.sh	Sat Oct 25 05:31:18 2014	(r273628)
@@ -167,8 +167,8 @@ create_memdisk()
 		if [ -n "${devname}" ]; then
 			devparam="-u ${devname}"
 		fi
-		cmd="mdconfig -a -t swap -s ${size} ${devparam} 2>/dev/null"
-		DISKNAME=`${cmd}` || die "failed: ${cmd}"
+		cmd="mdconfig -a -t swap -s ${size} ${devparam}"
+		DISKNAME=`$cmd 2>/dev/null` || die "failed: ${cmd}"
 		if [ -n "${devname}" ]; then
 			DISKNAME="${devname}"
 		fi


More information about the svn-src-head mailing list