<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Makefile</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>653667f9 - import zstd 1.3.2</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/tests/Makefile#653667f9</link>
        <description>import zstd 1.3.2

            List of files:
            /freebsd-12.1/tests/Makefile</description>
        <pubDate>Thu, 09 Nov 2017 15:38:02 +0000</pubDate>
        <dc:creator>Baptiste Daroussin &lt;bapt@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>5e1d4ad0 - Start adding in simple wrapper around lgov/genhtml called gather_coverage</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/tests/Makefile#5e1d4ad0</link>
        <description>Start adding in simple wrapper around lgov/genhtml called gather_coverageIt will be installed to /usr/tests/tools for the time beingBased loosely on make snippet seen inhttps://github.com/yaneurabeya/scratch/blob/master/demos/freebsd/runtime-coverage/Makefile .The real difference is that one needs to run a binary with coverage compiledin before running this script, so it can hoover up the .gcda&apos;s.

            List of files:
            /freebsd-12.1/tests/Makefile</description>
        <pubDate>Tue, 31 Oct 2017 05:04:03 +0000</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>902c8ce7 - Import zstd 1.3.1</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/tests/Makefile#902c8ce7</link>
        <description>Import zstd 1.3.1

            List of files:
            /freebsd-12.1/tests/Makefile</description>
        <pubDate>Tue, 22 Aug 2017 11:02:59 +0000</pubDate>
        <dc:creator>Baptiste Daroussin &lt;bapt@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>47606b86 - Use MK_CHECK_USE_SANDBOX in tests/..., to deal with the fact that</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/tests/Makefile#47606b86</link>
        <description>Use MK_CHECK_USE_SANDBOX in tests/..., to deal with the fact thattests/... is a special snowflake directory and using HAS_TESTS wouldresult in a nasty layering violation between bsd.tests.mk andbsd.prog.mk.Add reachover Makefile.inc&apos;s which get the default value fromMakefile.inc0 (inspired by gnu/usr.bin/binutils/Makefile.inc0).

            List of files:
            /freebsd-12.1/tests/Makefile</description>
        <pubDate>Wed, 02 Aug 2017 22:24:08 +0000</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>affe9eaf - Import zstd 1.3.0</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/tests/Makefile#affe9eaf</link>
        <description>Import zstd 1.3.0

            List of files:
            /freebsd-12.1/tests/Makefile</description>
        <pubDate>Fri, 14 Jul 2017 14:51:28 +0000</pubDate>
        <dc:creator>Baptiste Daroussin &lt;bapt@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>ffcbc2d7 - Import Zstandard 1.2.0</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/tests/Makefile#ffcbc2d7</link>
        <description>Import Zstandard 1.2.0Among changes: threading support is now default and supports freebsd

            List of files:
            /freebsd-12.1/tests/Makefile</description>
        <pubDate>Sat, 06 May 2017 10:17:59 +0000</pubDate>
        <dc:creator>Baptiste Daroussin &lt;bapt@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>a19eddc3 - Import zstd 1.1.4</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/tests/Makefile#a19eddc3</link>
        <description>Import zstd 1.1.4

            List of files:
            /freebsd-12.1/tests/Makefile</description>
        <pubDate>Sat, 15 Apr 2017 19:47:16 +0000</pubDate>
        <dc:creator>Baptiste Daroussin &lt;bapt@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>430f7286 - Merge ^/user/ngie/release-pkg-fix-tests to unbreak how test files are installed</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/tests/Makefile#430f7286</link>
        <description>Merge ^/user/ngie/release-pkg-fix-tests to unbreak how test files are installedafter r298107Summary of changes:- Replace all instances of FILES/TESTS with ${PACKAGE}FILES. This ensures that  namespacing is kept with FILES appropriately, and that this shouldn&apos;t need  to be repeated if the namespace changes -- only the definition of PACKAGE  needs to be changed- Allow PACKAGE to be overridden by callers instead of forcing it to always be  `tests`. In the event we get to the point where things can be split up  enough in the base system, it would make more sense to group the tests  with the blocks they&apos;re a part of, e.g. byacc with byacc-tests, etc- Remove PACKAGE definitions where possible, i.e. where FILES wasn&apos;t used  previously.- Remove unnecessary TESTSPACKAGE definitions; this has been elided into  bsd.tests.mk- Remove unnecessary BINDIRs used previously with ${PACKAGE}FILES;  ${PACKAGE}FILESDIR is now automatically defined in bsd.test.mk.- Fix installation of files under data/ subdirectories in lib/libc/tests/hash  and lib/libc/tests/net/getaddrinfo- Remove unnecessary .include &lt;bsd.own.mk&gt;s (some opportunistic cleanup)Document the proposed changes in share/examples/tests/tests/... via examplesso it&apos;s clear that ${PACKAGES}FILES is the suggested way forward in terms ofreplacing FILES. share/mk/bsd.README didn&apos;t seem like the appropriate methodof communicating that info.MFC after: never probablyX-MFC with: r298107PR: 209114Relnotes: yesTested with: buildworld, installworld, checkworld; buildworld, packageworldSponsored by: EMC / Isilon Storage Division

            List of files:
            /freebsd-12.1/tests/Makefile</description>
        <pubDate>Wed, 04 May 2016 23:20:53 +0000</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>49dae58b - Fix including Kyuafile in packaged base system.</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/tests/Makefile#49dae58b</link>
        <description>Fix including Kyuafile in packaged base system.Fix a related typo while here.Note, this change results in the Kyuafile inclusion in the runtimepackage, which needs to be fixed, however addresses the PR as faras I can tell in my tests.PR:		209114Submitted by:	ngieSponsored by:	The FreeBSD Foundation

            List of files:
            /freebsd-12.1/tests/Makefile</description>
        <pubDate>Fri, 29 Apr 2016 05:28:40 +0000</pubDate>
        <dc:creator>Glen Barber &lt;gjb@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>1f4bcc45 - More &apos;tests&apos; packaging fixes.</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/tests/Makefile#1f4bcc45</link>
        <description>More &apos;tests&apos; packaging fixes.Sponsored by:	The FreeBSD Foundation

            List of files:
            /freebsd-12.1/tests/Makefile</description>
        <pubDate>Wed, 03 Feb 2016 19:08:45 +0000</pubDate>
        <dc:creator>Glen Barber &lt;gjb@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>43faedc1 - First pass to fix the &apos;tests&apos; packages.</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/tests/Makefile#43faedc1</link>
        <description>First pass to fix the &apos;tests&apos; packages.Sponsored by:	The FreeBSD Foundation

            List of files:
            /freebsd-12.1/tests/Makefile</description>
        <pubDate>Tue, 02 Feb 2016 22:26:49 +0000</pubDate>
        <dc:creator>Glen Barber &lt;gjb@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>d58d03e5 - Copy README into /usr/tests</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/tests/Makefile#d58d03e5</link>
        <description>Copy README into /usr/testsAdd a few sentences describing how to run the tests.Reviewed by:	ngieDifferential Revision: https://reviews.freebsd.org/D4224

            List of files:
            /freebsd-12.1/tests/Makefile</description>
        <pubDate>Fri, 20 Nov 2015 03:24:04 +0000</pubDate>
        <dc:creator>Craig Rodrigues &lt;rodrigc@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>aa92269e - Add more SUBDIR_PARALLEL.</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/tests/Makefile#aa92269e</link>
        <description>Add more SUBDIR_PARALLEL.MFC after:	3 weeksSponsored by:	EMC / Isilon Storage Division

            List of files:
            /freebsd-12.1/tests/Makefile</description>
        <pubDate>Thu, 15 Oct 2015 22:55:08 +0000</pubDate>
        <dc:creator>Bryan Drewery &lt;bdrewery@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>2cfac473 - Append to SUBDIR, not set it</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/tests/Makefile#2cfac473</link>
        <description>Append to SUBDIR, not set itPointyhat to: ngie

            List of files:
            /freebsd-12.1/tests/Makefile</description>
        <pubDate>Sun, 31 May 2015 22:24:29 +0000</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>7afb8adf - Move all test integration pieces for etc/ from etc/ to tests/</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/tests/Makefile#7afb8adf</link>
        <description>Move all test integration pieces for etc/ from etc/ to tests/This is being done to fix breakage with make distribution with read-onlysource trees as make distribution doesn&apos;t use make obj like buildingtests/ does in all casesReported by: Wolfgang Zenker &lt;wolfgang@lyxys.ka.sub.org&gt;Suggested by: jhbX-MFC with: r282059MFC after: 1 week

            List of files:
            /freebsd-12.1/tests/Makefile</description>
        <pubDate>Mon, 18 May 2015 11:02:43 +0000</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>564d7c40 - Use DESTDIR for the installation of the /usr/tests/local symlink.</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/tests/Makefile#564d7c40</link>
        <description>Use DESTDIR for the installation of the /usr/tests/local symlink.MFC after:	5 days

            List of files:
            /freebsd-12.1/tests/Makefile</description>
        <pubDate>Sun, 16 Feb 2014 12:56:05 +0000</pubDate>
        <dc:creator>Julio Merino &lt;jmmv@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>aa11ae47 - Install a symlink from /usr/tests/local to /usr/local/tests.</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/tests/Makefile#aa11ae47</link>
        <description>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 byports under /usr/local/tests when running the test suite from /usr/tests.Some ports (namely those that build Kyua) already install test programsinto /usr/local/tests.  Just make sure to select the TEST option whilebuilding them.MFC after:	3 days

            List of files:
            /freebsd-12.1/tests/Makefile</description>
        <pubDate>Sun, 16 Feb 2014 04:11:40 +0000</pubDate>
        <dc:creator>Julio Merino &lt;jmmv@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>f17e7cad - Fix the Makefiles so that the tests I submitted in r261081 will actually</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/tests/Makefile#f17e7cad</link>
        <description>Fix the Makefiles so that the tests I submitted in r261081 will actuallyget built.Sponsored by:	Spectra LogicMFC after:	13 daysX-MFC-With:	r261081

            List of files:
            /freebsd-12.1/tests/Makefile</description>
        <pubDate>Fri, 24 Jan 2014 18:04:16 +0000</pubDate>
        <dc:creator>Alan Somers &lt;asomers@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>cc21b86f - Install category Kyuafiles from their category directories.</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/tests/Makefile#cc21b86f</link>
        <description>Install category Kyuafiles from their category directories.Move the installation of /usr/tests/lib/Kyuafile from src/tests/lib/to src/lib/.  This is to keep the src/tests/ hierarchy unaware of therest of the tree, which makes things clearer in general.  In particular:1) Everything related to the construction of /usr/tests/lib/ is kept   in src/lib/.  There is no need to think about different directories   and how they relate to each other.  (The same applies for libexec,   usr.bin, etc. but these are not yet handled.)2) src/tests becomes the place to keep cross-functional test programs   and nothing else, which also helps in simplifying things.Reviewed by:	freebsd-testingApproved by:	rpaulo (mentor)

            List of files:
            /freebsd-12.1/tests/Makefile</description>
        <pubDate>Fri, 08 Nov 2013 14:29:06 +0000</pubDate>
        <dc:creator>Julio Merino &lt;jmmv@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>e2197f80 - Set up the /usr/tests hierarchy.</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/tests/Makefile#e2197f80</link>
        <description>Set up the /usr/tests hierarchy.Populate /usr/tests with the only test programs that currently livein the tree (those in lib/libcrypt/tests/) and add all the buildmachinery to accompany this change.In particular:- Add a WITHOUT_TESTS variable that users can define to request that  no tests be put in /usr/tests.- Add a top-level Kyuafile for /usr/tests and a way to create similar  Kyuafiles in top-level subdirectories.- Add a BSD.tests.dist file to define the directory layout of  /usr/tests.Submitted by:	Julio Merino jmmv google.comReviewed by:	sjgMFC after:	2 weeks

            List of files:
            /freebsd-12.1/tests/Makefile</description>
        <pubDate>Fri, 25 Oct 2013 05:25:19 +0000</pubDate>
        <dc:creator>Rui Paulo &lt;rpaulo@FreeBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
