<?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>8a7d5d73 - libc/sys: add errno test</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libc/tests/sys/Makefile#8a7d5d73</link>
        <description>libc/sys: add errno test(cherry picked from commit 32fdcff8703da6f2795193acc77ec3c1fb8b723d)

            List of files:
            /freebsd-14.2/lib/libc/tests/sys/Makefile</description>
        <pubDate>Sat, 24 Feb 2024 23:39:02 +0000</pubDate>
        <dc:creator>Konstantin Belousov &lt;kib@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>d0b2dbfa - Remove $FreeBSD$: one-line sh pattern</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libc/tests/sys/Makefile#d0b2dbfa</link>
        <description>Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/

            List of files:
            /freebsd-14.2/lib/libc/tests/sys/Makefile</description>
        <pubDate>Wed, 16 Aug 2023 17:55:03 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>e1ccf64b - netbsd-tests: Serialize message queue tests</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libc/tests/sys/Makefile#e1ccf64b</link>
        <description>netbsd-tests: Serialize message queue testsThey can fail when run in parallel since they all share a global queuekey.MFC after:	1 week

            List of files:
            /freebsd-14.2/lib/libc/tests/sys/Makefile</description>
        <pubDate>Fri, 10 Mar 2023 22:07:06 +0000</pubDate>
        <dc:creator>Mark Johnston &lt;markj@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>1fc42128 - libc: tests: add some tests for cpuset(2)</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libc/tests/sys/Makefile#1fc42128</link>
        <description>libc: tests: add some tests for cpuset(2)The cpuset(2) tests should be run as root (require.user properly set) with&gt;= 3 cpus for maximum coverage. All tests that want to modify the cpusetdon&apos;t assume any particular cpu layout (i.e. the first cpu may not be 0, thelast may not be first + count) and the following scenarios are tested:1.) newset: basic execute cpuset() to grab a new cpuset, make sure the    assigned cpuset then has a different ID.2.) transient: create a new cpuset then assign the process its original    cpuset, ensuring that the one we created is now gone.3.) deadlk: test assigning an anonymous mask, then resetting the process    base affinity with 1-cpu overlap w.r.t. the anonymous mask and with    0-cpu overlap w.r.t. the anonymous mask.4.) jail_attach_newbase: process attaches to a jail with its own    cpuset+mask (e.g. cpuset -c -l 1,2 jail -c path=/ command=/bin/sh)5.) jail_attach_newbase_plain: process attaches to a jail with its own    cpuset (e.g. cpuset -c jail -c path=/ command=/bin/sh)6.) jail_attach_prevbase: process attaches to a jail with the containing    jail&apos;s root cpuset (e.g. jail -c path=/ command=/bin/sh)7.) jail_attach_plain: process attaches to a jail with the containing jail&apos;s    root cpuset+mask.8.) badparent: creates a new cpuset and modifies the anonymous thread mask,    then setid&apos;s back to the original and checks that cpuset_getid() returns    the expected set.Differential Revision:	https://reviews.freebsd.org/D27307

            List of files:
            /freebsd-14.2/lib/libc/tests/sys/Makefile</description>
        <pubDate>Thu, 31 Dec 2020 18:30:43 +0000</pubDate>
        <dc:creator>Kyle Evans &lt;kevans@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>9f036e84 - lib/libc/tests/sys: raise WARNS to 6</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libc/tests/sys/Makefile#9f036e84</link>
        <description>lib/libc/tests/sys: raise WARNS to 6MFC after:	2 weeks

            List of files:
            /freebsd-14.2/lib/libc/tests/sys/Makefile</description>
        <pubDate>Thu, 24 Sep 2020 21:39:09 +0000</pubDate>
        <dc:creator>Alan Somers &lt;asomers@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>94179175 - Don&apos;t explicitly specify c99 or gnu99 as the default is now gnu99.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libc/tests/sys/Makefile#94179175</link>
        <description>Don&apos;t explicitly specify c99 or gnu99 as the default is now gnu99.MFC after:	2 weeks

            List of files:
            /freebsd-14.2/lib/libc/tests/sys/Makefile</description>
        <pubDate>Mon, 17 Aug 2020 05:57:02 +0000</pubDate>
        <dc:creator>Xin LI &lt;delphij@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>652f26f9 - Avoid using non-portable dd status=none flag</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libc/tests/sys/Makefile#652f26f9</link>
        <description>Avoid using non-portable dd status=none flagCopying the approach chosen in r309412. This fixes building the libc testson a macOS host since the macOS /bin/dd binary does not support status=none.As there only seem to be two uses, this commit changes the two Makefiles.If this becomes more common, we could also add a wrapper bootstrap scriptthat ignores status= and forwards the remaining args to the real dd.Another alternative would be to remove the status flag and pipe stderr to/dev/null, but them we lose error messages.Reviewed By:	brooksDifferential Revision: https://reviews.freebsd.org/D24785

            List of files:
            /freebsd-14.2/lib/libc/tests/sys/Makefile</description>
        <pubDate>Fri, 05 Jun 2020 08:46:50 +0000</pubDate>
        <dc:creator>Alex Richardson &lt;arichardson@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>b29e1426 - Add [initial] functional tests for sendfile(2) as lib/libc/sys/sendfile</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libc/tests/sys/Makefile#b29e1426</link>
        <description>Add [initial] functional tests for sendfile(2) as lib/libc/sys/sendfileThese testcases exercise a number of functional requirements for sendfile(2).The testcases use IPv4 and IPv6 domain sockets with TCP, and were confirmedfunctional on UFS and ZFS. UDP address family sockets cannot be used per thesendfile(2) contract, thus using UDP sockets is outside the scope oftesting the syscall in positive cases. As seen in`:s_negative_udp_socket_test`, UDP is used to test the sendfile(2) contractto ensure that EINVAL is returned by sendfile(2).The testcases added explicitly avoid testing out `SF_SYNC` due to thecomplexity of verifying that support. However, this is a good next logicalitem to verify.The `hdtr_positive*` testcases work to a certain degree (the headertestcases pass), but the trailer testcases do not work (it is an expectedfailure). In particular, the value received by the mock server doesn&apos;t matchthe expected value, and instead looks something like the following (usingpython array notation):`trailer[:]message[1:]`instead of:`message[:]trailer[:]`This makes me think there&apos;s a buffer overrun issue or problem with theoffset somewhere in the sendfile(2) system call, but I need to do someother testing first to verify that the code is indeed sane, and myassumptions/code isn&apos;t buggy.The `sbytes_negative` testcases that check `sbytes` being set to aninvalid value resulting in `EFAULT` fails today as the other change(which checks `copyout(9)`) has not been committed [1]. Thus, itshould remain an expected failure (see bug 232210 for more detailson this item).Next steps for testing sendfile(2):1. Fix the header/trailer testcases so that they pass.2. Setup if_tap interface and test with it, instead of using &quot;localhost&quot;, per   @asomers&apos;s suggestion.3. Handle short recv(2)&apos;s in `server_cat(..)`.4. Add `SF_SYNC` support.5. Add some more negative tests outside the scope of the functional contract.MFC after:	1 monthReviewed by:	asomersApproved by:	emaste (mentor)PR: 		232210Sponsored by:   Netflix, IncDifferential Revision: https://reviews.freebsd.org/D18625

            List of files:
            /freebsd-14.2/lib/libc/tests/sys/Makefile</description>
        <pubDate>Wed, 23 Jan 2019 22:00:17 +0000</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>ea16e3e1 - Don&apos;t build brk_test on platforms that don&apos;t support brk().</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libc/tests/sys/Makefile#ea16e3e1</link>
        <description>Don&apos;t build brk_test on platforms that don&apos;t support brk().X-MFC with:	r334626

            List of files:
            /freebsd-14.2/lib/libc/tests/sys/Makefile</description>
        <pubDate>Tue, 05 Jun 2018 13:06:06 +0000</pubDate>
        <dc:creator>Mark Johnston &lt;markj@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>9f9c9b22 - Reimplement brk() and sbrk() to avoid the use of _end.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libc/tests/sys/Makefile#9f9c9b22</link>
        <description>Reimplement brk() and sbrk() to avoid the use of _end.Previously, libc.so would initialize its notion of the break addressusing _end, a special symbol emitted by the static linker followingthe bss section.  Compatibility issues between lld and ld.bfd couldcause the wrong definition of _end (libc.so&apos;s definition rather thanthat of the executable) to be used, breaking the brk()/sbrk()interface.Avoid this problem and future interoperability issues by simply notrelying on _end.  Instead, modify the break() system call to returnthe kernel&apos;s view of the current break address, and have libcinitialize its state using an extra syscall upon the first use of theinterface.  As a side effect, this appears to fix brk()/sbrk() usagein executables run with rtld direct exec, since the kernel and libc.sono longer maintain separate views of the process&apos; break address.PR:		228574Reviewed by:	kib (previous version)MFC after:	2 monthsDifferential Revision:	https://reviews.freebsd.org/D15663

            List of files:
            /freebsd-14.2/lib/libc/tests/sys/Makefile</description>
        <pubDate>Mon, 04 Jun 2018 19:35:15 +0000</pubDate>
        <dc:creator>Mark Johnston &lt;markj@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>9f4bf11e - Properly set userid for truncate_test.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libc/tests/sys/Makefile#9f4bf11e</link>
        <description>Properly set userid for truncate_test.MFC after:	1 weekSponsored by:	Dell EMC Isilon

            List of files:
            /freebsd-14.2/lib/libc/tests/sys/Makefile</description>
        <pubDate>Fri, 21 Jul 2017 16:14:06 +0000</pubDate>
        <dc:creator>Bryan Drewery &lt;bdrewery@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>3f8455b0 - Add clock_nanosleep()</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libc/tests/sys/Makefile#3f8455b0</link>
        <description>Add clock_nanosleep()Add a clock_nanosleep() syscall, as specified by POSIX.Make nanosleep() a wrapper around it.Attach the clock_nanosleep test from NetBSD. Adjust it for theFreeBSD behavior of updating rmtp only when interrupted by a signal.I believe this to be POSIX-compliant, since POSIX mentions the rmtpparameter only in the paragraph about EINTR. This is also whatLinux does. (NetBSD updates rmtp unconditionally.)Copy the whole nanosleep.2 man page from NetBSD because it is completeand closely resembles the POSIX description. Edit, polish, and reword ita bit, being sure to keep any relevant text from the FreeBSD page.Reviewed by:	kib, ngie, jillesMFC after:	3 weeksRelnotes:	yesSponsored by:	Dell EMCDifferential Revision:	https://reviews.freebsd.org/D10020

            List of files:
            /freebsd-14.2/lib/libc/tests/sys/Makefile</description>
        <pubDate>Sun, 19 Mar 2017 00:51:12 +0000</pubDate>
        <dc:creator>Eric van Gyzen &lt;vangyzen@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>710542df - Fix setrlimit_test:setrlimit_memlock when the system has exceeded vm.max_wired.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libc/tests/sys/Makefile#710542df</link>
        <description>Fix setrlimit_test:setrlimit_memlock when the system has exceeded vm.max_wired.This uses the same fix as r294894 did for the mlock test.  The code fromthat commit is moved into a common object file which PROGS supportsbuilding first.Sponsored by:	Dell EMC IsilonDifferential Revision:	https://reviews.freebsd.org/D8689

            List of files:
            /freebsd-14.2/lib/libc/tests/sys/Makefile</description>
        <pubDate>Thu, 01 Dec 2016 22:12:58 +0000</pubDate>
        <dc:creator>Bryan Drewery &lt;bdrewery@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>b3ef7604 - Re-add PACKAGE=&gt; tests to lib/libc/tests/net/getaddrinfo/Makefile and add</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libc/tests/sys/Makefile#b3ef7604</link>
        <description>Re-add PACKAGE=&gt; tests to lib/libc/tests/net/getaddrinfo/Makefile and addit to lib/libc/tests/sys/Makefile [*]Even though make -VPACKAGE and make -n install seem to do the right thing,the effects are a bit different, depending on the build host.MFC after:		1 weekObtained from:		HardenedBSD (af602f0db) [*]Reported by:		Oliver Pinter &lt;oliver.pinter@hardenedbsd.org&gt; [*]Sponsored by:		Dell EMC Isilon

            List of files:
            /freebsd-14.2/lib/libc/tests/sys/Makefile</description>
        <pubDate>Mon, 19 Sep 2016 06:59:17 +0000</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@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-14.2/lib/libc/tests/sys/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-14.2/lib/libc/tests/sys/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>796a99fc - Remove dd xfer stats emitted during buildworld</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libc/tests/sys/Makefile#796a99fc</link>
        <description>Remove dd xfer stats emitted during buildworldThey result in gratuitous differences when comparing build log output.

            List of files:
            /freebsd-14.2/lib/libc/tests/sys/Makefile</description>
        <pubDate>Thu, 18 Feb 2016 14:17:28 +0000</pubDate>
        <dc:creator>Ed Maste &lt;emaste@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-14.2/lib/libc/tests/sys/Makefile#1f4bcc45</link>
        <description>More &apos;tests&apos; packaging fixes.Sponsored by:	The FreeBSD Foundation

            List of files:
            /freebsd-14.2/lib/libc/tests/sys/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-14.2/lib/libc/tests/sys/Makefile#43faedc1</link>
        <description>First pass to fix the &apos;tests&apos; packages.Sponsored by:	The FreeBSD Foundation

            List of files:
            /freebsd-14.2/lib/libc/tests/sys/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>eacae6dc - Fix LDADD/DPADD that should be LIBADD.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libc/tests/sys/Makefile#eacae6dc</link>
        <description>Fix LDADD/DPADD that should be LIBADD.Sponsored by:	EMC / Isilon Storage Division

            List of files:
            /freebsd-14.2/lib/libc/tests/sys/Makefile</description>
        <pubDate>Fri, 04 Dec 2015 03:17:47 +0000</pubDate>
        <dc:creator>Bryan Drewery &lt;bdrewery@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>f443c488 - Add some initial tests for SLIST and STAILQ macros</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libc/tests/sys/Makefile#f443c488</link>
        <description>Add some initial tests for SLIST and STAILQ macrosMFC after: 1 weekSponsored by: EMC / Isilon Storage Division

            List of files:
            /freebsd-14.2/lib/libc/tests/sys/Makefile</description>
        <pubDate>Mon, 16 Nov 2015 04:15:39 +0000</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
