mirror of
https://github.com/ceph/ceph
synced 2025-02-03 00:43:55 +00:00
11 lines
205 B
Bash
11 lines
205 B
Bash
|
#!/bin/sh -x
|
||
|
|
||
|
set -e
|
||
|
|
||
|
wget http://ceph.newdream.net/qa/fsx.c
|
||
|
gcc fsx.c -o 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
|