xbps-src: add make_check_pre

$make_check_pre can be used for wrapper commands like xvfb-run or
dbus-run-session which are common ways to make tests work. This way many
templates can avoid defining their own do_check function.
This commit is contained in:
Michal Vasilek 2022-02-28 14:40:07 +01:00 committed by Echo
parent f991e72bf1
commit 71b11fdbdb
14 changed files with 17 additions and 14 deletions

View file

@ -41,7 +41,7 @@ do_check() {
if [ ! -x ./Build ]; then
msg_error "$pkgver: cannot find ./Build script!\n"
fi
./Build test
${make_check_pre} ./Build test
}
do_install() {