]> git.apps.os.sepia.ceph.com Git - xfstests-dev.git/commitdiff
generic/075,112: detect preallocation support for fsx tests
authorChristoph Hellwig <hch@lst.de>
Fri, 15 Feb 2019 12:41:40 +0000 (13:41 +0100)
committerEryu Guan <guaneryu@gmail.com>
Sat, 16 Feb 2019 10:31:19 +0000 (18:31 +0800)
Currently generic/075 and generic/112 have two extra fsx passes each
that exercise fsx with preallocation, which are only enabled for
XFS.

These tests can also be run with other file systems, given that the
XFS prealloc ioctls are implemented in generic code since the
addition of the fallocate system call.  This also means a version of
XFS that does not support preallocation (e.g. because it always
writes out of place) can skip the prealloc tests while still
completing the normal fsx tests just fine.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Eryu Guan <guaneryu@gmail.com>
Signed-off-by: Eryu Guan <guaneryu@gmail.com>
tests/generic/075
tests/generic/112

index 2b95789157a892994b5e013260e13573fd068162..923c9e4f0a9082441338972d86fd21276cfc62e9 100755 (executable)
@@ -48,11 +48,9 @@ _do_test()
     echo "fsx.$_n : $_filter_param"
     echo "-----------------------------------------------"
 
-    if [ "$FSTYP" != "xfs" ]
-    then
-       if [ "$_n" = "1" -o "$_n" = "3" ]
-       then
-           # HACK: only xfs handles preallocation (-x) so just skip this test
+    # Skip the prealloc runs if the file system does not support preallocation
+    if [ "$_n" = "1" -o "$_n" = "3" ]; then
+        if [ -n "$testio" ]; then
            return
        fi
     fi
@@ -128,6 +126,12 @@ echo "brevity is wit..."
 
 _check_test_fs
 
+# check if preallocation is supported, xfs_io resvsp command only prints out
+# messages on failure.
+testfile=$TEST_DIR/$$.xfs_io
+testio=`$XFS_IO_PROG -f -c "resvsp 0 1" $testfile 2>&1`
+rm -f $testfile 2>&1 > /dev/null
+
 # Options:
 # -d: debug output for all operations
 # -l flen: the upper bound on file size (default 262144)
index 1879e7b5636919312efd16e97bcd8dd0a85791e2..18d610ee67bf50fa6ff8462982da0a119d735246 100755 (executable)
@@ -48,13 +48,11 @@ _do_test()
     echo "fsx.$_n : $_filter_param"
     echo "-----------------------------------------------"
 
-    if [ "$FSTYP" != "xfs" ]
-    then
-        if [ "$_n" = "1" -o "$_n" = "3" ]
-        then
-            # HACK: only xfs handles preallocation (-x) so just skip this test
-            return
-        fi
+    # Skip the prealloc runs if the file system does not support preallocation
+    if [ "$_n" = "1" -o "$_n" = "3" ]; then
+        if [ -n "$testio" ]; then
+           return
+       fi
     fi
 
     # This cd and use of -P gets full debug on $here (not TEST_DEV)
@@ -128,6 +126,12 @@ echo "brevity is wit..."
 
 _check_test_fs
 
+# check if preallocation is supported, xfs_io resvsp command only prints out
+# messages on failure.
+testfile=$TEST_DIR/$$.xfs_io
+testio=`$XFS_IO_PROG -f -c "resvsp 0 1" $testfile 2>&1`
+rm -f $testfile 2>&1 > /dev/null
+
 # Options:
 # -d: debug output for all operations
 # -l flen: the upper bound on file size (default 262144)