svn commit: r284408 - head/share/mk

Garrett Cooper ngie at FreeBSD.org
Mon Jun 15 07:13:24 UTC 2015


Author: ngie
Date: Mon Jun 15 07:13:23 2015
New Revision: 284408
URL: https://svnweb.freebsd.org/changeset/base/284408

Log:
  Ensure TESTSDIR is defined before bsd.test.mk is .include'd
  
  MFC after: 1 week

Modified:
  head/share/mk/bsd.test.mk

Modified: head/share/mk/bsd.test.mk
==============================================================================
--- head/share/mk/bsd.test.mk	Mon Jun 15 06:48:43 2015	(r284407)
+++ head/share/mk/bsd.test.mk	Mon Jun 15 07:13:23 2015	(r284408)
@@ -10,6 +10,10 @@
 
 __<bsd.test.mk>__:
 
+.ifndef TESTSDIR
+.error "Please define TESTSDIR when including bsd.test.mk"
+.endif
+
 # List of subdirectories containing tests into which to recurse.  This has the
 # same semantics as SUBDIR at build-time.  However, the directories listed here
 # get registered into the run-time test suite definitions so that the test


More information about the svn-src-head mailing list