fstests: strip quotes from "$XFS_IO_PROG" call sites
[xfstests-dev.git] / common / rc
index ba8472b29e3beaa12e5794228b12d103e5d7a4e3..fe34bb7c63670d8a9b1be7b56e67336debd0ad92 100644 (file)
--- a/common/rc
+++ b/common/rc
@@ -90,7 +90,7 @@ _pwrite_byte() {
        file="$4"
        xfs_io_args="$5"
 
-       "$XFS_IO_PROG" $xfs_io_args -f -c "pwrite -S $pattern $offset $len" "$file"
+       $XFS_IO_PROG $xfs_io_args -f -c "pwrite -S $pattern $offset $len" "$file"
 }
 
 # mmap-write a byte into a range of a file
@@ -101,7 +101,7 @@ _mwrite_byte() {
        mmap_len="$4"
        file="$5"
 
-       "$XFS_IO_PROG" -f -c "mmap -rw 0 $mmap_len" -c "mwrite -S $pattern $offset $len" "$file"
+       $XFS_IO_PROG -f -c "mmap -rw 0 $mmap_len" -c "mwrite -S $pattern $offset $len" "$file"
 }
 
 # ls -l w/ selinux sometimes puts a dot at the end:
@@ -3437,7 +3437,7 @@ _xfs_bmapx_find() {
        file="$1"
        shift
 
-       "$XFS_IO_PROG" -c "bmap -${param}lpv" "$file" | grep -c "$@"
+       $XFS_IO_PROG -c "bmap -${param}lpv" "$file" | grep -c "$@"
 }
 
 _require_chattr()