mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH v2] get_maintainer: add KUnit maintainers for KUnit test files
@ 2026-03-01  1:11 Matteo Croce
  2026-03-01  2:36 ` Joe Perches
  0 siblings, 1 reply; 8+ messages in thread
From: Matteo Croce @ 2026-03-01  1:11 UTC (permalink / raw)
  To: Joe Perches, Brendan Higgins, David Gow; +Cc: linux-kselftest, linux-kernel

KUnit test files are scattered across the tree and don't always match
the F: patterns in the KERNEL UNIT TESTING FRAMEWORK MAINTAINERS entry.
Add the KUnit maintainers automatically when the file path matches
common KUnit naming conventions: _kunit.c, -kunit.c, _kunit_test.c,
and -kunit-tests.c.

Signed-off-by: Matteo Croce <teknoraver@meta.com>
---
v2: added missing SOB

 scripts/get_maintainer.pl | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/scripts/get_maintainer.pl b/scripts/get_maintainer.pl
index 4414194bedcf..c07723af4132 100755
--- a/scripts/get_maintainer.pl
+++ b/scripts/get_maintainer.pl
@@ -966,6 +966,20 @@ sub get_maintainers {
 	    }
 	}
 
+	## Add KUnit maintainers for KUnit test files
+	if ($file =~ m/[_-]kunit[_-]?.*\.c$/) {
+	    my $kunit_tvi = find_first_section();
+	    while ($kunit_tvi < @typevalue) {
+		my $kunit_start = find_starting_index($kunit_tvi);
+		if ($typevalue[$kunit_start] =~ m/^KERNEL UNIT TESTING FRAMEWORK/) {
+		    $hash{$kunit_tvi} = 0;
+		    add_categories($kunit_tvi, "");
+		    last;
+		}
+		$kunit_tvi = find_ending_index($kunit_tvi) + 1;
+	    }
+	}
+
 	maintainers_in_file($file);
     }
 
-- 
2.53.0


^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2026-03-02  2:35 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-03-01  1:11 [PATCH v2] get_maintainer: add KUnit maintainers for KUnit test files Matteo Croce
2026-03-01  2:36 ` Joe Perches
2026-03-01 11:17   ` Matteo Croce
2026-03-01 11:34     ` Thomas Weißschuh
2026-03-01 16:42     ` Joe Perches
2026-03-02  0:50       ` Matteo Croce
2026-03-02  2:05         ` Joe Perches
2026-03-02  2:34           ` Matteo Croce

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome