<?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>0d283a3a7ed9024e9a0b490e3ba1950a6e625f25 - arc4random(3): Add automatic tests.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/tests/lib/libc/gen/Makefile#0d283a3a7ed9024e9a0b490e3ba1950a6e625f25</link>
        <description>arc4random(3): Add automatic tests.This verifies that:- arc4random zeroes its state and reseeds itself on fork- arc4random reseeds itself on entropy consolidation (e.g., VM clone)- arc4random falls back to global state if it can&apos;t allocate local  state because address space limits cause mmap to failNOTE: This adds a new libc symbol __arc4random_global, but it&apos;s inthe reserved namespace and only used by t_arc4random, so no libcminor bump.PR kern/58632: getentropy(2) and arc4random(3) do not reseed on VMfork

            List of files:
            /netbsd-src/tests/lib/libc/gen/Makefile</description>
        <pubDate>Tue, 27 Aug 2024 13:43:01 +0000</pubDate>
        <dc:creator>riastradh &lt;riastradh@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>2b5e567d9c119c3713dcfd03130ca7535ab992ee - libc: Reintroduce getentropy.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/tests/lib/libc/gen/Makefile#2b5e567d9c119c3713dcfd03130ca7535ab992ee</link>
        <description>libc: Reintroduce getentropy.This was introduced two years ago when the getrandom/getentropy APIquestion was still open, and removed because the discussion wasongoing.  Now getentropy is more widely adopted and soon to be inPOSIX.  So reintroduce the symbol into libc since we&apos;ll be keeping itanyway.  Discussion of details of the semantics, as interpreted byNetBSD, is ongoing, but the symbol needs to get in before thenetbsd-10 branch.  The draft POSIX text is(https://www.opengroup.org/austin/docs/austin_1110.pdf):    SYNOPSIS        #include &lt;unistd.h&gt;        int getentropy(void *buffer, size_t length);    DESCRIPTION        The getentropy() function shall write length bytes of data        starting at the location pointed to by buffer. The output        shall be unpredictable high quality random data, generated by        a cryptographically secure pseudo-random number        generator. The maximum permitted value for the length        argument is given by the {GETENTROPY_MAX} symbolic constant        defined in &lt;limits.h&gt;.    RETURN VALUES        Upon successful completion, getentropy() shall return 0;        otherwise, -1 shall be retunred and errno set to indicate the        error.    ERRORS        The getentropy() function shall fail if:        [EINVAL]        The value of length is greater than                        {GETENTROPY_MAX}.        The getentropy() function may fail if:        [ENOSYS]        The system does not provide the necessary                        source of entropy.    RATIONALE        The getentropy() function is not a cancellation point.Minor changes from the previous introduction of getentropy into libc:- Return EINVAL, not EIO, on buflen &gt; 256.- Define GETENTROPY_MAX in limits.h.The declaration of getentropy in unistd.h and definition ofGETENTROPY_MAX in limits.h are currently conditional on_NETBSD_SOURCE.  When the next revision of POSIX is finalized, we canexpose them also under _POSIX_C_SOURCE &gt; 20yymmL as usual -- and thiscan be done as a pullup without breaking existing compiled programs.

            List of files:
            /netbsd-src/tests/lib/libc/gen/Makefile</description>
        <pubDate>Tue, 31 May 2022 13:42:58 +0000</pubDate>
        <dc:creator>riastradh &lt;riastradh@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>3735bb21e569bef078336574203fdfe1671e00a6 - Update t_siginfo.c build rules</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/tests/lib/libc/gen/Makefile#3735bb21e569bef078336574203fdfe1671e00a6</link>
        <description>Update t_siginfo.c build rulesAdd logic for MKSANITIZER/MKLIBCSANITIZER checks.

            List of files:
            /netbsd-src/tests/lib/libc/gen/Makefile</description>
        <pubDate>Sat, 22 Feb 2020 19:14:57 +0000</pubDate>
        <dc:creator>kamil &lt;kamil@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>d7ada1c9e80fc4dbd83eb178637eb79f42dd9896 - -frounding-math is gcc specific, help clang builds</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/tests/lib/libc/gen/Makefile#d7ada1c9e80fc4dbd83eb178637eb79f42dd9896</link>
        <description>-frounding-math is gcc specific, help clang builds

            List of files:
            /netbsd-src/tests/lib/libc/gen/Makefile</description>
        <pubDate>Fri, 26 Apr 2019 19:17:05 +0000</pubDate>
        <dc:creator>maya &lt;maya@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>4899735091433e2d0011e5b2f67244b2ce1989ca - PR/54000: Andreag Gustafsson: Compile the rounding test with</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/tests/lib/libc/gen/Makefile#4899735091433e2d0011e5b2f67244b2ce1989ca</link>
        <description>PR/54000: Andreag Gustafsson: Compile the rounding test with-fround-math since with gcc-7, the default mode ignores fenv settings(the same effect can be achieved with -O0 :-)https://gcc.gnu.org/wiki/FloatingPointMath

            List of files:
            /netbsd-src/tests/lib/libc/gen/Makefile</description>
        <pubDate>Wed, 24 Apr 2019 15:12:09 +0000</pubDate>
        <dc:creator>christos &lt;christos@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>5b7d8aad4ecd174fdcbb00f499be5ae9c15d8817 - remove exect, it will not be fixed and it will be removed.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/tests/lib/libc/gen/Makefile#5b7d8aad4ecd174fdcbb00f499be5ae9c15d8817</link>
        <description>remove exect, it will not be fixed and it will be removed.

            List of files:
            /netbsd-src/tests/lib/libc/gen/Makefile</description>
        <pubDate>Thu, 09 Feb 2017 03:27:07 +0000</pubDate>
        <dc:creator>christos &lt;christos@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>5e8d31ff24a2fc335eee53a38486d3f732c165ce - Attach t_exect to ATF tests and distribution</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/tests/lib/libc/gen/Makefile#5e8d31ff24a2fc335eee53a38486d3f732c165ce</link>
        <description>Attach t_exect to ATF tests and distributionAdd missing SIGTRAP handler. Assert there that the signal is SIGTRAP asexpected and si_code TRAP_TRACE.This test will break on some ports that have dummy or incompleteimplementation of exect(2).This test works on amd64 correctly.Sponsored by &lt;The NetBSD Foundation&gt;

            List of files:
            /netbsd-src/tests/lib/libc/gen/Makefile</description>
        <pubDate>Fri, 09 Dec 2016 06:12:02 +0000</pubDate>
        <dc:creator>kamil &lt;kamil@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>7303bfa77d2b83afe4cfb8668f1c9c6f5f35b48b - Add __TEST_FENV</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/tests/lib/libc/gen/Makefile#7303bfa77d2b83afe4cfb8668f1c9c6f5f35b48b</link>
        <description>Add __TEST_FENV

            List of files:
            /netbsd-src/tests/lib/libc/gen/Makefile</description>
        <pubDate>Tue, 22 Dec 2015 14:25:58 +0000</pubDate>
        <dc:creator>christos &lt;christos@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>25e32ca77760f22982b2eb27fb02ea27ab3d9a84 - Put have fenv elsewhere.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/tests/lib/libc/gen/Makefile#25e32ca77760f22982b2eb27fb02ea27ab3d9a84</link>
        <description>Put have fenv elsewhere.

            List of files:
            /netbsd-src/tests/lib/libc/gen/Makefile</description>
        <pubDate>Tue, 22 Dec 2015 14:18:35 +0000</pubDate>
        <dc:creator>christos &lt;christos@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>5e88931036827a25b2eb9cc50c92476474857b9f - Sync list of fenv enabled architectures again (PR 48633), this time for mips</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/tests/lib/libc/gen/Makefile#5e88931036827a25b2eb9cc50c92476474857b9f</link>
        <description>Sync list of fenv enabled architectures again (PR 48633), this time for mipsaddition.

            List of files:
            /netbsd-src/tests/lib/libc/gen/Makefile</description>
        <pubDate>Tue, 22 Dec 2015 08:26:16 +0000</pubDate>
        <dc:creator>martin &lt;martin@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>b66d985812f4af363f29cbf3053d9946fa689d71 - While PR 48633 is not properly fixed, keep the additional lists of</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/tests/lib/libc/gen/Makefile#b66d985812f4af363f29cbf3053d9946fa689d71</link>
        <description>While PR 48633 is not properly fixed, keep the additional lists offenv-enabled architectures in sync.

            List of files:
            /netbsd-src/tests/lib/libc/gen/Makefile</description>
        <pubDate>Mon, 21 Dec 2015 12:11:23 +0000</pubDate>
        <dc:creator>martin &lt;martin@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>8827b899dc0361cae6d5de6d63ccc7eaf379b9a0 - Build t_fpgetmask/t_fpgetround for aarch64 since they are now in libc</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/tests/lib/libc/gen/Makefile#8827b899dc0361cae6d5de6d63ccc7eaf379b9a0</link>
        <description>Build t_fpgetmask/t_fpgetround for aarch64 since they are now in libc

            List of files:
            /netbsd-src/tests/lib/libc/gen/Makefile</description>
        <pubDate>Wed, 08 Jul 2015 01:09:25 +0000</pubDate>
        <dc:creator>matt &lt;matt@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>619d31d68635e858d8d08a6270909475e463c439 - Enable fenv for arm</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/tests/lib/libc/gen/Makefile#619d31d68635e858d8d08a6270909475e463c439</link>
        <description>Enable fenv for arm

            List of files:
            /netbsd-src/tests/lib/libc/gen/Makefile</description>
        <pubDate>Sat, 27 Dec 2014 18:00:13 +0000</pubDate>
        <dc:creator>martin &lt;martin@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>e204327425d2a373795f7070b27e9692be9bc37f - Do not set HAVE_FENV for arm as long as it misses feenableexcept().</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/tests/lib/libc/gen/Makefile#e204327425d2a373795f7070b27e9692be9bc37f</link>
        <description>Do not set HAVE_FENV for arm as long as it misses feenableexcept().

            List of files:
            /netbsd-src/tests/lib/libc/gen/Makefile</description>
        <pubDate>Sun, 10 Aug 2014 12:01:57 +0000</pubDate>
        <dc:creator>martin &lt;martin@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>41f262a02f8d91e2a8c1468a6dc3805bbd47ee4c - Use the same condition for HAVE_FENV</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/tests/lib/libc/gen/Makefile#41f262a02f8d91e2a8c1468a6dc3805bbd47ee4c</link>
        <description>Use the same condition for HAVE_FENV

            List of files:
            /netbsd-src/tests/lib/libc/gen/Makefile</description>
        <pubDate>Sun, 10 Aug 2014 11:30:51 +0000</pubDate>
        <dc:creator>martin &lt;martin@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>547b3a3b01258cc76b6903d55f3bbdd59e7003a6 - Changes to existing files to enable building AARCH64 userland.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/tests/lib/libc/gen/Makefile#547b3a3b01258cc76b6903d55f3bbdd59e7003a6</link>
        <description>Changes to existing files to enable building AARCH64 userland.evbarm64-elThis is clang only.  While gcc4.8 supports aarch64, no netbsd support hasbeen written for aarch64 with gcc4.8.

            List of files:
            /netbsd-src/tests/lib/libc/gen/Makefile</description>
        <pubDate>Sun, 10 Aug 2014 05:56:36 +0000</pubDate>
        <dc:creator>matt &lt;matt@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>413d532bcc3f62d122e56d92e13ac64825a40baf - Minimal execve(2) ATF test.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/tests/lib/libc/gen/Makefile#413d532bcc3f62d122e56d92e13ac64825a40baf</link>
        <description>Minimal execve(2) ATF test.

            List of files:
            /netbsd-src/tests/lib/libc/gen/Makefile</description>
        <pubDate>Tue, 29 Apr 2014 06:29:02 +0000</pubDate>
        <dc:creator>uebayasi &lt;uebayasi@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>048981b58c283e6d929288716e042d51b4ff9d65 - Add test for uint64 to real long double conversion.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/tests/lib/libc/gen/Makefile#048981b58c283e6d929288716e042d51b4ff9d65</link>
        <description>Add test for uint64 to real long double conversion.

            List of files:
            /netbsd-src/tests/lib/libc/gen/Makefile</description>
        <pubDate>Thu, 30 Jan 2014 15:04:04 +0000</pubDate>
        <dc:creator>joerg &lt;joerg@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>82f50f620a8c37b653f631d7e568cc758e65a5d7 - Convert old src/regress/timer&amp;waiter tests to ATF</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/tests/lib/libc/gen/Makefile#82f50f620a8c37b653f631d7e568cc758e65a5d7</link>
        <description>Convert old src/regress/timer&amp;waiter tests to ATF

            List of files:
            /netbsd-src/tests/lib/libc/gen/Makefile</description>
        <pubDate>Thu, 08 Nov 2012 03:13:47 +0000</pubDate>
        <dc:creator>pgoyette &lt;pgoyette@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>d2c07527254d5cfe6878f8370aa9683cd98b00f3 - Do not re-add -mieee option on alpha, it&apos;s already set by default.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/tests/lib/libc/gen/Makefile#d2c07527254d5cfe6878f8370aa9683cd98b00f3</link>
        <description>Do not re-add -mieee option on alpha, it&apos;s already set by default.

            List of files:
            /netbsd-src/tests/lib/libc/gen/Makefile</description>
        <pubDate>Fri, 13 Apr 2012 12:31:19 +0000</pubDate>
        <dc:creator>njoly &lt;njoly@NetBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
