<?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>960ed6ca - selftests/landlock: Test audit with restrict flags</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/landlock/Makefile#960ed6ca</link>
        <description>selftests/landlock: Test audit with restrict flagsAdd audit_exec tests to filter Landlock denials according tocross-execution or muted subdomains.Add a wait-pipe-sandbox.c test program to sandbox itself and send a(denied) signals to its parent.Cc: G&#252;nther Noack &lt;gnoack@google.com&gt;Cc: Paul Moore &lt;paul@paul-moore.com&gt;Link: https://lore.kernel.org/r/20250320190717.2287696-24-mic@digikod.netSigned-off-by: Micka&#235;l Sala&#252;n &lt;mic@digikod.net&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/landlock/Makefile</description>
        <pubDate>Thu, 20 Mar 2025 19:07:12 +0000</pubDate>
        <dc:creator>Micka&#235;l Sala&#252;n &lt;mic@digikod.net&gt;</dc:creator>
    </item>
<item>
        <title>2a794ee6 - selftests/landlock: Add layout1.umount_sandboxer tests</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/landlock/Makefile#2a794ee6</link>
        <description>selftests/landlock: Add layout1.umount_sandboxer testsCheck that a domain is not tied to the executable file that created it.For instance, that could happen if a Landlock domain took a reference toa struct path.Move global path names to common.h and replace copy_binary() with a moregeneric copy_file() helper.Test coverage for security/landlock is 92.7% of 1133 lines according togcc/gcov-14.Cc: G&#252;nther Noack &lt;gnoack@google.com&gt;Link: https://lore.kernel.org/r/20250108154338.1129069-23-mic@digikod.net[mic: Update date and add test coverage]Signed-off-by: Micka&#235;l Sala&#252;n &lt;mic@digikod.net&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/landlock/Makefile</description>
        <pubDate>Wed, 08 Jan 2025 15:43:30 +0000</pubDate>
        <dc:creator>Micka&#235;l Sala&#252;n &lt;mic@digikod.net&gt;</dc:creator>
    </item>
<item>
        <title>0e4db4f8 - selftests/landlock: Fix build with non-default pthread linking</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/landlock/Makefile#0e4db4f8</link>
        <description>selftests/landlock: Fix build with non-default pthread linkingOld toolchains require explicit -lpthread (e.g. on Debian 11).Cc: Nathan Chancellor &lt;nathan@kernel.org&gt;Cc: Tahera Fahimi &lt;fahimitahera@gmail.com&gt;Fixes: c8994965013e (&quot;selftests/landlock: Test signal scoping for threads&quot;)Reviewed-by: G&#252;nther Noack &lt;gnoack3000@gmail.com&gt;Link: https://lore.kernel.org/r/20250115145409.312226-1-mic@digikod.netSigned-off-by: Micka&#235;l Sala&#252;n &lt;mic@digikod.net&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/landlock/Makefile</description>
        <pubDate>Wed, 15 Jan 2025 14:54:07 +0000</pubDate>
        <dc:creator>Micka&#235;l Sala&#252;n &lt;mic@digikod.net&gt;</dc:creator>
    </item>
<item>
        <title>091873e4 - selftests/landlock: Build without static libraries</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/landlock/Makefile#091873e4</link>
        <description>selftests/landlock: Build without static librariesThe only (forced) static test binary doesn&apos;t depend on libcap.  Becauseusing -lcap on systems that don&apos;t have such static library would fail(e.g. on Arch Linux), let&apos;s be more specific and require only dynamiclibcap linking.Fixes: a52540522c95 (&quot;selftests/landlock: Fix out-of-tree builds&quot;)Cc: Anders Roxell &lt;anders.roxell@linaro.org&gt;Cc: Guillaume Tucker &lt;guillaume.tucker@collabora.com&gt;Cc: Mark Brown &lt;broonie@kernel.org&gt;Cc: Shuah Khan &lt;skhan@linuxfoundation.org&gt;Cc: stable@vger.kernel.orgSigned-off-by: Micka&#235;l Sala&#252;n &lt;mic@digikod.net&gt;Link: https://lore.kernel.org/r/20221019200536.2771316-1-mic@digikod.net

            List of files:
            /linux-6.15/tools/testing/selftests/landlock/Makefile</description>
        <pubDate>Wed, 19 Oct 2022 20:05:36 +0000</pubDate>
        <dc:creator>Micka&#235;l Sala&#252;n &lt;mic@digikod.net&gt;</dc:creator>
    </item>
<item>
        <title>a5254052 - selftests/landlock: Fix out-of-tree builds</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/landlock/Makefile#a5254052</link>
        <description>selftests/landlock: Fix out-of-tree buildsThese changes simplify the Makefile and handle these 5 ways to buildLandlock tests:- make -C tools/testing/selftests/landlock- make -C tools/testing/selftests TARGETS=landlock gen_tar- make TARGETS=landlock kselftest-gen_tar- make TARGETS=landlock O=build kselftest-gen_tar- make -C /tmp/linux TARGETS=landlock O=/tmp/build kselftest-gen_tarThis also makes $(KHDR_INCLUDES) available to other test collectionswhen building in their directory.Fixes: f1227dc7d041 (&quot;selftests/landlock: fix broken include of linux/landlock.h&quot;)Fixes: 3bb267a36185 (&quot;selftests: drop khdr make target&quot;)Cc: Anders Roxell &lt;anders.roxell@linaro.org&gt;Cc: Guillaume Tucker &lt;guillaume.tucker@collabora.com&gt;Cc: Mark Brown &lt;broonie@kernel.org&gt;Cc: Shuah Khan &lt;skhan@linuxfoundation.org&gt;Signed-off-by: Micka&#235;l Sala&#252;n &lt;mic@digikod.net&gt;Link: https://lore.kernel.org/r/20220909103402.1501802-1-mic@digikod.net

            List of files:
            /linux-6.15/tools/testing/selftests/landlock/Makefile</description>
        <pubDate>Fri, 09 Sep 2022 10:34:02 +0000</pubDate>
        <dc:creator>Micka&#235;l Sala&#252;n &lt;mic@digikod.net&gt;</dc:creator>
    </item>
