Aggregate unexpected results into logs

This makes it easier to run `update-wpt` based on results from the bots.
A future version of this could aggregate all unexpected results that
were not filtered as intermittents.
This commit is contained in:
Martin Robinson 2023-02-09 17:59:08 +01:00
parent aa2e1433d2
commit 5c9156e3ee
3 changed files with 64 additions and 16 deletions

View file

@ -87,6 +87,9 @@ def create_parser_wpt():
parser.add_argument('--filter-intermittents', default=None, action="store",
help="Filter intermittents against known intermittents "
"and save the filtered output to the given file.")
parser.add_argument('--log-raw-unexpected', default=None, action="store",
help="Raw structured log messages for unexpected results."
" '--log-raw' Must also be passed in order to use this.")
return parser