mirror of
https://github.com/ceph/ceph
synced 2024-12-28 14:34:13 +00:00
33f0afdd15
This probably redirects to http://ceph.com but ceph.newdream.net still appears in some places http://tracker.ceph.com/issues/10615 Fixes: #10615 Related: #9922 Signed-off-by: Armando Segnini <armando.segnini@telecom-bretagne.eu>
14 lines
325 B
Bash
Executable File
14 lines
325 B
Bash
Executable File
#!/bin/sh -x
|
|
|
|
set -e
|
|
|
|
git clone git://ceph.com/git/xfstests.git
|
|
make -C xfstests
|
|
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
|