aboutsummaryrefslogtreecommitdiff
path: root/Mk/Scripts/qa.sh
diff options
context:
space:
mode:
authorDan Langille <dvl@FreeBSD.org>2020-07-20 19:22:16 +0000
committerDan Langille <dvl@FreeBSD.org>2020-07-20 19:22:16 +0000
commitc1f39c706ad4bd6583d3080922df13159cdff167 (patch)
treeca44d343f338c559aa2a0780c08fc25d1fa236ea /Mk/Scripts/qa.sh
parent2ff8e8c69b6c671db4e782703814a24e71fab628 (diff)
downloadports-c1f39c706ad4bd6583d3080922df13159cdff167.tar.gz
ports-c1f39c706ad4bd6583d3080922df13159cdff167.zip
Notes
Diffstat (limited to 'Mk/Scripts/qa.sh')
-rw-r--r--Mk/Scripts/qa.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/Mk/Scripts/qa.sh b/Mk/Scripts/qa.sh
index 2e6c2579b1fa..2c22977c2c14 100644
--- a/Mk/Scripts/qa.sh
+++ b/Mk/Scripts/qa.sh
@@ -1020,7 +1020,12 @@ checks="$checks license depends_blacklist pkgmessage reinplace"
ret=0
cd ${STAGEDIR} || exit 1
for check in ${checks}; do
- ${check} || ret=1
+ eval check_test="\$IGNORE_QA_$check"
+ if [ -z "${check_test}" ]; then
+ ${check} || ret=1
+ else
+ warn "Ignoring $check QA test"
+ fi
done
exit ${ret}