run-tests.bat 1.0 KB

123456789101112131415161718192021222324252627
  1. @echo off
  2. REM ********************************************************
  3. REM This batch call all the test batches with default parameters
  4. REM ********************************************************
  5. REM ********************************************************
  6. REM This batch file receives the follwing parameters:
  7. REM build/rebuild (optional): should the solution file be rebuilded
  8. REM or just builded before test run (default is rebuild)
  9. REM ********************************************************
  10. IF "%1"=="" (
  11. set BUILD_OPTION=rebuild
  12. ) ELSE (
  13. set BUILD_OPTION=%1
  14. )
  15. set SECURE_MODE=nonsecure
  16. set OUTPUT_FILE_PREFIX=System_DirectoryServices
  17. set RUNNING_FIXTURE=MonoTests.System.DirectoryServices
  18. call run-tests.test.bat %BUILD_OPTION% %SECURE_MODE% %OUTPUT_FILE_PREFIX% %RUNNING_FIXTURE%
  19. set SECURE_MODE=secure
  20. set OUTPUT_FILE_PREFIX=System_DirectoryServices
  21. set RUNNING_FIXTURE=MonoTests.System.DirectoryServices
  22. REM call run-tests.test.bat %BUILD_OPTION% %SECURE_MODE% %OUTPUT_FILE_PREFIX% %RUNNING_FIXTURE%