From: Eric Biggers <ebiggers@xxxxxxxxxx> Grep the help output rather than the binary itself. This matches the detection method that was implemented in xfstests common/config. Signed-off-by: Eric Biggers <ebiggers@xxxxxxxxxx> --- kvm-xfstests/test-appliance/files/root/fs/f2fs/config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kvm-xfstests/test-appliance/files/root/fs/f2fs/config b/kvm-xfstests/test-appliance/files/root/fs/f2fs/config index 0efcb76..b0c2196 100644 --- a/kvm-xfstests/test-appliance/files/root/fs/f2fs/config +++ b/kvm-xfstests/test-appliance/files/root/fs/f2fs/config @@ -20,7 +20,7 @@ function format_filesystem() local dev="$1" local opts="$2" - if grep -q 'force overwrite' /sbin/mkfs.f2fs; then + if /sbin/mkfs.f2fs --help |& grep -q "[[:space:]]-f[[:space:]|]"; then # f2fs-tools v1.9+ opts+=" -f" fi -- 2.17.0.484.g0c8726318c-goog -- To unsubscribe from this list: send the line "unsubscribe fstests" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html