newapkbuild: make meson test use --print-errorlogs

-v outputs everything from the tests, which has a lot of very
uninteresting and spammy data. all we really care about is failures, so
print only the errorlogs on failure by default. this is analogous to the
cmake output on failure
This commit is contained in:
psykose 2022-09-03 14:25:19 +00:00 committed by Natanael Copa
parent 15b6128a45
commit 4e855560a7
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ __EOF__
check_meson() {
cat >>APKBUILD<<__EOF__
meson test --no-rebuild -v -C output
meson test --no-rebuild --print-errorlogs -C output
__EOF__
}