mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
common: fix flink check
I don't have flink support in my xfsprogs, but it doesn't fail with "command not found" or whatever, it fails because I don't have the -T option, whereas Eric gets an error about $TEST_DIR being a directory because his xfs_io tries to open the directory first before it parses the options. So fix this by checking flink with these two cases and don't run if we hit either of them. Thanks, Signed-off-by: Josef Bacik <jbacik@fb.com> Reviewed-by: Eric Sandeen <sandeen@redhat.com> Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Dave Chinner <david@fromorbit.com>
This commit is contained in:
committed by
Dave Chinner
parent
49398f817a
commit
0fd4705782
@@ -1266,6 +1266,8 @@ _require_xfs_io_command()
|
||||
"flink" )
|
||||
testio=`$XFS_IO_PROG -T -F -c "flink $testfile" \
|
||||
$TEST_DIR 2>&1`
|
||||
echo $testio | egrep -q "invalid option|Is a directory" && \
|
||||
_notrun "xfs_io $command support is missing"
|
||||
;;
|
||||
*)
|
||||
testio=`$XFS_IO_PROG -c "$command help" 2>&1`
|
||||
|
||||
Reference in New Issue
Block a user