mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 03:36:19 +00:00
checkpatch: extend attribute testing to all modifiers
We should allow testing of all modifiers not just attributes. Extend testing and test for all the know modifiers. Signed-off-by: Andy Whitcroft <apw@canonical.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
667026e7b0
commit
9360b0e50e
1 changed files with 2 additions and 2 deletions
|
@ -1584,9 +1584,9 @@ sub process {
|
||||||
}
|
}
|
||||||
# TEST: allow direct testing of the attribute matcher.
|
# TEST: allow direct testing of the attribute matcher.
|
||||||
if ($dbg_attr) {
|
if ($dbg_attr) {
|
||||||
if ($line =~ /^.\s*$Attribute\s*$/) {
|
if ($line =~ /^.\s*$Modifier\s*$/) {
|
||||||
ERROR("TEST: is attr\n" . $herecurr);
|
ERROR("TEST: is attr\n" . $herecurr);
|
||||||
} elsif ($dbg_attr > 1 && $line =~ /^.+($Attribute)/) {
|
} elsif ($dbg_attr > 1 && $line =~ /^.+($Modifier)/) {
|
||||||
ERROR("TEST: is not attr ($1 is)\n". $herecurr);
|
ERROR("TEST: is not attr ($1 is)\n". $herecurr);
|
||||||
}
|
}
|
||||||
next;
|
next;
|
||||||
|
|
Loading…
Reference in a new issue