run-tests.bat 727 B

123456789101112131415161718192021
  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. call run-tests.test.disconnected.bat %BUILD_OPTION%
  16. call run-tests.test.connected.bat %BUILD_OPTION%