Extend Drone MSVC tests

This commit is contained in:
Richard Hodges
2021-03-16 00:28:58 +01:00
parent 1a5aea3d86
commit 4f120a6d4f
2 changed files with 8 additions and 0 deletions

View File

@@ -20,9 +20,16 @@ b2 headers
echo "============> SCRIPT"
echo "Running tests"
b2 --debug-configuration variant=%VARIANT% cxxstd=%CXXSTD% define=%DEFINE% address-model=%ADDRESS_MODEL% toolset=%TOOLSET% --verbose-test libs/beast/test -j3
if %errorlevel% neq 0 exit /b %errorlevel%
echo "Running libs/beast/example"
b2 --debug-configuration variant=%VARIANT% cxxstd=%CXXSTD% define=%DEFINE% address-model=%ADDRESS_MODEL% toolset=%TOOLSET% libs/beast/example -j3
if %errorlevel% neq 0 exit /b %errorlevel%
echo "Running run-fat-tests"
b2 --debug-configuration variant=%VARIANT% cxxstd=%CXXSTD% define=%DEFINE% address-model=%ADDRESS_MODEL% toolset=%TOOLSET% --verbose-test libs/beast/test//run-fat-tests -j3
if %errorlevel% neq 0 exit /b %errorlevel%
echo "============> COMPLETED"