Creating an ext4 filesystem using '-O journal' will fail with: Invalid filesystem option set: journal I didn't do any archaeological investigation to check if this option ever existed, but the two tests using it will fail to create the scratch filesystems. Signed-off-by: Luis Henriques (SUSE) <luis.henriques@xxxxxxxxx> --- tests/ext4/012 | 2 +- tests/ext4/019 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/ext4/012 b/tests/ext4/012 index c49e8ef4483b..4cef19bf6be5 100755 --- a/tests/ext4/012 +++ b/tests/ext4/012 @@ -32,7 +32,7 @@ TESTDIR="${SCRATCH_MNT}/scratchdir" TESTFILE="${TESTDIR}/testfile" echo "+ create scratch fs" -_scratch_mkfs_ext4 -O journal > /dev/null 2>&1 +_scratch_mkfs_ext4 > /dev/null 2>&1 echo "+ mount fs image" _scratch_mount diff --git a/tests/ext4/019 b/tests/ext4/019 index ab5f50c66b6f..9db7f23bb608 100755 --- a/tests/ext4/019 +++ b/tests/ext4/019 @@ -32,7 +32,7 @@ TESTDIR="${SCRATCH_MNT}/scratchdir" TESTFILE="${TESTDIR}/testfile" echo "+ create scratch fs" -_scratch_mkfs_ext4 -O journal > /dev/null 2>&1 +_scratch_mkfs_ext4 > /dev/null 2>&1 echo "+ mount fs image" _scratch_mount