diff mbox series

[1/2] common: Fix recovery tests for tmpfs

Message ID 20210426205012.13241-2-jack@suse.cz (mailing list archive)
State New, archived
Headers show
Series fstests: Improve tmpfs handling | expand

Commit Message

Jan Kara April 26, 2021, 8:50 p.m. UTC
Tmpfs doesn't support metadata journalling. Recognize it as such.

Signed-off-by: Jan Kara <jack@suse.cz>
---
 common/rc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/common/rc b/common/rc
index 11ff7635700b..2dd1b8ad9e35 100644
--- a/common/rc
+++ b/common/rc
@@ -3441,7 +3441,7 @@  _has_metadata_journaling()
 	fi
 
 	case "$FSTYP" in
-	ext2|vfat|msdos|udf|exfat)
+	ext2|vfat|msdos|udf|exfat|tmpfs)
 		echo "$FSTYP does not support metadata journaling"
 		return 1
 		;;