mirror of
https://github.com/ceph/ceph
synced 2024-12-20 10:23:24 +00:00
24ec3201ed
This patch change the fsx.sh to pull better fsx.c from xfstests site to support hole punching test. Signed-off-by: Yunchuan Wen <yunchuanwen@ubuntukylin.com> Signed-off-by: Li Wang <liwang@ubuntukylin.com>
12 lines
239 B
Bash
Executable File
12 lines
239 B
Bash
Executable File
#!/bin/sh -x
|
|
|
|
set -e
|
|
|
|
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
|