Source code of Windows XP (NT5)
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.

37 lines
882 B

  1. @rem ---------------------------------------------------------------
  2. @rem
  3. @rem Script to install the Cluster BVT Tests.
  4. @rem You are required to supply the directory to install the
  5. @rem tests in.
  6. @rem
  7. @rem Usage: setuptst c:\ClusterTest
  8. @rem
  9. @rem ----------------------------------------------------------------
  10. @if "%1" == "" goto usage
  11. @if "%1" == "/?" goto usage
  12. @if "%1" == "-?" goto usage
  13. md %1
  14. copy casread.txt %1
  15. copy castest.bat %1
  16. copy cluadms.pcd %1
  17. copy *.cas %1
  18. if "%PROCESSOR_ARCHITECTURE%" == "x86" goto copyx86
  19. copy %PROCESSOR_ARCHITECTURE%\* %1
  20. cd /d %1
  21. goto done
  22. :copyx86
  23. copy i386\* %1
  24. cd /d %1
  25. castest /?
  26. goto done
  27. :usage
  28. @echo ----------------------------------------------------------------
  29. @echo usage: setuptst destination_directory
  30. @echo eg: setuptst c:\clustertests
  31. @echo ----------------------------------------------------------------
  32. :done