<?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 Makefile</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>0fc8f6200d2313278fbf4539bbab74677c685531 - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/lib/tests/Makefile#0fc8f6200d2313278fbf4539bbab74677c685531</link>
        <description>Merge drm/drm-fixes into drm-misc-fixesGetting fixes and updates from v7.1-rc1.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/lib/tests/Makefile</description>
        <pubDate>Mon, 27 Apr 2026 10:26:49 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>f4b369c6fe0ceaba2da2daff8c9eb415f85926dd - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/lib/tests/Makefile#f4b369c6fe0ceaba2da2daff8c9eb415f85926dd</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 7.1 merge window.

            List of files:
            /linux/lib/tests/Makefile</description>
        <pubDate>Mon, 20 Apr 2026 03:28:57 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>0421ccdfad0d92713a812a5aeb7d07b0ea7213c8 - Merge tag &apos;v7.0-rc3&apos; into next</title>
        <link>http://kernelsources.org:8080/source/history/linux/lib/tests/Makefile#0421ccdfad0d92713a812a5aeb7d07b0ea7213c8</link>
        <description>Merge tag &apos;v7.0-rc3&apos; into nextSync up with the mainline to brig up the latest changes, specificallychanges to ALPS driver.

            List of files:
            /linux/lib/tests/Makefile</description>
        <pubDate>Thu, 12 Mar 2026 18:44:42 +0100</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>b66cb4f156fe47f52065e70eb1b2f12ccd0c2884 - Merge tag &apos;printk-for-7.1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux</title>
        <link>http://kernelsources.org:8080/source/history/linux/lib/tests/Makefile#b66cb4f156fe47f52065e70eb1b2f12ccd0c2884</link>
        <description>Merge tag &apos;printk-for-7.1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/printk/linuxPull printk updates from Petr Mladek: - Fix printk ring buffer initialization and sanity checks - Workaround printf kunit test compilation with gcc &lt; 12.1 - Add IPv6 address printf format tests - Misc code and documentation cleanup* tag &apos;printk-for-7.1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux:  printf: Compile the kunit test with DISABLE_BRANCH_PROFILING DISABLE_BRANCH_PROFILING  lib/vsprintf: use bool for local decode variable  lib/hexdump: print_hex_dump_bytes() calls print_hex_dump_debug()  printk: ringbuffer: fix errors in comments  printk_ringbuffer: Add sanity check for 0-size data  printk_ringbuffer: Fix get_data() size sanity check  printf: add IPv6 address format tests  printk: Fix _DESCS_COUNT type for 64-bit systems

            List of files:
            /linux/lib/tests/Makefile</description>
        <pubDate>Tue, 21 Apr 2026 00:42:18 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>3e9e952bb3139ad1e08f3e1960239c2988ab90c9 - Merge branch &apos;for-7.1-printf-kunit-build&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/lib/tests/Makefile#3e9e952bb3139ad1e08f3e1960239c2988ab90c9</link>
        <description>Merge branch &apos;for-7.1-printf-kunit-build&apos; into for-linus

            List of files:
            /linux/lib/tests/Makefile</description>
        <pubDate>Mon, 20 Apr 2026 13:41:28 +0200</pubDate>
        <dc:creator>Petr Mladek &lt;pmladek@suse.com&gt;</dc:creator>
    </item>
