summaryrefslogtreecommitdiff
path: root/Mk/Scripts/qa.sh
diff options
context:
space:
mode:
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}