run-tests.bat 823 B

1234567891011121314151617181920
  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 OUTPUT_FILE_PREFIX=MonoTests.System.DirectoryServices
  16. set RUNNING_FIXTURE=MonoTests.System.Configuration
  17. call run-tests.test.bat %BUILD_OPTION% %SECURE_MODE% %OUTPUT_FILE_PREFIX% %RUNNING_FIXTURE%