tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

commit 8edf905caa466633de8d460c3ce76144dfb2a48b
parent 07d0e83b406c864a3947f04a4f082f2401927cd5
Author: Greg Mierzwinski <gmierz2@outlook.com>
Date:   Fri, 31 Oct 2025 18:41:54 +0000

Bug 1996590 - Disable jetstream 2/3 extra profiler run in chrome/car tests. r=afinder,perftest-reviewers

The extra profiler run is curently silently failing on both of these tests when run with the chrome/car browsers, and it has also triggered permas.

Differential Revision: https://phabricator.services.mozilla.com/D270349

Diffstat:
Mtaskcluster/gecko_taskgraph/transforms/test/raptor.py | 10++++++++++
1 file changed, 10 insertions(+), 0 deletions(-)

diff --git a/taskcluster/gecko_taskgraph/transforms/test/raptor.py b/taskcluster/gecko_taskgraph/transforms/test/raptor.py @@ -310,6 +310,16 @@ def modify_extra_options(config, tests): extra_options.pop(i) break + if "jetstream" in test_name and test.get("app", "") in ("chrome", "custom-car"): + # Bug 1996836 - Disable jetstream 2/3 extra profile runs + extra_options = test.setdefault("mozharness", {}).setdefault( + "extra-options", [] + ) + for i, opt in enumerate(extra_options): + if "extra-profiler-run" in opt: + extra_options.pop(i) + break + yield test