Whamcloud - gitweb
git://git.whamcloud.com
/
fs
/
lustre-release.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
c6b96adffab1eedef05f06765c654f6e6796b555
[fs/lustre-release.git]
/
lustre
/
tests
/
runiozone
1
#!/bin/sh
2
SIZE=5g
3
COUNT=0
4
rm -f endiozone
5
while date; do
6
echo "Test #$COUNT"
7
iozone -i 0 -i 1 -f /mnt/lustre/test.$$ -s $SIZE 2>&1 || exit $?
8
COUNT=`expr $COUNT + 1`
9
[ -f endiozone ] && rm endiozone && exit 0
10
done | tee /tmp/iozone.log