aboutsummaryrefslogtreecommitdiff
path: root/Mk
diff options
context:
space:
mode:
authorGleb Popov <arrowd@FreeBSD.org>2024-03-01 19:25:37 +0000
committerGleb Popov <arrowd@FreeBSD.org>2024-03-01 19:26:53 +0000
commitc2afef5c2587738b16b52def34edcebe4e421905 (patch)
treec7453e20e91d43271b83c7391fb58c67511ca2ee /Mk
parent954bfd4d4cfd94b62f5e18560e2c0510784feeda (diff)
downloadports-c2afef5c2587738b16b52def34edcebe4e421905.tar.gz
ports-c2afef5c2587738b16b52def34edcebe4e421905.zip
Diffstat (limited to 'Mk')
-rw-r--r--Mk/Features/testing.mk5
1 files changed, 4 insertions, 1 deletions
diff --git a/Mk/Features/testing.mk b/Mk/Features/testing.mk
index 15af7e28eb7c..a266f6effe91 100644
--- a/Mk/Features/testing.mk
+++ b/Mk/Features/testing.mk
@@ -4,12 +4,15 @@
# - If set, and the port supports it, the software's test suite will be compiled
# and run during the normal building pipeline between 'stage' and 'package'
# stages.
+# - A port may define TESTING_UNSAFE=yes if its tests are known to fail at the
+# moment.
.if !defined(_TESTING_MK_INCLUDED)
_TESTING_MK_INCLUDED= yes
TESTING_Include_MAINTAINER= portmgr@FreeBSD.org
+. if !defined(TESTING_UNSAFE)
_TESTING_PACKAGE_DEP= test
+. endif
.endif
-