forked from mirrors/gecko-dev
As a side-effect this will also update runtime data for all suites using '--chunk-by-runtime'. This change simultaneously: 1. Stores runtime data from all suites 2. Stores runtime data from all tests (no more percentile) 3. Stores distinct data for android, unix (osx/linux) and windows 4. Reduces the size of 'testing/runtimes' from 408k -> 168k The chunks look more balanced from my unscientific glance (especially on Windows). Differential Revision: https://phabricator.services.mozilla.com/D53702 --HG-- extra : moz-landing-system : lando
12 lines
441 B
Python
12 lines
441 B
Python
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
|
# vim: set filetype=python:
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
TEST_HARNESS_FILES.testing.mochitest.runtimes += [
|
|
'**/manifest-runtimes-*.json',
|
|
]
|
|
|
|
with Files("**"):
|
|
BUG_COMPONENT = ("Testing", "Mochitest")
|