<item>
        <title>8901ac9d2c7eb8ed7ae5e749bf13ecb3b6062488 - printf: Compile the kunit test with DISABLE_BRANCH_PROFILING DISABLE_BRANCH_PROFILING</title>
        <link>http://kernelsources.org:8080/source/history/linux/lib/tests/Makefile#8901ac9d2c7eb8ed7ae5e749bf13ecb3b6062488</link>
        <description>printf: Compile the kunit test with DISABLE_BRANCH_PROFILING DISABLE_BRANCH_PROFILINGGCC &lt; 12.1 can miscompile printf_kunit&apos;s errptr() test when branchprofiling is enabled. BUILD_BUG_ON(IS_ERR(PTR)) is a constant falseexpression, but CONFIG_TRACE_BRANCH_PROFILING andCONFIG_PROFILE_ALL_BRANCHES make the IS_ERR() path side-effectful.GCC&apos;s IPA splitter can then outline the cold assert arm intoerrptr.part.* and leave that clone with an unconditional__compiletime_assert_*() call, causing a false build failure.This started showing up after test_hashed() became a macro and moved itslocal buffer into errptr(), which changed GCC&apos;s inlining and splittingdecisions enough to expose the compiler bug.Workaround the problem by disabling the branch profiling forprintf_kunit.o. It is a straightforward and acceptable solution.The workaround can be removed once the minimum GCC includes commit76fe49423047 (&quot;Fix tree-optimization/101941: IPA splitting outfunction with error attribute&quot;), which first shipped in GCC 12.1.Fixes: 9bfa52dac27a (&quot;printf: convert test_hashed into macro&quot;)Reported-by: kernel test robot &lt;lkp@intel.com&gt;Closes: https://lore.kernel.org/oe-kbuild-all/202604030636.NqjaJvYp-lkp@intel.com/Cc: stable@vger.kernel.orgAcked-by: Tamir Duberstein &lt;tamird@kernel.org&gt;Link: https://patch.msgid.link/ad5gJAX9f6dSQluz@pathway.suse.czSigned-off-by: Petr Mladek &lt;pmladek@suse.com&gt;

            List of files:
            /linux/lib/tests/Makefile</description>
        <pubDate>Tue, 14 Apr 2026 17:41:24 +0200</pubDate>
        <dc:creator>Petr Mladek &lt;pmladek@suse.com&gt;</dc:creator>
    </item>
<item>
        <title>42d3b66d4cdbacfc9d120d2301b8de89cc29a914 - Merge drm/drm-next into drm-xe-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/lib/tests/Makefile#42d3b66d4cdbacfc9d120d2301b8de89cc29a914</link>
        <description>Merge drm/drm-next into drm-xe-nextBackmerging to bring in 7.00-rc3. Important ahead GPU SVM merging THPsupport.Signed-off-by: Matthew Brost &lt;matthew.brost@intel.com&gt;

            List of files:
            /linux/lib/tests/Makefile</description>
        <pubDate>Thu, 12 Mar 2026 15:17:56 +0100</pubDate>
        <dc:creator>Matthew Brost &lt;matthew.brost@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>f09812b85fa6f41058bcc46e70ac406bf9b0493a - Merge drm/drm-next into drm-intel-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/lib/tests/Makefile#f09812b85fa6f41058bcc46e70ac406bf9b0493a</link>
        <description>Merge drm/drm-next into drm-intel-nextSync with v7.0-rc1 which contains a few treewide changes affecting i915.Signed-off-by: Jani Nikula &lt;jani.nikula@intel.com&gt;

            List of files:
            /linux/lib/tests/Makefile</description>
        <pubDate>Wed, 25 Feb 2026 12:23:04 +0100</pubDate>
        <dc:creator>Jani Nikula &lt;jani.nikula@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>8b85987d3cf50178f67618122d9f3bb202f62f42 - Merge drm/drm-next into drm-misc-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/lib/tests/Makefile#8b85987d3cf50178f67618122d9f3bb202f62f42</link>
        <description>Merge drm/drm-next into drm-misc-nextLet&apos;s merge 7.0-rc1 to start the new drm-misc-next windowSigned-off-by: Maxime Ripard &lt;mripard@kernel.org&gt;

            List of files:
            /linux/lib/tests/Makefile</description>
        <pubDate>Mon, 23 Feb 2026 11:48:20 +0100</pubDate>
        <dc:creator>Maxime Ripard &lt;mripard@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>c17ee635fd3a482b2ad2bf5e269755c2eae5f25e - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/lib/tests/Makefile#c17ee635fd3a482b2ad2bf5e269755c2eae5f25e</link>
        <description>Merge drm/drm-fixes into drm-misc-fixes7.0-rc1 was just released, let&apos;s merge it to kick the new release cycle.Signed-off-by: Maxime Ripard &lt;mripard@kernel.org&gt;

            List of files:
            /linux/lib/tests/Makefile</description>
        <pubDate>Mon, 23 Feb 2026 10:09:45 +0100</pubDate>
        <dc:creator>Maxime Ripard &lt;mripard@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>136114e0abf03005e182d75761ab694648e6d388 - Merge tag &apos;mm-nonmm-stable-2026-02-12-10-48&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm</title>
        <link>http://kernelsources.org:8080/source/history/linux/lib/tests/Makefile#136114e0abf03005e182d75761ab694648e6d388</link>
        <description>Merge tag &apos;mm-nonmm-stable-2026-02-12-10-48&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mmPull non-MM updates from Andrew Morton: - &quot;ocfs2: give ocfs2 the ability to reclaim suballocator free bg&quot; saves   disk space by teaching ocfs2 to reclaim suballocator block group   space (Heming Zhao) - &quot;Add ARRAY_END(), and use it to fix off-by-one bugs&quot; adds the   ARRAY_END() macro and uses it in various places (Alejandro Colomar) - &quot;vmcoreinfo: support VMCOREINFO_BYTES larger than PAGE_SIZE&quot; makes   the vmcore code future-safe, if VMCOREINFO_BYTES ever exceeds the   page size (Pnina Feder) - &quot;kallsyms: Prevent invalid access when showing module buildid&quot; cleans   up kallsyms code related to module buildid and fixes an invalid   access crash when printing backtraces (Petr Mladek) - &quot;Address page fault in ima_restore_measurement_list()&quot; fixes a   kexec-related crash that can occur when booting the second-stage   kernel on x86 (Harshit Mogalapalli) - &quot;kho: ABI headers and Documentation updates&quot; updates the kexec   handover ABI documentation (Mike Rapoport) - &quot;Align atomic storage&quot; adds the __aligned attribute to atomic_t and   atomic64_t definitions to get natural alignment of both types on   csky, m68k, microblaze, nios2, openrisc and sh (Finn Thain) - &quot;kho: clean up page initialization logic&quot; simplifies the page   initialization logic in kho_restore_page() (Pratyush Yadav) - &quot;Unload linux/kernel.h&quot; moves several things out of kernel.h and into   more appropriate places (Yury Norov) - &quot;don&apos;t abuse task_struct.group_leader&quot; removes the usage of   -&gt;group_leader when it is &quot;obviously unnecessary&quot; (Oleg Nesterov) - &quot;list private v2 &amp; luo flb&quot; adds some infrastructure improvements to   the live update orchestrator (Pasha Tatashin)* tag &apos;mm-nonmm-stable-2026-02-12-10-48&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm: (107 commits)  watchdog/hardlockup: simplify perf event probe and remove per-cpu dependency  procfs: fix missing RCU protection when reading real_parent in do_task_stat()  watchdog/softlockup: fix sample ring index wrap in need_counting_irqs()  kcsan, compiler_types: avoid duplicate type issues in BPF Type Format  kho: fix doc for kho_restore_pages()  tests/liveupdate: add in-kernel liveupdate test  liveupdate: luo_flb: introduce File-Lifecycle-Bound global state  liveupdate: luo_file: Use private list  list: add kunit test for private list primitives  list: add primitives for private list manipulations  delayacct: fix uapi timespec64 definition  panic: add panic_force_cpu= parameter to redirect panic to a specific CPU  netclassid: use thread_group_leader(p) in update_classid_task()  RDMA/umem: don&apos;t abuse current-&gt;group_leader  drm/pan*: don&apos;t abuse current-&gt;group_leader  drm/amd: kill the outdated &quot;Only the pthreads threading model is supported&quot; checks  drm/amdgpu: don&apos;t abuse current-&gt;group_leader  android/binder: use same_thread_group(proc-&gt;tsk, current) in binder_mmap()  android/binder: don&apos;t abuse current-&gt;group_leader  kho: skip memoryless NUMA nodes when reserving scratch areas  ...

            List of files:
            /linux/lib/tests/Makefile</description>
        <pubDate>Thu, 12 Feb 2026 21:13:01 +0100</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>f144367d012929326f15a399394a9a8be4f98acb - Merge tag &apos;bitmap-for-6.20&apos; of https://github.com/norov/linux</title>
        <link>http://kernelsources.org:8080/source/history/linux/lib/tests/Makefile#f144367d012929326f15a399394a9a8be4f98acb</link>
        <description>Merge tag &apos;bitmap-for-6.20&apos; of https://github.com/norov/linuxPull bitmap updates from Yury Norov: - more rust helpers (Alice) - more bitops tests (Ryota) - FIND_NTH_BIT() uninitialized variable fix (Lee Yongjun) - random cleanups (Andy, H. Peter)* tag &apos;bitmap-for-6.20&apos; of https://github.com/norov/linux:  lib/tests: extend KUnit test for bitops with more cases  bitops: Add more files to the MAINTAINERS  lib/find_bit: fix uninitialized variable use in FIND_NTH_BIT  lib/tests: add KUnit test for bitops  rust: cpumask: add __rust_helper to helpers  rust: bitops: add __rust_helper to helpers  rust: bitmap: add __rust_helper to helpers  linux/bitfield.h: replace __auto_type with auto

            List of files:
            /linux/lib/tests/Makefile</description>
        <pubDate>Tue, 10 Feb 2026 20:39:45 +0100</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>ec496f77b4c11036cc835d6f045fb5e5ef1e6530 - Merge branch &apos;for-6.20/sony&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/lib/tests/Makefile#ec496f77b4c11036cc835d6f045fb5e5ef1e6530</link>
        <description>Merge branch &apos;for-6.20/sony&apos; into for-linus- Support for Rock band 4 PS4 and PS5 guitars (Rosalie Wanders)

            List of files:
            /linux/lib/tests/Makefile</description>
        <pubDate>Mon, 09 Feb 2026 17:33:26 +0100</pubDate>
        <dc:creator>Jiri Kosina &lt;jkosina@suse.com&gt;</dc:creator>
    </item>
<item>
        <title>4101b3b571701cdf1081b2f96124b1daaeaebbf1 - lib/tests: add KUnit test for bitops</title>
        <link>http://kernelsources.org:8080/source/history/linux/lib/tests/Makefile#4101b3b571701cdf1081b2f96124b1daaeaebbf1</link>
        <description>lib/tests: add KUnit test for bitopsAdd a KUnit test suite for the bitops API.The existing &apos;lib/test_bitops.c&apos; is preserved as-is because it containsad-hoc micro-benchmarks &apos;test_fns&apos; and is intended to ensure no compilerwarnings from C=1 sparse checker or -Wextra compilations.Introduce &apos;lib/tests/bitops_kunit.c&apos; for functional regression testing. Itports the test logic and data patterns from &apos;lib/test_bitops.c&apos; to KUnit,verifying correct behavior across various input patterns andarchitecture-specific edge cases using isolated stack-allocated bitmaps.The following test logic has been ported from test_bitops_startup() inlib/test_bitops.c:- set_bit() / clear_bit() / find_first_bit() validation -&gt;  test_set_bit_clear_bit()- get_count_order() validation -&gt; test_get_count_order()- get_count_order_long() validation -&gt; test_get_count_order_long()Also improve the find_first_bit() test to check the full bitmap length(BITOPS_LENGTH) instead of omitting the last bit, ensuring the bitmap iscompletely empty after cleanup.Verified on x86_64, i386, and arm64 architectures.Sample KUnit output:    KTAP version 1    # Subtest: bitops    # module: bitops_kunit    1..3        KTAP version 1        # Subtest: test_set_bit_clear_bit        ok 1 BITOPS_4        ok 2 BITOPS_7        ok 3 BITOPS_11        ok 4 BITOPS_31        ok 5 BITOPS_88    # test_set_bit_clear_bit: pass:5 fail:0 skip:0 total:5    ok 1 test_set_bit_clear_bit        KTAP version 1        # Subtest: test_get_count_order        ok 1 0x00000003        ok 2 0x00000004        ok 3 0x00001fff        ok 4 0x00002000        ok 5 0x50000000        ok 6 0x80000000        ok 7 0x80003000    # test_get_count_order: pass:7 fail:0 skip:0 total:7    ok 2 test_get_count_order        KTAP version 1        # Subtest: test_get_count_order_long        ok 1 0x0000000300000000        ok 2 0x0000000400000000        ok 3 0x00001fff00000000        ok 4 0x0000200000000000        ok 5 0x5000000000000000        ok 6 0x8000000000000000        ok 7 0x8000300000000000    # test_get_count_order_long: pass:7 fail:0 skip:0 total:7    ok 3 test_get_count_order_long[Yury: trim Kconfig help message]CC: Jesse Brandeburg &lt;jesse.brandeburg@intel.com&gt;CC: Wei Yang &lt;richard.weiyang@gmail.com&gt;Signed-off-by: Ryota Sakamoto &lt;sakamo.ryota@gmail.com&gt;Signed-off-by: Yury Norov &lt;ynorov@nvidia.com&gt;

            List of files:
            /linux/lib/tests/Makefile</description>
        <pubDate>Sat, 10 Jan 2026 18:38:07 +0100</pubDate>
        <dc:creator>Ryota Sakamoto &lt;sakamo.ryota@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>f653ff7af96951faa69c68665d44bed80702544f - tests/liveupdate: add in-kernel liveupdate test</title>
        <link>http://kernelsources.org:8080/source/history/linux/lib/tests/Makefile#f653ff7af96951faa69c68665d44bed80702544f</link>
        <description>tests/liveupdate: add in-kernel liveupdate testIntroduce an in-kernel test module to validate the core logic of the LiveUpdate Orchestrator&apos;s File-Lifecycle-Bound feature.  This provides alow-level, controlled environment to test FLB registration and callbackinvocation without requiring userspace interaction or actual kexecreboots.The test is enabled by the CONFIG_LIVEUPDATE_TEST Kconfig option.Link: https://lkml.kernel.org/r/20251218155752.3045808-6-pasha.tatashin@soleen.comSigned-off-by: Pasha Tatashin &lt;pasha.tatashin@soleen.com&gt;Cc: Alexander Graf &lt;graf@amazon.com&gt;Cc: David Gow &lt;davidgow@google.com&gt;Cc: David Matlack &lt;dmatlack@google.com&gt;Cc: David Rientjes &lt;rientjes@google.com&gt;Cc: Jonathan Corbet &lt;corbet@lwn.net&gt;Cc: Kees Cook &lt;kees@kernel.org&gt;Cc: Mike Rapoport &lt;rppt@kernel.org&gt;Cc: Petr Mladek &lt;pmladek@suse.com&gt;Cc: Pratyush Yadav &lt;pratyush@kernel.org&gt;Cc: Samiullah Khawaja &lt;skhawaja@google.com&gt;Cc: Tamir Duberstein &lt;tamird@gmail.com&gt;Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;

            List of files:
            /linux/lib/tests/Makefile</description>
        <pubDate>Thu, 18 Dec 2025 16:57:52 +0100</pubDate>
        <dc:creator>Pasha Tatashin &lt;pasha.tatashin@soleen.com&gt;</dc:creator>
    </item>
