added fs testcase (works well for me)

This commit is contained in:
Anselm R. Garbe 2006-05-17 11:33:52 +02:00
parent ee466c60d1
commit cd58aceabf
1 changed files with 19 additions and 0 deletions

19
test/test_fs.sh Normal file
View File

@ -0,0 +1,19 @@
#!/bin/sh
# Heavy access test of wmiiwm's fs
dump_fs() {
echo $1
wmiir read $1|wmiir write $1;
for i in `wmiir read $1|awk '{print $10}'`
do
if test $i != "event"
then
dump_fs $1/$i
fi
done
}
while true
do
dump_fs /
done