home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 August - Disc 3 / chip_20018103_hu.iso / segedlet / arj32v3i.exe / TESTARJ3.BAT < prev    next >
Encoding:
DOS Batch File  |  1999-09-30  |  2.0 KB  |  41 lines

  1. REM TESTARJ3.BAT, ARJ, 08/04/99
  2. echo off
  3. echo  .
  4. echo  TESTARJ3.BAT - batch file to test the reliability of ARJ
  5. echo  .
  6. echo  This is a batch file to test the reliability of ARJ compressing and
  7. echo  decompressing all of your files.  This test will take a LONG TIME
  8. echo  (HOURS, MAYBE DAYS) and will process all of the files on your C: drive
  9. echo  in six phases.  You can interrupt or shorten any test phase by 
  10. echo  pressing CTRL BREAK.  You can also shorten this test by editing this
  11. echo  batch file and deleting the lines with -m2, -m3, and -m4.  This test
  12. echo  will create files named TESTVOL$.### and then delete them.  If the
  13. echo  test proceeds to its end successfully, you will know that ARJ is
  14. echo  compatible with your computer and its files.
  15. echo  .
  16. echo  Please NOTE that this program is very CPU and DISK intensive and will
  17. echo  strongly stress a computer system possibly revealing hidden software
  18. echo  or hardware problems.
  19. echo  .
  20. echo  COMMAND SYNTAX:  testarj3 execute
  21. echo  .
  22. if NOT "%1" == "execute" pause
  23. if NOT "%1" == "execute" goto end
  24.  
  25. echo on
  26. ARJ32 a testvol$.000 c:\*.* -i1 -jm -r -v360dtestvol$.* -xtestvol$.* -xtestarj3.inx -y -jf -jitestarj3.inx -jt1 -jv -hq2 -hk
  27. if errorlevel 1 pause
  28. ARJ32 a testvol$.000 c:\*.* -i1 -m1 -r -v360dtestvol$.* -xtestvol$.* -xtestarj3.inx -y -jf -jitestarj3.inx -jt1 -jv -hq2 -hk
  29. if errorlevel 1 pause
  30. ARJ32 a testvol$.000 c:\*.* -i1 -m2 -r -v360dtestvol$.* -xtestvol$.* -xtestarj3.inx -y -jf -jitestarj3.inx -jt1 -jv -hq2 -hk
  31. if errorlevel 1 pause
  32. ARJ32 a testvol$.000 c:\*.* -i1 -m3 -r -v360dtestvol$.* -xtestvol$.* -xtestarj3.inx -y -jf -jitestarj3.inx -jt1 -jv -hq2 -hk
  33. if errorlevel 1 pause
  34. ARJ32 a testvol$.000 c:\*.* -i1 -m4 -r -v360dtestvol$.* -xtestvol$.* -xtestarj3.inx -y -jf -jitestarj3.inx -jt1 -jv -hq2 -hk
  35. if errorlevel 1 pause
  36. ARJ32 a testvol$.000 c:\*.* -i1 -m0 -r -v360dtestvol$.* -xtestvol$.* -xtestarj3.inx -y -jf -jitestarj3.inx -jt1 -jv -hq2 -hk
  37. if errorlevel 1 pause
  38. del testvol$.*
  39. REM end of test
  40. :end
  41.