From: Sage Weil Date: Mon, 30 Jun 2014 14:05:04 +0000 (-0700) Subject: qa/workunits/suites/fsx.sh: don't use zero range X-Git-Tag: v0.80.2~15 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=d43e7113dd501aea1db33fdae30d56e96e9c3897;p=ceph.git qa/workunits/suites/fsx.sh: don't use zero range Zero range is not supported by cephfs. Fixes: #8542 Signed-off-by: Sage Weil (cherry picked from commit 2dec8a810060f65d022c06e82090b4aa5ccec0cb) --- diff --git a/qa/workunits/suites/fsx.sh b/qa/workunits/suites/fsx.sh index 3a21194e0cd2..962d338657d8 100755 --- a/qa/workunits/suites/fsx.sh +++ b/qa/workunits/suites/fsx.sh @@ -6,6 +6,8 @@ git clone git://ceph.newdream.net/git/xfstests.git make -C xfstests cp xfstests/ltp/fsx . -./fsx 1MB -N 50000 -p 10000 -l 1048576 -./fsx 10MB -N 50000 -p 10000 -l 10485760 -./fsx 100MB -N 50000 -p 10000 -l 104857600 +OPTIONS="-z" # don't use zero range calls; not supported by cephfs + +./fsx $OPTIONS 1MB -N 50000 -p 10000 -l 1048576 +./fsx $OPTIONS 10MB -N 50000 -p 10000 -l 10485760 +./fsx $OPTIONS 100MB -N 50000 -p 10000 -l 104857600