diff options
author | Martin Robinson <mrobinson@igalia.com> | 2023-02-09 17:59:08 +0100 |
---|---|---|
committer | Martin Robinson <mrobinson@igalia.com> | 2023-02-14 15:44:34 +0100 |
commit | 5c9156e3eee237fdad09065506f64f5092281fdf (patch) | |
tree | 4f13760a17d69ee4bff82c2c98f3241e02784bb2 /python/servo/testing_commands.py | |
parent | aa2e1433d28158eb06e6a8a9b09b551437c4b55f (diff) | |
download | servo-5c9156e3eee237fdad09065506f64f5092281fdf.tar.gz servo-5c9156e3eee237fdad09065506f64f5092281fdf.zip |
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.
Diffstat (limited to 'python/servo/testing_commands.py')
-rw-r--r-- | python/servo/testing_commands.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/python/servo/testing_commands.py b/python/servo/testing_commands.py index c017baacc91..0cb20c0127f 100644 --- a/python/servo/testing_commands.py +++ b/python/servo/testing_commands.py @@ -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 |