<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/source/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in helpers.h</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>c0329020da211b41afce4d1c8a1c2494c6d97883 - selftest: add tests for O_EMPTYPATH</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/filesystems/openat2/helpers.h#c0329020da211b41afce4d1c8a1c2494c6d97883</link>
        <description>selftest: add tests for O_EMPTYPATHAdd tests for the new O_EMPTYPATH flag of openat(2)/openat2(2).Also, the current openat2 tests include a helper header file thatdefines the necessary structs and constants to use openat2(2), such asstruct open_how. This may result in conflicting definitions when thesystem header openat2.h is present as well.So add openat2.h generated by &apos;make headers&apos; to the uapi headerfiles in ./tools/include and remove the helper file definitions ofthe current openat2 selftests.Signed-off-by: Jori Koolstra &lt;jkoolstra@xs4all.nl&gt;Link: https://patch.msgid.link/20260424114611.1678641-3-jkoolstra@xs4all.nlSigned-off-by: Christian Brauner (Amutable) &lt;brauner@kernel.org&gt;

            List of files:
            /linux/tools/testing/selftests/filesystems/openat2/helpers.h</description>
        <pubDate>Fri, 24 Apr 2026 13:46:03 +0200</pubDate>
        <dc:creator>Jori Koolstra &lt;jkoolstra@xs4all.nl&gt;</dc:creator>
    </item>
<item>
        <title>215be76e025d1311acd6eafc5cfd444974f0f30e - selftests: openat2: migrate to kselftest harness</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/filesystems/openat2/helpers.h#215be76e025d1311acd6eafc5cfd444974f0f30e</link>
        <description>selftests: openat2: migrate to kselftest harnessThese tests were written in the early days of selftests&apos; TAP support,the more modern kselftest harness is much easier to follow and maintain.The actual contents of the tests are unchanged by this change. Most ofthe diff involves switching from the E_* syscall wrappers we previouslyused to ASSERT_EQ(fn(...), 0) in tests and helper functions.The first pass of the migration was done using Claude, followed by amanual rework and review.Assisted-by: Claude:claude-4.6-opusSigned-off-by: Aleksa Sarai &lt;aleksa@amutable.com&gt;Link: https://patch.msgid.link/20260401-openat2-selftests-kunit-v2-4-ad153a07da0c@amutable.comSigned-off-by: Christian Brauner (Amutable) &lt;brauner@kernel.org&gt;

            List of files:
            /linux/tools/testing/selftests/filesystems/openat2/helpers.h</description>
        <pubDate>Wed, 01 Apr 2026 02:28:05 +0200</pubDate>
        <dc:creator>Aleksa Sarai &lt;aleksa@amutable.com&gt;</dc:creator>
    </item>
<item>
        <title>582c904573a63eac7ecbac1a285899ffbf0d43ac - selftests: openat2: switch from custom ARRAY_LEN to ARRAY_SIZE</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/filesystems/openat2/helpers.h#582c904573a63eac7ecbac1a285899ffbf0d43ac</link>
        <description>selftests: openat2: switch from custom ARRAY_LEN to ARRAY_SIZEFor whatever reason, the original version of the tests used a customversion of ARRAY_SIZE, but ARRAY_SIZE works just as well.Signed-off-by: Aleksa Sarai &lt;aleksa@amutable.com&gt;Link: https://patch.msgid.link/20260401-openat2-selftests-kunit-v2-3-ad153a07da0c@amutable.comSigned-off-by: Christian Brauner (Amutable) &lt;brauner@kernel.org&gt;

            List of files:
            /linux/tools/testing/selftests/filesystems/openat2/helpers.h</description>
        <pubDate>Wed, 01 Apr 2026 02:28:04 +0200</pubDate>
        <dc:creator>Aleksa Sarai &lt;aleksa@amutable.com&gt;</dc:creator>
    </item>
<item>
        <title>d2fcf57ffc3b85b816550b3ee404ffcc83ace16c - selftests: openat2: move helpers to header</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/filesystems/openat2/helpers.h#d2fcf57ffc3b85b816550b3ee404ffcc83ace16c</link>
        <description>selftests: openat2: move helpers to headerThis is a bit ugly, but in the next patch we will move to usingkselftest_harness.h -- which doesn&apos;t play well with being included inmultiple compilation units due to duplicate function definitions.Not including kselftest_harness.h would let us avoid this patch, but thehelpers will need include kselftest_harness.h in order to switch toTH_LOG.Signed-off-by: Aleksa Sarai &lt;aleksa@amutable.com&gt;Link: https://patch.msgid.link/20260401-openat2-selftests-kunit-v2-2-ad153a07da0c@amutable.comSigned-off-by: Christian Brauner (Amutable) &lt;brauner@kernel.org&gt;

            List of files:
            /linux/tools/testing/selftests/filesystems/openat2/helpers.h</description>
        <pubDate>Wed, 01 Apr 2026 02:28:03 +0200</pubDate>
        <dc:creator>Aleksa Sarai &lt;aleksa@amutable.com&gt;</dc:creator>
    </item>
<item>
        <title>fe087927046cdbc7365bef4650d2d5451ce1ea8a - selftests: move openat2 tests to selftests/filesystems/</title>
        <link>http://kernelsources.org:8080/source/history/linux/tools/testing/selftests/filesystems/openat2/helpers.h#fe087927046cdbc7365bef4650d2d5451ce1ea8a</link>
        <description>selftests: move openat2 tests to selftests/filesystems/These tests really should&apos;ve always belonged there, doubly so now thatthey include a lot of other generic filesystem-related tests.Suggested-by: Christian Brauner &lt;brauner@kernel.org&gt;Signed-off-by: Aleksa Sarai &lt;aleksa@amutable.com&gt;Link: https://patch.msgid.link/20260401-openat2-selftests-kunit-v2-1-ad153a07da0c@amutable.comSigned-off-by: Christian Brauner (Amutable) &lt;brauner@kernel.org&gt;

            List of files:
            /linux/tools/testing/selftests/filesystems/openat2/helpers.h</description>
        <pubDate>Wed, 01 Apr 2026 02:28:02 +0200</pubDate>
        <dc:creator>Aleksa Sarai &lt;aleksa@amutable.com&gt;</dc:creator>
    </item>
</channel>
</rss>
