<?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>
    <link>http://nxr.netbsd.org/rss/src/tests/usr.bin/c++/Makefile</link>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2005</copyright>
    <generator>Java</generator>
    
<item>
    <title>Add ATF c and c++ tests for TSan, MSan, libFuzzer<br/><br/>These tests require Clang/LLVM 7 or newer on NetBSD.<br/><br/>Contributed by Yang Zheng during GSoC 2018.</title>
    <description>/src/tests/usr.bin/c++/Makefile - 1.12</description>
    <pubDate>Sun Aug 18 20:15:58 UTC 2019</pubDate>
    <dc:creator>kamil</dc:creator>
</item>

<item>
    <title>branches:  1.11.2;<br/>Move common UBSAN test case code into ubsan_common.subr<br/><br/>Reviewed by &lt;kamil&gt;</title>
    <description>/src/tests/usr.bin/c++/Makefile - 1.11</description>
    <pubDate>Tue Jan 29 20:07:03 UTC 2019</pubDate>
    <dc:creator>mgorny</dc:creator>
</item>

<item>
    <title>Move common ASAN test case code into asan_common.subr<br/><br/>Reviewed by &lt;kamil&gt;</title>
    <description>/src/tests/usr.bin/c++/Makefile - 1.10</description>
    <pubDate>Tue Jan 29 20:02:34 UTC 2019</pubDate>
    <dc:creator>mgorny</dc:creator>
</item>

<item>
    <title>branches:  1.9.2;<br/>Add new ATF Undefined Behavior Sanitizer tests<br/><br/>Add new cc and c++ tests to check whether UBSan works.<br/>These tests are prepared for GCC (in base) and Clang (with external patches).<br/><br/>Enable these tests for all ports by default, just verify whether we are<br/>using GCC/Clang or a compatible compiler.<br/><br/>Add five equivalent C and C++ tests:<br/> - Integer addition overflow<br/> - Integer divide by zero<br/> - Integer negation overflow<br/> - Integer subtraction overflow<br/> - VLA out of bounds<br/><br/>All tests pass on NetBSD/amd64.<br/><br/>Patch submitted by &lt;Harry Pantazis&gt;<br/>Minor cleanup by &lt;myself&gt;</title>
    <description>/src/tests/usr.bin/c++/Makefile - 1.9</description>
    <pubDate>Wed May 02 18:46:05 UTC 2018</pubDate>
    <dc:creator>kamil</dc:creator>
</item>

<item>
    <title>Import new C and C++ ATF tests for ASan<br/><br/>Add new tests:<br/> - tests/usr.bin/cc/t_asan_poison.sh<br/> - tests/usr.bin/c++/t_asan_poison.sh<br/><br/>These tests verify the following build options:<br/> - regular<br/> - profile<br/> - pic<br/> - pie<br/> - compat32<br/> - (static unsupported)<br/><br/>These tests verify whether ASan code can include compiler and sanitizer<br/>specific header: &lt;sanitizer/asan_interface.h&gt;. The testing code checks<br/>the ASAN_POISON_MEMORY_REGION() functionality, poisoning valid memory and<br/>asserting that it triggers expected failure.<br/><br/>Patch submitted by &lt;Siddharth Muralee&gt;</title>
    <description>/src/tests/usr.bin/c++/Makefile - 1.8</description>
    <pubDate>Wed Apr 11 03:25:25 UTC 2018</pubDate>
    <dc:creator>kamil</dc:creator>
</item>

<item>
    <title>Add new ATF tests for Address Sanitzier (ASan)<br/><br/>Add new C and C++ tests:<br/> - t_asan_double_free<br/> - t_asan_global_buffer_overflow<br/> - t_asan_heap_overflow<br/> - t_asan_off_by_one<br/> - t_asan_uaf<br/><br/>Each tests checks:<br/> - regular build<br/> - 32-bit<br/> - PIC<br/> - PIE<br/> - profile<br/><br/>These tests require paxctl(8) to disable ASLR in order to work in a<br/>predictable way. This is especially true for all !regular builds with<br/>additional compiler flags.<br/><br/>There are no static variations of these tests as this mode is not supported<br/>in upstream ASan.<br/><br/>Enable these tests on amd64 and i386.<br/><br/>This is part two patch, adding the remaining C++ changes.<br/><br/>Patch submitted by &lt;Siddharth Muralee&gt;<br/>Additional polishing by myself.</title>
    <description>/src/tests/usr.bin/c++/Makefile - 1.7</description>
    <pubDate>Wed Apr 04 23:53:26 UTC 2018</pubDate>
    <dc:creator>kamil</dc:creator>
