From: Nathan Scott Date: Mon, 21 Jan 2002 20:47:24 +0000 (+0000) Subject: fix broken mkfs usage from previous checkin. X-Git-Tag: v1.1.0~1170 X-Git-Url: http://git.apps.os.sepia.ceph.com/?p=xfstests-dev.git;a=commitdiff_plain;h=d1eec2dcb4ecfee3d1acaca2fd28b626887b97ed fix broken mkfs usage from previous checkin. --- diff --git a/031 b/031 index c42fa1a2..34279388 100755 --- a/031 +++ b/031 @@ -107,25 +107,25 @@ echo "=== version 1, one entry" mkfs_xfs $MKFSV1 | _filter_mkfs >/dev/null 2>&1 _check_repair echo "=== version 2, one entry (shortform)" -mkfs $MKFSV2 | _filter_mkfs >/dev/null 2>&1 +mkfs_xfs $MKFSV2 | _filter_mkfs >/dev/null 2>&1 _check_repair # block-form root directory & repeat _create_proto 20 echo "=== version 1, twenty entries" -mkfs $MKFSV1 | _filter_mkfs >/dev/null 2>&1 +mkfs_xfs $MKFSV1 | _filter_mkfs >/dev/null 2>&1 _check_repair echo "=== version 2, twenty entries (block form)" -mkfs $MKFSV2 | _filter_mkfs >/dev/null 2>&1 +mkfs_xfs $MKFSV2 | _filter_mkfs >/dev/null 2>&1 _check_repair # leaf-form root directory & repeat _create_proto 1000 echo "=== version 1, thousand entries" -mkfs $MKFSV1 | _filter_mkfs >/dev/null 2>&1 +mkfs_xfs $MKFSV1 | _filter_mkfs >/dev/null 2>&1 _check_repair echo "=== version 2, thousand entries (leaf form)" -mkfs $MKFSV2 | _filter_mkfs >/dev/null 2>&1 +mkfs_xfs $MKFSV2 | _filter_mkfs >/dev/null 2>&1 _check_repair # success, all done diff --git a/065 b/065 index b0ed8f45..90293031 100755 --- a/065 +++ b/065 @@ -1,6 +1,6 @@ #! /bin/sh # XFS QA Test No. 065 -# $Id: 1.1 $ +# $Id: 065,v 1.2 2002/01/17 07:30:09 tes Exp $ # # Testing incremental dumps and cumulative restores with # "adding, deleting, renaming, linking, and unlinking files and @@ -79,6 +79,7 @@ _my_ls_filter() # too much hassle to get output matching with quotas turned on # so don't run it # +umount $SCRATCH_DEV 2>/dev/null mount -t xfs $SCRATCH_DEV $SCRATCH_MNT $here/src/feature -U $SCRATCH_DEV && _notrun "do not run with user quotas" $here/src/feature -G $SCRATCH_DEV && _notrun "do not run with group quotas"