mirror of
https://github.com/ceph/ceph
synced 2024-12-16 00:15:35 +00:00
11 lines
205 B
Bash
Executable File
11 lines
205 B
Bash
Executable File
#!/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
|