<item>
        <title>66bd8501ceb4782b10dfa009085d9b3f4efecad6 - list: add kunit test for private list primitives</title>
        <link>http://kernelsources.org:8080/source/history/linux/lib/tests/Makefile#66bd8501ceb4782b10dfa009085d9b3f4efecad6</link>
        <description>list: add kunit test for private list primitivesAdd a KUnit test suite for the new private list primitives.The test defines a struct with a __private list_head and exercises everymacro defined in &lt;linux/list_private.h&gt;.This ensures that the macros correctly handle the ACCESS_PRIVATE()abstraction and compile without warnings when acting on private members,verifying that qualifiers are stripped and offsets are calculatedcorrectly.Link: https://lkml.kernel.org/r/20251218155752.3045808-3-pasha.tatashin@soleen.comSigned-off-by: Pasha Tatashin &lt;pasha.tatashin@soleen.com&gt;Reviewed-by: David Gow &lt;davidgow@google.com&gt;Cc: Alexander Graf &lt;graf@amazon.com&gt;Cc: David Matlack &lt;dmatlack@google.com&gt;Cc: David Rientjes &lt;rientjes@google.com&gt;Cc: Jonathan Corbet &lt;corbet@lwn.net&gt;Cc: Kees Cook &lt;kees@kernel.org&gt;Cc: Mike Rapoport &lt;rppt@kernel.org&gt;Cc: Petr Mladek &lt;pmladek@suse.com&gt;Cc: Pratyush Yadav &lt;pratyush@kernel.org&gt;Cc: Samiullah Khawaja &lt;skhawaja@google.com&gt;Cc: Tamir Duberstein &lt;tamird@gmail.com&gt;Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;

            List of files:
            /linux/lib/tests/Makefile</description>
        <pubDate>Thu, 18 Dec 2025 16:57:49 +0100</pubDate>
        <dc:creator>Pasha Tatashin &lt;pasha.tatashin@soleen.com&gt;</dc:creator>
    </item>
