summaryrefslogtreecommitdiffstats
path: root/meta/lib/patchtest/patterns.py
diff options
context:
space:
mode:
authorTrevor Gamblin <tgamblin@baylibre.com>2024-09-24 07:54:59 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-09-30 17:00:50 +0100
commitd6ede9c73b44062d8831a08f522d519591bf29c2 (patch)
tree17711c77f409da9d7ed38361c9551e6bb6f967dd /meta/lib/patchtest/patterns.py
parentbb0f1625d7655d04c6df3c144e488f676ff2f762 (diff)
downloadpoky-d6ede9c73b44062d8831a08f522d519591bf29c2.tar.gz
patchtest: mbox.py: new data implementation
Consolidate and improve some objects: - absorb utils.py functionality - repo.py: use mbox.py - repo.py: remove some cruft - utils.py: replace with logs.py - utils.py: delete - patch.py: delete - scripts/patchtest: use logging directly - general cleanup (From OE-Core rev: d4fbdb1d15f281b236137d63710c73bca8911a36) Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/patchtest/patterns.py')
-rw-r--r--meta/lib/patchtest/patterns.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/meta/lib/patchtest/patterns.py b/meta/lib/patchtest/patterns.py
index ba97a4ffe9..b703b0c8b9 100644
--- a/meta/lib/patchtest/patterns.py
+++ b/meta/lib/patchtest/patterns.py
@@ -10,11 +10,8 @@ import pyparsing
10colon = pyparsing.Literal(":") 10colon = pyparsing.Literal(":")
11line_start = pyparsing.LineStart() 11line_start = pyparsing.LineStart()
12line_end = pyparsing.LineEnd() 12line_end = pyparsing.LineEnd()
13at = pyparsing.Literal("@")
14lessthan = pyparsing.Literal("<") 13lessthan = pyparsing.Literal("<")
15greaterthan = pyparsing.Literal(">") 14greaterthan = pyparsing.Literal(">")
16opensquare = pyparsing.Literal("[")
17closesquare = pyparsing.Literal("]")
18inappropriate = pyparsing.CaselessLiteral("Inappropriate") 15inappropriate = pyparsing.CaselessLiteral("Inappropriate")
19submitted = pyparsing.CaselessLiteral("Submitted") 16submitted = pyparsing.CaselessLiteral("Submitted")
20 17