home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume26 / lmdd / ddperf next >
Text File  |  1992-06-12  |  371b  |  35 lines

  1. #!/bin/sh
  2.  
  3. #
  4. # usage: ddperf mount_point
  5. #
  6. # test FSR, FSW
  7. #
  8. doit()
  9. {
  10.     umount $D
  11.     mount $D
  12.     $*
  13. }
  14.  
  15. if [ X$1 != X ]
  16. then    D=$1
  17. else    D=/home
  18. fi
  19.  
  20. if [ X$2 != X ]
  21. then    C=$2
  22. else    C=1k
  23. fi
  24.  
  25. echo WRITES
  26. for i in 1 2 3 4
  27. do     
  28.     lmdd if=internal of=$D/XXX count=$C rusage=1 fsync=1
  29. done
  30. echo READS
  31. for i in 1 2 3 4
  32. do     
  33.     doit lmdd of=internal if=$D/XXX count=$C rusage=1 fsync=1
  34. done
  35.