aboutsummaryrefslogtreecommitdiff
path: root/Mk/Features/testing.mk
blob: a266f6effe91154f39a7ce1f811ae91b87e7833f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Automatic testing Support
#
# Add WITH_TESTING=yes into make.conf:
# - 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