From 1e2f1396b8ee706c0e70d244853f4f4d2d8a3570 Mon Sep 17 00:00:00 2001 From: Boming Zhang Date: Tue, 1 Jul 2025 00:43:25 -0400 Subject: [PATCH] docs: hint on match keywords style parsers --- tests/convert/full/task.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/convert/full/task.toml b/tests/convert/full/task.toml index 222df8c..ed03f05 100644 --- a/tests/convert/full/task.toml +++ b/tests/convert/full/task.toml @@ -62,14 +62,17 @@ limit.proc = 50 # process limit, default: 50 # parsers will be run in the order they are listed, # which defines the order of the output comment # all possible parsers are listed here +# usually, only one of the match keywords style parsers should be used in one stage parsers = [ "result-status", # check if result status is Accepted "result-detail", # show result details (CPU time, memory, etc.) + # ========== match keywords style parsers start ========== "keyword", # match keywords in the output and score them "clangtidy", # parse clang-tidy output, and match keywords "cppcheck", # parse cppcheck output, and match keywords "cpplint", # parse cpplint output, and match keywords "elf", # parse elf (static analyzer for elm) output, and match keywords + # ========== match keywords style parsers end ========== "dummy", # dummy parser, used to show a comment "diff", # diff the output with the expected output ]