* [igt-dev] [PATCH i-g-t 0/2] Small fixes/cleanups for test_list.py
@ 2023-11-24 8:16 Mauro Carvalho Chehab
2023-11-24 8:16 ` [igt-dev] [PATCH i-g-t 1/2] scripts/test_list.py: better expand subtests Mauro Carvalho Chehab
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: Mauro Carvalho Chehab @ 2023-11-24 8:16 UTC (permalink / raw)
To: igt-dev
From: Mauro Carvalho Chehab <mchehab@kernel.org>
This patch series contain:
- a cleanup optimizing subtests expansion regex;
- a fix of adding blank description for tests without description.
This is actually a left-over from the initial version of
test_list.py, where "Description" field was mandatory.
Mauro Carvalho Chehab (2):
scripts/test_list.py: better expand subtests
scripts/test_list.py: don't add a blank description
scripts/test_list.py | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
--
2.42.0
^ permalink raw reply [flat|nested] 8+ messages in thread* [igt-dev] [PATCH i-g-t 1/2] scripts/test_list.py: better expand subtests 2023-11-24 8:16 [igt-dev] [PATCH i-g-t 0/2] Small fixes/cleanups for test_list.py Mauro Carvalho Chehab @ 2023-11-24 8:16 ` Mauro Carvalho Chehab 2023-11-24 16:41 ` Kamil Konieczny 2023-11-24 8:16 ` [igt-dev] [PATCH i-g-t 2/2] scripts/test_list.py: don't add a blank description Mauro Carvalho Chehab ` (3 subsequent siblings) 4 siblings, 1 reply; 8+ messages in thread From: Mauro Carvalho Chehab @ 2023-11-24 8:16 UTC (permalink / raw) To: igt-dev From: Mauro Carvalho Chehab <mchehab@kernel.org> Use a better regex when splitting subtests, as used when reading testlists. Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> --- scripts/test_list.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/scripts/test_list.py b/scripts/test_list.py index 13f788783483..5ff2b18c2dd8 100644 --- a/scripts/test_list.py +++ b/scripts/test_list.py @@ -1010,6 +1010,9 @@ class TestList: order = None + if expand: + expand = re.compile(expand) + if sort_field: if sort_field.lower() not in self.field_list: sys.exit(f"Field '{sort_field}' is not defined") @@ -1039,8 +1042,7 @@ class TestList: if sort_field: if sort_field in subtest: if expand: - test_list = subtest[sort_field].split(expand) - test_list = [s.strip() for s in test_list] + test_list = expand.split(subtest[sort_field]) for test_elem in test_list: if test_elem not in subtests: @@ -1407,7 +1409,7 @@ class TestList: # NOTE: currently, it uses a comma for multi-value delimitter - test_subtests = self.get_subtests(sort_field, ",", with_order = True) + test_subtests = self.get_subtests(sort_field, ",\s*", with_order = True) if not os.path.exists(directory): os.makedirs(directory) -- 2.42.0 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/2] scripts/test_list.py: better expand subtests 2023-11-24 8:16 ` [igt-dev] [PATCH i-g-t 1/2] scripts/test_list.py: better expand subtests Mauro Carvalho Chehab @ 2023-11-24 16:41 ` Kamil Konieczny 0 siblings, 0 replies; 8+ messages in thread From: Kamil Konieczny @ 2023-11-24 16:41 UTC (permalink / raw) To: igt-dev Hi Mauro, On 2023-11-24 at 09:16:05 +0100, Mauro Carvalho Chehab wrote: > From: Mauro Carvalho Chehab <mchehab@kernel.org> > > Use a better regex when splitting subtests, as used when reading > testlists. > > Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > --- > scripts/test_list.py | 8 +++++--- > 1 file changed, 5 insertions(+), 3 deletions(-) > > diff --git a/scripts/test_list.py b/scripts/test_list.py > index 13f788783483..5ff2b18c2dd8 100644 > --- a/scripts/test_list.py > +++ b/scripts/test_list.py > @@ -1010,6 +1010,9 @@ class TestList: > > order = None > > + if expand: > + expand = re.compile(expand) > + > if sort_field: > if sort_field.lower() not in self.field_list: > sys.exit(f"Field '{sort_field}' is not defined") > @@ -1039,8 +1042,7 @@ class TestList: > if sort_field: > if sort_field in subtest: > if expand: > - test_list = subtest[sort_field].split(expand) > - test_list = [s.strip() for s in test_list] > + test_list = expand.split(subtest[sort_field]) > > for test_elem in test_list: > if test_elem not in subtests: > @@ -1407,7 +1409,7 @@ class TestList: > > > # NOTE: currently, it uses a comma for multi-value delimitter > - test_subtests = self.get_subtests(sort_field, ",", with_order = True) > + test_subtests = self.get_subtests(sort_field, ",\s*", with_order = True) > > if not os.path.exists(directory): > os.makedirs(directory) > -- > 2.42.0 > ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] [PATCH i-g-t 2/2] scripts/test_list.py: don't add a blank description 2023-11-24 8:16 [igt-dev] [PATCH i-g-t 0/2] Small fixes/cleanups for test_list.py Mauro Carvalho Chehab 2023-11-24 8:16 ` [igt-dev] [PATCH i-g-t 1/2] scripts/test_list.py: better expand subtests Mauro Carvalho Chehab @ 2023-11-24 8:16 ` Mauro Carvalho Chehab 2023-11-24 16:42 ` Kamil Konieczny 2023-11-24 9:54 ` [igt-dev] ✓ Fi.CI.BAT: success for Small fixes/cleanups for test_list.py Patchwork ` (2 subsequent siblings) 4 siblings, 1 reply; 8+ messages in thread From: Mauro Carvalho Chehab @ 2023-11-24 8:16 UTC (permalink / raw) To: igt-dev From: Mauro Carvalho Chehab <mchehab@kernel.org> At the first versions, it was assumed that a Description field would always exist. This is not true anymore. Stop artificially creating one with an empty value by default. Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> --- scripts/test_list.py | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/test_list.py b/scripts/test_list.py index 5ff2b18c2dd8..20377b708f83 100644 --- a/scripts/test_list.py +++ b/scripts/test_list.py @@ -1270,7 +1270,6 @@ class TestList: self.doc[current_test]["subtest"][current_subtest][field] = self.doc[current_test][field] self.doc[current_test]["subtest"][current_subtest]["_summary_"] = match.group(1) - self.doc[current_test]["subtest"][current_subtest]["Description"] = '' self.doc[current_test]["_subtest_line_"][current_subtest] = file_ln if not arg_ref: -- 2.42.0 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 2/2] scripts/test_list.py: don't add a blank description 2023-11-24 8:16 ` [igt-dev] [PATCH i-g-t 2/2] scripts/test_list.py: don't add a blank description Mauro Carvalho Chehab @ 2023-11-24 16:42 ` Kamil Konieczny 0 siblings, 0 replies; 8+ messages in thread From: Kamil Konieczny @ 2023-11-24 16:42 UTC (permalink / raw) To: igt-dev Hi Mauro, On 2023-11-24 at 09:16:06 +0100, Mauro Carvalho Chehab wrote: > From: Mauro Carvalho Chehab <mchehab@kernel.org> > > At the first versions, it was assumed that a Description field > would always exist. This is not true anymore. > > Stop artificially creating one with an empty value by default. > > Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > --- > scripts/test_list.py | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/scripts/test_list.py b/scripts/test_list.py > index 5ff2b18c2dd8..20377b708f83 100644 > --- a/scripts/test_list.py > +++ b/scripts/test_list.py > @@ -1270,7 +1270,6 @@ class TestList: > self.doc[current_test]["subtest"][current_subtest][field] = self.doc[current_test][field] > > self.doc[current_test]["subtest"][current_subtest]["_summary_"] = match.group(1) > - self.doc[current_test]["subtest"][current_subtest]["Description"] = '' > self.doc[current_test]["_subtest_line_"][current_subtest] = file_ln > > if not arg_ref: > -- > 2.42.0 > ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Small fixes/cleanups for test_list.py 2023-11-24 8:16 [igt-dev] [PATCH i-g-t 0/2] Small fixes/cleanups for test_list.py Mauro Carvalho Chehab 2023-11-24 8:16 ` [igt-dev] [PATCH i-g-t 1/2] scripts/test_list.py: better expand subtests Mauro Carvalho Chehab 2023-11-24 8:16 ` [igt-dev] [PATCH i-g-t 2/2] scripts/test_list.py: don't add a blank description Mauro Carvalho Chehab @ 2023-11-24 9:54 ` Patchwork 2023-11-24 10:22 ` [igt-dev] ✓ CI.xeBAT: " Patchwork 2023-11-25 13:39 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-11-24 9:54 UTC (permalink / raw) To: Mauro Carvalho Chehab; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5092 bytes --] == Series Details == Series: Small fixes/cleanups for test_list.py URL : https://patchwork.freedesktop.org/series/126858/ State : success == Summary == CI Bug Log - changes from CI_DRM_13920 -> IGTPW_10260 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/index.html Participating hosts (38 -> 38) ------------------------------ Additional (1): fi-bsw-n3050 Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_10260 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_lmem_swapping@random-engines: - fi-bsw-n3050: NOTRUN -> [SKIP][1] ([fdo#109271]) +14 other tests skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/fi-bsw-n3050/igt@gem_lmem_swapping@random-engines.html * igt@i915_selftest@live@gt_heartbeat: - fi-apl-guc: [PASS][2] -> [DMESG-FAIL][3] ([i915#5334]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@hangcheck: - bat-adls-5: [PASS][4] -> [DMESG-WARN][5] ([i915#5591]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/bat-adls-5/igt@i915_selftest@live@hangcheck.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/bat-adls-5/igt@i915_selftest@live@hangcheck.html * igt@i915_selftest@live@mman: - bat-rpls-1: [PASS][6] -> [TIMEOUT][7] ([i915#6794] / [i915#7392]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/bat-rpls-1/igt@i915_selftest@live@mman.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/bat-rpls-1/igt@i915_selftest@live@mman.html * igt@i915_suspend@basic-s2idle-without-i915: - bat-rpls-1: [PASS][8] -> [WARN][9] ([i915#8747]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/bat-rpls-1/igt@i915_suspend@basic-s2idle-without-i915.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/bat-rpls-1/igt@i915_suspend@basic-s2idle-without-i915.html * igt@i915_suspend@basic-s3-without-i915: - bat-rpls-1: [PASS][10] -> [ABORT][11] ([i915#7978] / [i915#9631]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/bat-rpls-1/igt@i915_suspend@basic-s3-without-i915.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/bat-rpls-1/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_hdmi_inject@inject-audio: - fi-bsw-n3050: NOTRUN -> [FAIL][12] ([IGT#152]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/fi-bsw-n3050/igt@kms_hdmi_inject@inject-audio.html #### Possible fixes #### * igt@i915_selftest@live@gem_contexts: - bat-mtlp-6: [DMESG-FAIL][13] ([i915#9579]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/bat-mtlp-6/igt@i915_selftest@live@gem_contexts.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/bat-mtlp-6/igt@i915_selftest@live@gem_contexts.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1: - bat-rplp-1: [ABORT][15] ([i915#8668]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#152]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/152 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591 [i915#6794]: https://gitlab.freedesktop.org/drm/intel/issues/6794 [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392 [i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8747]: https://gitlab.freedesktop.org/drm/intel/issues/8747 [i915#9579]: https://gitlab.freedesktop.org/drm/intel/issues/9579 [i915#9631]: https://gitlab.freedesktop.org/drm/intel/issues/9631 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7601 -> IGTPW_10260 CI-20190529: 20190529 CI_DRM_13920: 278e4673d0a5f5cd5d0b585df88cbcb6d3afd0d8 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10260: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/index.html IGT_7601: 9c6e7f255724e327627be7c8ed30e23742e97386 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- -igt@kms_vrr@flip-basic-fastset == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/index.html [-- Attachment #2: Type: text/html, Size: 5917 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for Small fixes/cleanups for test_list.py 2023-11-24 8:16 [igt-dev] [PATCH i-g-t 0/2] Small fixes/cleanups for test_list.py Mauro Carvalho Chehab ` (2 preceding siblings ...) 2023-11-24 9:54 ` [igt-dev] ✓ Fi.CI.BAT: success for Small fixes/cleanups for test_list.py Patchwork @ 2023-11-24 10:22 ` Patchwork 2023-11-25 13:39 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-11-24 10:22 UTC (permalink / raw) To: Mauro Carvalho Chehab; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4544 bytes --] == Series Details == Series: Small fixes/cleanups for test_list.py URL : https://patchwork.freedesktop.org/series/126858/ State : success == Summary == CI Bug Log - changes from XEIGT_7601_BAT -> XEIGTPW_10260_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_10260_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1: - bat-adlp-7: [PASS][1] -> [FAIL][2] ([Intel XE#480]) +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7601/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10260/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-d-dp-3: - bat-dg2-oem2: NOTRUN -> [FAIL][3] ([Intel XE#400] / [Intel XE#616]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10260/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-d-dp-3.html * igt@xe_exec_fault_mode@many-basic: - bat-dg2-oem2: NOTRUN -> [SKIP][4] ([Intel XE#288]) +17 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10260/bat-dg2-oem2/igt@xe_exec_fault_mode@many-basic.html #### Possible fixes #### * igt@kms_pipe_crc_basic@hang-read-crc: - bat-dg2-oem2: [INCOMPLETE][5] ([Intel XE#282] / [Intel XE#749]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7601/bat-dg2-oem2/igt@kms_pipe_crc_basic@hang-read-crc.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10260/bat-dg2-oem2/igt@kms_pipe_crc_basic@hang-read-crc.html * igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-dp-3: - bat-dg2-oem2: [INCOMPLETE][7] ([Intel XE#282] / [Intel XE#545]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7601/bat-dg2-oem2/igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-dp-3.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10260/bat-dg2-oem2/igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-dp-3.html #### Warnings #### * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12: - bat-dg2-oem2: [TIMEOUT][9] ([Intel XE#430] / [Intel XE#530]) -> [FAIL][10] ([Intel XE#400] / [Intel XE#616]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7601/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10260/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-b-dp-3: - bat-dg2-oem2: [TIMEOUT][11] ([Intel XE#530]) -> [FAIL][12] ([Intel XE#400] / [Intel XE#616]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7601/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-b-dp-3.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10260/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-b-dp-3.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/282 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/400 [Intel XE#430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/430 [Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480 [Intel XE#530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/530 [Intel XE#545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/545 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#749]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/749 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 Build changes ------------- * IGT: IGT_7601 -> IGTPW_10260 IGTPW_10260: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/index.html IGT_7601: 9c6e7f255724e327627be7c8ed30e23742e97386 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-518-1832821c7e4c5bd24353183f060f1435b2eb7992: 1832821c7e4c5bd24353183f060f1435b2eb7992 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10260/index.html [-- Attachment #2: Type: text/html, Size: 5608 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for Small fixes/cleanups for test_list.py 2023-11-24 8:16 [igt-dev] [PATCH i-g-t 0/2] Small fixes/cleanups for test_list.py Mauro Carvalho Chehab ` (3 preceding siblings ...) 2023-11-24 10:22 ` [igt-dev] ✓ CI.xeBAT: " Patchwork @ 2023-11-25 13:39 ` Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-11-25 13:39 UTC (permalink / raw) To: Mauro Carvalho Chehab; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 59152 bytes --] == Series Details == Series: Small fixes/cleanups for test_list.py URL : https://patchwork.freedesktop.org/series/126858/ State : success == Summary == CI Bug Log - changes from CI_DRM_13920_full -> IGTPW_10260_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/index.html Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10260_full: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0}: - shard-tglu: [FAIL][1] ([i915#3591]) -> [WARN][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html Known issues ------------ Here are the changes found in IGTPW_10260_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-mtlp: NOTRUN -> [SKIP][3] ([i915#8411]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-2/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@device_reset@cold-reset-bound: - shard-dg2: NOTRUN -> [SKIP][4] ([i915#7701]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-2/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@most-busy-idle-check-all@ccs0: - shard-mtlp: NOTRUN -> [SKIP][5] ([i915#8414]) +11 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-8/igt@drm_fdinfo@most-busy-idle-check-all@ccs0.html * igt@drm_fdinfo@virtual-busy: - shard-dg2: NOTRUN -> [SKIP][6] ([i915#8414]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-11/igt@drm_fdinfo@virtual-busy.html * igt@gem_busy@semaphore: - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#3936]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-8/igt@gem_busy@semaphore.html * igt@gem_close_race@multigpu-basic-process: - shard-snb: NOTRUN -> [SKIP][8] ([fdo#109271]) +67 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-snb7/igt@gem_close_race@multigpu-basic-process.html - shard-dg2: NOTRUN -> [SKIP][9] ([i915#7697]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-10/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: NOTRUN -> [INCOMPLETE][10] ([i915#9364]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-6/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][11] ([i915#8562]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-11/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#8555]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-2/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_persistence@heartbeat-many: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#8555]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_persistence@legacy-engines-cleanup: - shard-snb: NOTRUN -> [SKIP][14] ([fdo#109271] / [i915#1099]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-snb2/igt@gem_ctx_persistence@legacy-engines-cleanup.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][15] ([i915#280]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-11/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@in-flight-contexts-1us: - shard-mtlp: [PASS][16] -> [ABORT][17] ([i915#9414]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-mtlp-4/igt@gem_eio@in-flight-contexts-1us.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-4/igt@gem_eio@in-flight-contexts-1us.html * igt@gem_eio@unwedge-stress: - shard-dg1: [PASS][18] -> [FAIL][19] ([i915#5784]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg1-14/igt@gem_eio@unwedge-stress.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg1-16/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#4036]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-10/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_capture@capture-invisible@lmem0: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#6334]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-10/igt@gem_exec_capture@capture-invisible@lmem0.html * igt@gem_exec_fair@basic-deadline: - shard-glk: NOTRUN -> [FAIL][22] ([i915#2846]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-glk3/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-rrul: - shard-mtlp: NOTRUN -> [SKIP][23] ([i915#4473] / [i915#4771]) +2 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-8/igt@gem_exec_fair@basic-none-rrul.html * igt@gem_exec_fair@basic-pace: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#3539]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-7/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-tglu: [PASS][25] -> [FAIL][26] ([i915#2842]) +2 other tests fail [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-tglu-6/igt@gem_exec_fair@basic-pace-solo@rcs0.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-tglu-6/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fence@submit: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#4812]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-11/igt@gem_exec_fence@submit.html * igt@gem_exec_flush@basic-wb-prw-default: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#3539] / [i915#4852]) +2 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-2/igt@gem_exec_flush@basic-wb-prw-default.html * igt@gem_exec_params@secure-non-root: - shard-dg2: NOTRUN -> [SKIP][29] ([fdo#112283]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-2/igt@gem_exec_params@secure-non-root.html * igt@gem_exec_reloc@basic-gtt-read: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#3281]) +12 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-10/igt@gem_exec_reloc@basic-gtt-read.html * igt@gem_exec_reloc@basic-write-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#3281]) +5 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-5/igt@gem_exec_reloc@basic-write-cpu-noreloc.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#4537] / [i915#4812]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-5/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_schedule@semaphore-power: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#4537] / [i915#4812]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-11/igt@gem_exec_schedule@semaphore-power.html * igt@gem_fence_thrash@bo-copy: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#4860]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-10/igt@gem_fence_thrash@bo-copy.html * igt@gem_lmem_swapping@heavy-random: - shard-glk: NOTRUN -> [SKIP][35] ([fdo#109271] / [i915#4613]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-glk8/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#4613]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-2/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_mmap_gtt@basic-write-read: - shard-mtlp: NOTRUN -> [SKIP][37] ([i915#4077]) +9 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-6/igt@gem_mmap_gtt@basic-write-read.html * igt@gem_mmap_gtt@zero-extend: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#4077]) +5 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-11/igt@gem_mmap_gtt@zero-extend.html * igt@gem_mmap_wc@bad-offset: - shard-mtlp: NOTRUN -> [SKIP][39] ([i915#4083]) +5 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-6/igt@gem_mmap_wc@bad-offset.html * igt@gem_mmap_wc@write-read-distinct: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#4083]) +4 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-7/igt@gem_mmap_wc@write-read-distinct.html * igt@gem_pread@exhaustion: - shard-glk: NOTRUN -> [WARN][41] ([i915#2658]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-glk4/igt@gem_pread@exhaustion.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#3282]) +5 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-2/igt@gem_pread@snoop.html * igt@gem_pxp@create-regular-buffer: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4270]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-1/igt@gem_pxp@create-regular-buffer.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#4270]) +3 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-11/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_readwrite@beyond-eob: - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#3282]) +2 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-1/igt@gem_readwrite@beyond-eob.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#8428]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-2/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4079]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-2/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4079]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-11/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#4885]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-2/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_unfence_active_buffers: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#4879]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-5/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@dmabuf-sync: - shard-glk: NOTRUN -> [SKIP][51] ([fdo#109271] / [i915#3323]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-glk5/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-tglu: NOTRUN -> [SKIP][52] ([i915#3297]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-tglu-7/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#3297]) +2 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-6/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#3297] / [i915#4958]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-11/igt@gem_userptr_blits@sd-probe.html * igt@gem_userptr_blits@vma-merge: - shard-dg2: NOTRUN -> [FAIL][55] ([i915#3318]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-6/igt@gem_userptr_blits@vma-merge.html * igt@gen7_exec_parse@basic-allocation: - shard-mtlp: NOTRUN -> [SKIP][56] ([fdo#109289]) +3 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-1/igt@gen7_exec_parse@basic-allocation.html * igt@gen7_exec_parse@batch-without-end: - shard-dg2: NOTRUN -> [SKIP][57] ([fdo#109289]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-11/igt@gen7_exec_parse@batch-without-end.html * igt@gen9_exec_parse@batch-invalid-length: - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#2856]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-6/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@batch-zero-length: - shard-tglu: NOTRUN -> [SKIP][59] ([i915#2527] / [i915#2856]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-tglu-8/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#2856]) +3 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-2/igt@gen9_exec_parse@shadow-peek.html * igt@i915_fb_tiling: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#4881]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-5/igt@i915_fb_tiling.html * igt@i915_module_load@resize-bar: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#6412]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-5/igt@i915_module_load@resize-bar.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#6621]) +2 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-2/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@reset: - shard-snb: [PASS][64] -> [INCOMPLETE][65] ([i915#7790]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-snb4/igt@i915_pm_rps@reset.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-snb4/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds-idle@gt0: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#8925]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-5/igt@i915_pm_rps@thresholds-idle@gt0.html * igt@i915_query@query-topology-unsupported: - shard-mtlp: NOTRUN -> [SKIP][67] ([fdo#109302]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-6/igt@i915_query@query-topology-unsupported.html * igt@i915_selftest@mock@memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][68] ([i915#9311]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-7/igt@i915_selftest@mock@memory_region.html - shard-snb: NOTRUN -> [DMESG-WARN][69] ([i915#9311]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-snb5/igt@i915_selftest@mock@memory_region.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][70] ([i915#8247]) +3 other tests fail [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-7/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html * igt@kms_async_flips@crc@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][71] ([i915#8247]) +3 other tests fail [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg1-16/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html * igt@kms_async_flips@test-cursor@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4497]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-7/igt@kms_async_flips@test-cursor@pipe-b-edp-1.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#4098] / [i915#9531]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#1769] / [i915#3555]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [PASS][75] -> [FAIL][76] ([i915#5138]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][77] ([fdo#111614]) +5 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-2/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#5190]) +16 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-11/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-tglu: [PASS][79] -> [FAIL][80] ([i915#3743]) +1 other test fail [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-tglu-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-tglu-3/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][81] ([i915#4538] / [i915#5190]) +6 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-11/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-tglu: NOTRUN -> [SKIP][82] ([fdo#111615]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-tglu-9/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#6187]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-mtlp: NOTRUN -> [SKIP][84] ([fdo#111615]) +6 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_joiner@2x-modeset: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#2705]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-5/igt@kms_big_joiner@2x-modeset.html * igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#7213]) +3 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-2/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2.html * igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#4087]) +3 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-2/igt@kms_cdclk@plane-scaling@pipe-a-hdmi-a-2.html * igt@kms_cdclk@plane-scaling@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][88] ([i915#4087]) +3 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-4/igt@kms_cdclk@plane-scaling@pipe-c-edp-1.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-mtlp: NOTRUN -> [SKIP][89] ([i915#7828]) +5 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-8/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-mtlp: NOTRUN -> [SKIP][90] ([fdo#111827]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-8/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_color@ctm-max: - shard-dg2: NOTRUN -> [SKIP][91] ([fdo#111827]) +3 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-10/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_color@ctm-negative: - shard-glk: NOTRUN -> [SKIP][92] ([fdo#109271]) +102 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-glk4/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#7828]) +11 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-10/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_frames@dp-frame-dump: - shard-tglu: NOTRUN -> [SKIP][94] ([i915#7828]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-tglu-7/igt@kms_chamelium_frames@dp-frame-dump.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#3299]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-11/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@legacy@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][96] ([i915#7173]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-11/igt@kms_content_protection@legacy@pipe-a-dp-4.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#7118]) +2 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-5/igt@kms_content_protection@srm.html - shard-mtlp: NOTRUN -> [SKIP][98] ([i915#6944]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-7/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#3359]) +2 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-32x10: - shard-mtlp: NOTRUN -> [SKIP][100] ([i915#3555] / [i915#8814]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-8/igt@kms_cursor_crc@cursor-onscreen-32x10.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#3555]) +6 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-2/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#3359]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-8/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][103] ([fdo#109274] / [fdo#111767] / [i915#5354]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][104] ([i915#3546]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-1/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#4103] / [i915#4213] / [i915#5608]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#4103] / [i915#4213]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions: - shard-tglu: NOTRUN -> [SKIP][107] ([fdo#109274]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-tglu-7/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-dg2: NOTRUN -> [SKIP][108] ([fdo#109274] / [i915#5354]) +4 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#8588]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-5/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dsc@dsc-basic: - shard-mtlp: NOTRUN -> [SKIP][110] ([i915#3555] / [i915#3840] / [i915#4098] / [i915#9159]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-6/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-output-formats: - shard-mtlp: NOTRUN -> [SKIP][111] ([i915#3555] / [i915#3840]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-1/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#3469]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-11/igt@kms_fbcon_fbt@psr.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-dg2: NOTRUN -> [SKIP][113] ([fdo#109274] / [fdo#111767]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html - shard-snb: NOTRUN -> [SKIP][114] ([fdo#109271] / [fdo#111767]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-snb4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#8381]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-11/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-nonexisting-fb-interruptible: - shard-dg2: NOTRUN -> [SKIP][116] ([fdo#109274]) +5 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-11/igt@kms_flip@2x-nonexisting-fb-interruptible.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-mtlp: NOTRUN -> [SKIP][117] ([i915#3637]) +3 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-5/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-tglu: NOTRUN -> [SKIP][118] ([fdo#109274] / [i915#3637]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-tglu-9/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][119] ([i915#2672]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#2672]) +5 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][121] ([i915#8810]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][122] ([i915#3555] / [i915#8810]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#2672] / [i915#3555]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][124] ([i915#8708]) +3 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#8708]) +14 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][126] ([fdo#109280]) +2 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#5354]) +29 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][128] ([fdo#110189]) +2 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-tglu-3/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][129] ([i915#5460]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][130] ([i915#1825]) +18 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#3458]) +16 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html * igt@kms_hdmi_inject@inject-audio: - shard-tglu: [PASS][132] -> [SKIP][133] ([i915#433]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-tglu-9/igt@kms_hdmi_inject@inject-audio.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-tglu-9/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@static-swap: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#3555] / [i915#8228]) +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-2/igt@kms_hdr@static-swap.html * igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][135] ([i915#9457]) +2 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-2/igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][136] ([i915#7862]) +1 other test fail [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-glk2/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1.html * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][137] ([i915#3582]) +3 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-2/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#3555] / [i915#8821]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-10/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@tiling-y: - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#3555] / [i915#8806]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-1/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][140] ([i915#8292]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg1-12/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][141] ([i915#3555] / [i915#5235]) +1 other test skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#5235]) +19 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-10/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][143] ([i915#5235]) +3 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg1-12/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][144] ([i915#5235]) +5 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a-edp-1.html * igt@kms_psr2_sf@plane-move-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#9683]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-2/igt@kms_psr2_sf@plane-move-sf-dmg-area.html * igt@kms_psr@psr2_primary_blt: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#9681]) +2 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-11/igt@kms_psr@psr2_primary_blt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#9685]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-11/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#4235]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#4235] / [i915#5190]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#8623]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-2/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tv_load_detect@load-detect: - shard-dg2: NOTRUN -> [SKIP][151] ([fdo#109309]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-11/igt@kms_tv_load_detect@load-detect.html * igt@kms_writeback@writeback-fb-id: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#2437]) +2 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-6/igt@kms_writeback@writeback-fb-id.html * igt@perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#2434]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-10/igt@perf@mi-rpc.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: NOTRUN -> [FAIL][154] ([i915#4349]) +3 other tests fail [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-2/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@busy-start@vecs0: - shard-glk: [PASS][155] -> [DMESG-WARN][156] ([i915#118]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-glk9/igt@perf_pmu@busy-start@vecs0.html [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-glk7/igt@perf_pmu@busy-start@vecs0.html * igt@perf_pmu@cpu-hotplug: - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#8850]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-1/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@event-wait@rcs0: - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#3555] / [i915#8807]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-5/igt@perf_pmu@event-wait@rcs0.html * igt@prime_udl: - shard-mtlp: NOTRUN -> [SKIP][159] ([fdo#109291]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-8/igt@prime_udl.html * igt@prime_vgem@basic-fence-mmap: - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#3708] / [i915#4077]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-6/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-read: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#3291] / [i915#3708]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-7/igt@prime_vgem@basic-read.html * igt@v3d/v3d_job_submission@array-job-submission: - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#2575]) +5 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-1/igt@v3d/v3d_job_submission@array-job-submission.html * igt@v3d/v3d_submit_cl@multi-and-single-sync: - shard-tglu: NOTRUN -> [SKIP][163] ([fdo#109315] / [i915#2575]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-tglu-3/igt@v3d/v3d_submit_cl@multi-and-single-sync.html * igt@v3d/v3d_submit_csd@single-out-sync: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#2575]) +13 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-6/igt@v3d/v3d_submit_csd@single-out-sync.html * igt@vc4/vc4_tiling@get-after-free: - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#7711]) +3 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-1/igt@vc4/vc4_tiling@get-after-free.html * igt@vc4/vc4_wait_seqno@bad-seqno-1ns: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#7711]) +8 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-5/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html #### Possible fixes #### * igt@gem_eio@reset-stress: - shard-dg1: [FAIL][167] ([i915#5784]) -> [PASS][168] +1 other test pass [167]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg1-16/igt@gem_eio@reset-stress.html [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg1-15/igt@gem_eio@reset-stress.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-glk: [FAIL][169] ([i915#2842]) -> [PASS][170] [169]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-glk3/igt@gem_exec_fair@basic-pace-solo@rcs0.html [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-glk3/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_suspend@basic-s0@smem: - shard-dg2: [INCOMPLETE][171] ([i915#9275]) -> [PASS][172] [171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-2/igt@gem_exec_suspend@basic-s0@smem.html [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-7/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [DMESG-WARN][173] ([i915#4936] / [i915#5493]) -> [PASS][174] [173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [INCOMPLETE][175] ([i915#5566]) -> [PASS][176] [175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-glk6/igt@gen9_exec_parse@allowed-single.html [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-glk8/igt@gen9_exec_parse@allowed-single.html * igt@i915_power@sanity: - shard-mtlp: [SKIP][177] ([i915#7984]) -> [PASS][178] [177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-mtlp-4/igt@i915_power@sanity.html [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-2/igt@i915_power@sanity.html * igt@kms_atomic@crtc-invalid-params-fence@pipe-a-edp-1: - shard-mtlp: [DMESG-WARN][179] ([i915#2017]) -> [PASS][180] [179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-mtlp-6/igt@kms_atomic@crtc-invalid-params-fence@pipe-a-edp-1.html [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-5/igt@kms_atomic@crtc-invalid-params-fence@pipe-a-edp-1.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [FAIL][181] ([i915#5138]) -> [PASS][182] [181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [FAIL][183] ([i915#3743]) -> [PASS][184] +1 other test pass [183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-tglu-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-tglu-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [FAIL][185] ([i915#2346]) -> [PASS][186] [185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * {igt@kms_pm_dc@dc9-dpms}: - shard-tglu: [SKIP][187] ([i915#4281]) -> [PASS][188] [187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-tglu-10/igt@kms_pm_dc@dc9-dpms.html [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-tglu-10/igt@kms_pm_dc@dc9-dpms.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1: - shard-snb: [FAIL][189] ([i915#9196]) -> [PASS][190] [189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-snb5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1.html [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-snb4/igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1.html * igt@perf@enable-disable@0-rcs0: - shard-dg2: [FAIL][191] ([i915#8724]) -> [PASS][192] [191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-11/igt@perf@enable-disable@0-rcs0.html [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-7/igt@perf@enable-disable@0-rcs0.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [FAIL][193] ([i915#7484]) -> [PASS][194] [193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-5/igt@perf@non-zero-reason@0-rcs0.html [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-7/igt@perf@non-zero-reason@0-rcs0.html * igt@perf_pmu@busy-double-start@ccs0: - shard-mtlp: [FAIL][195] ([i915#4349]) -> [PASS][196] [195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-mtlp-8/igt@perf_pmu@busy-double-start@ccs0.html [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-8/igt@perf_pmu@busy-double-start@ccs0.html * igt@sysfs_timeslice_duration@timeout@vcs0: - shard-dg2: [ABORT][197] -> [PASS][198] [197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg2-11/igt@sysfs_timeslice_duration@timeout@vcs0.html [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg2-10/igt@sysfs_timeslice_duration@timeout@vcs0.html #### Warnings #### * igt@kms_async_flips@crc@pipe-d-edp-1: - shard-mtlp: [FAIL][199] ([i915#8247]) -> [DMESG-FAIL][200] ([i915#8561]) +2 other tests dmesg-fail [199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-mtlp-7/igt@kms_async_flips@crc@pipe-d-edp-1.html [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-mtlp-2/igt@kms_async_flips@crc@pipe-d-edp-1.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg1: [SKIP][201] ([i915#4103] / [i915#4213]) -> [SKIP][202] ([i915#4103] / [i915#4213] / [i915#4423]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg1-18/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg1-17/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_dsc@dsc-with-formats: - shard-dg1: [SKIP][203] ([i915#3555] / [i915#3840]) -> [SKIP][204] ([i915#3555] / [i915#3840] / [i915#4423]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13920/shard-dg1-14/igt@kms_dsc@dsc-with-formats.html [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/shard-dg1-17/igt@kms_dsc@dsc-with-formats.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [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#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [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#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2065]: https://gitlab.freedesktop.org/drm/intel/issues/2065 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [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#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [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#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4497]: https://gitlab.freedesktop.org/drm/intel/issues/4497 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [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#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5978]: https://gitlab.freedesktop.org/drm/intel/issues/5978 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7862]: https://gitlab.freedesktop.org/drm/intel/issues/7862 [i915#7984]: https://gitlab.freedesktop.org/drm/intel/issues/7984 [i915#8063]: https://gitlab.freedesktop.org/drm/intel/issues/8063 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/intel/issues/8430 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561 [i915#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562 [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8724]: https://gitlab.freedesktop.org/drm/intel/issues/8724 [i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806 [i915#8807]: https://gitlab.freedesktop.org/drm/intel/issues/8807 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821 [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9159]: https://gitlab.freedesktop.org/drm/intel/issues/9159 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275 [i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295 [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311 [i915#9364]: https://gitlab.freedesktop.org/drm/intel/issues/9364 [i915#9414]: https://gitlab.freedesktop.org/drm/intel/issues/9414 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424 [i915#9433]: https://gitlab.freedesktop.org/drm/intel/issues/9433 [i915#9457]: https://gitlab.freedesktop.org/drm/intel/issues/9457 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9531]: https://gitlab.freedesktop.org/drm/intel/issues/9531 [i915#9653]: https://gitlab.freedesktop.org/drm/intel/issues/9653 [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673 [i915#9681]: https://gitlab.freedesktop.org/drm/intel/issues/9681 [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7601 -> IGTPW_10260 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13920: 278e4673d0a5f5cd5d0b585df88cbcb6d3afd0d8 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10260: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/index.html IGT_7601: 9c6e7f255724e327627be7c8ed30e23742e97386 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10260/index.html [-- Attachment #2: Type: text/html, Size: 68480 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2023-11-25 13:39 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-11-24 8:16 [igt-dev] [PATCH i-g-t 0/2] Small fixes/cleanups for test_list.py Mauro Carvalho Chehab 2023-11-24 8:16 ` [igt-dev] [PATCH i-g-t 1/2] scripts/test_list.py: better expand subtests Mauro Carvalho Chehab 2023-11-24 16:41 ` Kamil Konieczny 2023-11-24 8:16 ` [igt-dev] [PATCH i-g-t 2/2] scripts/test_list.py: don't add a blank description Mauro Carvalho Chehab 2023-11-24 16:42 ` Kamil Konieczny 2023-11-24 9:54 ` [igt-dev] ✓ Fi.CI.BAT: success for Small fixes/cleanups for test_list.py Patchwork 2023-11-24 10:22 ` [igt-dev] ✓ CI.xeBAT: " Patchwork 2023-11-25 13:39 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox