From owner-svn-src-all@FreeBSD.ORG Sun Feb 16 04:11:40 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A60C42EE; Sun, 16 Feb 2014 04:11:40 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 913D519F1; Sun, 16 Feb 2014 04:11:40 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1G4Be5B096609; Sun, 16 Feb 2014 04:11:40 GMT (envelope-from jmmv@svn.freebsd.org) Received: (from jmmv@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1G4BePP096608; Sun, 16 Feb 2014 04:11:40 GMT (envelope-from jmmv@svn.freebsd.org) Message-Id: <201402160411.s1G4BePP096608@svn.freebsd.org> From: Julio Merino Date: Sun, 16 Feb 2014 04:11:40 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r261959 - head/tests X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 04:11:40 -0000 Author: jmmv Date: Sun Feb 16 04:11:40 2014 New Revision: 261959 URL: http://svnweb.freebsd.org/changeset/base/261959 Log: Install a symlink from /usr/tests/local to /usr/local/tests. This is to let Kyua descend into any tests that may have been installed by ports under /usr/local/tests when running the test suite from /usr/tests. Some ports (namely those that build Kyua) already install test programs into /usr/local/tests. Just make sure to select the TEST option while building them. MFC after: 3 days Modified: head/tests/Makefile Modified: head/tests/Makefile ============================================================================== --- head/tests/Makefile Sun Feb 16 03:34:07 2014 (r261958) +++ head/tests/Makefile Sun Feb 16 04:11:40 2014 (r261959) @@ -7,4 +7,8 @@ SUBDIR= sys TESTSDIR= ${TESTSBASE} KYUAFILE= yes +afterinstall: install-tests-local +install-tests-local: .PHONY + ${INSTALL_SYMLINK} ../local/tests ${TESTSDIR}/local + .include