svn commit: r299076 - user/ngie/release-pkg-fix-tests/cddl/usr.sbin/dtrace/tests

Garrett Cooper ngie at FreeBSD.org
Wed May 4 17:02:38 UTC 2016


Author: ngie
Date: Wed May  4 17:02:37 2016
New Revision: 299076
URL: https://svnweb.freebsd.org/changeset/base/299076

Log:
  Fix an overambitious TESTGROUP -> ${PACKAGE}FILES replacement
  
  The code used the unexpanded form of ${TESTGROUP} previously, so it was passing in
  the directory and not the contents of the ${${TESTGROUP}} variable (now
  ${${PACKAGE}FILES})

Modified:
  user/ngie/release-pkg-fix-tests/cddl/usr.sbin/dtrace/tests/dtrace.test.mk

Modified: user/ngie/release-pkg-fix-tests/cddl/usr.sbin/dtrace/tests/dtrace.test.mk
==============================================================================
--- user/ngie/release-pkg-fix-tests/cddl/usr.sbin/dtrace/tests/dtrace.test.mk	Wed May  4 16:58:42 2016	(r299075)
+++ user/ngie/release-pkg-fix-tests/cddl/usr.sbin/dtrace/tests/dtrace.test.mk	Wed May  4 17:02:37 2016	(r299076)
@@ -18,7 +18,7 @@ TEST_METADATA.t_dtrace_contrib+= require
 GENTEST?=	${.CURDIR:H:H}/tools/gentest.sh
 EXCLUDE=	${.CURDIR:H:H}/tools/exclude.sh
 ${TESTWRAPPER}.sh: ${GENTEST} ${EXCLUDE} ${${PACKAGE}FILES}
-	sh ${GENTEST} -e ${EXCLUDE} ${${PACKAGE}FILES} ${${TESTGROUP}:S/ */ /} > ${.TARGET}
+	sh ${GENTEST} -e ${EXCLUDE} ${TESTGROUP} ${${TESTGROUP}:S/ */ /} > ${.TARGET}
 
 CLEANFILES+=	${TESTWRAPPER}.sh
 


More information about the svn-src-user mailing list