mirror of
https://github.com/ceph/ceph
synced 2024-12-18 01:16:55 +00:00
7d52372ae7
I sent a patch to xfstests upstream at http://article.gmane.org/gmane.comp.file-systems.fstests/1665, but until that's fixed we need a version that works in our test lab. Signed-off-by: Greg Farnum <gfarnum@redhat.com>
17 lines
385 B
Bash
Executable File
17 lines
385 B
Bash
Executable File
#!/bin/sh -x
|
|
|
|
set -e
|
|
|
|
git clone git://git.ceph.com/xfstests.git
|
|
cd xfstests
|
|
git checkout b7fd3f05d6a7a320d13ff507eda2e5b183cae180
|
|
make
|
|
cd ..
|
|
cp xfstests/ltp/fsx .
|
|
|
|
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
|