[PATCH] xfstests 271: use xfs_io to truncate file instead of truncate(1)

Eryu Guan guaneryu at gmail.com
Tue Jan 10 10:37:48 CST 2012


Distros(eg. RHEL5) with older version of coreutils have no truncate(1)
command. Use xfs_io instead to avoid "command not found" failures.

Signed-off-by: Eryu Guan <guaneryu at gmail.com>
---
 271 |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/271 b/271
index 58a7f91..b96d702 100755
--- a/271
+++ b/271
@@ -55,7 +55,7 @@ do
     dd if=/dev/zero of=$SCRATCH_MNT/file bs=4k count=1 seek=$((i*10))
 done
 # truncate last extent
-truncate $SCRATCH_MNT/file --size $((4096* 200))
+$XFS_IO_PROG -F -f -c "truncate $((4096*200))" $SCRATCH_MNT/file
 
 if ! _scratch_unmount; then
 	echo "failed to umount"
-- 
1.7.8.2




More information about the xfs mailing list