common/rc: fix _require_xfs_io_command params check
[xfstests-dev.git] / common / rc
index 9d7b78306b0df0f92fd96e95464e3bebdf102c5a..44b98f6f0445dd50530915388fb71cced371e7fb 100644 (file)
--- a/common/rc
+++ b/common/rc
@@ -2212,9 +2212,14 @@ _require_xfs_io_command()
        echo $testio | grep -q "Function not implemented" && \
                _notrun "xfs_io $command support is missing (missing syscall?)"
 
-       if [ -n "$param" -a $param_checked -eq 0 ]; then
+       [ -n "$param" ] || return
+
+       if [ $param_checked -eq 0 ]; then
                $XFS_IO_PROG -c "help $command" | grep -q "^ $param --" || \
                        _notrun "xfs_io $command doesn't support $param"
+       else
+               echo $testio | grep -q "invalid option" && \
+                       _notrun "xfs_io $command doesn't support $param"
        fi
 }