[buildcore] Add test-verbose target

This commit is contained in:
2021-07-30 00:00:03 -05:00
parent f4580a742e
commit 3e3cfcaf7d
2 changed files with 20 additions and 0 deletions

View File

@ -26,6 +26,7 @@ SCRIPTS=${BUILDCORE_PATH}/scripts
SETUP_BUILD=${PYTHON3} ${SCRIPTS}/setup-build.py
PYBB=${PYTHON3} ${SCRIPTS}/pybb.py
CMAKE_BUILD=${PYBB} cmake-build
CTEST_ALL=${PYBB} ctest-verbose
RM_RF=${PYBB} rm
ifdef USE_VCPKG
ifndef VCPKG_DIR_BASE
@ -69,6 +70,9 @@ purge:
.PHONY: test
test: build
${ENV_RUN} ${CMAKE_BUILD} build test
.PHONY: test-verbose
test-verbose: build
${ENV_RUN} ${CTEST_ALL} build
.PHONY: devenv-image
devenv-image: