svn commit: r257851 - head/tools/build/mk

Julio Merino jmmv at FreeBSD.org
Fri Nov 8 14:26:53 UTC 2013


Author: jmmv
Date: Fri Nov  8 14:26:52 2013
New Revision: 257851
URL: http://svnweb.freebsd.org/changeset/base/257851

Log:
  Handle the removal of the test suite when WITHOUT_TESTS=yes.
  
  Add all files from /usr/tests to the obsoleted files list when the
  build of the tests is disabled via the WITHOUT_TESTS knob.  Do this
  automatically so that we do not have to suffer the pain of maintaining
  such list by hand.
  
  Reviewed by:	freebsd-testing
  Approved by:	rpaulo (mentor)

Modified:
  head/tools/build/mk/OptionalObsoleteFiles.inc

Modified: head/tools/build/mk/OptionalObsoleteFiles.inc
==============================================================================
--- head/tools/build/mk/OptionalObsoleteFiles.inc	Fri Nov  8 14:24:47 2013	(r257850)
+++ head/tools/build/mk/OptionalObsoleteFiles.inc	Fri Nov  8 14:26:52 2013	(r257851)
@@ -4105,7 +4105,10 @@ OLD_FILES+=usr/share/man/man4/atf-test-c
 OLD_FILES+=usr/share/mk/atf.test.mk
 
 # Test suite.
-# TODO(jmmv): To be filled in.
+TESTS_DIRS!=find ${DESTDIR}/usr/tests -type d | sed -e 's,^${DESTDIR}/,,'
+OLD_DIRS+=${TESTS_DIRS}
+TESTS_FILES!=find ${DESTDIR}/usr/tests \! -type d | sed -e 's,^${DESTDIR}/,,'
+OLD_FILES+=${TESTS_FILES}
 .endif
 
 #.if ${MK_TOOLCHAIN} == no


More information about the svn-src-all mailing list