I got an error about $TEST_DIR being a directory when xfs/273 ran, because xfs_io tried to open the directory first before it parsed the -T options. So fix it by checking this error. Signed-off-by: Xiao Yang <yangx.jy@xxxxxxxxxxxxxx> --- common/rc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/rc b/common/rc index 13afc6a..1be803b 100644 --- a/common/rc +++ b/common/rc @@ -2051,7 +2051,7 @@ _require_xfs_io_command() "fsmap" ) testio=`$XFS_IO_PROG -T -F -c "fsmap" \ $TEST_DIR 2>&1` - echo $testio | egrep -q "Inappropriate ioctl" && \ + echo $testio | egrep -q "Inappropriate ioctl|Is a directory" && \ _notrun "xfs_io $command support is missing" ;; *) -- 1.8.3.1 -- 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