summaryrefslogtreecommitdiff
path: root/lsqa.pl
diff options
context:
space:
mode:
authorDavid Disseldorp <ddiss@suse.de>2022-10-11 11:23:39 +0200
committerZorro Lang <zlang@kernel.org>2022-10-15 12:42:57 +0800
commit436cb87154a45fab2fccc9aac5fcc9c81d6245aa (patch)
tree6a7f943e9d231adbbdf0c7eb6cef78fb5d596e21 /lsqa.pl
parentfa7644ccaa149b0209b349c5940460bb119c1f9c (diff)
lsqa.pl: fix --header output
7e98d41a ("fstests: move test group info to test files") replaces the post-header "seq" assignment with "./common/preamble\n_begin_fstest ..." Update lsqa.pl to recognise the "./common/preamble" line as a header divider. Signed-off-by: David Disseldorp <ddiss@suse.de> Reviewed-by: Zorro Lang <zlang@redhat.com> Signed-off-by: Zorro Lang <zlang@kernel.org>
Diffstat (limited to 'lsqa.pl')
-rwxr-xr-xlsqa.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lsqa.pl b/lsqa.pl
index 8ca1167f..63bee582 100755
--- a/lsqa.pl
+++ b/lsqa.pl
@@ -99,7 +99,7 @@ sub get_qa_header($) {
m/^# SPDX/i and next; # SPDX tags
m/^# Copyright/i and next; # Copyright tags
m/^#\s*\-{10}/ and last; # dashed lines
- m/^seq/i and last; # test start
+ m/^\. \.\/common\/preamble/ and last; # test start
s/^# *//;