Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
984 B

  1. break on
  2. md a:scratch.rt
  3. cd a:scratch.rt
  4. if exist *.dif del *.dif
  5. if exist *.out del *.out
  6. showtime >test.log
  7. echo FAT partition >>test.log
  8. set _ext=exp
  9. goto contlab
  10. :checkhpfs
  11. cmp -s c.exh c.out
  12. if errorlevel 1 goto badlab
  13. echo HPFS partition >>test.log
  14. set _ext=exh
  15. del c.out
  16. goto contlab
  17. :badlab
  18. echo ERROR - check partition >>test.log
  19. goto Done
  20. :contlab
  21. command /c quick2 a %_ext%
  22. command /c quick3 a %_ext%
  23. REM command /c quick4 a %_ext%
  24. REM command /c quick6 a %_ext%
  25. command /c quick8 a %_ext%
  26. command /c quick10 a %_ext%
  27. command /c quick11 a %_ext%
  28. REM command /c dostst a %_ext%
  29. command /c extras a %_ext%
  30. command /c limtest >>test.log
  31. command /c xmstest >>test.log
  32. REM remove work area
  33. cd a:..
  34. rd a:scratch.rt
  35. set _ext=
  36. type test.log
  37. goto Done
  38. :DirErr
  39. echo "Work directory (a:SCRATCH.RT) already exists -- Test stopped"
  40. goto Done
  41. :NoDir
  42. echo "Unable to make work directory (a:SCRATCH.RT) -- Test stopped"
  43. :Done