ext4: don't online scrub ever
[xfstests-dev.git] / common / fuzzy
index 304268e4a771792297a4583ab0cd1b7a1cebb7fc..ea22c3ef08a335222bd4b4935b000d70892644a5 100644 (file)
@@ -58,7 +58,7 @@ _scratch_fuzz_test() {
 # Do we have an online scrub program?
 _require_scrub() {
        case "${FSTYP}" in
-       "xfs"|"ext4")
+       "xfs")
                test -x "$XFS_SCRUB_PROG" || _notrun "xfs_scrub not found"
                ;;
        *)
@@ -70,7 +70,7 @@ _require_scrub() {
 # Scrub the scratch filesystem metadata (online)
 _scratch_scrub() {
        case "${FSTYP}" in
-       "xfs"|"ext4"|"ext3"|"ext2")
+       "xfs")
                $XFS_SCRUB_PROG -d -T -v "$@" $SCRATCH_MNT
                ;;
        *)