Revert "xfstests 311: test fsync with dm flakey V3"

This reverts commit 2ca254dfdd.
Patch will be resubmitted
This commit is contained in:
Rich Johnston
2013-05-03 14:07:59 -05:00
parent 2ca254dfdd
commit 7f622f44b6
8 changed files with 8 additions and 1045 deletions
-1
View File
@@ -178,7 +178,6 @@ export FILEFRAG_PROG="`set_prog_path filefrag`"
export E4DEFRAG_PROG="`set_prog_path e4defrag`"
export LOGGER_PROG="`set_prog_path logger`"
export DBENCH_PROG="`set_prog_path dbench`"
export DMSETUP_PROG="`set_prog_path dmsetup`"
# Generate a comparable xfsprogs version number in the form of
# major * 10000 + minor * 100 + release
+7
View File
@@ -234,6 +234,13 @@ _filter_hole_fiemap()
_coalesce_extents
}
# Prints the md5 checksum of a given file
_md5_checksum()
{
md5sum $1 | cut -d ' ' -f1
}
_filter_bmap()
{
awk '
-23
View File
@@ -57,13 +57,6 @@ dd()
fi
}
# Prints the md5 checksum of a given file
_md5_checksum()
{
md5sum $1 | cut -d ' ' -f1
}
# ls -l w/ selinux sometimes puts a dot at the end:
# -rwxrw-r--. id1 id2 file1
@@ -1057,22 +1050,6 @@ _require_command()
[ -n "$1" -a -x "$1" ] || _notrun "$_cmd utility required, skipped this test"
}
# this test requires the device mapper flakey target
#
_require_dm_flakey()
{
_require_command $DMSETUP_PROG
modprobe dm-flakey >/dev/null 2>&1
$DMSETUP_PROG targets | grep flakey >/dev/null 2>&1
if [ $? -eq 0 ]
then
:
else
_notrun "This test requires dm flakey support"
fi
}
# this test requires the projid32bit feature to be available in
# mkfs.xfs
#