Whamcloud - gitweb
9bd72f9165b779653f053c7d96b1da6237851e3c
[fs/lustre-release.git] / lustre / tests / racer / dir_create.sh
1 #!/bin/bash
2
3 DIR=$1
4 MAX=$2
5
6 create(){
7     echo "asdf" > $DIR/$file/$file/$file
8 }
9
10 while /bin/true ; do
11     file=$((RANDOM % MAX))
12     mkdir -p $DIR/$file/$file/ 2> /dev/null
13     create 2> /dev/null
14 done