xfs/141: run for longer with TIME_FACTOR
[xfstests-dev.git] / lsqa.pl
diff --git a/lsqa.pl b/lsqa.pl
index dd45eeda4e2c26f426acc2449e0bb11e3fb6f46b..8ca1167f845c79d671ae667b7cfe1bc1a397a714 100755 (executable)
--- 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/^# *//;