Files
apfstests/common/defrag
T
Zhao Lei 7a1ad744f2 common: fix "utility required warning" with empty utility name
In generic/019, if we hadn't install fio, we will get following output:

 generic/019      [not run]  utility required, skipped this test <- *
 Not run: generic/019
 Passed all 0 tests

When fio is not installed, "$FIO_PROG" is set to blank, and
_require_fio() call _require_command() with none arguments.

This patch fixed all misuse of _require_command(), add 2nd argument
to let _require_command() output right message, and add quotes to
first argument to avoid argument shifting.

Signed-off-by: Zhao Lei <zhaolei@cn.fujitsu.com>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
2015-03-18 15:00:23 +11:00

157 lines
3.6 KiB
Plaintext

##/bin/bash
#
# Copyright (c) 2009 Eric Sandeen
# All Rights Reserved.
#
# 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
#
#
# Functions useful for defragmentation tests
#
_require_defrag()
{
case "$FSTYP" in
xfs)
DEFRAG_PROG="$XFS_FSR_PROG"
;;
ext4|ext4dev)
DEFRAG_PROG="$E4DEFRAG_PROG"
;;
btrfs)
DEFRAG_PROG="$BTRFS_UTIL_PROG filesystem defragment"
;;
*)
_notrun "defragmentation not supported for fstype \"$FSTYP\""
;;
esac
_require_command "$DEFRAG_PROG" defragment
_require_xfs_io_command "fiemap"
}
_extent_count()
{
$XFS_IO_PROG -c "fiemap" $1 >> $seqres.full 2>&1
$XFS_IO_PROG -c "fiemap" $1 | tail -n +2 | grep -v hole | wc -l| $AWK_PROG '{print $1}'
}
_check_extent_count()
{
min=$1
max=$2
ext_cnt=$3
[ "$min" -gt "$ext_cnt" ] && _fail "Found $ext_cnt extents min:$max"
[ "$max" -ne -1 ] && [ "$ext_cnt" -gt "$max" ] && _fail "Found $ext_cnt max: $max"
if [ $max -ne $min ]; then
echo "in_range($min, $max)"
else
echo "$ext_cnt"
fi
return $ext_cnt
}
# Defrag file, check it, and remove it.
_defrag()
{
min_before=0
max_before=-1
min_after=0
max_after=-1
csum=1
mtime=1
while [ $# -gt 1 ]
do
case $1
in
--min_before)
[ -z "$2" ] && _fail "missing argument for --min_before"
min_before=$2
shift
;;
--max_before)
[ -z "$2" ] && _fail "missing argument for --max_before"
max_before=$2
shift
;;
--min_after)
[ -z "$2" ] && _fail "missing argument for --min_after"
min_after=$2
shift
;;
--max_after)
[ -z "$2" ] && _fail "missing argument for --max_after"
max_after=$2
shift
;;
--before)
[ -z "$2" ] && _fail "missing argument for --before"
min_before=$2
max_before=$2
shift
;;
--after)
[ -z "$2" ] && _fail "missing argument for --after"
min_after=$2
max_after=$2
shift
;;
--no_csum)
csum=
;;
--no_mtime)
mtime=
;;
--no_unlink)
no_unlink=1
;;
*)
_fail "invalid argument to common/dump function: $1"
;;
esac
shift
done
echo -n "Before: "
ext_before=$(_extent_count $1)
_check_extent_count $min_before $max_before $ext_before
[ ! -z $csum ] && CSUM_BEFORE=`md5sum $1`
STAT_BEFORE=`stat -c "a: %x m: %y c: %z" $1`
$DEFRAG_PROG -v $1 >> $seqres.full 2>&1
_scratch_remount
STAT_AFTER=`stat -c "a: %x m: %y c: %z" $1`
[ ! -z $csum ] && CSUM_AFTER=`md5sum $1`
echo -n "After: "
ext_after=$(_extent_count $1)
_check_extent_count $min_after $max_after $ext_after
[ "$ext_before" -lt "$ext_after" ] && \
_fail "Number of extents increased after defragmentation," \
" before:$ext_before, after:$ext_after"
if [ ! -z $csum ] && [ "$CSUM_BEFORE" != "$CSUM_AFTER" ]; then
_fail "file checksum changed post-defrag ($CSUM_BEFORE/$CSUM_AFTER)"
fi
if [ ! -z $mtime ] && [ "$STAT_BEFORE" != "$STAT_AFTER" ]; then
_fail "file timestamps changed post-defrag:\n$STAT_BEFORE\n$STAT_AFTER"
fi
[ -z $no_unlink ] && rm -f $1
}