2010-01-20 10:27:08 +11:00
|
|
|
#! /bin/bash
|
2009-05-28 17:04:15 +02:00
|
|
|
# FS QA Test No. 049
|
|
|
|
|
#
|
|
|
|
|
# XFS on loop test
|
2001-01-15 05:01:19 +00:00
|
|
|
#
|
|
|
|
|
#-----------------------------------------------------------------------
|
2002-06-04 23:07:56 +00:00
|
|
|
# Copyright (c) 2000-2002 Silicon Graphics, Inc. All Rights Reserved.
|
2009-05-12 13:24:15 -05:00
|
|
|
#
|
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
|
# modify it under the terms of the GNU General Public License as
|
|
|
|
|
# published by the Free Software Foundation.
|
|
|
|
|
#
|
|
|
|
|
# This program is distributed in the hope that it would be useful,
|
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
#
|
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
|
# along with this program; if not, write the Free Software Foundation,
|
|
|
|
|
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
|
#
|
2001-01-15 05:01:19 +00:00
|
|
|
#-----------------------------------------------------------------------
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
seq=`basename $0`
|
2013-03-15 12:28:02 +00:00
|
|
|
seqres=$RESULT_DIR/$seq
|
2001-01-15 05:01:19 +00:00
|
|
|
echo "QA output created by $seq"
|
|
|
|
|
|
|
|
|
|
_cleanup()
|
|
|
|
|
{
|
2004-06-15 07:32:36 +00:00
|
|
|
cd /
|
2015-03-18 14:54:44 +11:00
|
|
|
umount $SCRATCH_MNT/test2 > /dev/null 2>&1
|
|
|
|
|
umount $SCRATCH_MNT/test > /dev/null 2>&1
|
2001-01-15 05:01:19 +00:00
|
|
|
rm -f $tmp.*
|
2005-12-09 02:52:22 +00:00
|
|
|
|
2013-03-15 12:28:02 +00:00
|
|
|
if [ -w $seqres.full ]
|
2001-01-15 05:01:19 +00:00
|
|
|
then
|
2013-03-15 12:28:02 +00:00
|
|
|
echo "--- mounts at end (after cleanup)" >> $seqres.full
|
|
|
|
|
mount >> $seqres.full
|
2001-01-15 05:01:19 +00:00
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
here=`pwd`
|
|
|
|
|
tmp=/tmp/$$
|
|
|
|
|
status=1 # failure is the default!
|
|
|
|
|
trap "_cleanup ; exit \$status" 0 1 2 3 15
|
|
|
|
|
|
|
|
|
|
# get standard environment, filters and checks
|
2013-03-15 12:28:04 +00:00
|
|
|
. ./common/rc
|
|
|
|
|
. ./common/filter
|
2001-01-15 05:01:19 +00:00
|
|
|
|
2004-06-15 07:32:36 +00:00
|
|
|
# real QA test starts here
|
|
|
|
|
_supported_fs xfs
|
|
|
|
|
_supported_os Linux
|
|
|
|
|
|
2001-01-15 05:01:19 +00:00
|
|
|
_log()
|
|
|
|
|
{
|
|
|
|
|
echo "--- $*"
|
2013-03-15 12:28:02 +00:00
|
|
|
echo "--- $*" >> $seqres.full
|
2001-01-15 05:01:19 +00:00
|
|
|
}
|
|
|
|
|
|
2003-08-29 06:04:54 +00:00
|
|
|
_require_nonexternal
|
2014-09-08 20:48:45 +10:00
|
|
|
_require_scratch_nocheck
|
2013-03-15 11:53:21 +00:00
|
|
|
_require_no_large_scratch_dev
|
2001-01-15 05:01:19 +00:00
|
|
|
_require_loop
|
2011-06-10 16:03:41 -05:00
|
|
|
_require_ext2
|
2001-01-15 05:01:19 +00:00
|
|
|
|
2013-03-15 12:28:02 +00:00
|
|
|
rm -f $seqres.full
|
2001-01-15 05:01:19 +00:00
|
|
|
|
2013-03-15 12:28:02 +00:00
|
|
|
echo "(dev=$SCRATCH_DEV, mount=$SCRATCH_MNT)" >> $seqres.full
|
|
|
|
|
echo "" >> $seqres.full
|
2001-01-15 05:01:19 +00:00
|
|
|
|
2013-03-15 12:28:02 +00:00
|
|
|
echo "--- mounts" >> $seqres.full
|
|
|
|
|
mount >> $seqres.full
|
2001-01-15 05:01:19 +00:00
|
|
|
|
|
|
|
|
_log "Create ext2 fs on scratch"
|
2013-03-15 12:28:02 +00:00
|
|
|
mkfs -t ext2 -F $SCRATCH_DEV >> $seqres.full 2>&1 \
|
2001-01-15 05:01:19 +00:00
|
|
|
|| _fail "!!! failed to mkfs ext2"
|
|
|
|
|
|
|
|
|
|
_log "Mount ext2 fs on scratch"
|
2013-03-15 12:28:02 +00:00
|
|
|
mount -t ext2 $SCRATCH_DEV $SCRATCH_MNT >> $seqres.full 2>&1 \
|
2001-01-15 05:01:19 +00:00
|
|
|
|| _fail "!!! failed to mount"
|
|
|
|
|
|
|
|
|
|
_log "Create xfs fs in file on scratch"
|
2014-01-20 13:28:38 +11:00
|
|
|
${MKFS_XFS_PROG} -f -dfile,name=$SCRATCH_MNT/test.xfs,size=40m \
|
2013-03-15 12:28:02 +00:00
|
|
|
>> $seqres.full 2>&1 \
|
2001-01-15 05:01:19 +00:00
|
|
|
|| _fail "!!! failed to mkfs xfs"
|
|
|
|
|
|
|
|
|
|
_log "Make mount points"
|
2013-03-15 12:28:02 +00:00
|
|
|
mkdir $SCRATCH_MNT/test $SCRATCH_MNT/test2 >> $seqres.full 2>&1 \
|
2001-01-15 05:01:19 +00:00
|
|
|
|| _fail "!!! failed to make mount points"
|
|
|
|
|
|
|
|
|
|
_log "Mount xfs via loop"
|
2013-03-15 12:28:02 +00:00
|
|
|
mount -t xfs -o loop $SCRATCH_MNT/test.xfs $SCRATCH_MNT/test >> $seqres.full 2>&1 \
|
2001-01-15 05:01:19 +00:00
|
|
|
|| _fail "!!! failed to loop mount xfs"
|
|
|
|
|
|
|
|
|
|
_log "stress"
|
2013-03-15 12:28:02 +00:00
|
|
|
$FSSTRESS_PROG -d $SCRATCH_MNT/test -n 1000 $FSSTRESS_AVOID >> $seqres.full 2>&1 \
|
2001-01-15 05:01:19 +00:00
|
|
|
|| _fail "!!! stress failed"
|
2005-12-09 02:52:22 +00:00
|
|
|
|
2001-01-15 05:01:19 +00:00
|
|
|
_log "clean"
|
2013-03-15 12:28:02 +00:00
|
|
|
rm -rf $SCRATCH_MNT/test/* >> $seqres.full 2>&1 \
|
2001-01-15 05:01:19 +00:00
|
|
|
|| _fail "!!! clean failed"
|
|
|
|
|
|
|
|
|
|
_log "create file for ext2 fs"
|
2013-03-15 12:28:02 +00:00
|
|
|
dd if=/dev/zero of=$SCRATCH_MNT/test/test.ext2 bs=1024 count=10240 >> $seqres.full 2>&1 \
|
2001-01-15 05:01:19 +00:00
|
|
|
|| _fail "!!! create file failed"
|
2005-12-09 02:52:22 +00:00
|
|
|
|
2001-01-15 05:01:19 +00:00
|
|
|
_log "Create ext2 fs in file on looped xfs"
|
2013-03-15 12:28:02 +00:00
|
|
|
echo y | mkfs -t ext2 $SCRATCH_MNT/test/test.ext2 >> $seqres.full 2>&1 \
|
2001-01-15 05:01:19 +00:00
|
|
|
|| _fail "!!! failed to mkfs ext2 on xfs"
|
|
|
|
|
|
|
|
|
|
_log "Mount ext2 on xfs via loop"
|
2013-03-15 12:28:02 +00:00
|
|
|
mount -t ext2 -o loop $SCRATCH_MNT/test/test.ext2 $SCRATCH_MNT/test2 >> $seqres.full 2>&1 \
|
2001-01-15 05:01:19 +00:00
|
|
|
|| _fail "!!! failed to loop mount xfs"
|
|
|
|
|
|
|
|
|
|
_log "stress ext2 on xfs via loop"
|
2013-03-15 12:28:02 +00:00
|
|
|
$FSSTRESS_PROG -d $SCRATCH_MNT/test2 -n 1000 $FSSTRESS_AVOID >> $seqres.full 2>&1 \
|
2005-12-09 02:52:22 +00:00
|
|
|
|| _fail "!!! stress ext2 failed"
|
2001-01-15 05:01:19 +00:00
|
|
|
|
|
|
|
|
_log "clean"
|
2013-03-15 12:28:02 +00:00
|
|
|
rm -rf $SCRATCH_MNT/test/* >> $seqres.full 2>&1 \
|
2001-01-15 05:01:19 +00:00
|
|
|
|| _fail "!!! clean failed"
|
2005-12-09 02:52:22 +00:00
|
|
|
|
2001-01-15 05:01:19 +00:00
|
|
|
_log "umount ext2 on xfs"
|
2015-03-18 14:54:44 +11:00
|
|
|
umount $SCRATCH_MNT/test2 >> $seqres.full 2>&1 \
|
2001-01-15 05:01:19 +00:00
|
|
|
|| _fail "!!! umount ext2 failed"
|
2005-12-09 02:52:22 +00:00
|
|
|
|
2001-01-15 05:01:19 +00:00
|
|
|
_log "umount xfs"
|
2015-03-18 14:54:44 +11:00
|
|
|
umount $SCRATCH_MNT/test >> $seqres.full 2>&1 \
|
2001-01-15 05:01:19 +00:00
|
|
|
|| _fail "!!! umount xfs failed"
|
2005-12-09 02:52:22 +00:00
|
|
|
|
2013-03-15 12:28:02 +00:00
|
|
|
echo "--- mounts at end (before cleanup)" >> $seqres.full
|
|
|
|
|
mount >> $seqres.full
|
2001-01-15 05:01:19 +00:00
|
|
|
|
|
|
|
|
# success, all done
|
|
|
|
|
status=0
|
|
|
|
|
exit
|