<item>
        <title>f1227dc7 - selftests/landlock: fix broken include of linux/landlock.h</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/landlock/Makefile#f1227dc7</link>
        <description>selftests/landlock: fix broken include of linux/landlock.hRevert part of the earlier changes to fix the kselftest build whenusing a sub-directory from the top of the tree as this broke thelandlock test build as a side-effect when building with &quot;make -Ctools/testing/selftests/landlock&quot;.Reported-by: Micka&#235;l Sala&#252;n &lt;mic@digikod.net&gt;Fixes: a917dd94b832 (&quot;selftests/landlock: drop deprecated headers dependency&quot;)Fixes: f2745dc0ba3d (&quot;selftests: stop using KSFT_KHDR_INSTALL&quot;)Signed-off-by: Guillaume Tucker &lt;guillaume.tucker@collabora.com&gt;Signed-off-by: Shuah Khan &lt;skhan@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/landlock/Makefile</description>
        <pubDate>Wed, 03 Aug 2022 20:13:54 +0000</pubDate>
        <dc:creator>Guillaume Tucker &lt;guillaume.tucker@collabora.com&gt;</dc:creator>
    </item>
<item>
        <title>a917dd94 - selftests/landlock: drop deprecated headers dependency</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/landlock/Makefile#a917dd94</link>
        <description>selftests/landlock: drop deprecated headers dependencyThe khdr make target has been removed, so drop it from the landlockMakefile dependencies as well as related include paths that arestandard for headers in the kernel tree.Signed-off-by: Guillaume Tucker &lt;guillaume.tucker@collabora.com&gt;Reported-by: Anders Roxell &lt;anders.roxell@linaro.org&gt;Signed-off-by: Shuah Khan &lt;skhan@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/landlock/Makefile</description>
        <pubDate>Wed, 13 Jul 2022 06:35:01 +0000</pubDate>
        <dc:creator>Guillaume Tucker &lt;guillaume.tucker@collabora.com&gt;</dc:creator>
    </item>
<item>
        <title>f2745dc0 - selftests: stop using KSFT_KHDR_INSTALL</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/landlock/Makefile#f2745dc0</link>
        <description>selftests: stop using KSFT_KHDR_INSTALLStop using the KSFT_KHDR_INSTALL flag as installing the kernel headersfrom the kselftest Makefile is causing some issues.  Instead, rely onthe headers to be installed directly by the top-level Makefile&quot;headers_install&quot; make target prior to building kselftest.Signed-off-by: Guillaume Tucker &lt;guillaume.tucker@collabora.com&gt;Tested-by: Anders Roxell &lt;anders.roxell@linaro.org&gt;Signed-off-by: Shuah Khan &lt;skhan@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/landlock/Makefile</description>
        <pubDate>Fri, 08 Jul 2022 16:23:28 +0000</pubDate>
        <dc:creator>Guillaume Tucker &lt;guillaume.tucker@collabora.com&gt;</dc:creator>
    </item>
<item>
        <title>cb542c66 - selftests: landlock: Add the uapi headers include variable</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/landlock/Makefile#cb542c66</link>
        <description>selftests: landlock: Add the uapi headers include variableOut of tree build of this test fails if relative path of the outputdirectory is specified. Add the KHDR_INCLUDES to correctly reach theheaders.Signed-off-by: Muhammad Usama Anjum &lt;usama.anjum@collabora.com&gt;Reviewed-by: Micka&#235;l Sala&#252;n &lt;mic@linux.microsoft.com&gt;Signed-off-by: Shuah Khan &lt;skhan@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/landlock/Makefile</description>
        <pubDate>Wed, 19 Jan 2022 10:15:27 +0000</pubDate>
        <dc:creator>Muhammad Usama Anjum &lt;usama.anjum@collabora.com&gt;</dc:creator>
    </item>
<item>
        <title>e1199815 - selftests/landlock: Add user space tests</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/testing/selftests/landlock/Makefile#e1199815</link>
        <description>selftests/landlock: Add user space testsTest all Landlock system calls, ptrace hooks semantic and filesystemaccess-control with multiple layouts.Test coverage for security/landlock/ is 93.6% of lines.  The code notcovered only deals with internal kernel errors (e.g. memory allocation)and race conditions.Cc: James Morris &lt;jmorris@namei.org&gt;Cc: Jann Horn &lt;jannh@google.com&gt;Cc: Serge E. Hallyn &lt;serge@hallyn.com&gt;Cc: Shuah Khan &lt;shuah@kernel.org&gt;Signed-off-by: Micka&#235;l Sala&#252;n &lt;mic@linux.microsoft.com&gt;Reviewed-by: Vincent Dagonneau &lt;vincent.dagonneau@ssi.gouv.fr&gt;Reviewed-by: Kees Cook &lt;keescook@chromium.org&gt;Link: https://lore.kernel.org/r/20210422154123.13086-11-mic@digikod.netSigned-off-by: James Morris &lt;jamorris@linux.microsoft.com&gt;

            List of files:
            /linux-6.15/tools/testing/selftests/landlock/Makefile</description>
        <pubDate>Thu, 22 Apr 2021 15:41:20 +0000</pubDate>
        <dc:creator>Micka&#235;l Sala&#252;n &lt;mic@linux.microsoft.com&gt;</dc:creator>
    </item>
</channel>
</rss>