<item>
        <title>bf45794244ca1fb1c135754f36ff765eea01f9e6 - lib/glob: convert selftest to KUnit</title>
        <link>http://kernelsources.org:8080/source/history/linux/lib/tests/Makefile#bf45794244ca1fb1c135754f36ff765eea01f9e6</link>
        <description>lib/glob: convert selftest to KUnitThis patch converts the existing glob selftest (lib/globtest.c) to use theKUnit framework (lib/tests/glob_kunit.c).The new test:- Migrates all 64 test cases from the original test to the KUnit suite.- Removes the custom &apos;verbose&apos; module parameter as KUnit handles logging.- Updates Kconfig.debug and Makefile to support the new KUnit test.- Updates Kconfig and Makefile to remove the original selftest.- Updates GLOB_SELFTEST to GLOB_KUNIT_TEST for arch/m68k/configs.This commit is verified by `./tools/testing/kunit/kunit.py run&apos;with the .kunit/.kunitconfig:CONFIG_KUNIT=yCONFIG_GLOB_KUNIT_TEST=yLink: https://lkml.kernel.org/r/20260108120753.27339-1-note351@hotmail.comSigned-off-by: Kir Chou &lt;note351@hotmail.com&gt;Acked-by: Geert Uytterhoeven &lt;geert@linux-m68k.org&gt;Reviewed-by: David Gow &lt;davidgow@google.com&gt;Reviewed-by: Kuan-Wei Chiu &lt;visitorckw@gmail.com&gt;Cc: &lt;kirchou@google.com&gt;Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;

            List of files:
            /linux/lib/tests/Makefile</description>
        <pubDate>Thu, 08 Jan 2026 13:07:53 +0100</pubDate>
        <dc:creator>Kir Chou &lt;note351@hotmail.com&gt;</dc:creator>
    </item>
<item>
        <title>d30aca3eeffc18452e5cc5c4e59f1a4da2bd2f12 - lib/tests: convert test_min_heap module to KUnit</title>
        <link>http://kernelsources.org:8080/source/history/linux/lib/tests/Makefile#d30aca3eeffc18452e5cc5c4e59f1a4da2bd2f12</link>
        <description>lib/tests: convert test_min_heap module to KUnitMove lib/test_min_heap.c to lib/tests/min_heap_kunit.c and convert it touse KUnit.This change switches the ad-hoc test code to standard KUnit test cases. The test data remains the same, but the verification logic is updated touse KUNIT_EXPECT_* macros.Also remove CONFIG_TEST_MIN_HEAP from arch/*/configs/* because it is nolonger used.  The new CONFIG_MIN_HEAP_KUNIT_TEST will be automaticallyenabled by CONFIG_KUNIT_ALL_TESTS.The reasons for converting to KUnit are:1. Standardization:    Switching from ad-hoc printk-based reporting to the standard    KTAP format makes it easier for CI systems to parse and report test    results2. Better Diagnostics:    Using KUNIT_EXPECT_* macros automatically provides detailed    diagnostics on failure.3. Tooling Integration:    It allows the test to be managed and executed using standard    KUnit tools.Link: https://lkml.kernel.org/r/20251221133516.321846-1-sakamo.ryota@gmail.comSigned-off-by: Ryota Sakamoto &lt;sakamo.ryota@gmail.com&gt;Acked-by: Kuan-Wei Chiu &lt;visitorckw@gmail.com&gt;Cc: Alexander Gordeev &lt;agordeev@linux.ibm.com&gt;Cc: Christian Borntraeger &lt;borntraeger@linux.ibm.com&gt;Cc: David Gow &lt;davidgow@google.com&gt;Cc: Geert Uytterhoeven &lt;geert@linux-m68k.org&gt;Cc: Heiko Carstens &lt;hca@linux.ibm.com&gt;Cc: Madhavan Srinivasan &lt;maddy@linux.ibm.com&gt;Cc: Michael Ellerman &lt;mpe@ellerman.id.au&gt;Cc: Nicholas Piggin &lt;npiggin@gmail.com&gt;Cc: Sven Schnelle &lt;svens@linux.ibm.com&gt;Cc: Vasily Gorbik &lt;gor@linux.ibm.com&gt;Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;

            List of files:
            /linux/lib/tests/Makefile</description>
        <pubDate>Sun, 21 Dec 2025 14:35:16 +0100</pubDate>
        <dc:creator>Ryota Sakamoto &lt;sakamo.ryota@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>6dcd539f062d89127cb3a84a7da373a9bd28ba7b - lib/tests: convert test_uuid module to KUnit</title>
        <link>http://kernelsources.org:8080/source/history/linux/lib/tests/Makefile#6dcd539f062d89127cb3a84a7da373a9bd28ba7b</link>
        <description>lib/tests: convert test_uuid module to KUnitMove lib/test_uuid.c to lib/tests/uuid_kunit.c and convert it to use KUnit.This change switches the ad-hoc test code to standard KUnit test cases. The test data remains the same, but the verification logic is updated touse KUNIT_EXPECT_* macros.Also remove CONFIG_TEST_UUID from arch/*/configs/* because it is no longerused.  The new CONFIG_UUID_KUNIT_TEST will be automatically enabled byCONFIG_KUNIT_ALL_TESTS.[lukas.bulwahn@redhat.com: MAINTAINERS: adjust file entry in UUID HELPERS]  Link: https://lkml.kernel.org/r/20251217053907.2778515-1-lukas.bulwahn@redhat.comLink: https://lkml.kernel.org/r/20251215134322.12949-1-sakamo.ryota@gmail.comSigned-off-by: Ryota Sakamoto &lt;sakamo.ryota@gmail.com&gt;Signed-off-by: Lukas Bulwahn &lt;lukas.bulwahn@redhat.com&gt;Acked-by: Geert Uytterhoeven &lt;geert@linux-m68k.org&gt;Reviewed-by: David Gow &lt;davidgow@google.com&gt;Cc: Andriy Shevchenko &lt;andriy.shevchenko@linux.intel.com&gt;Cc: Brendan Higgins &lt;brendan.higgins@linux.dev&gt;Cc: Lukas Bulwahn &lt;lukas.bulwahn@redhat.com&gt;Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;

            List of files:
            /linux/lib/tests/Makefile</description>
        <pubDate>Mon, 15 Dec 2025 14:43:22 +0100</pubDate>
        <dc:creator>Ryota Sakamoto &lt;sakamo.ryota@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>cc4adab164b772a34b3340d644b7c4728498581e - Merge tag &apos;v6.19-rc1&apos; into msm-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/lib/tests/Makefile#cc4adab164b772a34b3340d644b7c4728498581e</link>
        <description>Merge tag &apos;v6.19-rc1&apos; into msm-nextMerge Linux 6.19-rc1 in order to catch up with other changes (e.g. UBWCconfig database defining UBWC_6).Signed-off-by: Dmitry Baryshkov &lt;dmitry.baryshkov@oss.qualcomm.com&gt;

            List of files:
            /linux/lib/tests/Makefile</description>
        <pubDate>Tue, 20 Jan 2026 23:06:55 +0100</pubDate>
        <dc:creator>Dmitry Baryshkov &lt;dmitry.baryshkov@oss.qualcomm.com&gt;</dc:creator>
    </item>
</channel>
</rss>
