home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 8 Other / 08-Other.zip / fsb.zip / fsbench.cnf < prev    next >
Text File  |  1996-06-13  |  1KB  |  60 lines

  1. ; TEST - run benchmark
  2. ; first parametr is blocksize
  3. ; use blocksize n*512 for best results
  4.  
  5. ; HPFS allways divides read/write operation into 64K blocks
  6. ; using blocksize > 64K have no speed efect
  7.  
  8. ; second parameter is how many times, read/write block
  9. ; use bigger number to get smaller value error
  10.  
  11. ; next is type of operation
  12. ;   R - read block
  13. ;   W - write block
  14. ;   E - read block and rewrite the same block
  15.  
  16. ; next is direction
  17. ;   F - forward
  18. ;   B - backward
  19. ;   R - random (allways the same 'random' numbers)
  20.  
  21. ; and last is cache flag
  22. ; F - Full cache
  23. ; N - no cache
  24. ; W - write through cache
  25.  
  26.  
  27. ; CREATE  size - creates testfile for benchmark
  28. ; DELETE deletes testfile
  29. ; NAME filename - Use file filename for benchmark (good for CD-ROM tests)
  30. ; SIZE size of testile, use this only with NAME
  31.  
  32. SAY Read from cache (very depends on CPU and IFS driver)
  33. SIZE 128K
  34. CREATE
  35. TEST 2K  40K   R   F  F
  36. TEST 2K  50K   W   F  F
  37. TEST 2K  40K   W   F  N
  38. TEST 2K  20K E F N
  39. TEST 2K  20K E F F
  40. DELETE
  41.  
  42. Say Read from DISK
  43. SIZE 4M
  44. CREATE
  45. TEST 2K 15K R F F
  46. TEST 2K 15K R F N
  47. TEST 2K 15K W F F
  48. TEST 2K 15K W F N
  49. DELETE
  50.  
  51. SAY Network test (Optimized for tests on network drive)
  52. SIZE 64K
  53. CREATE
  54. TEST 512 16K W F F
  55. TEST 2K 6K W F F
  56. TEST 4K 2K W F F
  57. TEST 8K 333 W F F
  58. TEST 16K 333 W F F
  59. DELETE
  60.