summaryrefslogtreecommitdiffstats
path: root/testing/test/data
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /testing/test/data
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/test/data')
-rw-r--r--testing/test/data/bug-1682371.json56
-rw-r--r--testing/test/data/wayland-failures-1.json33
-rw-r--r--testing/test/data/wayland-failures-2.json47
-rw-r--r--testing/test/data/wayland-failures-3.json37
-rw-r--r--testing/test/data/wayland-failures-4.json37
-rw-r--r--testing/test/data/wayland-failures-5.json55
-rw-r--r--testing/test/data/wayland-tasks-1.json35
-rw-r--r--testing/test/data/wayland-tasks-2.json114
-rw-r--r--testing/test/data/wayland-tasks-3.json96
-rw-r--r--testing/test/data/wayland-tasks-4.json97
-rw-r--r--testing/test/data/wayland-tasks-5.json141
11 files changed, 748 insertions, 0 deletions
diff --git a/testing/test/data/bug-1682371.json b/testing/test/data/bug-1682371.json
new file mode 100644
index 0000000000..836b6c7021
--- /dev/null
+++ b/testing/test/data/bug-1682371.json
@@ -0,0 +1,56 @@
+[
+ {
+ "blocks": [1682354, 1821700, 1821702],
+ "comments": [
+ {
+ "text": "This is a process which exists already for web-platform-tests, but in order to streamline our work, it would be beneficial to run ALL tests, scrape the failures and edit files, then sanity check that the skip-if/fail-if conditions are all working and we have a green try run.\n\nThere are multiple ways to scrape failures, I think we need to treat harnesses differently. For example, a reftest failure would be annotating fuzzy-if pixels based on conditions, whereas an xpcshell failure would be the test name and a skip-if or fail-if statement.\n\nIn general we might have to do our reftest failures by hand, but it would be nice for mochitest and xpcshell tests to be done more programatically, especially given the fact that we have multi line conditions we can match against.\n\nAssuming we don't edit automatically, we can at least have a tool that queries treeherder for all failure_summary information and compiles a list of test names, recommended conditions to use (fuzzy-if(...), skip-if, fail-if) based on the test/harness/failure, and the frequency of failure (assuming we run >1, give x% as a where 0<x<100 for total_fail/total_run)."
+ },
+ {
+ "text": "Ideally this can be accumulated across various try pushes."
+ },
+ {
+ "text": "Some steps assuming using Treeherder as the datasource:\n1) get json from this api for each rev: https://treeherder.mozilla.org/api/project/try/push/health/?revision=e3b3b6d258f52b206c09e56414fff33147f95715\n2) build a dict of jobs based on jobNames by parsing json j: j['jobs'].keys()\n a) keep track of the count by len(j['jobs'][key])\n3) in the json as j, parse j['metrics']['tests']['details']['needsInvestigation'] and j['metrics']['tests']['details']['knownIssues'] to get a list of failures, specifically in the `testName` field.\n a) if `action == test`, then we have a better chance of finding exact test names, it would be best to limit to this for now.\n b) keep track of fields: jobName, testName, jobGroup, platform, config, ideally a structure of \n ```\n jobs[jobName] = {'count': 0, 'failureCount': 0, 'failures': [\n {test: testName, \n details: {\n harness: jobGroup,\n configs: [[platform, config], ...]\n }, ...\n }\n ]}\n ```\n where we have unique pairs of platform/config and the harness will indicate which type of config to modify.\n the jobName is important to know how many times the job ran\n\n4) repeat for all revisions that have data\n5) iterate through the jobnames and if failures == [], then skip it- we only want jobs with failures\n6) for all jobs that have failures and failureCount/Count > .35, keep the failure, it repeats frequently enough\n7) write the remaining failures we want to keep as a .json file to output\n\nOne caution is that we could have intermittent test failures (dozens of them easily on a try push) which would be unfortunate to disable a test because it failed once and maybe never again. In a perfect world we would run each job multiple times (10 ideally, 5 realistic, 3 minimum) and ensure that a majority of the times a test runs \n\nI will leave this bug scope at scraping failures and summarizing them. A different bug can outline steps for editing manifests."
+ },
+ {
+ "text": "Created attachment 9362743\nBug 1682371 - mach skipfails part 1: add dependencies r=jmaher"
+ },
+ {
+ "text": "Pushed by jmaher@mozilla.com:\nhttps://hg.mozilla.org/integration/autoland/rev/4c5b3ec73a9a\nmach skipfails part 1: add dependencies r=jmaher,mach-reviewers,ahal"
+ },
+ {
+ "text": "Backed out for python related failures. \n\nPush with failures: https://treeherder.mozilla.org/jobs?repo=autoland&selectedTaskRun=LMhdsjDeRyGScsjta5TC_g.0&resultStatus=testfailed%2Cbusted%2Cexception%2Cretry%2Cusercancel&revision=4c5b3ec73a9ae0be2eea53352f00d705a8b04c36\n\nFailure logs:\n- [SM bustages](https://treeherder.mozilla.org/logviewer?job_id=437885116&repo=autoland)\n\nBackout link: https://hg.mozilla.org/integration/autoland/rev/a101da6213c2e8f729402046a3d4d1cce2d7bb47"
+ },
+ {
+ "text": "Pushed by jmaher@mozilla.com:\nhttps://hg.mozilla.org/integration/autoland/rev/812440d20ef2\nmach skipfails part 1: add dependencies r=jmaher,mach-reviewers,ahal"
+ },
+ {
+ "text": "Created attachment 9366143\nBug 1682371 - mach skipfails part 2: enable ci r=jmaher"
+ },
+ {
+ "text": "Added new paths to https://searchfox.org/mozilla-central/source/js/src/make-source-package.py#190"
+ },
+ {
+ "text": "https://hg.mozilla.org/mozilla-central/rev/812440d20ef2"
+ },
+ {
+ "text": "Pushed by jmaher@mozilla.com:\nhttps://hg.mozilla.org/integration/autoland/rev/c8ab4e2aa0a7\nmach skipfails part 2: enable ci r=jmaher,mach-reviewers,ahal"
+ },
+ {
+ "text": "https://hg.mozilla.org/mozilla-central/rev/c8ab4e2aa0a7"
+ },
+ {
+ "text": "Created attachment 9367667\nBug 1682371 - mach skipfails part 3: complete editing manifest r=jmaher"
+ },
+ {
+ "text": "Pushed by jmaher@mozilla.com:\nhttps://hg.mozilla.org/integration/autoland/rev/cf62e72915ca\nmach skipfails part 3: complete editing manifest r=jmaher,mach-reviewers,ahal"
+ },
+ {
+ "text": "https://hg.mozilla.org/mozilla-central/rev/cf62e72915ca"
+ }
+ ],
+ "component": "General",
+ "id": 1682371,
+ "product": "Testing",
+ "summary": "create tool to quickly parse and identify all failures from a try push and ideally annotate manifests"
+ }
+]
diff --git a/testing/test/data/wayland-failures-1.json b/testing/test/data/wayland-failures-1.json
new file mode 100644
index 0000000000..bdb413e1b4
--- /dev/null
+++ b/testing/test/data/wayland-failures-1.json
@@ -0,0 +1,33 @@
+{
+ "browser/base/content/test/performance/browser.toml": {
+ "label": {
+ "test-windows11-64-2009-qr/opt-mochitest-browser-chrome-3": {
+ "durations": {
+ "dwOJ8M9ERSmk6oI2KXg6hg": 63094
+ },
+ "median_duration": 63094,
+ "opt": false,
+ "path": {
+ "browser/base/content/test/performance/browser_startup.js": {
+ "classification": "unknown",
+ "failed_runs": 1,
+ "runs": {
+ "dwOJ8M9ERSmk6oI2KXg6hg": false
+ },
+ "total_runs": 1
+ }
+ },
+ "sum_by_label": {
+ "disable_manifest": 0,
+ "disable_recommended": 0,
+ "disable_too_long": 0,
+ "intermittent": 0,
+ "secondary": 0,
+ "success": 0,
+ "unknown": 1
+ },
+ "total_duration": 63094
+ }
+ }
+ }
+}
diff --git a/testing/test/data/wayland-failures-2.json b/testing/test/data/wayland-failures-2.json
new file mode 100644
index 0000000000..8433d5644b
--- /dev/null
+++ b/testing/test/data/wayland-failures-2.json
@@ -0,0 +1,47 @@
+{
+ "browser/components/sessionstore/test/browser.toml": {
+ "label": {
+ "test-linux1804-64-qr/opt-mochitest-browser-chrome-spi-nw-5": {
+ "durations": {
+ "X7r1q2xWSu-2bRAofEfeBw": 1778154,
+ "Y7r1q2xWSu-2bRAofEfeBw": 1778154,
+ "Z7r1q2xWSu-2bRAofEfeBw": 1778154
+ },
+ "median_duration": 1778154,
+ "opt": false,
+ "path": {
+ "browser/components/sessionstore/test/browser_closed_tabs_windows.js": {
+ "classification": "disable_recommended",
+ "failed_runs": 3,
+ "runs": {
+ "X7r1q2xWSu-2bRAofEfeBw": false,
+ "Y7r1q2xWSu-2bRAofEfeBw": false,
+ "Z7r1q2xWSu-2bRAofEfeBw": false
+ },
+ "total_runs": 3
+ },
+ "browser/components/sessionstore/test/browser_firefoxView_selected_restore.js": {
+ "classification": "secondary",
+ "failed_runs": 3,
+ "runs": {
+ "X7r1q2xWSu-2bRAofEfeBw": false,
+ "Y7r1q2xWSu-2bRAofEfeBw": false,
+ "Z7r1q2xWSu-2bRAofEfeBw": false
+ },
+ "total_runs": 3
+ }
+ },
+ "sum_by_label": {
+ "disable_manifest": 0,
+ "disable_recommended": 1,
+ "disable_too_long": 0,
+ "intermittent": 0,
+ "secondary": 1,
+ "success": 0,
+ "unknown": 0
+ },
+ "total_duration": 5334462
+ }
+ }
+ }
+}
diff --git a/testing/test/data/wayland-failures-3.json b/testing/test/data/wayland-failures-3.json
new file mode 100644
index 0000000000..9d604421fa
--- /dev/null
+++ b/testing/test/data/wayland-failures-3.json
@@ -0,0 +1,37 @@
+{
+ "browser/components/urlbar/tests/browser-updateResults/browser.toml": {
+ "label": {
+ "test-linux1804-64-qr/opt-mochitest-browser-chrome-spi-nw-7": {
+ "durations": {
+ "UOZUIVAaTZKmRwArq5WkDw": 55841,
+ "WVczuxkuSRKZg_jMiGyQsA": 82817,
+ "b7_ahjGtQ_-ZMNBG_hUZUw": 104656
+ },
+ "median_duration": 82817,
+ "opt": false,
+ "path": {
+ "browser/components/urlbar/tests/browser-updateResults/browser_suggestedIndex_10_url_10_search.js": {
+ "classification": "intermittent",
+ "failed_runs": 1,
+ "runs": {
+ "UOZUIVAaTZKmRwArq5WkDw": false,
+ "WVczuxkuSRKZg_jMiGyQsA": true,
+ "b7_ahjGtQ_-ZMNBG_hUZUw": true
+ },
+ "total_runs": 3
+ }
+ },
+ "sum_by_label": {
+ "disable_manifest": 0,
+ "disable_recommended": 0,
+ "disable_too_long": 0,
+ "intermittent": 1,
+ "secondary": 0,
+ "success": 0,
+ "unknown": 0
+ },
+ "total_duration": 243314
+ }
+ }
+ }
+}
diff --git a/testing/test/data/wayland-failures-4.json b/testing/test/data/wayland-failures-4.json
new file mode 100644
index 0000000000..ef60f734d8
--- /dev/null
+++ b/testing/test/data/wayland-failures-4.json
@@ -0,0 +1,37 @@
+{
+ "toolkit/components/pdfjs/test/browser.toml": {
+ "label": {
+ "test-linux2204-64-wayland/debug-mochitest-browser-chrome-swr-1": {
+ "durations": {
+ "EDql3NKPR3W6OEU3mLeKbg": 390469,
+ "FDql3NKPR3W6OEU3mLeKbg": 390469,
+ "bxMVPbPMTru_bfAivc1sPA": 390469
+ },
+ "median_duration": 390469,
+ "opt": false,
+ "path": {
+ "DEFAULT": {
+ "classification": "disable_manifest",
+ "failed_runs": 3,
+ "runs": {
+ "EDql3NKPR3W6OEU3mLeKbg": false,
+ "FDql3NKPR3W6OEU3mLeKbg": false,
+ "bxMVPbPMTru_bfAivc1sPA": false
+ },
+ "total_runs": 3
+ }
+ },
+ "sum_by_label": {
+ "disable_manifest": 1,
+ "disable_recommended": 0,
+ "disable_too_long": 0,
+ "intermittent": 0,
+ "secondary": 0,
+ "success": 0,
+ "unknown": 0
+ },
+ "total_duration": 1171407
+ }
+ }
+ }
+}
diff --git a/testing/test/data/wayland-failures-5.json b/testing/test/data/wayland-failures-5.json
new file mode 100644
index 0000000000..3bc7146b26
--- /dev/null
+++ b/testing/test/data/wayland-failures-5.json
@@ -0,0 +1,55 @@
+{
+ "browser/components/places/tests/browser/browser.toml": {
+ "label": {
+ "test-linux2204-64-wayland/opt-mochitest-browser-chrome-swr-3": {
+ "durations": {
+ "Bgc6We1sSjakIo3V9crldw": 1521792,
+ "EH0WPmGtQsGzu5K7OxFOyg": 1407021,
+ "bxDhZzsxQw65gn-veX1PHg": 1320318
+ },
+ "median_duration": 1407021,
+ "opt": true,
+ "path": {
+ "DEFAULT": {
+ "classification": "disable_too_long",
+ "failed_runs": 1,
+ "runs": {
+ "bxDhZzsxQw65gn-veX1PHg": false
+ },
+ "total_runs": 1
+ },
+ "browser/components/places/tests/browser/browser_bookmarkProperties_addKeywordForThisSearch.js": {
+ "classification": "disable_recommended",
+ "failed_runs": 3,
+ "runs": {
+ "Bgc6We1sSjakIo3V9crldw": false,
+ "EH0WPmGtQsGzu5K7OxFOyg": false,
+ "bxDhZzsxQw65gn-veX1PHg": false
+ },
+ "total_runs": 3
+ },
+ "browser/components/places/tests/browser/browser_bookmark_popup.js": {
+ "classification": "secondary",
+ "failed_runs": 3,
+ "runs": {
+ "Bgc6We1sSjakIo3V9crldw": false,
+ "EH0WPmGtQsGzu5K7OxFOyg": false,
+ "bxDhZzsxQw65gn-veX1PHg": false
+ },
+ "total_runs": 3
+ }
+ },
+ "sum_by_label": {
+ "disable_manifest": 0,
+ "disable_recommended": 1,
+ "disable_too_long": 1,
+ "intermittent": 0,
+ "secondary": 1,
+ "success": 0,
+ "unknown": 0
+ },
+ "total_duration": 4249131
+ }
+ }
+ }
+}
diff --git a/testing/test/data/wayland-tasks-1.json b/testing/test/data/wayland-tasks-1.json
new file mode 100644
index 0000000000..906ebeb3e9
--- /dev/null
+++ b/testing/test/data/wayland-tasks-1.json
@@ -0,0 +1,35 @@
+[
+ {
+ "id": "dwOJ8M9ERSmk6oI2KXg6hg",
+ "label": "test-windows11-64-2009-qr/opt-mochitest-browser-chrome-3",
+ "duration": 1653761,
+ "result": "failed",
+ "state": "completed",
+ "classification": "not classified",
+ "classification_note": null,
+ "tags": {
+ "createdForUser": "ci@mozilla.org",
+ "kind": "test",
+ "label": "test-windows11-64-2009-qr/opt-mochitest-browser-chrome-3",
+ "os": "windows",
+ "retrigger": "true",
+ "test-type": "mochitest",
+ "tests_grouped": "1",
+ "worker-implementation": "generic-worker"
+ },
+ "tier": 1,
+ "results": [
+ {
+ "group": "browser/base/content/test/performance/browser.toml",
+ "ok": false,
+ "duration": 63094
+ }
+ ],
+ "errors": null,
+ "failure_types": {
+ "browser/base/content/test/performance/browser.toml": [
+ ["browser/base/content/test/performance/browser_startup.js", "generic"]
+ ]
+ }
+ }
+]
diff --git a/testing/test/data/wayland-tasks-2.json b/testing/test/data/wayland-tasks-2.json
new file mode 100644
index 0000000000..bd4d0e3f20
--- /dev/null
+++ b/testing/test/data/wayland-tasks-2.json
@@ -0,0 +1,114 @@
+[
+ {
+ "id": "Y7r1q2xWSu-2bRAofEfeBw",
+ "label": "test-linux1804-64-qr/opt-mochitest-browser-chrome-spi-nw-5",
+ "duration": 4807915,
+ "result": "failed",
+ "state": "completed",
+ "classification": "not classified",
+ "classification_note": null,
+ "tags": {
+ "createdForUser": "ci@mozilla.org",
+ "kind": "test",
+ "label": "test-linux1804-64-qr/opt-mochitest-browser-chrome-spi-nw-5",
+ "os": "linux",
+ "retrigger": "true",
+ "test-type": "mochitest",
+ "tests_grouped": "1",
+ "worker-implementation": "docker-worker"
+ },
+ "tier": 1,
+ "results": [
+ {
+ "group": "browser/components/sessionstore/test/browser.toml",
+ "ok": false,
+ "duration": 1778154
+ }
+ ],
+ "errors": null,
+ "failure_types": {
+ "browser/components/sessionstore/test/browser.toml": [
+ [
+ "browser/components/sessionstore/test/browser_closed_tabs_windows.js",
+ "generic"
+ ],
+ [
+ "browser/components/sessionstore/test/browser_firefoxView_selected_restore.js",
+ "generic"
+ ]
+ ]
+ }
+ },
+ {
+ "id": "Z7r1q2xWSu-2bRAofEfeBw",
+ "label": "test-linux1804-64-qr/opt-mochitest-browser-chrome-spi-nw-5",
+ "duration": 4807915,
+ "result": "failed",
+ "state": "completed",
+ "classification": "not classified",
+ "classification_note": null,
+ "tags": {
+ "createdForUser": "ci@mozilla.org",
+ "kind": "test",
+ "label": "test-linux1804-64-qr/opt-mochitest-browser-chrome-spi-nw-5",
+ "os": "linux",
+ "retrigger": "true",
+ "test-type": "mochitest",
+ "tests_grouped": "1",
+ "worker-implementation": "docker-worker"
+ },
+ "tier": 1,
+ "results": [
+ {
+ "group": "browser/components/sessionstore/test/browser.toml",
+ "ok": false,
+ "duration": 1778154
+ }
+ ],
+ "errors": null,
+ "failure_types": {
+ "browser/components/sessionstore/test/browser.toml": [
+ [
+ "browser/components/sessionstore/test/browser_closed_tabs_windows.js",
+ "generic"
+ ]
+ ]
+ }
+ },
+ {
+ "id": "X7r1q2xWSu-2bRAofEfeBw",
+ "label": "test-linux1804-64-qr/opt-mochitest-browser-chrome-spi-nw-5",
+ "duration": 4807915,
+ "result": "failed",
+ "state": "completed",
+ "classification": "not classified",
+ "classification_note": null,
+ "tags": {
+ "createdForUser": "ci@mozilla.org",
+ "kind": "test",
+ "label": "test-linux1804-64-qr/opt-mochitest-browser-chrome-spi-nw-5",
+ "os": "linux",
+ "retrigger": "true",
+ "test-type": "mochitest",
+ "tests_grouped": "1",
+ "worker-implementation": "docker-worker"
+ },
+ "tier": 1,
+ "results": [
+ {
+ "group": "browser/components/sessionstore/test/browser.toml",
+ "ok": false,
+ "duration": 1778154
+ }
+ ],
+ "errors": null,
+ "failure_types": {
+ "browser/components/sessionstore/test/browser.toml": [
+ [
+ "browser/components/sessionstore/test/browser_closed_tabs_windows.js",
+ "generic"
+ ]
+ ]
+ }
+ }
+]
diff --git a/testing/test/data/wayland-tasks-3.json b/testing/test/data/wayland-tasks-3.json
new file mode 100644
index 0000000000..ae3800aaf7
--- /dev/null
+++ b/testing/test/data/wayland-tasks-3.json
@@ -0,0 +1,96 @@
+[
+ {
+ "id": "b7_ahjGtQ_-ZMNBG_hUZUw",
+ "label": "test-linux1804-64-qr/opt-mochitest-browser-chrome-spi-nw-7",
+ "duration": 748218,
+ "result": "passed",
+ "state": "completed",
+ "classification": "not classified",
+ "classification_note": null,
+ "tags": {
+ "createdForUser": "ci@mozilla.org",
+ "kind": "test",
+ "label": "test-linux1804-64-tsan-qr/opt-mochitest-browser-chrome-swr-26",
+ "os": "linux",
+ "retrigger": "true",
+ "test-type": "mochitest",
+ "tests_grouped": "1",
+ "worker-implementation": "docker-worker"
+ },
+ "tier": 1,
+ "results": [
+ {
+ "group": "browser/components/urlbar/tests/browser-updateResults/browser.toml",
+ "ok": true,
+ "duration": 104656
+ }
+ ],
+ "errors": null,
+ "failure_types": {}
+ },
+ {
+ "id": "WVczuxkuSRKZg_jMiGyQsA",
+ "label": "test-linux1804-64-qr/opt-mochitest-browser-chrome-spi-nw-7",
+ "duration": 2239064,
+ "result": "passed",
+ "state": "completed",
+ "classification": "not classified",
+ "classification_note": null,
+ "tags": {
+ "createdForUser": "ci@mozilla.org",
+ "kind": "test",
+ "label": "test-linux1804-64-qr/debug-mochitest-browser-chrome-swr-15",
+ "os": "linux",
+ "retrigger": "true",
+ "test-type": "mochitest",
+ "tests_grouped": "1",
+ "worker-implementation": "docker-worker"
+ },
+ "tier": 1,
+ "results": [
+ {
+ "group": "browser/components/urlbar/tests/browser-updateResults/browser.toml",
+ "ok": true,
+ "duration": 82817
+ }
+ ],
+ "errors": null,
+ "failure_types": {}
+ },
+ {
+ "id": "UOZUIVAaTZKmRwArq5WkDw",
+ "label": "test-linux1804-64-qr/opt-mochitest-browser-chrome-spi-nw-7",
+ "duration": 1885869,
+ "result": "failed",
+ "state": "completed",
+ "classification": "not classified",
+ "classification_note": null,
+ "tags": {
+ "createdForUser": "ci@mozilla.org",
+ "kind": "test",
+ "label": "test-linux1804-64-qr/opt-mochitest-browser-chrome-spi-nw-7",
+ "os": "linux",
+ "retrigger": "true",
+ "test-type": "mochitest",
+ "tests_grouped": "1",
+ "worker-implementation": "docker-worker"
+ },
+ "tier": 1,
+ "results": [
+ {
+ "group": "browser/components/urlbar/tests/browser-updateResults/browser.toml",
+ "ok": false,
+ "duration": 55841
+ }
+ ],
+ "errors": null,
+ "failure_types": {
+ "browser/components/urlbar/tests/browser-updateResults/browser.toml": [
+ [
+ "browser/components/urlbar/tests/browser-updateResults/browser_suggestedIndex_10_url_10_search.js",
+ "generic"
+ ]
+ ]
+ }
+ }
+]
diff --git a/testing/test/data/wayland-tasks-4.json b/testing/test/data/wayland-tasks-4.json
new file mode 100644
index 0000000000..5b42bf82fd
--- /dev/null
+++ b/testing/test/data/wayland-tasks-4.json
@@ -0,0 +1,97 @@
+[
+ {
+ "id": "bxMVPbPMTru_bfAivc1sPA",
+ "label": "test-linux2204-64-wayland/debug-mochitest-browser-chrome-swr-1",
+ "duration": 4634186,
+ "result": "failed",
+ "state": "completed",
+ "tags": {
+ "os": "linux",
+ "kind": "test",
+ "label": "test-linux2204-64-wayland/debug-mochitest-browser-chrome-swr-1",
+ "retrigger": "true",
+ "test-type": "mochitest",
+ "tests_grouped": "1",
+ "createdForUser": "ci@mozilla.com",
+ "worker-implementation": "generic-worker"
+ },
+ "tier": 2,
+ "results": [
+ {
+ "group": "toolkit/components/pdfjs/test/browser.toml",
+ "ok": false,
+ "duration": 390469
+ }
+ ],
+ "errors": null,
+ "failure_types": {
+ "toolkit/components/pdfjs/test/browser.toml": [
+ ["toolkit/components/pdfjs/test/browser.toml", "crash"],
+ ["toolkit/components/pdfjs/test/browser.toml", "crash"]
+ ]
+ }
+ },
+ {
+ "id": "EDql3NKPR3W6OEU3mLeKbg",
+ "label": "test-linux2204-64-wayland/debug-mochitest-browser-chrome-swr-1",
+ "duration": 5125999,
+ "result": "failed",
+ "state": "completed",
+ "tags": {
+ "os": "linux",
+ "kind": "test",
+ "label": "test-linux2204-64-wayland/debug-mochitest-browser-chrome-swr-1",
+ "retrigger": "true",
+ "test-type": "mochitest",
+ "tests_grouped": "1",
+ "createdForUser": "ci@mozilla.com",
+ "worker-implementation": "generic-worker"
+ },
+ "tier": 2,
+ "results": [
+ {
+ "group": "toolkit/components/pdfjs/test/browser.toml",
+ "ok": false,
+ "duration": 390469
+ }
+ ],
+ "errors": null,
+ "failure_types": {
+ "toolkit/components/pdfjs/test/browser.toml": [
+ ["toolkit/components/pdfjs/test/browser.toml", "crash"],
+ ["toolkit/components/pdfjs/test/browser.toml", "crash"]
+ ]
+ }
+ },
+ {
+ "id": "FDql3NKPR3W6OEU3mLeKbg",
+ "label": "test-linux2204-64-wayland/debug-mochitest-browser-chrome-swr-1",
+ "duration": 5125999,
+ "result": "failed",
+ "state": "completed",
+ "tags": {
+ "os": "linux",
+ "kind": "test",
+ "label": "test-linux2204-64-wayland/debug-mochitest-browser-chrome-swr-1",
+ "retrigger": "true",
+ "test-type": "mochitest",
+ "tests_grouped": "1",
+ "createdForUser": "ci@mozilla.com",
+ "worker-implementation": "generic-worker"
+ },
+ "tier": 2,
+ "results": [
+ {
+ "group": "toolkit/components/pdfjs/test/browser.toml",
+ "ok": false,
+ "duration": 390469
+ }
+ ],
+ "errors": null,
+ "failure_types": {
+ "toolkit/components/pdfjs/test/browser.toml": [
+ ["toolkit/components/pdfjs/test/browser.toml", "crash"]
+ ]
+ }
+ }
+]
diff --git a/testing/test/data/wayland-tasks-5.json b/testing/test/data/wayland-tasks-5.json
new file mode 100644
index 0000000000..73dec3561a
--- /dev/null
+++ b/testing/test/data/wayland-tasks-5.json
@@ -0,0 +1,141 @@
+[
+ {
+ "duration": 2360544,
+ "errors": null,
+ "extra": {
+ "arch": "64",
+ "bits": "64",
+ "build_types": [],
+ "debug": false,
+ "display": "wayland",
+ "opt": true,
+ "os": "linux",
+ "os_version": "22.04",
+ "runtimes": ["swgl"]
+ },
+ "failure_types": {
+ "browser/components/places/tests/browser/browser.toml": [
+ [
+ "browser/components/places/tests/browser/browser_bookmark_popup.js",
+ "generic"
+ ]
+ ]
+ },
+ "id": "Bgc6We1sSjakIo3V9crldw",
+ "label": "test-linux2204-64-wayland/opt-mochitest-browser-chrome-swr-3",
+ "result": "failed",
+ "results": [
+ {
+ "duration": 1521792,
+ "group": "browser/components/places/tests/browser/browser.toml",
+ "ok": false
+ }
+ ],
+ "state": "completed",
+ "tags": {
+ "createdForUser": "ci@mozilla.com",
+ "kind": "test",
+ "label": "test-linux2204-64-wayland/opt-mochitest-browser-chrome-swr-3",
+ "os": "linux",
+ "retrigger": "true",
+ "test-type": "mochitest",
+ "tests_grouped": "1",
+ "worker-implementation": "generic-worker"
+ },
+ "tier": 2
+ },
+ {
+ "duration": 2113082,
+ "errors": null,
+ "extra": {
+ "arch": "64",
+ "bits": "64",
+ "build_types": [],
+ "debug": false,
+ "display": "wayland",
+ "opt": true,
+ "os": "linux",
+ "os_version": "22.04",
+ "runtimes": ["swgl"]
+ },
+ "failure_types": {
+ "browser/components/places/tests/browser/browser.toml": [
+ [
+ "browser/components/places/tests/browser/browser_bookmark_popup.js",
+ "generic"
+ ]
+ ]
+ },
+ "id": "EH0WPmGtQsGzu5K7OxFOyg",
+ "label": "test-linux2204-64-wayland/opt-mochitest-browser-chrome-swr-3",
+ "result": "failed",
+ "results": [
+ {
+ "duration": 1407021,
+ "group": "browser/components/places/tests/browser/browser.toml",
+ "ok": false
+ }
+ ],
+ "state": "completed",
+ "tags": {
+ "createdForUser": "ci@mozilla.com",
+ "kind": "test",
+ "label": "test-linux2204-64-wayland/opt-mochitest-browser-chrome-swr-3",
+ "os": "linux",
+ "retrigger": "true",
+ "test-type": "mochitest",
+ "tests_grouped": "1",
+ "worker-implementation": "generic-worker"
+ },
+ "tier": 2
+ },
+ {
+ "duration": 1952717,
+ "errors": null,
+ "extra": {
+ "arch": "64",
+ "bits": "64",
+ "build_types": [],
+ "debug": false,
+ "display": "wayland",
+ "opt": true,
+ "os": "linux",
+ "os_version": "22.04",
+ "runtimes": ["swgl"]
+ },
+ "failure_types": {
+ "browser/components/places/tests/browser/browser.toml": [
+ [
+ "browser/components/places/tests/browser/browser_bookmarkProperties_addKeywordForThisSearch.js",
+ "generic"
+ ],
+ [
+ "browser/components/places/tests/browser/browser_bookmark_popup.js",
+ "generic"
+ ]
+ ]
+ },
+ "id": "bxDhZzsxQw65gn-veX1PHg",
+ "label": "test-linux2204-64-wayland/opt-mochitest-browser-chrome-swr-3",
+ "result": "failed",
+ "results": [
+ {
+ "duration": 1320318,
+ "group": "browser/components/places/tests/browser/browser.toml",
+ "ok": false
+ }
+ ],
+ "state": "completed",
+ "tags": {
+ "createdForUser": "ci@mozilla.com",
+ "kind": "test",
+ "label": "test-linux2204-64-wayland/opt-mochitest-browser-chrome-swr-3",
+ "os": "linux",
+ "retrigger": "true",
+ "test-type": "mochitest",
+ "tests_grouped": "1",
+ "worker-implementation": "generic-worker"
+ },
+ "tier": 2
+ }
+]