</item>

<item>
    <title>Correct a small regression typo in usr.bin/c++ ATF tests<br/><br/>TESTS_SH= changed to TESTS_SH+=</title>
    <description>/src/tests/usr.bin/c++/Makefile - 1.6</description>
    <pubDate>Wed Apr 04 15:53:04 UTC 2018</pubDate>
    <dc:creator>kamil</dc:creator>
</item>

<item>
    <title>Sort entries in ATF tests in tests/usr.bin/c++/Makefile<br/><br/>No functional change intended.</title>
    <description>/src/tests/usr.bin/c++/Makefile - 1.5</description>
    <pubDate>Wed Apr 04 15:08:59 UTC 2018</pubDate>
    <dc:creator>kamil</dc:creator>
</item>

<item>
    <title>Add new C++ ATF tests<br/><br/>Add new variations for existing C++ tests:<br/> - Static<br/> - Profile+32-bit<br/> - PIC+32-bit<br/> - PIC+Profile<br/> - PIC+Profile+32-bit<br/><br/>All tests pass for NetBSD/amd64:<br/> - t_cxxruntime<br/> - t_hello<br/> - t_static_destructor<br/><br/>+--------------------------------------------------------------+<br/>| Options            | cxxruntime | hello  | static_destructor |<br/>+--------------------------------------------------------------+<br/>| None               | Passed     | Passed | Passed            |<br/>| 32-bit             | Passed     | Passed | Passed            |<br/>| PIC                | Passed     | Passed | Passed            |<br/>| PIE                | Passed     | Passed | Passed            |<br/>| Profile            | Passed     | Passed | Passed            |<br/>| Static             | Passed     | Passed | Passed            |<br/>| Profile+32-bit     | Passed     | Passed | Passed            |<br/>| PIC+32-bit         | Passed     | Passed | Passed            |<br/>| PIC+Profile        | Passed     | Passed | Passed            |<br/>| PIC+Profile+32-bit | Passed     | Passed | Passed            |<br/>+--------------------------------------------------------------+<br/><br/>Add new C++11 std::call_once tests:<br/> - t_call_once<br/> - t_call_once2<br/><br/>Add new C++11 test with pthread_once(3) and C++ lambda:<br/> - t_pthread_once<br/><br/>All tests with the profile option for std::call_once and<br/>pthread_once(3) are marked as expected failure (NetBSD/amd64).<br/><br/>Results for *_once*:<br/>+------------------------------------------------------------+<br/>| Options            | call_once | call_once2 | pthread_once |<br/>+------------------------------------------------------------+<br/>| None               | Passed    | Passed     | Passed       |<br/>| 32-bit             | Passed    |  Passed    | Passed       |<br/>| PIC                | Passed    | Passed     | Passed       |<br/>| PIE                | Passed    | Passed     | Passed       |<br/>| Profile            |  Failed   |  Failed    |  Failed      |<br/>| Static             | Passed    | Passed     | Passed       |<br/>| Profile+32-bit     |  Failed   |  Failed    |  Failed      |<br/>| PIC+32-bit         | Passed    | Passed     | Passed       |<br/>| PIC+Profile        |  Failed   |  Failed    |  Failed      |<br/>| PIC+Profile+32-bit |  Failed   |  Failed    |  Failed      |<br/>+------------------------------------------------------------+<br/><br/>Long term there is an option to refacotr the framework for C and C++ tests,<br/>in order to reduce code duplication.<br/><br/>Patches sent by Yang Zheng &lt;tomsun.0.7@gmail.com&gt;</title>
    <description>/src/tests/usr.bin/c++/Makefile - 1.4</description>
    <pubDate>Sat Mar 24 00:26:51 UTC 2018</pubDate>
    <dc:creator>kamil</dc:creator>
</item>

