* [igt-dev] [PATCH i-g-t v2 0/2] Validate Xe field descriptions at build time
@ 2023-08-10 15:10 Mauro Carvalho Chehab
2023-08-10 15:10 ` [igt-dev] [PATCH i-g-t v2 1/2] xe_test_config.json: mark some fields are mandatory at subtest level Mauro Carvalho Chehab
` (5 more replies)
0 siblings, 6 replies; 11+ messages in thread
From: Mauro Carvalho Chehab @ 2023-08-10 15:10 UTC (permalink / raw)
To: igt-dev
From: Mauro Carvalho Chehab <mchehab@kernel.org>
Some fields shall be mandatory on every subtest. Add a logic to check
if those are filled, enforcing it during build time.
We should probably merge patches 1 and 2 first, as currently, 83
subtests are not properly documented on Xe driver.
---
v2: remove the enforce RFC patch that was expected to fail due
to tests with undocumented buckets.
Mauro Carvalho Chehab (2):
xe_test_config.json: mark some fields are mandatory at subtest level
scripts/test_list.py: add a check for missing features
scripts/test_list.py | 16 +++++++++++++++-
tests/xe/xe_test_config.json | 5 +++++
2 files changed, 20 insertions(+), 1 deletion(-)
--
2.41.0
^ permalink raw reply [flat|nested] 11+ messages in thread* [igt-dev] [PATCH i-g-t v2 1/2] xe_test_config.json: mark some fields are mandatory at subtest level 2023-08-10 15:10 [igt-dev] [PATCH i-g-t v2 0/2] Validate Xe field descriptions at build time Mauro Carvalho Chehab @ 2023-08-10 15:10 ` Mauro Carvalho Chehab 2023-08-10 19:06 ` Kamil Konieczny 2023-08-10 15:10 ` [igt-dev] [PATCH i-g-t v2 2/2] scripts/test_list.py: add a check for missing features Mauro Carvalho Chehab ` (4 subsequent siblings) 5 siblings, 1 reply; 11+ messages in thread From: Mauro Carvalho Chehab @ 2023-08-10 15:10 UTC (permalink / raw) To: igt-dev From: Mauro Carvalho Chehab <mchehab@kernel.org> Some IGT Xe tests were added without proper documentation. Currently, igt_doc.py doesn't know what fields are mandatory or not, so it can't enforce it. Add a field to mark those. Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> --- tests/xe/xe_test_config.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/xe/xe_test_config.json b/tests/xe/xe_test_config.json index 08c39de74384..8fb65d02d840 100644 --- a/tests/xe/xe_test_config.json +++ b/tests/xe/xe_test_config.json @@ -5,6 +5,7 @@ "fields": { "Category": { "_properties_": { + "mandatory": true, "description": "Contains the major group for the tested functionality, being hardware, software or firmware" }, "Mega feature": { @@ -13,10 +14,12 @@ }, "Sub-category": { "_properties_": { + "mandatory": true, "description": "Contains the the technical feature/functionality" }, "Functionality": { "_properties_": { + "mandatory": true, "description": "Groups page table tests on buckets containg more detailed functionality" }, "Feature": { @@ -27,6 +30,7 @@ }, "Run type": { "_properties_": { + "mandatory": true, "description": "Defines what category of testlist it belongs", "order": [ "boot", @@ -75,6 +79,7 @@ }, "Description" : { "_properties_": { + "mandatory": true, "description": "Provides a description for the test/subtest." } } -- 2.41.0 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2 1/2] xe_test_config.json: mark some fields are mandatory at subtest level 2023-08-10 15:10 ` [igt-dev] [PATCH i-g-t v2 1/2] xe_test_config.json: mark some fields are mandatory at subtest level Mauro Carvalho Chehab @ 2023-08-10 19:06 ` Kamil Konieczny 0 siblings, 0 replies; 11+ messages in thread From: Kamil Konieczny @ 2023-08-10 19:06 UTC (permalink / raw) To: igt-dev Hi Mauro, On 2023-08-10 at 17:10:30 +0200, Mauro Carvalho Chehab wrote: > From: Mauro Carvalho Chehab <mchehab@kernel.org> > > Some IGT Xe tests were added without proper documentation. > Currently, igt_doc.py doesn't know what fields are mandatory or > not, so it can't enforce it. > > Add a field to mark those. > > Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > --- > tests/xe/xe_test_config.json | 5 +++++ > 1 file changed, 5 insertions(+) > > diff --git a/tests/xe/xe_test_config.json b/tests/xe/xe_test_config.json > index 08c39de74384..8fb65d02d840 100644 > --- a/tests/xe/xe_test_config.json > +++ b/tests/xe/xe_test_config.json > @@ -5,6 +5,7 @@ > "fields": { > "Category": { > "_properties_": { > + "mandatory": true, > "description": "Contains the major group for the tested functionality, being hardware, software or firmware" > }, > "Mega feature": { > @@ -13,10 +14,12 @@ > }, > "Sub-category": { > "_properties_": { > + "mandatory": true, > "description": "Contains the the technical feature/functionality" > }, > "Functionality": { > "_properties_": { > + "mandatory": true, > "description": "Groups page table tests on buckets containg more detailed functionality" > }, > "Feature": { > @@ -27,6 +30,7 @@ > }, > "Run type": { > "_properties_": { > + "mandatory": true, > "description": "Defines what category of testlist it belongs", > "order": [ > "boot", > @@ -75,6 +79,7 @@ > }, > "Description" : { > "_properties_": { > + "mandatory": true, > "description": "Provides a description for the test/subtest." > } > } > -- > 2.41.0 > ^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] [PATCH i-g-t v2 2/2] scripts/test_list.py: add a check for missing features 2023-08-10 15:10 [igt-dev] [PATCH i-g-t v2 0/2] Validate Xe field descriptions at build time Mauro Carvalho Chehab 2023-08-10 15:10 ` [igt-dev] [PATCH i-g-t v2 1/2] xe_test_config.json: mark some fields are mandatory at subtest level Mauro Carvalho Chehab @ 2023-08-10 15:10 ` Mauro Carvalho Chehab 2023-08-10 19:07 ` Kamil Konieczny 2023-08-10 16:42 ` [igt-dev] ✗ Fi.CI.BAT: failure for Validate Xe field descriptions at build time (rev2) Patchwork ` (3 subsequent siblings) 5 siblings, 1 reply; 11+ messages in thread From: Mauro Carvalho Chehab @ 2023-08-10 15:10 UTC (permalink / raw) To: igt-dev From: Mauro Carvalho Chehab <mchehab@kernel.org> Some fields shall always be present at the documentation. Add a check for it. Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> --- scripts/test_list.py | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/scripts/test_list.py b/scripts/test_list.py index 4f580fb3de58..c23d6d735edf 100755 --- a/scripts/test_list.py +++ b/scripts/test_list.py @@ -936,13 +936,27 @@ class TestList: if self.filters: print("NOTE: test checks are affected by filters") + mandatory_fields = set() + for field, item in self.props.items(): + if item["_properties_"].get("mandatory"): + mandatory_fields.add(field) + doc_subtests = set() args_regex = re.compile(r'\<[^\>]+\>') - for subtest in self.get_subtests()[""]: + missing_mandatory_fields = False + + subtests = self.expand_dictionary(True) + for subtest, data in sorted(subtests.items()): subtest = "@".join(subtest.split("@")[:3]) subtest = args_regex.sub(r'\\d+', subtest) + + for field in mandatory_fields: + if field not in data: + print(f"Warning: {subtest} {field} documentation is missing") + missing_mandatory_fields = True + doc_subtests.add(subtest) doc_subtests = list(sorted(doc_subtests)) -- 2.41.0 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2 2/2] scripts/test_list.py: add a check for missing features 2023-08-10 15:10 ` [igt-dev] [PATCH i-g-t v2 2/2] scripts/test_list.py: add a check for missing features Mauro Carvalho Chehab @ 2023-08-10 19:07 ` Kamil Konieczny 0 siblings, 0 replies; 11+ messages in thread From: Kamil Konieczny @ 2023-08-10 19:07 UTC (permalink / raw) To: igt-dev Hi Mauro, On 2023-08-10 at 17:10:31 +0200, Mauro Carvalho Chehab wrote: > From: Mauro Carvalho Chehab <mchehab@kernel.org> > > Some fields shall always be present at the documentation. > > Add a check for it. > > Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > --- > scripts/test_list.py | 16 +++++++++++++++- > 1 file changed, 15 insertions(+), 1 deletion(-) > > diff --git a/scripts/test_list.py b/scripts/test_list.py > index 4f580fb3de58..c23d6d735edf 100755 > --- a/scripts/test_list.py > +++ b/scripts/test_list.py > @@ -936,13 +936,27 @@ class TestList: > if self.filters: > print("NOTE: test checks are affected by filters") > > + mandatory_fields = set() > + for field, item in self.props.items(): > + if item["_properties_"].get("mandatory"): > + mandatory_fields.add(field) > + > doc_subtests = set() > > args_regex = re.compile(r'\<[^\>]+\>') > > - for subtest in self.get_subtests()[""]: > + missing_mandatory_fields = False > + > + subtests = self.expand_dictionary(True) > + for subtest, data in sorted(subtests.items()): > subtest = "@".join(subtest.split("@")[:3]) > subtest = args_regex.sub(r'\\d+', subtest) > + > + for field in mandatory_fields: > + if field not in data: > + print(f"Warning: {subtest} {field} documentation is missing") > + missing_mandatory_fields = True > + > doc_subtests.add(subtest) > > doc_subtests = list(sorted(doc_subtests)) > -- > 2.41.0 > ^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✗ Fi.CI.BAT: failure for Validate Xe field descriptions at build time (rev2) 2023-08-10 15:10 [igt-dev] [PATCH i-g-t v2 0/2] Validate Xe field descriptions at build time Mauro Carvalho Chehab 2023-08-10 15:10 ` [igt-dev] [PATCH i-g-t v2 1/2] xe_test_config.json: mark some fields are mandatory at subtest level Mauro Carvalho Chehab 2023-08-10 15:10 ` [igt-dev] [PATCH i-g-t v2 2/2] scripts/test_list.py: add a check for missing features Mauro Carvalho Chehab @ 2023-08-10 16:42 ` Patchwork 2023-08-10 19:09 ` Kamil Konieczny 2023-08-10 17:45 ` [igt-dev] ○ CI.xeBAT: info " Patchwork ` (2 subsequent siblings) 5 siblings, 1 reply; 11+ messages in thread From: Patchwork @ 2023-08-10 16:42 UTC (permalink / raw) To: Mauro Carvalho Chehab; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 9374 bytes --] == Series Details == Series: Validate Xe field descriptions at build time (rev2) URL : https://patchwork.freedesktop.org/series/122285/ State : failure == Summary == CI Bug Log - changes from IGT_7427 -> IGTPW_9571 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9571 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9571, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/index.html Participating hosts (43 -> 42) ------------------------------ Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9571: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@live@reset: - bat-rpls-1: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/bat-rpls-1/igt@i915_selftest@live@reset.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-rpls-1/igt@i915_selftest@live@reset.html Known issues ------------ Here are the changes found in IGTPW_9571 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_pm_rpm@basic-pci-d3-state: - bat-adlp-9: [PASS][3] -> [FAIL][4] ([i915#7940]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/bat-adlp-9/igt@i915_pm_rpm@basic-pci-d3-state.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-adlp-9/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@i915_selftest@live@execlists: - fi-bsw-nick: [PASS][5] -> [ABORT][6] ([i915#7911] / [i915#7913]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/fi-bsw-nick/igt@i915_selftest@live@execlists.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/fi-bsw-nick/igt@i915_selftest@live@execlists.html * igt@i915_selftest@live@migrate: - bat-dg2-11: [PASS][7] -> [DMESG-WARN][8] ([i915#7699]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/bat-dg2-11/igt@i915_selftest@live@migrate.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-dg2-11/igt@i915_selftest@live@migrate.html * igt@i915_selftest@live@reset: - bat-rpls-2: NOTRUN -> [ABORT][9] ([i915#4983] / [i915#7461] / [i915#7913] / [i915#8347]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-rpls-2/igt@i915_selftest@live@reset.html * igt@i915_selftest@live@slpc: - bat-mtlp-8: NOTRUN -> [DMESG-WARN][10] ([i915#6367]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-mtlp-8/igt@i915_selftest@live@slpc.html * igt@i915_suspend@basic-s3-without-i915: - bat-mtlp-8: NOTRUN -> [SKIP][11] ([i915#6645]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - bat-mtlp-8: NOTRUN -> [SKIP][12] ([i915#7828]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-mtlp-8/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-dg2-11: NOTRUN -> [SKIP][13] ([i915#1845] / [i915#5354]) +2 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1: - bat-rplp-1: [PASS][14] -> [ABORT][15] ([i915#8442] / [i915#8668]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-dp-1: - bat-dg2-9: [PASS][16] -> [FAIL][17] ([fdo#103375]) +2 similar issues [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/bat-dg2-9/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-dp-1.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-dg2-9/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-dp-1.html #### Possible fixes #### * igt@i915_pm_rpm@basic-pci-d3-state: - fi-tgl-1115g4: [FAIL][18] ([i915#7940]) -> [PASS][19] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/fi-tgl-1115g4/igt@i915_pm_rpm@basic-pci-d3-state.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/fi-tgl-1115g4/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@i915_pm_rpm@basic-rte: - fi-cfl-8109u: [FAIL][20] ([i915#7940]) -> [PASS][21] [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/fi-cfl-8109u/igt@i915_pm_rpm@basic-rte.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/fi-cfl-8109u/igt@i915_pm_rpm@basic-rte.html - fi-skl-guc: [FAIL][22] ([i915#7940]) -> [PASS][23] [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/fi-skl-guc/igt@i915_pm_rpm@basic-rte.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/fi-skl-guc/igt@i915_pm_rpm@basic-rte.html * igt@i915_selftest@live@requests: - bat-mtlp-8: [ABORT][24] ([i915#7982] / [i915#8865]) -> [PASS][25] [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/bat-mtlp-8/igt@i915_selftest@live@requests.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-mtlp-8/igt@i915_selftest@live@requests.html - bat-rpls-2: [ABORT][26] ([i915#4983] / [i915#7913]) -> [PASS][27] [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/bat-rpls-2/igt@i915_selftest@live@requests.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-rpls-2/igt@i915_selftest@live@requests.html - bat-mtlp-6: [DMESG-FAIL][28] ([i915#8497]) -> [PASS][29] [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/bat-mtlp-6/igt@i915_selftest@live@requests.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-mtlp-6/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@slpc: - bat-mtlp-6: [DMESG-WARN][30] ([i915#6367]) -> [PASS][31] [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/bat-mtlp-6/igt@i915_selftest@live@slpc.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-mtlp-6/igt@i915_selftest@live@slpc.html - bat-rpls-1: [DMESG-WARN][32] ([i915#6367]) -> [PASS][33] [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/bat-rpls-1/igt@i915_selftest@live@slpc.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-rpls-1/igt@i915_selftest@live@slpc.html #### Warnings #### * igt@i915_pm_rpm@basic-pci-d3-state: - fi-skl-guc: [FAIL][34] ([i915#7691]) -> [FAIL][35] ([i915#7940]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/fi-skl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/fi-skl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html - fi-kbl-guc: [FAIL][36] ([i915#7691]) -> [SKIP][37] ([fdo#109271]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/fi-kbl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/fi-kbl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7691]: https://gitlab.freedesktop.org/drm/intel/issues/7691 [i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940 [i915#7982]: https://gitlab.freedesktop.org/drm/intel/issues/7982 [i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347 [i915#8442]: https://gitlab.freedesktop.org/drm/intel/issues/8442 [i915#8497]: https://gitlab.freedesktop.org/drm/intel/issues/8497 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8865]: https://gitlab.freedesktop.org/drm/intel/issues/8865 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7427 -> IGTPW_9571 CI-20190529: 20190529 CI_DRM_13500: 4be6c76008410cf6ada52b25cb4bc4280bc3a3ee @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9571: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/index.html IGT_7427: 85557af77f06ffef7e909c6008788ac34a011b65 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/index.html [-- Attachment #2: Type: text/html, Size: 11121 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.BAT: failure for Validate Xe field descriptions at build time (rev2) 2023-08-10 16:42 ` [igt-dev] ✗ Fi.CI.BAT: failure for Validate Xe field descriptions at build time (rev2) Patchwork @ 2023-08-10 19:09 ` Kamil Konieczny 2023-08-11 9:24 ` Yedireswarapu, SaiX Nandan 0 siblings, 1 reply; 11+ messages in thread From: Kamil Konieczny @ 2023-08-10 19:09 UTC (permalink / raw) To: igt-dev; +Cc: SaiX Nandan Yedireswarapu, RavitejaX Veesam, SanjuX Marikkar Hi Sai, below issue is not related to Xe testlist, Regards, Kamil On 2023-08-10 at 16:42:22 -0000, Patchwork wrote: > == Series Details == > > Series: Validate Xe field descriptions at build time (rev2) > URL : https://patchwork.freedesktop.org/series/122285/ > State : failure > > == Summary == > > CI Bug Log - changes from IGT_7427 -> IGTPW_9571 > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_9571 absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_9571, please notify your bug team to allow them > to document this new failure mode, which will reduce false positives in CI. > > External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/index.html > > Participating hosts (43 -> 42) > ------------------------------ > > Missing (1): fi-snb-2520m > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_9571: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@i915_selftest@live@reset: > - bat-rpls-1: [PASS][1] -> [DMESG-WARN][2] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/bat-rpls-1/igt@i915_selftest@live@reset.html > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-rpls-1/igt@i915_selftest@live@reset.html > > > Known issues > ------------ > > Here are the changes found in IGTPW_9571 that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt@i915_pm_rpm@basic-pci-d3-state: > - bat-adlp-9: [PASS][3] -> [FAIL][4] ([i915#7940]) > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/bat-adlp-9/igt@i915_pm_rpm@basic-pci-d3-state.html > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-adlp-9/igt@i915_pm_rpm@basic-pci-d3-state.html > > * igt@i915_selftest@live@execlists: > - fi-bsw-nick: [PASS][5] -> [ABORT][6] ([i915#7911] / [i915#7913]) > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/fi-bsw-nick/igt@i915_selftest@live@execlists.html > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/fi-bsw-nick/igt@i915_selftest@live@execlists.html > > * igt@i915_selftest@live@migrate: > - bat-dg2-11: [PASS][7] -> [DMESG-WARN][8] ([i915#7699]) > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/bat-dg2-11/igt@i915_selftest@live@migrate.html > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-dg2-11/igt@i915_selftest@live@migrate.html > > * igt@i915_selftest@live@reset: > - bat-rpls-2: NOTRUN -> [ABORT][9] ([i915#4983] / [i915#7461] / [i915#7913] / [i915#8347]) > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-rpls-2/igt@i915_selftest@live@reset.html > > * igt@i915_selftest@live@slpc: > - bat-mtlp-8: NOTRUN -> [DMESG-WARN][10] ([i915#6367]) > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-mtlp-8/igt@i915_selftest@live@slpc.html > > * igt@i915_suspend@basic-s3-without-i915: > - bat-mtlp-8: NOTRUN -> [SKIP][11] ([i915#6645]) > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html > > * igt@kms_chamelium_hpd@common-hpd-after-suspend: > - bat-mtlp-8: NOTRUN -> [SKIP][12] ([i915#7828]) > [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-mtlp-8/igt@kms_chamelium_hpd@common-hpd-after-suspend.html > > * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: > - bat-dg2-11: NOTRUN -> [SKIP][13] ([i915#1845] / [i915#5354]) +2 similar issues > [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html > > * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1: > - bat-rplp-1: [PASS][14] -> [ABORT][15] ([i915#8442] / [i915#8668]) > [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html > [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html > > * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-dp-1: > - bat-dg2-9: [PASS][16] -> [FAIL][17] ([fdo#103375]) +2 similar issues > [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/bat-dg2-9/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-dp-1.html > [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-dg2-9/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-dp-1.html > > > #### Possible fixes #### > > * igt@i915_pm_rpm@basic-pci-d3-state: > - fi-tgl-1115g4: [FAIL][18] ([i915#7940]) -> [PASS][19] > [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/fi-tgl-1115g4/igt@i915_pm_rpm@basic-pci-d3-state.html > [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/fi-tgl-1115g4/igt@i915_pm_rpm@basic-pci-d3-state.html > > * igt@i915_pm_rpm@basic-rte: > - fi-cfl-8109u: [FAIL][20] ([i915#7940]) -> [PASS][21] > [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/fi-cfl-8109u/igt@i915_pm_rpm@basic-rte.html > [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/fi-cfl-8109u/igt@i915_pm_rpm@basic-rte.html > - fi-skl-guc: [FAIL][22] ([i915#7940]) -> [PASS][23] > [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/fi-skl-guc/igt@i915_pm_rpm@basic-rte.html > [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/fi-skl-guc/igt@i915_pm_rpm@basic-rte.html > > * igt@i915_selftest@live@requests: > - bat-mtlp-8: [ABORT][24] ([i915#7982] / [i915#8865]) -> [PASS][25] > [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/bat-mtlp-8/igt@i915_selftest@live@requests.html > [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-mtlp-8/igt@i915_selftest@live@requests.html > - bat-rpls-2: [ABORT][26] ([i915#4983] / [i915#7913]) -> [PASS][27] > [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/bat-rpls-2/igt@i915_selftest@live@requests.html > [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-rpls-2/igt@i915_selftest@live@requests.html > - bat-mtlp-6: [DMESG-FAIL][28] ([i915#8497]) -> [PASS][29] > [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/bat-mtlp-6/igt@i915_selftest@live@requests.html > [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-mtlp-6/igt@i915_selftest@live@requests.html > > * igt@i915_selftest@live@slpc: > - bat-mtlp-6: [DMESG-WARN][30] ([i915#6367]) -> [PASS][31] > [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/bat-mtlp-6/igt@i915_selftest@live@slpc.html > [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-mtlp-6/igt@i915_selftest@live@slpc.html > - bat-rpls-1: [DMESG-WARN][32] ([i915#6367]) -> [PASS][33] > [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/bat-rpls-1/igt@i915_selftest@live@slpc.html > [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-rpls-1/igt@i915_selftest@live@slpc.html > > > #### Warnings #### > > * igt@i915_pm_rpm@basic-pci-d3-state: > - fi-skl-guc: [FAIL][34] ([i915#7691]) -> [FAIL][35] ([i915#7940]) > [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/fi-skl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html > [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/fi-skl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html > - fi-kbl-guc: [FAIL][36] ([i915#7691]) -> [SKIP][37] ([fdo#109271]) > [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/fi-kbl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html > [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/fi-kbl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html > > > [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 > [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 > [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 > [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 > [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 > [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 > [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 > [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 > [i915#7691]: https://gitlab.freedesktop.org/drm/intel/issues/7691 > [i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699 > [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 > [i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911 > [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 > [i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940 > [i915#7982]: https://gitlab.freedesktop.org/drm/intel/issues/7982 > [i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347 > [i915#8442]: https://gitlab.freedesktop.org/drm/intel/issues/8442 > [i915#8497]: https://gitlab.freedesktop.org/drm/intel/issues/8497 > [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 > [i915#8865]: https://gitlab.freedesktop.org/drm/intel/issues/8865 > > > Build changes > ------------- > > * CI: CI-20190529 -> None > * IGT: IGT_7427 -> IGTPW_9571 > > CI-20190529: 20190529 > CI_DRM_13500: 4be6c76008410cf6ada52b25cb4bc4280bc3a3ee @ git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_9571: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/index.html > IGT_7427: 85557af77f06ffef7e909c6008788ac34a011b65 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/index.html ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.BAT: failure for Validate Xe field descriptions at build time (rev2) 2023-08-10 19:09 ` Kamil Konieczny @ 2023-08-11 9:24 ` Yedireswarapu, SaiX Nandan 0 siblings, 0 replies; 11+ messages in thread From: Yedireswarapu, SaiX Nandan @ 2023-08-11 9:24 UTC (permalink / raw) To: Kamil Konieczny, igt-dev@lists.freedesktop.org; +Cc: Marikkar, SanjuX, Veesam Hi, Issue re-reported, https://patchwork.freedesktop.org/series/122285/ Thanks, Y Sai Nandan -----Original Message----- From: Kamil Konieczny <kamil.konieczny@linux.intel.com> Sent: Friday, August 11, 2023 12:39 AM To: igt-dev@lists.freedesktop.org Cc: Mauro Carvalho Chehab <mauro.chehab@linux.intel.com>; Yedireswarapu, SaiX Nandan <saix.nandan.yedireswarapu@intel.com>; Veesam, RavitejaX <ravitejax.veesam@intel.com>; Marikkar, SanjuX <sanjux.marikkar@intel.com> Subject: Re: [igt-dev] ✗ Fi.CI.BAT: failure for Validate Xe field descriptions at build time (rev2) Hi Sai, below issue is not related to Xe testlist, Regards, Kamil On 2023-08-10 at 16:42:22 -0000, Patchwork wrote: > == Series Details == > > Series: Validate Xe field descriptions at build time (rev2) > URL : https://patchwork.freedesktop.org/series/122285/ > State : failure > > == Summary == > > CI Bug Log - changes from IGT_7427 -> IGTPW_9571 > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_9571 absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_9571, please notify your bug team to allow them > to document this new failure mode, which will reduce false positives in CI. > > External URL: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/index.html > > Participating hosts (43 -> 42) > ------------------------------ > > Missing (1): fi-snb-2520m > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_9571: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@i915_selftest@live@reset: > - bat-rpls-1: [PASS][1] -> [DMESG-WARN][2] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/bat-rpls-1/igt@i915_selftest@live@reset.html > [2]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-rpls-1/igt@i91 > 5_selftest@live@reset.html > > > Known issues > ------------ > > Here are the changes found in IGTPW_9571 that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt@i915_pm_rpm@basic-pci-d3-state: > - bat-adlp-9: [PASS][3] -> [FAIL][4] ([i915#7940]) > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/bat-adlp-9/igt@i915_pm_rpm@basic-pci-d3-state.html > [4]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-adlp-9/igt@i91 > 5_pm_rpm@basic-pci-d3-state.html > > * igt@i915_selftest@live@execlists: > - fi-bsw-nick: [PASS][5] -> [ABORT][6] ([i915#7911] / [i915#7913]) > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/fi-bsw-nick/igt@i915_selftest@live@execlists.html > [6]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/fi-bsw-nick/igt@i9 > 15_selftest@live@execlists.html > > * igt@i915_selftest@live@migrate: > - bat-dg2-11: [PASS][7] -> [DMESG-WARN][8] ([i915#7699]) > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/bat-dg2-11/igt@i915_selftest@live@migrate.html > [8]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-dg2-11/igt@i91 > 5_selftest@live@migrate.html > > * igt@i915_selftest@live@reset: > - bat-rpls-2: NOTRUN -> [ABORT][9] ([i915#4983] / [i915#7461] / [i915#7913] / [i915#8347]) > [9]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-rpls-2/igt@i91 > 5_selftest@live@reset.html > > * igt@i915_selftest@live@slpc: > - bat-mtlp-8: NOTRUN -> [DMESG-WARN][10] ([i915#6367]) > [10]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-mtlp-8/igt@i91 > 5_selftest@live@slpc.html > > * igt@i915_suspend@basic-s3-without-i915: > - bat-mtlp-8: NOTRUN -> [SKIP][11] ([i915#6645]) > [11]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-mtlp-8/igt@i91 > 5_suspend@basic-s3-without-i915.html > > * igt@kms_chamelium_hpd@common-hpd-after-suspend: > - bat-mtlp-8: NOTRUN -> [SKIP][12] ([i915#7828]) > [12]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-mtlp-8/igt@kms > _chamelium_hpd@common-hpd-after-suspend.html > > * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: > - bat-dg2-11: NOTRUN -> [SKIP][13] ([i915#1845] / [i915#5354]) +2 similar issues > [13]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-dg2-11/igt@kms > _pipe_crc_basic@nonblocking-crc-frame-sequence.html > > * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1: > - bat-rplp-1: [PASS][14] -> [ABORT][15] ([i915#8442] / [i915#8668]) > [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html > [15]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-rplp-1/igt@kms > _pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html > > * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-dp-1: > - bat-dg2-9: [PASS][16] -> [FAIL][17] ([fdo#103375]) +2 similar issues > [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/bat-dg2-9/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-dp-1.html > [17]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-dg2-9/igt@kms_ > pipe_crc_basic@suspend-read-crc@pipe-d-dp-1.html > > > #### Possible fixes #### > > * igt@i915_pm_rpm@basic-pci-d3-state: > - fi-tgl-1115g4: [FAIL][18] ([i915#7940]) -> [PASS][19] > [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/fi-tgl-1115g4/igt@i915_pm_rpm@basic-pci-d3-state.html > [19]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/fi-tgl-1115g4/igt@ > i915_pm_rpm@basic-pci-d3-state.html > > * igt@i915_pm_rpm@basic-rte: > - fi-cfl-8109u: [FAIL][20] ([i915#7940]) -> [PASS][21] > [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/fi-cfl-8109u/igt@i915_pm_rpm@basic-rte.html > [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/fi-cfl-8109u/igt@i915_pm_rpm@basic-rte.html > - fi-skl-guc: [FAIL][22] ([i915#7940]) -> [PASS][23] > [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/fi-skl-guc/igt@i915_pm_rpm@basic-rte.html > [23]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/fi-skl-guc/igt@i91 > 5_pm_rpm@basic-rte.html > > * igt@i915_selftest@live@requests: > - bat-mtlp-8: [ABORT][24] ([i915#7982] / [i915#8865]) -> [PASS][25] > [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/bat-mtlp-8/igt@i915_selftest@live@requests.html > [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-mtlp-8/igt@i915_selftest@live@requests.html > - bat-rpls-2: [ABORT][26] ([i915#4983] / [i915#7913]) -> [PASS][27] > [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/bat-rpls-2/igt@i915_selftest@live@requests.html > [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-rpls-2/igt@i915_selftest@live@requests.html > - bat-mtlp-6: [DMESG-FAIL][28] ([i915#8497]) -> [PASS][29] > [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/bat-mtlp-6/igt@i915_selftest@live@requests.html > [29]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-mtlp-6/igt@i91 > 5_selftest@live@requests.html > > * igt@i915_selftest@live@slpc: > - bat-mtlp-6: [DMESG-WARN][30] ([i915#6367]) -> [PASS][31] > [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/bat-mtlp-6/igt@i915_selftest@live@slpc.html > [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-mtlp-6/igt@i915_selftest@live@slpc.html > - bat-rpls-1: [DMESG-WARN][32] ([i915#6367]) -> [PASS][33] > [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/bat-rpls-1/igt@i915_selftest@live@slpc.html > [33]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-rpls-1/igt@i91 > 5_selftest@live@slpc.html > > > #### Warnings #### > > * igt@i915_pm_rpm@basic-pci-d3-state: > - fi-skl-guc: [FAIL][34] ([i915#7691]) -> [FAIL][35] ([i915#7940]) > [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/fi-skl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html > [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/fi-skl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html > - fi-kbl-guc: [FAIL][36] ([i915#7691]) -> [SKIP][37] ([fdo#109271]) > [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/fi-kbl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html > [37]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/fi-kbl-guc/igt@i91 > 5_pm_rpm@basic-pci-d3-state.html > > > [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 > [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 > [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 > [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 > [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 > [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 > [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 > [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 > [i915#7691]: https://gitlab.freedesktop.org/drm/intel/issues/7691 > [i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699 > [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 > [i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911 > [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 > [i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940 > [i915#7982]: https://gitlab.freedesktop.org/drm/intel/issues/7982 > [i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347 > [i915#8442]: https://gitlab.freedesktop.org/drm/intel/issues/8442 > [i915#8497]: https://gitlab.freedesktop.org/drm/intel/issues/8497 > [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 > [i915#8865]: https://gitlab.freedesktop.org/drm/intel/issues/8865 > > > Build changes > ------------- > > * CI: CI-20190529 -> None > * IGT: IGT_7427 -> IGTPW_9571 > > CI-20190529: 20190529 > CI_DRM_13500: 4be6c76008410cf6ada52b25cb4bc4280bc3a3ee @ git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_9571: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/index.html > IGT_7427: 85557af77f06ffef7e909c6008788ac34a011b65 @ > https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > > == Logs == > > For more details see: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/index.html ^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ○ CI.xeBAT: info for Validate Xe field descriptions at build time (rev2) 2023-08-10 15:10 [igt-dev] [PATCH i-g-t v2 0/2] Validate Xe field descriptions at build time Mauro Carvalho Chehab ` (2 preceding siblings ...) 2023-08-10 16:42 ` [igt-dev] ✗ Fi.CI.BAT: failure for Validate Xe field descriptions at build time (rev2) Patchwork @ 2023-08-10 17:45 ` Patchwork 2023-08-11 7:20 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork 2023-08-12 8:46 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 5 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2023-08-10 17:45 UTC (permalink / raw) To: Mauro Carvalho Chehab; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 359 bytes --] == Series Details == Series: Validate Xe field descriptions at build time (rev2) URL : https://patchwork.freedesktop.org/series/122285/ State : info == Summary == Participating hosts: bat-pvc-2 bat-atsm-2 bat-dg2-oem2 bat-adlp-7 Missing hosts results[1]: bat-pvc-2 Results: [IGTPW_9571](https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9571/index.html) [-- Attachment #2: Type: text/html, Size: 881 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Validate Xe field descriptions at build time (rev2) 2023-08-10 15:10 [igt-dev] [PATCH i-g-t v2 0/2] Validate Xe field descriptions at build time Mauro Carvalho Chehab ` (3 preceding siblings ...) 2023-08-10 17:45 ` [igt-dev] ○ CI.xeBAT: info " Patchwork @ 2023-08-11 7:20 ` Patchwork 2023-08-12 8:46 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 5 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2023-08-11 7:20 UTC (permalink / raw) To: Mauro Carvalho Chehab; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 8956 bytes --] == Series Details == Series: Validate Xe field descriptions at build time (rev2) URL : https://patchwork.freedesktop.org/series/122285/ State : success == Summary == CI Bug Log - changes from IGT_7427 -> IGTPW_9571 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/index.html Participating hosts (43 -> 42) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_9571 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_pm_rpm@basic-pci-d3-state: - bat-adlp-9: [PASS][1] -> [FAIL][2] ([i915#7940]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/bat-adlp-9/igt@i915_pm_rpm@basic-pci-d3-state.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-adlp-9/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@i915_selftest@live@execlists: - fi-bsw-nick: [PASS][3] -> [ABORT][4] ([i915#7911] / [i915#7913]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/fi-bsw-nick/igt@i915_selftest@live@execlists.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/fi-bsw-nick/igt@i915_selftest@live@execlists.html * igt@i915_selftest@live@migrate: - bat-dg2-11: [PASS][5] -> [DMESG-WARN][6] ([i915#7699]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/bat-dg2-11/igt@i915_selftest@live@migrate.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-dg2-11/igt@i915_selftest@live@migrate.html * igt@i915_selftest@live@reset: - bat-rpls-1: [PASS][7] -> [DMESG-WARN][8] ([i915#9110]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/bat-rpls-1/igt@i915_selftest@live@reset.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-rpls-1/igt@i915_selftest@live@reset.html - bat-rpls-2: NOTRUN -> [ABORT][9] ([i915#4983] / [i915#7461] / [i915#7913] / [i915#8347]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-rpls-2/igt@i915_selftest@live@reset.html * igt@i915_selftest@live@slpc: - bat-mtlp-8: NOTRUN -> [DMESG-WARN][10] ([i915#6367]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-mtlp-8/igt@i915_selftest@live@slpc.html * igt@i915_suspend@basic-s3-without-i915: - bat-mtlp-8: NOTRUN -> [SKIP][11] ([i915#6645]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - bat-mtlp-8: NOTRUN -> [SKIP][12] ([i915#7828]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-mtlp-8/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-dg2-11: NOTRUN -> [SKIP][13] ([i915#1845] / [i915#5354]) +2 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1: - bat-rplp-1: [PASS][14] -> [ABORT][15] ([i915#8442] / [i915#8668]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-dp-1: - bat-dg2-9: [PASS][16] -> [FAIL][17] ([fdo#103375]) +2 similar issues [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/bat-dg2-9/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-dp-1.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-dg2-9/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-dp-1.html #### Possible fixes #### * igt@i915_pm_rpm@basic-pci-d3-state: - fi-tgl-1115g4: [FAIL][18] ([i915#7940]) -> [PASS][19] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/fi-tgl-1115g4/igt@i915_pm_rpm@basic-pci-d3-state.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/fi-tgl-1115g4/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@i915_pm_rpm@basic-rte: - fi-cfl-8109u: [FAIL][20] ([i915#7940]) -> [PASS][21] [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/fi-cfl-8109u/igt@i915_pm_rpm@basic-rte.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/fi-cfl-8109u/igt@i915_pm_rpm@basic-rte.html - fi-skl-guc: [FAIL][22] ([i915#7940]) -> [PASS][23] [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/fi-skl-guc/igt@i915_pm_rpm@basic-rte.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/fi-skl-guc/igt@i915_pm_rpm@basic-rte.html * igt@i915_selftest@live@requests: - bat-mtlp-8: [ABORT][24] ([i915#7982] / [i915#8865]) -> [PASS][25] [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/bat-mtlp-8/igt@i915_selftest@live@requests.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-mtlp-8/igt@i915_selftest@live@requests.html - bat-rpls-2: [ABORT][26] ([i915#4983] / [i915#7913]) -> [PASS][27] [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/bat-rpls-2/igt@i915_selftest@live@requests.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-rpls-2/igt@i915_selftest@live@requests.html - bat-mtlp-6: [DMESG-FAIL][28] ([i915#8497]) -> [PASS][29] [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/bat-mtlp-6/igt@i915_selftest@live@requests.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-mtlp-6/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@slpc: - bat-mtlp-6: [DMESG-WARN][30] ([i915#6367]) -> [PASS][31] [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/bat-mtlp-6/igt@i915_selftest@live@slpc.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-mtlp-6/igt@i915_selftest@live@slpc.html - bat-rpls-1: [DMESG-WARN][32] ([i915#6367]) -> [PASS][33] [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/bat-rpls-1/igt@i915_selftest@live@slpc.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/bat-rpls-1/igt@i915_selftest@live@slpc.html #### Warnings #### * igt@i915_pm_rpm@basic-pci-d3-state: - fi-skl-guc: [FAIL][34] ([i915#7691]) -> [FAIL][35] ([i915#7940]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/fi-skl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/fi-skl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html - fi-kbl-guc: [FAIL][36] ([i915#7691]) -> [SKIP][37] ([fdo#109271]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/fi-kbl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/fi-kbl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7691]: https://gitlab.freedesktop.org/drm/intel/issues/7691 [i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940 [i915#7982]: https://gitlab.freedesktop.org/drm/intel/issues/7982 [i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347 [i915#8442]: https://gitlab.freedesktop.org/drm/intel/issues/8442 [i915#8497]: https://gitlab.freedesktop.org/drm/intel/issues/8497 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8865]: https://gitlab.freedesktop.org/drm/intel/issues/8865 [i915#9110]: https://gitlab.freedesktop.org/drm/intel/issues/9110 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7427 -> IGTPW_9571 CI-20190529: 20190529 CI_DRM_13500: 4be6c76008410cf6ada52b25cb4bc4280bc3a3ee @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9571: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/index.html IGT_7427: 85557af77f06ffef7e909c6008788ac34a011b65 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/index.html [-- Attachment #2: Type: text/html, Size: 10685 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for Validate Xe field descriptions at build time (rev2) 2023-08-10 15:10 [igt-dev] [PATCH i-g-t v2 0/2] Validate Xe field descriptions at build time Mauro Carvalho Chehab ` (4 preceding siblings ...) 2023-08-11 7:20 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork @ 2023-08-12 8:46 ` Patchwork 5 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2023-08-12 8:46 UTC (permalink / raw) To: Mauro Carvalho Chehab; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 87963 bytes --] == Series Details == Series: Validate Xe field descriptions at build time (rev2) URL : https://patchwork.freedesktop.org/series/122285/ State : failure == Summary == CI Bug Log - changes from IGT_7427_full -> IGTPW_9571_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9571_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9571_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/index.html Participating hosts (9 -> 11) ------------------------------ Additional (2): shard-rkl0 shard-tglu0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9571_full: ### IGT changes ### #### Possible regressions #### * igt@gem_spin_batch@resubmit-new-all@vcs0: - shard-apl: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-apl6/igt@gem_spin_batch@resubmit-new-all@vcs0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-apl1/igt@gem_spin_batch@resubmit-new-all@vcs0.html * igt@gem_spin_batch@resubmit-new-all@vecs0: - shard-apl: [PASS][3] -> [DMESG-WARN][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-apl6/igt@gem_spin_batch@resubmit-new-all@vecs0.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-apl1/igt@gem_spin_batch@resubmit-new-all@vecs0.html New tests --------- New tests have been introduced between IGT_7427_full and IGTPW_9571_full: ### New IGT tests (2) ### * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a-dp-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-d-dp-2: - Statuses : 1 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9571_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@device_reset@cold-reset-bound: - shard-dg1: NOTRUN -> [SKIP][5] ([i915#7701]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-17/igt@device_reset@cold-reset-bound.html - shard-dg2: NOTRUN -> [SKIP][6] ([i915#7701]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-1/igt@device_reset@cold-reset-bound.html - shard-rkl: NOTRUN -> [SKIP][7] ([i915#7701]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-rkl-2/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@all-busy-idle-check-all: - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#8414]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-2/igt@drm_fdinfo@all-busy-idle-check-all.html * igt@drm_fdinfo@busy@ccs0: - shard-dg2: NOTRUN -> [SKIP][9] ([i915#8414]) +11 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-2/igt@drm_fdinfo@busy@ccs0.html * igt@drm_fdinfo@busy@vcs1: - shard-dg1: NOTRUN -> [SKIP][10] ([i915#8414]) +4 similar issues [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-16/igt@drm_fdinfo@busy@vcs1.html * igt@feature_discovery@chamelium: - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#4854]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-4/igt@feature_discovery@chamelium.html * igt@feature_discovery@display-3x: - shard-dg2: NOTRUN -> [SKIP][12] ([i915#1839]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-2/igt@feature_discovery@display-3x.html * igt@gem_ctx_param@set-priority-not-supported: - shard-dg2: NOTRUN -> [SKIP][13] ([fdo#109314]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-1/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg1: NOTRUN -> [SKIP][14] ([i915#8555]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-15/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_persistence@legacy-engines-queued: - shard-snb: NOTRUN -> [SKIP][15] ([fdo#109271] / [i915#1099]) +1 similar issue [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-snb7/igt@gem_ctx_persistence@legacy-engines-queued.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#280]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-12/igt@gem_ctx_sseu@invalid-sseu.html - shard-rkl: NOTRUN -> [SKIP][17] ([i915#280]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-rkl-7/igt@gem_ctx_sseu@invalid-sseu.html - shard-dg1: NOTRUN -> [SKIP][18] ([i915#280]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-15/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_ctx_sseu@mmap-args: - shard-tglu: NOTRUN -> [SKIP][19] ([i915#280]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-tglu-7/igt@gem_ctx_sseu@mmap-args.html * igt@gem_exec_balancer@bonded-dual: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#4771]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-12/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@sliced: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#4812]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-2/igt@gem_exec_balancer@sliced.html * igt@gem_exec_capture@pi@ccs0: - shard-mtlp: [PASS][22] -> [FAIL][23] ([i915#7765]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-mtlp-2/igt@gem_exec_capture@pi@ccs0.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-2/igt@gem_exec_capture@pi@ccs0.html * igt@gem_exec_capture@pi@vcs0: - shard-mtlp: [PASS][24] -> [FAIL][25] ([i915#4475]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-mtlp-2/igt@gem_exec_capture@pi@vcs0.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-2/igt@gem_exec_capture@pi@vcs0.html * igt@gem_exec_fair@basic-deadline: - shard-dg1: NOTRUN -> [SKIP][26] ([i915#3539] / [i915#4852]) +2 similar issues [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-17/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-flow: - shard-mtlp: NOTRUN -> [SKIP][27] ([i915#4473] / [i915#4771]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-3/igt@gem_exec_fair@basic-flow.html * igt@gem_exec_fair@basic-none-share: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#3539] / [i915#4852]) +3 similar issues [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-11/igt@gem_exec_fair@basic-none-share.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-tglu: NOTRUN -> [FAIL][29] ([i915#2842]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-tglu-7/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][30] ([i915#4812]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-14/igt@gem_exec_fence@submit.html * igt@gem_exec_params@rsvd2-dirt: - shard-dg2: NOTRUN -> [SKIP][31] ([fdo#109283] / [i915#5107]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-2/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-concurrent0: - shard-rkl: NOTRUN -> [SKIP][32] ([i915#3281]) +2 similar issues [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-rkl-7/igt@gem_exec_reloc@basic-concurrent0.html - shard-dg1: NOTRUN -> [SKIP][33] ([i915#3281]) +2 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-14/igt@gem_exec_reloc@basic-concurrent0.html * igt@gem_exec_reloc@basic-cpu-gtt-active: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#3281]) +10 similar issues [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-12/igt@gem_exec_reloc@basic-cpu-gtt-active.html * igt@gem_exec_reloc@basic-wc-read-active: - shard-mtlp: NOTRUN -> [SKIP][35] ([i915#3281]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-4/igt@gem_exec_reloc@basic-wc-read-active.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#4537] / [i915#4812]) +1 similar issue [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-11/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-tglu: [PASS][37] -> [ABORT][38] ([i915#7975] / [i915#8213]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-tglu-2/igt@gem_exec_suspend@basic-s4-devices@smem.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#4860]) +1 similar issue [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-12/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][40] ([i915#4565]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-16/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: NOTRUN -> [TIMEOUT][41] ([i915#5493]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-2/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#8289]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-1/igt@gem_media_fill@media-fill.html * igt@gem_mmap_gtt@close-race: - shard-dg1: NOTRUN -> [SKIP][43] ([i915#4077]) +1 similar issue [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-18/igt@gem_mmap_gtt@close-race.html * igt@gem_mmap_gtt@zero-extend: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4077]) +1 similar issue [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-6/igt@gem_mmap_gtt@zero-extend.html * igt@gem_mmap_wc@fault-concurrent: - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4083]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-1/igt@gem_mmap_wc@fault-concurrent.html * igt@gem_mmap_wc@write-cpu-read-wc: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#4083]) +1 similar issue [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-14/igt@gem_mmap_wc@write-cpu-read-wc.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4083]) +6 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-11/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_partial_pwrite_pread@reads: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#3282]) +7 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-2/igt@gem_partial_pwrite_pread@reads.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#3282]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-8/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_pxp@create-protected-buffer: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4270]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-5/igt@gem_pxp@create-protected-buffer.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#4270]) +5 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-1/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html - shard-rkl: NOTRUN -> [SKIP][52] ([i915#4270]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-rkl-4/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html - shard-dg1: NOTRUN -> [SKIP][53] ([i915#4270]) +1 similar issue [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-17/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@fail-invalid-protected-context: - shard-tglu: NOTRUN -> [SKIP][54] ([i915#4270]) +2 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-tglu-9/igt@gem_pxp@fail-invalid-protected-context.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-apl: NOTRUN -> [SKIP][55] ([fdo#109271]) +12 similar issues [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-apl6/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_readwrite@write-bad-handle: - shard-rkl: NOTRUN -> [SKIP][56] ([i915#3282]) +2 similar issues [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-rkl-4/igt@gem_readwrite@write-bad-handle.html - shard-dg1: NOTRUN -> [SKIP][57] ([i915#3282]) +3 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-17/igt@gem_readwrite@write-bad-handle.html * igt@gem_render_copy@yf-tiled-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#8428]) +1 similar issue [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-1/igt@gem_render_copy@yf-tiled-to-vebox-y-tiled.html * igt@gem_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4077]) +11 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-6/igt@gem_tiled_blits@basic.html * igt@gem_tiled_pread_pwrite: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#4079]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-11/igt@gem_tiled_pread_pwrite.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#3297]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-1/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@vma-merge: - shard-snb: NOTRUN -> [FAIL][62] ([i915#2724]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-snb1/igt@gem_userptr_blits@vma-merge.html * igt@gen3_mixed_blits: - shard-dg1: NOTRUN -> [SKIP][63] ([fdo#109289]) +2 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-14/igt@gen3_mixed_blits.html - shard-tglu: NOTRUN -> [SKIP][64] ([fdo#109289]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-tglu-6/igt@gen3_mixed_blits.html * igt@gen7_exec_parse@basic-offset: - shard-dg2: NOTRUN -> [SKIP][65] ([fdo#109289]) +5 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-1/igt@gen7_exec_parse@basic-offset.html - shard-rkl: NOTRUN -> [SKIP][66] ([fdo#109289]) +2 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-rkl-4/igt@gen7_exec_parse@basic-offset.html * igt@gen7_exec_parse@batch-without-end: - shard-mtlp: NOTRUN -> [SKIP][67] ([fdo#109289]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-1/igt@gen7_exec_parse@batch-without-end.html * igt@gen9_exec_parse@batch-invalid-length: - shard-tglu: NOTRUN -> [SKIP][68] ([i915#2527] / [i915#2856]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-tglu-4/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@bb-large: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#2856]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-2/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#2856]) +1 similar issue [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-12/igt@gen9_exec_parse@unaligned-access.html * igt@i915_hangman@engine-engine-error@vcs0: - shard-mtlp: [PASS][71] -> [FAIL][72] ([i915#7069]) +2 similar issues [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-mtlp-5/igt@i915_hangman@engine-engine-error@vcs0.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-1/igt@i915_hangman@engine-engine-error@vcs0.html * igt@i915_pipe_stress@stress-xrgb8888-untiled: - shard-mtlp: [PASS][73] -> [FAIL][74] ([i915#8691]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-mtlp-2/igt@i915_pipe_stress@stress-xrgb8888-untiled.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-7/igt@i915_pipe_stress@stress-xrgb8888-untiled.html * igt@i915_pm_rpm@basic-pci-d3-state: - shard-dg1: [PASS][75] -> [FAIL][76] ([i915#7691]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-dg1-19/igt@i915_pm_rpm@basic-pci-d3-state.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-13/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-rkl: [PASS][77] -> [SKIP][78] ([i915#1397]) +1 similar issue [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-rkl-4/igt@i915_pm_rpm@dpms-non-lpsp.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-rkl-7/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@drm-resources-equal: - shard-rkl: NOTRUN -> [FAIL][79] ([i915#7940]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-rkl-2/igt@i915_pm_rpm@drm-resources-equal.html * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg1: [PASS][80] -> [SKIP][81] ([i915#1397]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-dg1-19/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-15/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [PASS][82] -> [SKIP][83] ([i915#1397]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-dg2-6/igt@i915_pm_rpm@modeset-non-lpsp-stress.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-12/igt@i915_pm_rpm@modeset-non-lpsp-stress.html - shard-tglu: NOTRUN -> [SKIP][84] ([fdo#111644] / [i915#1397]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-tglu-8/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@i915_pm_rpm@pc8-residency: - shard-dg2: NOTRUN -> [SKIP][85] ([fdo#109506]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-1/igt@i915_pm_rpm@pc8-residency.html * igt@i915_pm_rpm@sysfs-read: - shard-dg1: [PASS][86] -> [FAIL][87] ([i915#7940]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-dg1-16/igt@i915_pm_rpm@sysfs-read.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-16/igt@i915_pm_rpm@sysfs-read.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#6621]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-6/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@thresholds-park@gt0: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#8925]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-2/igt@i915_pm_rps@thresholds-park@gt0.html * igt@i915_pm_rps@thresholds@gt0: - shard-dg1: NOTRUN -> [SKIP][90] ([i915#8925]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-15/igt@i915_pm_rps@thresholds@gt0.html * igt@i915_selftest@live@slpc: - shard-mtlp: [PASS][91] -> [DMESG-WARN][92] ([i915#6367]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-mtlp-2/igt@i915_selftest@live@slpc.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-8/igt@i915_selftest@live@slpc.html * igt@i915_selftest@live@workarounds: - shard-mtlp: [PASS][93] -> [DMESG-FAIL][94] ([i915#6763]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-mtlp-2/igt@i915_selftest@live@workarounds.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-8/igt@i915_selftest@live@workarounds.html * igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-dg1: NOTRUN -> [SKIP][95] ([i915#4212]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-15/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#4212]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-1/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs: - shard-rkl: NOTRUN -> [SKIP][97] ([i915#8502]) +3 similar issues [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-rkl-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc_ccs: - shard-dg1: NOTRUN -> [SKIP][98] ([i915#8502]) +7 similar issues [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-14/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc_ccs.html * igt@kms_async_flips@crc@pipe-b-dp-2: - shard-dg2: NOTRUN -> [FAIL][99] ([i915#8247]) +3 similar issues [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-12/igt@kms_async_flips@crc@pipe-b-dp-2.html * igt@kms_async_flips@crc@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][100] ([i915#8247]) +1 similar issue [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-rkl-7/igt@kms_async_flips@crc@pipe-b-hdmi-a-1.html * igt@kms_async_flips@crc@pipe-b-vga-1: - shard-snb: NOTRUN -> [FAIL][101] ([i915#8247]) +1 similar issue [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-snb6/igt@kms_async_flips@crc@pipe-b-vga-1.html * igt@kms_async_flips@crc@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][102] ([i915#8247]) +3 similar issues [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-15/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#6228]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-2/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#404]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-tglu: NOTRUN -> [SKIP][105] ([i915#404]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-tglu-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#1769] / [i915#3555]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][107] ([fdo#111614]) +6 similar issues [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-11/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-32bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][108] ([fdo#111614]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-tglu-3/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-mtlp: [PASS][109] -> [FAIL][110] ([i915#3743]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-mtlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-mtlp: NOTRUN -> [FAIL][111] ([i915#3743]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#5190]) +14 similar issues [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-6/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-mtlp: NOTRUN -> [SKIP][113] ([fdo#111615]) +1 similar issue [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#4538] / [i915#5190]) +5 similar issues [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-6/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][115] ([i915#4538]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-14/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb: - shard-mtlp: NOTRUN -> [SKIP][116] ([i915#6187]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-5/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-tglu: NOTRUN -> [SKIP][117] ([fdo#111615]) +1 similar issue [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-tglu-8/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][118] ([fdo#110723]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-rkl-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_joiner@2x-modeset: - shard-mtlp: NOTRUN -> [SKIP][119] ([i915#2705]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-7/igt@kms_big_joiner@2x-modeset.html * igt@kms_big_joiner@invalid-modeset: - shard-tglu: NOTRUN -> [SKIP][120] ([i915#2705]) +1 similar issue [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-tglu-2/igt@kms_big_joiner@invalid-modeset.html * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc: - shard-apl: NOTRUN -> [SKIP][121] ([fdo#109271] / [i915#3886]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-apl4/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-a-crc-primary-basic-yf_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][122] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) +3 similar issues [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-tglu-2/igt@kms_ccs@pipe-a-crc-primary-basic-yf_tiled_ccs.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs_cc: - shard-dg1: NOTRUN -> [SKIP][123] ([i915#5354] / [i915#6095]) +2 similar issues [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-19/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#3689] / [i915#3886] / [i915#5354]) +11 similar issues [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-12/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-random-ccs-data-4_tiled_dg2_rc_ccs_cc: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#5354] / [i915#6095]) +4 similar issues [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-rkl-1/igt@kms_ccs@pipe-a-random-ccs-data-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-b-ccs-on-another-bo-yf_tiled_ccs: - shard-dg1: NOTRUN -> [SKIP][126] ([i915#3689] / [i915#5354] / [i915#6095]) +4 similar issues [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-17/igt@kms_ccs@pipe-b-ccs-on-another-bo-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][127] ([i915#3734] / [i915#5354] / [i915#6095]) +1 similar issue [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-rkl-4/igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs.html * igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_rc_ccs_cc: - shard-tglu: NOTRUN -> [SKIP][128] ([i915#5354] / [i915#6095]) +6 similar issues [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-tglu-7/igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#3689] / [i915#5354]) +28 similar issues [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-12/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs.html * igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_dg2_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][130] ([i915#3689] / [i915#5354] / [i915#6095]) +2 similar issues [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-tglu-3/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][131] ([i915#5354]) +8 similar issues [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-rkl-2/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs_cc: - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#6095]) +5 similar issues [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-1/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs_cc.html * igt@kms_cdclk@mode-transition: - shard-rkl: NOTRUN -> [SKIP][133] ([i915#3742]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-rkl-1/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition@pipe-a-dp-2: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#4087] / [i915#7213]) +3 similar issues [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-12/igt@kms_cdclk@mode-transition@pipe-a-dp-2.html * igt@kms_chamelium_audio@dp-audio: - shard-mtlp: NOTRUN -> [SKIP][135] ([i915#7828]) +2 similar issues [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-6/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_color@ctm-negative: - shard-dg2: NOTRUN -> [SKIP][136] ([fdo#111827]) +3 similar issues [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-12/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_edid@dp-edid-read: - shard-tglu: NOTRUN -> [SKIP][137] ([i915#7828]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-tglu-7/igt@kms_chamelium_edid@dp-edid-read.html * igt@kms_chamelium_frames@hdmi-frame-dump: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#7828]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-rkl-2/igt@kms_chamelium_frames@hdmi-frame-dump.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#7828]) +6 similar issues [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-6/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_color@deep-color: - shard-rkl: NOTRUN -> [SKIP][140] ([i915#3555]) +1 similar issue [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-rkl-7/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic-dpms@pipe-a-dp-2: - shard-dg2: NOTRUN -> [TIMEOUT][141] ([i915#8628]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-12/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#3299]) +1 similar issue [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-12/igt@kms_content_protection@dp-mst-type-1.html - shard-tglu: NOTRUN -> [SKIP][143] ([i915#3116] / [i915#3299]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-tglu-8/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@mei_interface: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#7118] / [i915#7162]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-11/igt@kms_content_protection@mei_interface.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#7118]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-6/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent: - shard-tglu: NOTRUN -> [SKIP][146] ([i915#6944] / [i915#7116] / [i915#7118]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-tglu-4/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#3359]) +2 similar issues [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-12/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html - shard-rkl: NOTRUN -> [SKIP][148] ([i915#3359]) +1 similar issue [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-rkl-1/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html - shard-dg1: NOTRUN -> [SKIP][149] ([i915#3359]) +1 similar issue [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-19/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-tglu: NOTRUN -> [SKIP][150] ([i915#3359]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-tglu-10/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-tglu: NOTRUN -> [SKIP][151] ([i915#3555]) +3 similar issues [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-dg2: NOTRUN -> [SKIP][152] ([fdo#109274] / [i915#5354]) +4 similar issues [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-1/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][153] ([fdo#109274] / [fdo#111767] / [i915#5354]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-12/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-dg1: NOTRUN -> [SKIP][154] ([fdo#111825]) +11 similar issues [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-16/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-tglu: NOTRUN -> [SKIP][155] ([i915#4103]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-tglu-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-tglu: NOTRUN -> [SKIP][156] ([fdo#109274]) +1 similar issue [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-tglu-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#3546]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-5/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-snb: NOTRUN -> [SKIP][158] ([fdo#109271] / [fdo#111767]) +1 similar issue [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-snb2/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [PASS][159] -> [FAIL][160] ([i915#2346]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [SKIP][161] ([fdo#109271]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-glk3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dp_aux_dev: - shard-rkl: NOTRUN -> [SKIP][162] ([i915#1257]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-rkl-4/igt@kms_dp_aux_dev.html - shard-dg1: NOTRUN -> [SKIP][163] ([i915#1257]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-18/igt@kms_dp_aux_dev.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-tglu: NOTRUN -> [SKIP][164] ([i915#3555] / [i915#3840]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-tglu-6/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#3555] / [i915#3840]) +1 similar issue [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-6/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#3469]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-1/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-dg2: NOTRUN -> [SKIP][167] ([fdo#109274]) +6 similar issues [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-1/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-rkl: NOTRUN -> [SKIP][168] ([fdo#111767] / [fdo#111825]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-rkl-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html - shard-dg1: NOTRUN -> [SKIP][169] ([fdo#111767] / [fdo#111825]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-19/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-nonexisting-fb: - shard-snb: NOTRUN -> [SKIP][170] ([fdo#109271]) +172 similar issues [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-snb2/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][171] ([fdo#111825]) +3 similar issues [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-rkl-7/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-tglu: NOTRUN -> [SKIP][172] ([fdo#109274] / [i915#3637]) +1 similar issue [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-tglu-7/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#8381]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-11/igt@kms_flip@flip-vs-fences.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][174] ([i915#2672]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][175] ([i915#2587] / [i915#2672]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][176] ([i915#2672]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#8708]) +1 similar issue [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#5354]) +56 similar issues [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#8708]) +17 similar issues [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt: - shard-tglu: NOTRUN -> [SKIP][180] ([fdo#109280]) +10 similar issues [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-tglu-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render: - shard-dg2: NOTRUN -> [FAIL][181] ([i915#6880]) +1 similar issue [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt: - shard-tglu: NOTRUN -> [SKIP][182] ([fdo#110189]) +12 similar issues [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-tglu-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#3458]) +20 similar issues [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][184] ([i915#3023]) +3 similar issues [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff: - shard-rkl: NOTRUN -> [SKIP][185] ([fdo#111825] / [i915#1825]) +10 similar issues [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#5460]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][187] ([i915#8708]) +3 similar issues [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#1825]) +8 similar issues [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][189] ([i915#3458]) +1 similar issue [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#6118]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-2/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@invalid-hdr: - shard-tglu: NOTRUN -> [SKIP][191] ([i915#3555] / [i915#8228]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-tglu-4/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#8228]) +1 similar issue [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-2/igt@kms_hdr@invalid-metadata-sizes.html - shard-rkl: NOTRUN -> [SKIP][193] ([i915#3555] / [i915#8228]) +2 similar issues [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-rkl-1/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle-dpms: - shard-dg1: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#8228]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-15/igt@kms_hdr@static-toggle-dpms.html * igt@kms_hdr@static-toggle-suspend: - shard-mtlp: NOTRUN -> [SKIP][195] ([i915#8228]) +1 similar issue [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-6/igt@kms_hdr@static-toggle-suspend.html * igt@kms_plane@pixel-format@pipe-a-planes: - shard-rkl: [PASS][196] -> [ABORT][197] ([i915#8311] / [i915#8875]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-rkl-1/igt@kms_plane@pixel-format@pipe-a-planes.html [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-rkl-7/igt@kms_plane@pixel-format@pipe-a-planes.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes: - shard-snb: NOTRUN -> [DMESG-WARN][198] ([i915#8841]) +2 similar issues [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-snb2/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#8821]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-11/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][200] ([i915#8292]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-15/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#5176]) +3 similar issues [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-6/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][202] ([i915#5176]) +5 similar issues [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][203] ([i915#5176]) +7 similar issues [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-tglu-3/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][204] ([i915#5176]) +11 similar issues [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-14/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#5235]) +7 similar issues [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][206] ([i915#5235]) +7 similar issues [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-17/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#5235]) +19 similar issues [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][208] ([i915#5235]) +3 similar issues [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-rkl-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#6524] / [i915#6805]) +1 similar issue [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-6/igt@kms_prime@basic-crc-hybrid.html - shard-rkl: NOTRUN -> [SKIP][210] ([i915#6524]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-rkl-1/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#658]) +2 similar issues [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-6/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html * igt@kms_psr@cursor_blt: - shard-rkl: NOTRUN -> [SKIP][212] ([i915#1072]) +1 similar issue [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-rkl-4/igt@kms_psr@cursor_blt.html * igt@kms_psr@dpms: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#1072]) +5 similar issues [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-6/igt@kms_psr@dpms.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglu: NOTRUN -> [SKIP][214] ([i915#5461] / [i915#658]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-tglu-10/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#5461] / [i915#658]) +1 similar issue [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-12/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#4235] / [i915#5190]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-tglu: NOTRUN -> [SKIP][217] ([fdo#111615] / [i915#5289]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-tglu-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#4235]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-2/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_setmode@basic-clone-single-crtc: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#3555]) +5 similar issues [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-6/igt@kms_setmode@basic-clone-single-crtc.html - shard-dg1: NOTRUN -> [SKIP][220] ([i915#3555]) +2 similar issues [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-19/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@basic@pipe-a-vga-1: - shard-snb: NOTRUN -> [FAIL][221] ([i915#5465]) +1 similar issue [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-snb5/igt@kms_setmode@basic@pipe-a-vga-1.html * igt@kms_vblank@pipe-c-query-forked: - shard-rkl: NOTRUN -> [SKIP][222] ([i915#4070] / [i915#6768]) +1 similar issue [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-rkl-7/igt@kms_vblank@pipe-c-query-forked.html * igt@kms_vblank@pipe-d-ts-continuation-modeset: - shard-rkl: NOTRUN -> [SKIP][223] ([i915#4070] / [i915#533] / [i915#6768]) +1 similar issue [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-rkl-7/igt@kms_vblank@pipe-d-ts-continuation-modeset.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#2437]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-11/igt@kms_writeback@writeback-pixel-formats.html - shard-rkl: NOTRUN -> [SKIP][225] ([i915#2437]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-rkl-7/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][226] ([i915#2436]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-rkl-7/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [PASS][227] -> [FAIL][228] ([i915#7484]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-dg2-2/igt@perf@non-zero-reason@0-rcs0.html [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-11/igt@perf@non-zero-reason@0-rcs0.html * igt@perf_pmu@all-busy-idle-check-all: - shard-dg2: [PASS][229] -> [FAIL][230] ([i915#5234]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-dg2-1/igt@perf_pmu@all-busy-idle-check-all.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-1/igt@perf_pmu@all-busy-idle-check-all.html - shard-dg1: [PASS][231] -> [FAIL][232] ([i915#5234]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-dg1-13/igt@perf_pmu@all-busy-idle-check-all.html [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-18/igt@perf_pmu@all-busy-idle-check-all.html - shard-mtlp: [PASS][233] -> [FAIL][234] ([i915#5234]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-mtlp-6/igt@perf_pmu@all-busy-idle-check-all.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-1/igt@perf_pmu@all-busy-idle-check-all.html * igt@perf_pmu@busy-idle-check-all@ccs3: - shard-dg2: NOTRUN -> [FAIL][235] ([i915#4521]) +4 similar issues [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-12/igt@perf_pmu@busy-idle-check-all@ccs3.html * igt@perf_pmu@event-wait@rcs0: - shard-dg2: NOTRUN -> [SKIP][236] ([fdo#112283]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-11/igt@perf_pmu@event-wait@rcs0.html * igt@perf_pmu@module-unload: - shard-snb: [PASS][237] -> [ABORT][238] ([i915#4528]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-snb4/igt@perf_pmu@module-unload.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-snb2/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6@runtime-pm-long-gt1: - shard-mtlp: [PASS][239] -> [SKIP][240] ([i915#8537]) +2 similar issues [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-mtlp-3/igt@perf_pmu@rc6@runtime-pm-long-gt1.html [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-5/igt@perf_pmu@rc6@runtime-pm-long-gt1.html * igt@perf_pmu@semaphore-busy@vcs1: - shard-dg1: [PASS][241] -> [FAIL][242] ([i915#4349]) +2 similar issues [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-dg1-15/igt@perf_pmu@semaphore-busy@vcs1.html [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-14/igt@perf_pmu@semaphore-busy@vcs1.html - shard-mtlp: [PASS][243] -> [FAIL][244] ([i915#4349]) +3 similar issues [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-mtlp-1/igt@perf_pmu@semaphore-busy@vcs1.html [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-3/igt@perf_pmu@semaphore-busy@vcs1.html * igt@perf_pmu@semaphore-busy@vecs0: - shard-dg2: [PASS][245] -> [FAIL][246] ([i915#4349]) +7 similar issues [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-dg2-2/igt@perf_pmu@semaphore-busy@vecs0.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-6/igt@perf_pmu@semaphore-busy@vecs0.html * igt@prime_vgem@basic-blt: - shard-mtlp: NOTRUN -> [FAIL][247] ([i915#8445]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-1/igt@prime_vgem@basic-blt.html * igt@sysfs_timeslice_duration@timeout@vecs0: - shard-mtlp: [PASS][248] -> [TIMEOUT][249] ([i915#6950]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-mtlp-2/igt@sysfs_timeslice_duration@timeout@vecs0.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-8/igt@sysfs_timeslice_duration@timeout@vecs0.html * igt@v3d/v3d_perfmon@get-values-invalid-perfmon: - shard-mtlp: NOTRUN -> [SKIP][250] ([i915#2575]) +3 similar issues [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-3/igt@v3d/v3d_perfmon@get-values-invalid-perfmon.html * igt@v3d/v3d_submit_cl@bad-flag: - shard-tglu: NOTRUN -> [SKIP][251] ([fdo#109315] / [i915#2575]) +3 similar issues [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-tglu-2/igt@v3d/v3d_submit_cl@bad-flag.html * igt@v3d/v3d_submit_cl@simple-flush-cache: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#2575]) +14 similar issues [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-11/igt@v3d/v3d_submit_cl@simple-flush-cache.html * igt@v3d/v3d_submit_csd@valid-multisync-submission: - shard-rkl: NOTRUN -> [SKIP][253] ([fdo#109315]) +4 similar issues [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-rkl-4/igt@v3d/v3d_submit_csd@valid-multisync-submission.html * igt@v3d/v3d_wait_bo@bad-bo: - shard-dg1: NOTRUN -> [SKIP][254] ([i915#2575]) +3 similar issues [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-16/igt@v3d/v3d_wait_bo@bad-bo.html * igt@vc4/vc4_mmap@mmap-bo: - shard-dg2: NOTRUN -> [SKIP][255] ([i915#7711]) +5 similar issues [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-1/igt@vc4/vc4_mmap@mmap-bo.html * igt@vc4/vc4_tiling@set-bad-flags: - shard-rkl: NOTRUN -> [SKIP][256] ([i915#7711]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-rkl-4/igt@vc4/vc4_tiling@set-bad-flags.html * igt@vc4/vc4_wait_bo@unused-bo-0ns: - shard-mtlp: NOTRUN -> [SKIP][257] ([i915#7711]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-4/igt@vc4/vc4_wait_bo@unused-bo-0ns.html #### Possible fixes #### * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: [ABORT][258] ([i915#7461]) -> [PASS][259] [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-dg2-10/igt@gem_create@create-ext-cpu-access-big.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg2-6/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [FAIL][260] ([i915#6268]) -> [PASS][261] [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html - shard-tglu: [FAIL][262] ([i915#6268]) -> [PASS][263] [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-tglu-8/igt@gem_ctx_exec@basic-nohangcheck.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-tglu-2/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@engines-hang@vcs0: - shard-mtlp: [FAIL][264] ([i915#2410]) -> [PASS][265] [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-mtlp-3/igt@gem_ctx_persistence@engines-hang@vcs0.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-6/igt@gem_ctx_persistence@engines-hang@vcs0.html * igt@gem_eio@kms: - shard-dg1: [FAIL][266] ([i915#5784]) -> [PASS][267] [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-dg1-13/igt@gem_eio@kms.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-14/igt@gem_eio@kms.html * igt@gem_exec_capture@pi@rcs0: - shard-mtlp: [FAIL][268] ([i915#4475]) -> [PASS][269] [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-mtlp-2/igt@gem_exec_capture@pi@rcs0.html [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-2/igt@gem_exec_capture@pi@rcs0.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: [FAIL][270] ([i915#2842]) -> [PASS][271] +4 similar issues [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-rkl-1/igt@gem_exec_fair@basic-none@bcs0.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-rkl-4/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-apl: [FAIL][272] ([i915#2842]) -> [PASS][273] [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-apl6/igt@gem_exec_fair@basic-pace-share@rcs0.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-apl3/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg1: [ABORT][274] ([i915#7975] / [i915#8213]) -> [PASS][275] [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-dg1-14/igt@gem_exec_suspend@basic-s4-devices@lmem0.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-15/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_workarounds@suspend-resume-context: - shard-tglu: [ABORT][276] ([i915#5122] / [i915#5251]) -> [PASS][277] [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-tglu-6/igt@gem_workarounds@suspend-resume-context.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-tglu-8/igt@gem_workarounds@suspend-resume-context.html * igt@i915_pm_dc@dc6-dpms: - shard-tglu: [FAIL][278] ([i915#3989] / [i915#454]) -> [PASS][279] [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-tglu-4/igt@i915_pm_dc@dc6-dpms.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-tglu-10/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [SKIP][280] ([fdo#109271]) -> [PASS][281] [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-apl2/igt@i915_pm_dc@dc9-dpms.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-apl4/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-mtlp: [SKIP][282] ([i915#8403]) -> [PASS][283] [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-mtlp-7/igt@i915_pm_rc6_residency@rc6-accuracy.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-7/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-dg1: [FAIL][284] ([i915#3591]) -> [PASS][285] [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@i915_pm_rpm@dpms-lpsp: - shard-dg1: [SKIP][286] ([i915#1397]) -> [PASS][287] +2 similar issues [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-dg1-18/igt@i915_pm_rpm@dpms-lpsp.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-19/igt@i915_pm_rpm@dpms-lpsp.html * igt@i915_pm_rpm@modeset-lpsp: - shard-rkl: [SKIP][288] ([i915#1397]) -> [PASS][289] +1 similar issue [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-rkl-4/igt@i915_pm_rpm@modeset-lpsp.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-rkl-7/igt@i915_pm_rpm@modeset-lpsp.html * igt@i915_pm_rpm@system-suspend: - shard-apl: [ABORT][290] ([i915#180] / [i915#8213]) -> [PASS][291] [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-apl1/igt@i915_pm_rpm@system-suspend.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-apl4/igt@i915_pm_rpm@system-suspend.html * igt@i915_pm_rps@reset: - shard-tglu: [INCOMPLETE][292] ([i915#8320]) -> [PASS][293] [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-tglu-8/igt@i915_pm_rps@reset.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-tglu-7/igt@i915_pm_rps@reset.html * igt@i915_selftest@live@gt_mocs: - shard-mtlp: [DMESG-FAIL][294] ([i915#7059]) -> [PASS][295] [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-mtlp-2/igt@i915_selftest@live@gt_mocs.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-8/igt@i915_selftest@live@gt_mocs.html * igt@i915_suspend@basic-s2idle-without-i915: - shard-dg1: [DMESG-WARN][296] ([i915#4391] / [i915#4423]) -> [PASS][297] +1 similar issue [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-dg1-15/igt@i915_suspend@basic-s2idle-without-i915.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-13/igt@i915_suspend@basic-s2idle-without-i915.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-c-edp-1: - shard-mtlp: [FAIL][298] ([i915#2521]) -> [PASS][299] +1 similar issue [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-mtlp-7/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-edp-1.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-1/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-edp-1.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [FAIL][300] ([i915#5138]) -> [PASS][301] +1 similar issue [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-mtlp: [FAIL][302] ([i915#3743]) -> [PASS][303] [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-mtlp-3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc: - shard-dg1: [DMESG-WARN][304] ([i915#4423]) -> [PASS][305] [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-dg1-15/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-15/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_mtl_rc_ccs_cc: - shard-mtlp: [INCOMPLETE][306] ([i915#2295]) -> [PASS][307] [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-mtlp-2/igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_mtl_rc_ccs_cc.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-1/igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_mtl_rc_ccs_cc.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [FAIL][308] ([i915#2346]) -> [PASS][309] [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@single-move@all-pipes: - shard-mtlp: [DMESG-WARN][310] ([i915#2017]) -> [PASS][311] +1 similar issue [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-mtlp-4/igt@kms_cursor_legacy@single-move@all-pipes.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-2/igt@kms_cursor_legacy@single-move@all-pipes.html * igt@kms_hdmi_inject@inject-audio: - shard-tglu: [SKIP][312] ([i915#433]) -> [PASS][313] [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-tglu-2/igt@kms_hdmi_inject@inject-audio.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-tglu-7/igt@kms_hdmi_inject@inject-audio.html * igt@kms_plane@pixel-format-source-clamping@pipe-b-planes: - shard-mtlp: [FAIL][314] ([i915#1623]) -> [PASS][315] [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-mtlp-7/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-3/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html * igt@sysfs_heartbeat_interval@nopreempt@vcs0: - shard-mtlp: [FAIL][316] ([i915#6015]) -> [PASS][317] [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-mtlp-1/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-7/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html #### Warnings #### * igt@gem_exec_fair@basic-pace@rcs0: - shard-tglu: [FAIL][318] ([i915#2876]) -> [FAIL][319] ([i915#2842]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-tglu-8/igt@gem_exec_fair@basic-pace@rcs0.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-tglu-7/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_spin_batch@user-each: - shard-mtlp: [DMESG-FAIL][320] -> [DMESG-FAIL][321] ([i915#8962]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-mtlp-4/igt@gem_spin_batch@user-each.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-4/igt@gem_spin_batch@user-each.html * igt@kms_async_flips@crc@pipe-a-edp-1: - shard-mtlp: [DMESG-FAIL][322] ([i915#8561]) -> [DMESG-FAIL][323] ([i915#1982] / [i915#8561]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-mtlp-6/igt@kms_async_flips@crc@pipe-a-edp-1.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-6/igt@kms_async_flips@crc@pipe-a-edp-1.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-dg1: [SKIP][324] ([i915#4423] / [i915#4538]) -> [SKIP][325] ([i915#4538]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-dg1-15/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-19/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt@kms_content_protection@mei_interface: - shard-dg1: [SKIP][326] ([i915#7116]) -> [SKIP][327] ([fdo#109300]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-dg1-16/igt@kms_content_protection@mei_interface.html [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-13/igt@kms_content_protection@mei_interface.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-mtlp: [DMESG-FAIL][328] ([i915#2017] / [i915#5954]) -> [FAIL][329] ([i915#2346]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-mtlp-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: [SKIP][330] ([fdo#109285] / [i915#4098]) -> [SKIP][331] ([fdo#109285]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-rkl-1/igt@kms_force_connector_basic@force-load-detect.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-rkl-7/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-dg1: [SKIP][332] ([i915#4423] / [i915#8708]) -> [SKIP][333] ([i915#8708]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][334] ([i915#4070] / [i915#4816]) -> [SKIP][335] ([i915#4816]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_psr@cursor_plane_move: - shard-dg1: [SKIP][336] ([i915#1072]) -> [SKIP][337] ([i915#1072] / [i915#4078]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-dg1-19/igt@kms_psr@cursor_plane_move.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-13/igt@kms_psr@cursor_plane_move.html * igt@kms_psr@sprite_plane_onoff: - shard-dg1: [SKIP][338] ([i915#1072] / [i915#4078]) -> [SKIP][339] ([i915#1072]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-dg1-18/igt@kms_psr@sprite_plane_onoff.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-dg1-19/igt@kms_psr@sprite_plane_onoff.html * igt@sysfs_preempt_timeout@timeout@vecs0: - shard-mtlp: [TIMEOUT][340] -> [ABORT][341] ([i915#8521] / [i915#8865]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7427/shard-mtlp-2/igt@sysfs_preempt_timeout@timeout@vecs0.html [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/shard-mtlp-3/igt@sysfs_preempt_timeout@timeout@vecs0.html [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1623]: https://gitlab.freedesktop.org/drm/intel/issues/1623 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2295]: https://gitlab.freedesktop.org/drm/intel/issues/2295 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#2724]: https://gitlab.freedesktop.org/drm/intel/issues/2724 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2876]: https://gitlab.freedesktop.org/drm/intel/issues/2876 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4475]: https://gitlab.freedesktop.org/drm/intel/issues/4475 [i915#4521]: https://gitlab.freedesktop.org/drm/intel/issues/4521 [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107 [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5251]: https://gitlab.freedesktop.org/drm/intel/issues/5251 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5954]: https://gitlab.freedesktop.org/drm/intel/issues/5954 [i915#6015]: https://gitlab.freedesktop.org/drm/intel/issues/6015 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6118]: https://gitlab.freedesktop.org/drm/intel/issues/6118 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6763]: https://gitlab.freedesktop.org/drm/intel/issues/6763 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6950]: https://gitlab.freedesktop.org/drm/intel/issues/6950 [i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059 [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484 [i915#7691]: https://gitlab.freedesktop.org/drm/intel/issues/7691 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7765]: https://gitlab.freedesktop.org/drm/intel/issues/7765 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8311]: https://gitlab.freedesktop.org/drm/intel/issues/8311 [i915#8320]: https://gitlab.freedesktop.org/drm/intel/issues/8320 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8403]: https://gitlab.freedesktop.org/drm/intel/issues/8403 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8445]: https://gitlab.freedesktop.org/drm/intel/issues/8445 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8521]: https://gitlab.freedesktop.org/drm/intel/issues/8521 [i915#8537]: https://gitlab.freedesktop.org/drm/intel/issues/8537 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561 [i915#8628]: https://gitlab.freedesktop.org/drm/intel/issues/8628 [i915#8691]: https://gitlab.freedesktop.org/drm/intel/issues/8691 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8865]: https://gitlab.freedesktop.org/drm/intel/issues/8865 [i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#8962]: https://gitlab.freedesktop.org/drm/intel/issues/8962 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7427 -> IGTPW_9571 CI-20190529: 20190529 CI_DRM_13500: 4be6c76008410cf6ada52b25cb4bc4280bc3a3ee @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9571: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/index.html IGT_7427: 85557af77f06ffef7e909c6008788ac34a011b65 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9571/index.html [-- Attachment #2: Type: text/html, Size: 106922 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2023-08-12 8:46 UTC | newest] Thread overview: 11+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-08-10 15:10 [igt-dev] [PATCH i-g-t v2 0/2] Validate Xe field descriptions at build time Mauro Carvalho Chehab 2023-08-10 15:10 ` [igt-dev] [PATCH i-g-t v2 1/2] xe_test_config.json: mark some fields are mandatory at subtest level Mauro Carvalho Chehab 2023-08-10 19:06 ` Kamil Konieczny 2023-08-10 15:10 ` [igt-dev] [PATCH i-g-t v2 2/2] scripts/test_list.py: add a check for missing features Mauro Carvalho Chehab 2023-08-10 19:07 ` Kamil Konieczny 2023-08-10 16:42 ` [igt-dev] ✗ Fi.CI.BAT: failure for Validate Xe field descriptions at build time (rev2) Patchwork 2023-08-10 19:09 ` Kamil Konieczny 2023-08-11 9:24 ` Yedireswarapu, SaiX Nandan 2023-08-10 17:45 ` [igt-dev] ○ CI.xeBAT: info " Patchwork 2023-08-11 7:20 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork 2023-08-12 8:46 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox