Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 11 Apr 2015 08:39:00 +0000 (UTC)
From:      Garrett Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-user@freebsd.org
Subject:   svn commit: r281420 - user/ngie/more-tests/share/mk
Message-ID:  <201504110839.t3B8d0e1077673@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ngie
Date: Sat Apr 11 08:38:59 2015
New Revision: 281420
URL: https://svnweb.freebsd.org/changeset/base/281420

Log:
  Don't defining TESTSDIR before including bsd.test.mk is bad. I hate it when
  tests and programs clutter up /
  
  Sponsored by: EMC / Isilon Storage Division

Modified:
  user/ngie/more-tests/share/mk/bsd.test.mk

Modified: user/ngie/more-tests/share/mk/bsd.test.mk
==============================================================================
--- user/ngie/more-tests/share/mk/bsd.test.mk	Sat Apr 11 08:35:53 2015	(r281419)
+++ user/ngie/more-tests/share/mk/bsd.test.mk	Sat Apr 11 08:38:59 2015	(r281420)
@@ -10,6 +10,10 @@
 
 __<bsd.test.mk>__:
 
+.if !defined(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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201504110839.t3B8d0e1077673>