X-Git-Url: http://git.apps.os.sepia.ceph.com/?p=xfstests-dev.git;a=blobdiff_plain;f=lsqa.pl;h=8ca1167f845c79d671ae667b7cfe1bc1a397a714;hp=dd45eeda4e2c26f426acc2449e0bb11e3fb6f46b;hb=54494f02efee75fa1921d239a47c65d70b7f028c;hpb=f3e65e91503f07843f29dedbca1806a1fdb36aed diff --git a/lsqa.pl b/lsqa.pl index dd45eeda..8ca1167f 100755 --- a/lsqa.pl +++ b/lsqa.pl @@ -95,9 +95,11 @@ sub get_qa_header($) { open(my $FH, $f) || die "couldn't open '$f': $!"; while (<$FH>) { #ignore. - m/^#\!/ and next; #shebang - m/^#\s*\-{10}/ and last; #dashed lines - m/^#\s*copyright/i and last; #copyright lines + m/^#\!/ and next; # shebang + 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 s/^# *//;