QA test 004 updated to stash full mkfs output in .full file for reference

This commit is contained in:
fsgqa
2003-05-19 04:59:03 +00:00
parent 9fcfacdeb5
commit 7e9237bc4d
+2 -1
View File
@@ -56,7 +56,8 @@ trap "_cleanup" 0 1 2 3 15
_populate_scratch()
{
mkfs_xfs $SCRATCH_DEV | _filter_mkfs 2>$tmp.mkfs
echo "=== mkfs output ===" >>$seq.full
mkfs_xfs $SCRATCH_DEV | tee -a $seq.full | _filter_mkfs 2>$tmp.mkfs
source $tmp.mkfs
mount -t xfs $SCRATCH_DEV $SCRATCH_MNT
dd if=/dev/zero of=$SCRATCH_MNT/foo count=200 bs=4096 >/dev/null 2>&1 &