Do info and header tests for all platforms.

This commit is contained in:
Rene Rivera
2021-01-04 16:43:23 -06:00
parent d990549214
commit 6bcceefb48

View File

@ -79,7 +79,8 @@ stages:
CXX_PATH=`which ${CXX}` CXX_PATH=`which ${CXX}`
echo "using ${TOOLSET} : : ${CXX_PATH} ;" > ${HOME}/user-config.jam echo "using ${TOOLSET} : : ${CXX_PATH} ;" > ${HOME}/user-config.jam
pushd test pushd test
b2 --debug-configuration -a toolset=${TOOLSET} ${B2_ARGS} b2 --verbose-test -a toolset=${TOOLSET} ${B2_ARGS} predef-info
b2 --debug-configuration -a toolset=${TOOLSET} ${B2_ARGS} predef predef-headers
popd popd
displayName: Test displayName: Test
@ -146,7 +147,8 @@ stages:
CXX_PATH=`which ${CXX}` CXX_PATH=`which ${CXX}`
echo "using ${TOOLSET} : : ${CXX_PATH} ;" > ${HOME}/user-config.jam echo "using ${TOOLSET} : : ${CXX_PATH} ;" > ${HOME}/user-config.jam
pushd test pushd test
b2 --debug-configuration -a toolset=${TOOLSET} ${B2_ARGS} b2 --verbose-test -a toolset=${TOOLSET} ${B2_ARGS} predef-info
b2 --debug-configuration -a toolset=${TOOLSET} ${B2_ARGS} predef predef-headers
popd popd
displayName: Test displayName: Test
@ -219,5 +221,6 @@ stages:
- script: | - script: |
set BOOST_BUILD_PATH=%BUILD_SOURCESDIRECTORY%/../build-develop set BOOST_BUILD_PATH=%BUILD_SOURCESDIRECTORY%/../build-develop
cd %BUILD_SOURCESDIRECTORY%/test cd %BUILD_SOURCESDIRECTORY%/test
%BUILD_SOURCESDIRECTORY%/../build-develop/b2.exe --debug-configuration -a toolset=%TOOLSET% %B2_ARGS% %BUILD_SOURCESDIRECTORY%/../build-develop/b2.exe --verbose-test -a toolset=%TOOLSET% %B2_ARGS% predef-info
%BUILD_SOURCESDIRECTORY%/../build-develop/b2.exe --debug-configuration -a toolset=%TOOLSET% %B2_ARGS% predef predef-headers
displayName: Test displayName: Test