generic/{094,225}: skip test when the xfs rt extent size is larger than 1 fsb
[xfstests-dev.git] / tests / generic / 094
old mode 100644 (file)
new mode 100755 (executable)
index a51738a..8c29247
@@ -1,32 +1,17 @@
 #! /bin/bash
-# FS QA Test No. 094
-#
-# Run the fiemap (file extent mapping) tester with preallocation enabled
-#
-#-----------------------------------------------------------------------
+# SPDX-License-Identifier: GPL-2.0
 # Copyright (c) 2015 Facebook.  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.
+# FS QA Test No. 094
 #
-# 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
-#-----------------------------------------------------------------------
+# Run the fiemap (file extent mapping) tester with preallocation enabled
 #
-
 seq=`basename $0`
 seqres=$RESULT_DIR/$seq
 echo "QA output created by $seq"
 
 here=`pwd`
-tmp=tmp/$$
+tmp=/tmp/$$
 status=1  # failure is the default!
 trap "_cleanup; exit \$status" 0 1 2 3 15
 
@@ -42,8 +27,8 @@ _cleanup()
 
 # real QA test starts here
 _supported_fs generic
-_supported_os Linux
 _require_scratch
+_require_odirect
 _require_xfs_io_command "fiemap"
 _require_xfs_io_command "falloc"
 
@@ -55,6 +40,11 @@ fiemapfile=$SCRATCH_MNT/$seq.fiemap
 
 _require_test_program "fiemap-tester"
 
+# FIEMAP test doesn't like finding unwritten blocks after it punches out
+# a partial rt extent.
+test "$FSTYP" = "xfs" && \
+       _require_file_block_size_equals_fs_block_size $fiemapfile
+
 seed=`date +%s`
 
 echo "using seed $seed" >> $seqres.full