Whamcloud - gitweb
git://git.whamcloud.com
/
fs
/
lustre-release.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
LU-17046 tests: fix write success in 1g
[fs/lustre-release.git]
/
lustre
/
tests
/
racer
/
file_rm.sh
1
#!/bin/bash
2
trap 'kill $(jobs -p)' EXIT
3
4
DIR=$1
5
MAX=$2
6
7
while /bin/true ; do
8
file=$((RANDOM % MAX))
9
rm -rf $DIR/$file 2> /dev/null
10
sleep 1
11
done
12
13