Skip to content

Commit

Permalink
[update-test-expectations-from-bugzilla] Handle -wpt bots
Browse files Browse the repository at this point in the history
https://bugs.webkit.org/show_bug.cgi?id=266520

Reviewed by Jonathan Bedard.

We should handle WPT queues like we do debug queues: dropping the fact
they're WPT, and treating them as a queue for the base platform.

* Tools/Scripts/webkitpy/common/net/bugzilla/results_fetcher.py:
(_platform_name_for_bot):

Canonical link: https://commits.webkit.org/272149@main
  • Loading branch information
gsnedders committed Dec 16, 2023
1 parent 639f8c0 commit 24123ed
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Tools/Scripts/webkitpy/common/net/bugzilla/results_fetcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@ def _platform_name_for_bot(bot_name):
return "wpe"
if "-debug" in name:
name = name.replace("-debug", "")
if "-wpt" in name:
name = name.replace("-wpt", "")
return name


Expand Down

0 comments on commit 24123ed

Please sign in to comment.