sh w-racer.sh $(OPT) nfs 60
sh w-racer.sh $(OPT) nfs 60
+ls_test:
+ sh ls_test.sh
+
wtest2:
sh w-racer.sh $(OPT) ext2 30
sh w-racer.sh $(OPT) ext3 30
sh w-racer.sh $(OPT) ext4 30
- #sh w-racer.sh $(OPT) xfs 30
+ sh w-racer.sh $(OPT) xfs 30
#sh w-racer.sh $(OPT) reiserfs 30
- #sh w-racer.sh $(OPT) tmpfs 30
+ sh w-racer.sh $(OPT) tmpfs 30
wtest_quick:
sh w-racer.sh $(OPT) ext2 5
--- /dev/null
+#!/bin/sh
+
+date >> ls_test.log
+while true; do ls -l /tmp/r 2>/dev/null|grep ??? >>ls_test.log;sleep 0.01;done &
+
+echo "ext2" >> ls_test.log
+./w-racer.sh ext2 60
+echo "ext3" >> ls_test.log
+./w-racer.sh ext3 60
+echo "ext4" >> ls_test.log
+./w-racer.sh ext4 60
+echo "xfs" >> ls_test.log
+./w-racer.sh xfs 60
+echo "tmpfs" >> ls_test.log
+./w-racer.sh tmpfs 60
+echo "reiser" >> ls_test.log
+w-racer.sh reiserfs 60
+
+kill %1