]> git.proxmox.com Git - ceph.git/blob - ceph/qa/workunits/suites/fsstress.sh
update sources to 12.2.10
[ceph.git] / ceph / qa / workunits / suites / fsstress.sh
1 #!/bin/bash
2
3 set -ex
4
5 mkdir -p fsstress
6 pushd fsstress
7 wget -q -O ltp-full.tgz http://download.ceph.com/qa/ltp-full-20091231.tgz
8 tar xzf ltp-full.tgz
9 pushd ltp-full-20091231/testcases/kernel/fs/fsstress
10 make
11 BIN=$(readlink -f fsstress)
12 popd
13 popd
14
15 T=$(mktemp -d -p .)
16 "$BIN" -d "$T" -l 1 -n 1000 -p 10 -v
17 rm -rf -- "$T"