build-style/cmake.sh: add generic do_check function.

Closes #9391.
This commit is contained in:
maxice8 2017-11-20 20:34:40 -02:00 committed by Enno Boland
parent 591108d13e
commit dd231e7a14
1 changed files with 16 additions and 0 deletions

View File

@ -47,6 +47,22 @@ do_build() {
${make_cmd} ${makejobs} ${make_build_args} ${make_build_target}
}
do_check() {
if [ -z "$make_cmd" ] && [ -z "$make_check_target" ]; then
if ! make -q test 2>/dev/null; then
if [ $? -eq 2 ]; then
msg_warn 'No target to "make test".\n'
return 0
fi
fi
fi
: ${make_cmd:=make}
: ${make_check_target:=test}
${make_cmd} ${make_check_args} ${make_check_target}
}
do_install() {
: ${make_cmd:=make}
: ${make_install_target:=install}