]> git.apps.os.sepia.ceph.com Git - xfstests-dev.git/commitdiff
common/rc: teach _require_xfs_io_command accept multi-parameters
authorZorro Lang <zlang@redhat.com>
Thu, 19 May 2016 04:30:59 +0000 (12:30 +0800)
committerEryu Guan <eguan@redhat.com>
Wed, 15 Jun 2016 07:29:47 +0000 (15:29 +0800)
The $param can't be used for all command's options, for example
"help pwrite" include:

 -Z N -- zeed the random number generator (used when writing randomly)
         (heh, zorry, the -s/-S arguments were already in use in pwrite)

We should make param="-Z N", not only "-Z". After this patch, we can
run this function as:

  _require_xfs_io_command pwrite -Z N

Signed-off-by: Zorro Lang <zlang@redhat.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Eryu Guan <eguan@redhat.com>
Signed-off-by: Eryu Guan <eguan@redhat.com>
common/rc

index 51092a0644f0ff0745a4cf25678cad9b3ad2d00f..9c532cc1a52dcf2f89e767fef715b1e18e738d94 100644 (file)
--- a/common/rc
+++ b/common/rc
@@ -1874,7 +1874,8 @@ _require_xfs_io_command()
                exit 1
        fi
        command=$1
-       param=$2
+       shift
+       param="$*"
 
        testfile=$TEST_DIR/$$.xfs_io
        case $command in