From: fsgqa Date: Thu, 1 Jul 2004 00:20:03 +0000 (+0000) Subject: Cleanup mkfs on scratch device for arbitrary filesystems. X-Git-Tag: v1.1.0~818 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=35257f5420dcfade57fe82dc98e0bf30e0ed5c87;p=xfstests-dev.git Cleanup mkfs on scratch device for arbitrary filesystems. --- diff --git a/common.rc b/common.rc index 13401c32..d7b71b32 100644 --- a/common.rc +++ b/common.rc @@ -189,14 +189,8 @@ _scratch_mkfs() udf*) $MKFS_PROG -t $FSTYP $MKFS_OPTIONS $* > /dev/null ;; - ext2) - mkfs.ext2 $MKFS_OPTIONS $* $SCRATCH_DEV > /dev/null - ;; - ext3) - mkfs.ext3 $MKFS_OPTIONS $* $SCRATCH_DEV > /dev/null - ;; - reiserfs) - mkfs.reiserfs $MKFS_OPTIONS $* $SCRATCH_DEV > /dev/null + *) + /sbin/mkfs -t $FSTYP $MKFS_OPTIONS $* $SCRATCH_DEV > /dev/null ;; esac }