<?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>676247aaff26312810834f2a66d3e9d0370d3f2e - tests/usr.bin/cc: Add test for ctype(3) detection.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/tests/usr.bin/cc/Makefile#676247aaff26312810834f2a66d3e9d0370d3f2e</link>
        <description>tests/usr.bin/cc: Add test for ctype(3) detection.PR lib/58912: ctype(3) abuse detection fails for variable references

            List of files:
            /netbsd-src/tests/usr.bin/cc/Makefile</description>
        <pubDate>Wed, 18 Dec 2024 02:47:00 +0000</pubDate>
        <dc:creator>riastradh &lt;riastradh@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>f0720e6929b7f2d6960a3b762bcba75f32f126e5 - Add ATF c and c++ tests for TSan, MSan, libFuzzer</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/tests/usr.bin/cc/Makefile#f0720e6929b7f2d6960a3b762bcba75f32f126e5</link>
        <description>Add ATF c and c++ tests for TSan, MSan, libFuzzerThese tests require Clang/LLVM 7 or newer on NetBSD.Contributed by Yang Zheng during GSoC 2018.

            List of files:
            /netbsd-src/tests/usr.bin/cc/Makefile</description>
        <pubDate>Sun, 18 Aug 2019 20:15:58 +0000</pubDate>
        <dc:creator>kamil &lt;kamil@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>9ca42b4c5ebb4475257f3a64aa5c0b4f7dc350de - add very simple test that you can link -fopenmp.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/tests/usr.bin/cc/Makefile#9ca42b4c5ebb4475257f3a64aa5c0b4f7dc350de</link>
        <description>add very simple test that you can link -fopenmp.currently fails, but should work soon...

            List of files:
            /netbsd-src/tests/usr.bin/cc/Makefile</description>
        <pubDate>Sat, 09 Feb 2019 00:12:14 +0000</pubDate>
        <dc:creator>mrg &lt;mrg@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>b4870a4524574c14ebd7f6e802a0049d8b55e06c - Move common UBSAN test case code into ubsan_common.subr</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/tests/usr.bin/cc/Makefile#b4870a4524574c14ebd7f6e802a0049d8b55e06c</link>
        <description>Move common UBSAN test case code into ubsan_common.subrReviewed by &lt;kamil&gt;

            List of files:
            /netbsd-src/tests/usr.bin/cc/Makefile</description>
        <pubDate>Tue, 29 Jan 2019 19:59:10 +0000</pubDate>
        <dc:creator>mgorny &lt;mgorny@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>bf6dc715c6905c9ce92e0a05b79fa93d2809b49a - Move common ASAN test case code into asan_common.subr</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/tests/usr.bin/cc/Makefile#bf6dc715c6905c9ce92e0a05b79fa93d2809b49a</link>
        <description>Move common ASAN test case code into asan_common.subrReviewed by &lt;kamil&gt;

            List of files:
            /netbsd-src/tests/usr.bin/cc/Makefile</description>
        <pubDate>Tue, 29 Jan 2019 19:56:37 +0000</pubDate>
        <dc:creator>mgorny &lt;mgorny@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>e308425ef54e72c4e68c7c6f46e8d031ca6a8b56 - Add new ATF Undefined Behavior Sanitizer tests</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/tests/usr.bin/cc/Makefile#e308425ef54e72c4e68c7c6f46e8d031ca6a8b56</link>
        <description>Add new ATF Undefined Behavior Sanitizer testsAdd new cc and c++ tests to check whether UBSan works.These tests are prepared for GCC (in base) and Clang (with external patches).Enable these tests for all ports by default, just verify whether we areusing GCC/Clang or a compatible compiler.Add five equivalent C and C++ tests: - Integer addition overflow - Integer divide by zero - Integer negation overflow - Integer subtraction overflow - VLA out of boundsAll tests pass on NetBSD/amd64.Patch submitted by &lt;Harry Pantazis&gt;Minor cleanup by &lt;myself&gt;

            List of files:
            /netbsd-src/tests/usr.bin/cc/Makefile</description>
        <pubDate>Wed, 02 May 2018 18:46:05 +0000</pubDate>
        <dc:creator>kamil &lt;kamil@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>8a7b75cec0d117f892644dddc2026f6130e83044 - Import new C and C++ ATF tests for ASan</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/tests/usr.bin/cc/Makefile#8a7b75cec0d117f892644dddc2026f6130e83044</link>
        <description>Import new C and C++ ATF tests for ASanAdd new tests: - tests/usr.bin/cc/t_asan_poison.sh - tests/usr.bin/c++/t_asan_poison.shThese tests verify the following build options: - regular - profile - pic - pie - compat32 - (static unsupported)These tests verify whether ASan code can include compiler and sanitizerspecific header: &lt;sanitizer/asan_interface.h&gt;. The testing code checksthe ASAN_POISON_MEMORY_REGION() functionality, poisoning valid memory andasserting that it triggers expected failure.Patch submitted by &lt;Siddharth Muralee&gt;

            List of files:
            /netbsd-src/tests/usr.bin/cc/Makefile</description>
        <pubDate>Wed, 11 Apr 2018 03:25:25 +0000</pubDate>
        <dc:creator>kamil &lt;kamil@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>9f0bdbd99740b99fcfb30ca3a7fce9a40c2230d0 - Add new ATF tests for Address Sanitzier (ASan)</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/tests/usr.bin/cc/Makefile#9f0bdbd99740b99fcfb30ca3a7fce9a40c2230d0</link>
        <description>Add new ATF tests for Address Sanitzier (ASan)Add new C and C++ tests: - t_asan_double_free - t_asan_global_buffer_overflow - t_asan_heap_overflow - t_asan_off_by_one - t_asan_uafEach tests checks: - regular build - 32-bit - PIC - PIE - profileThese tests require paxctl(8) to disable ASLR in order to work in apredictable way. This is especially true for all !regular builds withadditional compiler flags.There are no static variations of these tests as this mode is not supportedin upstream ASan.Enable these tests on amd64 and i386.Patch submitted by &lt;Siddharth Muralee&gt;Additional polishing by myself.

            List of files:
            /netbsd-src/tests/usr.bin/cc/Makefile</description>
        <pubDate>Wed, 04 Apr 2018 23:51:35 +0000</pubDate>
        <dc:creator>kamil &lt;kamil@NetBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>ad9dcd3c99325abc04fce50f5816d8a24fbdba47 - Deprecate tests/toolchain.</title>
        <link>http://src.rcs.uwaterloo.ca:8080/history/netbsd-src/tests/usr.bin/cc/Makefile#ad9dcd3c99325abc04fce50f5816d8a24fbdba47</link>
        <description>Deprecate tests/toolchain.

            List of files:
            /netbsd-src/tests/usr.bin/cc/Makefile</description>
        <pubDate>Sat, 17 Mar 2012 17:15:28 +0000</pubDate>
        <dc:creator>jruoho &lt;jruoho@NetBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