<item>
    <title>branches:  1.3.2;  1.3.10;<br/>Add new ATF C++ tests in usr.bin/c++: t_static_destructor<br/><br/>These tests are cloned from t_cxxruntime and check proper order of destructor<br/>calls. They must be reported in reverse order of constructor completion.<br/><br/>Added tests:<br/> - static_destructor<br/> - static_destructor_pic<br/> - static_destructor_pie<br/> - static_destructor32<br/><br/>This test file replaces src/regress/usr.bin/c++/static_destructor.</title>
    <description>/src/tests/usr.bin/c++/Makefile - 1.3</description>
    <pubDate>Sun May 14 02:02:25 UTC 2017</pubDate>
    <dc:creator>kamil</dc:creator>
</item>

<item>
    <title>Add new ATF C++ tests in usr.bin/c++<br/><br/>These tests are cloned from t_hello and use c++ runtime basic functions.<br/><br/>Added tests:<br/> - hello<br/> - hello_pic<br/> - hello_pie<br/> - hello32</title>
    <description>/src/tests/usr.bin/c++/Makefile - 1.2</description>
    <pubDate>Sun May 14 01:03:21 UTC 2017</pubDate>
    <dc:creator>kamil</dc:creator>
</item>

<item>
    <title>Add new c++ ATF tests in usr.bin/c++: t_hello<br/><br/>This is a copy of t_hello from usr.bin/cc.<br/><br/>Added tests:<br/> - hello<br/> - hello_pic<br/> - hello_pie<br/> - hello32<br/><br/>These tests do not use c++ runtime library functions.<br/><br/>Protect these tests with MKCXX.</title>
    <description>/src/tests/usr.bin/c++/Makefile - 1.1</description>
    <pubDate>Sun May 14 00:07:07 UTC 2017</pubDate>
    <dc:creator>kamil</dc:creator>
</item>

<item>
    <title>Sync with HEAD</title>
    <description>/src/tests/usr.bin/c++/Makefile - 1.3.10.4</description>
    <pubDate>Mon May 21 04:36:18 UTC 2018</pubDate>
    <dc:creator>pgoyette</dc:creator>
</item>

<item>
    <title>Sync with HEAD, resolve some conflicts</title>
    <description>/src/tests/usr.bin/c++/Makefile - 1.3.10.3</description>
    <pubDate>Mon Apr 16 02:00:10 UTC 2018</pubDate>
    <dc:creator>pgoyette</dc:creator>
</item>

<item>
    <title>Sync with HEAD.  77 conflicts resolved - all of them $NetBSD$</title>
    <description>/src/tests/usr.bin/c++/Makefile - 1.3.10.2</description>
    <pubDate>Sat Apr 07 04:12:20 UTC 2018</pubDate>
    <dc:creator>pgoyette</dc:creator>
</item>

<item>
    <title>Resolve conflicts between branch and HEAD</title>
    <description>/src/tests/usr.bin/c++/Makefile - 1.3.10.1</description>
    <pubDate>Fri Mar 30 06:20:16 UTC 2018</pubDate>
    <dc:creator>pgoyette</dc:creator>
</item>

<item>
    <title>Resolve conflicts from previous merge (all resulting from $NetBSD<br/>keywork expansion)</title>
    <description>/src/tests/usr.bin/c++/Makefile - 1.3.2.2</description>
    <pubDate>Fri May 19 00:22:59 UTC 2017</pubDate>
    <dc:creator>pgoyette</dc:creator>
</item>

<item>
    <title>file Makefile was added on branch prg-localcount2 on 2017-05-19 00:22:59 +0000</title>
    <description>/src/tests/usr.bin/c++/Makefile - 1.3.2.1</description>
    <pubDate>Sun May 14 02:02:25 UTC 2017</pubDate>
    <dc:creator>pgoyette</dc:creator>
</item>

<item>
    <title>Mostly merge changes from HEAD upto 20200411</title>
    <description>/src/tests/usr.bin/c++/Makefile - 1.9.2.2</description>
    <pubDate>Mon Apr 13 08:05:32 UTC 2020</pubDate>
    <dc:creator>martin</dc:creator>
</item>

<item>
    <title>Sync with HEAD</title>
    <description>/src/tests/usr.bin/c++/Makefile - 1.9.2.1</description>
    <pubDate>Mon Jun 10 22:10:11 UTC 2019</pubDate>
    <dc:creator>christos</dc:creator>
</item>
</channel></rss>

