summaryrefslogtreecommitdiff
path: root/buildbot
diff options
context:
space:
mode:
authorFang Deng <fdeng@chromium.org>2014-05-22 12:09:24 -0700
committerchrome-internal-fetch <chrome-internal-fetch@google.com>2014-05-23 04:59:40 +0000
commit911cb8a3fa18eef8eb7ddfd288e96707bea374ee (patch)
tree5f433173ccfe274eaf6615f03b4cfa9ba94d02a8 /buildbot
parent7c3ed7180d61f4cbf6b47199d09fd88125f8b562 (diff)
downloadchromite-911cb8a3fa18eef8eb7ddfd288e96707bea374ee.tar.gz
Add retry configuration for HWTest and enable it for cq.
This CL makes necessary modification to add 'retry' configuration to HWTest. '--retry' option is be passed to the run_suite script. It also enables hardware test retry for cq. BUG=chromium:376435 TEST=cbuildbot_commands_unittest, cbuildbot_config_unittest test_stages_unittest Change-Id: I831707377f8fae77de7b4fe176d43fe72ed65a21 Reviewed-on: https://chromium-review.googlesource.com/201106 Reviewed-by: David James <davidjames@chromium.org> Reviewed-by: Yu-Ju Hong <yjhong@chromium.org> Commit-Queue: Fang Deng <fdeng@chromium.org> Tested-by: Fang Deng <fdeng@chromium.org>
Diffstat (limited to 'buildbot')
-rw-r--r--buildbot/cbuildbot_commands.py7
-rwxr-xr-xbuildbot/cbuildbot_commands_unittest.py6
-rwxr-xr-xbuildbot/cbuildbot_config.py9
-rw-r--r--buildbot/config_dump.json840
-rw-r--r--buildbot/stages/test_stages.py1
5 files changed, 438 insertions, 425 deletions
diff --git a/buildbot/cbuildbot_commands.py b/buildbot/cbuildbot_commands.py
index d7cf872eb..1690ab534 100644
--- a/buildbot/cbuildbot_commands.py
+++ b/buildbot/cbuildbot_commands.py
@@ -715,7 +715,7 @@ def ArchiveVMFiles(buildroot, test_results_dir, archive_path):
def RunHWTestSuite(build, suite, board, pool=None, num=None, file_bugs=None,
wait_for_results=None, priority=None, timeout_mins=None,
- debug=True):
+ retry=None, debug=True):
"""Run the test suite in the Autotest lab.
Args:
@@ -730,6 +730,8 @@ def RunHWTestSuite(build, suite, board, pool=None, num=None, file_bugs=None,
wait_for_results: If True, wait for autotest results before returning.
priority: Priority of this suite run.
timeout_mins: Timeout in minutes for the suite job and its sub-jobs.
+ retry: If True, will enable job-level retry. Only works when
+ wait_for_results is True.
debug: Whether we are in debug mode.
"""
# TODO(scottz): RPC client option names are misnomers crosbug.com/26445.
@@ -759,6 +761,9 @@ def RunHWTestSuite(build, suite, board, pool=None, num=None, file_bugs=None,
if timeout_mins is not None:
cmd += ['--timeout_mins', str(timeout_mins)]
+ if retry is not None:
+ cmd += ['--retry', str(retry)]
+
if debug:
cros_build_lib.Info('RunHWTestSuite would run: %s',
cros_build_lib.CmdToStr(cmd))
diff --git a/buildbot/cbuildbot_commands_unittest.py b/buildbot/cbuildbot_commands_unittest.py
index 6e26a0977..692018005 100755
--- a/buildbot/cbuildbot_commands_unittest.py
+++ b/buildbot/cbuildbot_commands_unittest.py
@@ -169,6 +169,7 @@ class HWLabCommandsTest(cros_build_lib_unittest.RunCommandTestCase):
self._wait_for_results = False
self._priority = 'test-priority'
self._timeout_mins = 23
+ self._retry = False
def testRunHWTestSuiteMinimal(self):
"""Test RunHWTestSuite without optional arguments."""
@@ -184,13 +185,14 @@ class HWLabCommandsTest(cros_build_lib_unittest.RunCommandTestCase):
commands.RunHWTestSuite(self._build, self._suite, self._board,
self._pool, self._num, self._file_bugs,
self._wait_for_results, self._priority,
- self._timeout_mins, debug=False)
+ self._timeout_mins, self._retry, debug=False)
self.assertCommandCalled([
commands._AUTOTEST_RPC_CLIENT, commands._AUTOTEST_RPC_HOSTNAME,
'RunSuite', '--build', 'test-build', '--suite_name', 'test-suite',
'--board', 'test-board', '--pool', 'test-pool', '--num', '42',
'--file_bugs', 'True', '--no_wait', 'True',
- '--priority', 'test-priority', '--timeout_mins', '23'
+ '--priority', 'test-priority', '--timeout_mins', '23',
+ '--retry', 'False',
], error_code_ok=True)
def testRunHWTestSuiteFailure(self):
diff --git a/buildbot/cbuildbot_config.py b/buildbot/cbuildbot_config.py
index eae377119..2eb2fb8a9 100755
--- a/buildbot/cbuildbot_config.py
+++ b/buildbot/cbuildbot_config.py
@@ -640,6 +640,8 @@ class HWTestConfig(object):
critical: Usually we consider structural failures here as OK.
num: Maximum number of devices to use when scheduling tests in the hw lab.
file_bugs: Should we file bugs if a test fails in a suite run.
+ retry: Should we retry a test if a test fails in a suite run. Retry only
+ works when async is False.
"""
DEFAULT_HW_TEST = 'bvt'
@@ -698,7 +700,8 @@ class HWTestConfig(object):
with overrides for optional args.
"""
default_dict = dict(pool=constants.HWTEST_PALADIN_POOL, timeout=120 * 60,
- file_bugs=False, priority=constants.HWTEST_CQ_PRIORITY)
+ file_bugs=False, priority=constants.HWTEST_CQ_PRIORITY,
+ retry=True)
# Allows kwargs overrides to default_dict for cq.
default_dict.update(kwargs)
return [cls(cls.CQ_HW_TEST, **default_dict)]
@@ -717,7 +720,8 @@ class HWTestConfig(object):
def __init__(self, suite, num=constants.HWTEST_DEFAULT_NUM,
pool=constants.HWTEST_MACH_POOL, timeout=DEFAULT_HW_TEST_TIMEOUT,
async=False, critical=False, fatal_timeouts=True,
- file_bugs=False, priority=constants.HWTEST_BUILD_PRIORITY):
+ file_bugs=False, priority=constants.HWTEST_BUILD_PRIORITY,
+ retry=False):
"""Constructor -- see members above."""
self.suite = suite
self.num = num
@@ -728,6 +732,7 @@ class HWTestConfig(object):
self.fatal_timeouts = fatal_timeouts
self.file_bugs = file_bugs
self.priority = priority
+ self.retry = retry
def SetBranchedValues(self):
"""Changes the HW Test timeout/priority values to branched values."""
diff --git a/buildbot/config_dump.json b/buildbot/config_dump.json
index cdedcd236..e01923076 100644
--- a/buildbot/config_dump.json
+++ b/buildbot/config_dump.json
@@ -4176,9 +4176,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -4285,9 +4285,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -4390,9 +4390,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -4495,9 +4495,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -4584,9 +4584,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -5176,9 +5176,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -5965,9 +5965,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -6074,7 +6074,7 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": true,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"perf_v2\",\n \"timeout\": 5400\n}"
+ "{\n \"async\": false,\n \"critical\": true,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"perf_v2\",\n \"timeout\": 5400\n}"
],
"hw_tests_warn": false,
"hwqual": false,
@@ -7043,7 +7043,7 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 6,\n \"pool\": \"cq\",\n \"priority\": \"CQ\",\n \"suite\": \"bvt_cq\",\n \"timeout\": 7200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 6,\n \"pool\": \"cq\",\n \"priority\": \"CQ\",\n \"retry\": true,\n \"suite\": \"bvt_cq\",\n \"timeout\": 7200\n}"
],
"hw_tests_warn": false,
"hwqual": false,
@@ -7236,9 +7236,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -7358,9 +7358,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -7463,9 +7463,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -7568,9 +7568,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -7657,9 +7657,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -7779,11 +7779,11 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 4,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}",
- "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"pyauto_perf\",\n \"timeout\": 5400\n}",
- "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"perf_v2\",\n \"timeout\": 5400\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 4,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"pyauto_perf\",\n \"timeout\": 5400\n}",
+ "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"perf_v2\",\n \"timeout\": 5400\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -7890,11 +7890,11 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 4,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}",
- "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"pyauto_perf\",\n \"timeout\": 5400\n}",
- "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"perf_v2\",\n \"timeout\": 5400\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 4,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"pyauto_perf\",\n \"timeout\": 5400\n}",
+ "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"perf_v2\",\n \"timeout\": 5400\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -7985,11 +7985,11 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 4,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}",
- "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"pyauto_perf\",\n \"timeout\": 5400\n}",
- "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"perf_v2\",\n \"timeout\": 5400\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 4,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"pyauto_perf\",\n \"timeout\": 5400\n}",
+ "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"perf_v2\",\n \"timeout\": 5400\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -8096,11 +8096,11 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 4,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}",
- "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"pyauto_perf\",\n \"timeout\": 5400\n}",
- "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"perf_v2\",\n \"timeout\": 5400\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 4,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"pyauto_perf\",\n \"timeout\": 5400\n}",
+ "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"perf_v2\",\n \"timeout\": 5400\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -8207,11 +8207,11 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 4,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}",
- "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"pyauto_perf\",\n \"timeout\": 5400\n}",
- "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"perf_v2\",\n \"timeout\": 5400\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 4,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"pyauto_perf\",\n \"timeout\": 5400\n}",
+ "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"perf_v2\",\n \"timeout\": 5400\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -8891,9 +8891,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -8996,7 +8996,7 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"pfq\",\n \"priority\": \"PFQ\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"pfq\",\n \"priority\": \"PFQ\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": false,
@@ -9290,7 +9290,7 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 6,\n \"pool\": \"cq\",\n \"priority\": \"CQ\",\n \"suite\": \"bvt_cq\",\n \"timeout\": 7200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 6,\n \"pool\": \"cq\",\n \"priority\": \"CQ\",\n \"retry\": true,\n \"suite\": \"bvt_cq\",\n \"timeout\": 7200\n}"
],
"hw_tests_warn": false,
"hwqual": false,
@@ -9580,9 +9580,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -10556,9 +10556,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -11245,9 +11245,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -11354,7 +11354,7 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"pfq\",\n \"priority\": \"PFQ\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"pfq\",\n \"priority\": \"PFQ\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": false,
@@ -11843,9 +11843,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -12144,9 +12144,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -13322,9 +13322,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -14011,9 +14011,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -14634,9 +14634,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -14743,9 +14743,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -14832,9 +14832,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -15521,9 +15521,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -16210,9 +16210,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -16708,7 +16708,7 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 6,\n \"pool\": \"cq\",\n \"priority\": \"CQ\",\n \"suite\": \"bvt_cq\",\n \"timeout\": 7200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 6,\n \"pool\": \"cq\",\n \"priority\": \"CQ\",\n \"retry\": true,\n \"suite\": \"bvt_cq\",\n \"timeout\": 7200\n}"
],
"hw_tests_warn": false,
"hwqual": false,
@@ -16901,9 +16901,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -17011,7 +17011,7 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 6,\n \"pool\": \"cq\",\n \"priority\": \"CQ\",\n \"suite\": \"bvt_cq\",\n \"timeout\": 7200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 6,\n \"pool\": \"cq\",\n \"priority\": \"CQ\",\n \"retry\": true,\n \"suite\": \"bvt_cq\",\n \"timeout\": 7200\n}"
],
"hw_tests_warn": false,
"hwqual": false,
@@ -17110,7 +17110,7 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": true,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"perf_v2\",\n \"timeout\": 5400\n}"
+ "{\n \"async\": false,\n \"critical\": true,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"perf_v2\",\n \"timeout\": 5400\n}"
],
"hw_tests_warn": false,
"hwqual": false,
@@ -17603,7 +17603,7 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 6,\n \"pool\": \"cq\",\n \"priority\": \"CQ\",\n \"suite\": \"bvt_cq\",\n \"timeout\": 7200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 6,\n \"pool\": \"cq\",\n \"priority\": \"CQ\",\n \"retry\": true,\n \"suite\": \"bvt_cq\",\n \"timeout\": 7200\n}"
],
"hw_tests_warn": false,
"hwqual": false,
@@ -17893,9 +17893,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -18019,11 +18019,11 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 4,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}",
- "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"pyauto_perf\",\n \"timeout\": 5400\n}",
- "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"perf_v2\",\n \"timeout\": 5400\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 4,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"pyauto_perf\",\n \"timeout\": 5400\n}",
+ "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"perf_v2\",\n \"timeout\": 5400\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -18130,11 +18130,11 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 4,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}",
- "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"pyauto_perf\",\n \"timeout\": 5400\n}",
- "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"perf_v2\",\n \"timeout\": 5400\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 4,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"pyauto_perf\",\n \"timeout\": 5400\n}",
+ "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"perf_v2\",\n \"timeout\": 5400\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -18225,11 +18225,11 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 4,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}",
- "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"pyauto_perf\",\n \"timeout\": 5400\n}",
- "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"perf_v2\",\n \"timeout\": 5400\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 4,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"pyauto_perf\",\n \"timeout\": 5400\n}",
+ "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"perf_v2\",\n \"timeout\": 5400\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -18336,11 +18336,11 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 4,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}",
- "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"pyauto_perf\",\n \"timeout\": 5400\n}",
- "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"perf_v2\",\n \"timeout\": 5400\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 4,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"pyauto_perf\",\n \"timeout\": 5400\n}",
+ "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"perf_v2\",\n \"timeout\": 5400\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -18447,11 +18447,11 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 4,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}",
- "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"pyauto_perf\",\n \"timeout\": 5400\n}",
- "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"perf_v2\",\n \"timeout\": 5400\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 4,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"pyauto_perf\",\n \"timeout\": 5400\n}",
+ "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"perf_v2\",\n \"timeout\": 5400\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -19338,9 +19338,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -20119,9 +20119,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -20241,9 +20241,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -20346,9 +20346,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -20451,9 +20451,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -20540,9 +20540,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -20835,9 +20835,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -21130,9 +21130,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -21623,9 +21623,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -21826,7 +21826,7 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": true,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"perf_v2\",\n \"timeout\": 5400\n}"
+ "{\n \"async\": false,\n \"critical\": true,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"perf_v2\",\n \"timeout\": 5400\n}"
],
"hw_tests_warn": false,
"hwqual": false,
@@ -22123,7 +22123,7 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 6,\n \"pool\": \"cq\",\n \"priority\": \"CQ\",\n \"suite\": \"bvt_cq\",\n \"timeout\": 7200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 6,\n \"pool\": \"cq\",\n \"priority\": \"CQ\",\n \"retry\": true,\n \"suite\": \"bvt_cq\",\n \"timeout\": 7200\n}"
],
"hw_tests_warn": false,
"hwqual": false,
@@ -22415,9 +22415,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -22541,9 +22541,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -22650,9 +22650,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -22739,9 +22739,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -22865,11 +22865,11 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 4,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}",
- "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"pyauto_perf\",\n \"timeout\": 5400\n}",
- "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"perf_v2\",\n \"timeout\": 5400\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 4,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"pyauto_perf\",\n \"timeout\": 5400\n}",
+ "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"perf_v2\",\n \"timeout\": 5400\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -22976,11 +22976,11 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 4,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}",
- "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"pyauto_perf\",\n \"timeout\": 5400\n}",
- "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"perf_v2\",\n \"timeout\": 5400\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 4,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"pyauto_perf\",\n \"timeout\": 5400\n}",
+ "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"perf_v2\",\n \"timeout\": 5400\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -23071,11 +23071,11 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 4,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}",
- "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"pyauto_perf\",\n \"timeout\": 5400\n}",
- "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"perf_v2\",\n \"timeout\": 5400\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 4,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"pyauto_perf\",\n \"timeout\": 5400\n}",
+ "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"perf_v2\",\n \"timeout\": 5400\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -23182,11 +23182,11 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 4,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}",
- "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"pyauto_perf\",\n \"timeout\": 5400\n}",
- "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"perf_v2\",\n \"timeout\": 5400\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 4,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"pyauto_perf\",\n \"timeout\": 5400\n}",
+ "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"perf_v2\",\n \"timeout\": 5400\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -23293,11 +23293,11 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 4,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}",
- "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"pyauto_perf\",\n \"timeout\": 5400\n}",
- "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"perf_v2\",\n \"timeout\": 5400\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 4,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"pyauto_perf\",\n \"timeout\": 5400\n}",
+ "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"perf_v2\",\n \"timeout\": 5400\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -23596,9 +23596,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -24007,9 +24007,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -24112,9 +24112,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -24201,9 +24201,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -24595,9 +24595,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -24895,7 +24895,7 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 6,\n \"pool\": \"cq\",\n \"priority\": \"CQ\",\n \"suite\": \"bvt_cq\",\n \"timeout\": 7200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 6,\n \"pool\": \"cq\",\n \"priority\": \"CQ\",\n \"retry\": true,\n \"suite\": \"bvt_cq\",\n \"timeout\": 7200\n}"
],
"hw_tests_warn": false,
"hwqual": false,
@@ -25088,9 +25088,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -25583,9 +25583,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -26290,9 +26290,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -26399,9 +26399,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -26504,9 +26504,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -26795,9 +26795,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -28073,9 +28073,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -28684,9 +28684,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -28793,9 +28793,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -28898,9 +28898,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -29003,9 +29003,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -29092,9 +29092,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -29703,9 +29703,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -29812,9 +29812,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -29917,9 +29917,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -30022,9 +30022,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -30111,9 +30111,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -30626,9 +30626,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -30735,9 +30735,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -30840,9 +30840,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -30929,9 +30929,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -31717,9 +31717,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -32503,9 +32503,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -33791,9 +33791,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -33900,9 +33900,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -34005,9 +34005,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -34110,9 +34110,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -34215,9 +34215,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -34320,9 +34320,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -34409,9 +34409,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -34535,9 +34535,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -34644,9 +34644,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -34749,9 +34749,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -34854,9 +34854,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -34943,9 +34943,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -36021,9 +36021,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -36147,9 +36147,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -36256,9 +36256,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -36361,9 +36361,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -36466,9 +36466,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -36571,9 +36571,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -36660,9 +36660,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -37641,9 +37641,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -38140,9 +38140,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -38446,7 +38446,7 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 6,\n \"pool\": \"cq\",\n \"priority\": \"CQ\",\n \"suite\": \"bvt_cq\",\n \"timeout\": 7200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 6,\n \"pool\": \"cq\",\n \"priority\": \"CQ\",\n \"retry\": true,\n \"suite\": \"bvt_cq\",\n \"timeout\": 7200\n}"
],
"hw_tests_warn": false,
"hwqual": false,
@@ -38639,9 +38639,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -39720,9 +39720,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -40504,9 +40504,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -41193,9 +41193,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -41690,9 +41690,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -42281,7 +42281,7 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 6,\n \"pool\": \"cq\",\n \"priority\": \"CQ\",\n \"suite\": \"bvt_cq\",\n \"timeout\": 7200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 6,\n \"pool\": \"cq\",\n \"priority\": \"CQ\",\n \"retry\": true,\n \"suite\": \"bvt_cq\",\n \"timeout\": 7200\n}"
],
"hw_tests_warn": false,
"hwqual": false,
@@ -42573,9 +42573,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -42699,9 +42699,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -42893,9 +42893,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -43019,11 +43019,11 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 4,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}",
- "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"pyauto_perf\",\n \"timeout\": 5400\n}",
- "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"perf_v2\",\n \"timeout\": 5400\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 4,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"pyauto_perf\",\n \"timeout\": 5400\n}",
+ "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"perf_v2\",\n \"timeout\": 5400\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -43130,11 +43130,11 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 4,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}",
- "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"pyauto_perf\",\n \"timeout\": 5400\n}",
- "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"perf_v2\",\n \"timeout\": 5400\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 4,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"pyauto_perf\",\n \"timeout\": 5400\n}",
+ "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"perf_v2\",\n \"timeout\": 5400\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -43225,11 +43225,11 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 4,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}",
- "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"pyauto_perf\",\n \"timeout\": 5400\n}",
- "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"perf_v2\",\n \"timeout\": 5400\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 4,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"pyauto_perf\",\n \"timeout\": 5400\n}",
+ "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"perf_v2\",\n \"timeout\": 5400\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -43336,11 +43336,11 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 4,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}",
- "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"pyauto_perf\",\n \"timeout\": 5400\n}",
- "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"perf_v2\",\n \"timeout\": 5400\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 4,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"pyauto_perf\",\n \"timeout\": 5400\n}",
+ "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"perf_v2\",\n \"timeout\": 5400\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -43447,11 +43447,11 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 4,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}",
- "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"pyauto_perf\",\n \"timeout\": 5400\n}",
- "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"suite\": \"perf_v2\",\n \"timeout\": 5400\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 4,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"pyauto_perf\",\n \"timeout\": 5400\n}",
+ "{\n \"async\": true,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": false,\n \"num\": 1,\n \"pool\": \"chromeperf\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"perf_v2\",\n \"timeout\": 5400\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -45510,9 +45510,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -46102,9 +46102,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -46228,9 +46228,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -46422,9 +46422,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
@@ -47307,9 +47307,9 @@
"health_alert_recipients": [],
"health_threshold": 0,
"hw_tests": [
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
- "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 6,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"bvt\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"Build\",\n \"retry\": false,\n \"suite\": \"au\",\n \"timeout\": 13200\n}",
+ "{\n \"async\": false,\n \"critical\": false,\n \"fatal_timeouts\": true,\n \"file_bugs\": true,\n \"num\": 2,\n \"pool\": \"bvt\",\n \"priority\": \"DEFAULT\",\n \"retry\": false,\n \"suite\": \"qav\",\n \"timeout\": 13200\n}"
],
"hw_tests_warn": false,
"hwqual": true,
diff --git a/buildbot/stages/test_stages.py b/buildbot/stages/test_stages.py
index 977981588..809f6f82d 100644
--- a/buildbot/stages/test_stages.py
+++ b/buildbot/stages/test_stages.py
@@ -287,6 +287,7 @@ class HWTestStage(generic_stages.BoardSpecificBuilderStage,
self.wait_for_results,
self.suite_config.priority,
self.suite_config.timeout_mins,
+ self.suite_config.retry,
debug)