* [PATCH i-g-t] tests/xe_exec_threads: Fill in GT field for second balancer thread
@ 2024-03-20 19:23 Matt Roper
2024-03-20 20:47 ` Lucas De Marchi
` (4 more replies)
0 siblings, 5 replies; 11+ messages in thread
From: Matt Roper @ 2024-03-20 19:23 UTC (permalink / raw)
To: igt-dev; +Cc: matthew.d.roper
The balancer subtests spawn two pthreads per engine class if there are
multiple instances of the class. The GT field of the data structure is
filled in properly for the first thread, but not for the second,
effectively leaving it set to "0."
For platforms with standalone media, this will result in failures when
the thread tries to find the instances of a media class on GT0 and trips
the "igt_assert(num_placements > 1)" assertion in test_balancer().
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
---
tests/intel/xe_exec_threads.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/tests/intel/xe_exec_threads.c b/tests/intel/xe_exec_threads.c
index 55907e2b3..977e8c600 100644
--- a/tests/intel/xe_exec_threads.c
+++ b/tests/intel/xe_exec_threads.c
@@ -1081,6 +1081,7 @@ static void threads(int fd, int flags)
threads_data[i].fd = 0;
else
threads_data[i].fd = fd;
+ threads_data[i].gt = gt;
threads_data[i].vm_legacy_mode =
vm_legacy_mode;
threads_data[i].class = class;
--
2.43.0
^ permalink raw reply related [flat|nested] 11+ messages in thread* Re: [PATCH i-g-t] tests/xe_exec_threads: Fill in GT field for second balancer thread 2024-03-20 19:23 [PATCH i-g-t] tests/xe_exec_threads: Fill in GT field for second balancer thread Matt Roper @ 2024-03-20 20:47 ` Lucas De Marchi 2024-03-21 1:04 ` Matthew Brost 2024-03-20 21:02 ` ✓ Fi.CI.BAT: success for " Patchwork ` (3 subsequent siblings) 4 siblings, 1 reply; 11+ messages in thread From: Lucas De Marchi @ 2024-03-20 20:47 UTC (permalink / raw) To: Matt Roper; +Cc: igt-dev, Matthew Brost On Wed, Mar 20, 2024 at 12:23:56PM -0700, Matt Roper wrote: >The balancer subtests spawn two pthreads per engine class if there are >multiple instances of the class. The GT field of the data structure is >filled in properly for the first thread, but not for the second, >effectively leaving it set to "0." > >For platforms with standalone media, this will result in failures when >the thread tries to find the instances of a media class on GT0 and trips >the "igt_assert(num_placements > 1)" assertion in test_balancer(). > >Signed-off-by: Matt Roper <matthew.d.roper@intel.com> Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com> do you know why we unrolled a loop in there and did a wrong copy and paste? That together with vertical spacing on flow control seems to be a good source of bugs. Good find. The only difference between the first and second thread data I'm seeing is flags VIRTUAL vs PARALLEL. Matt Brost, is this test from you? Could you add an overview to its documentation? The boilerplate doc added there after the fact looks less than helpful. Lucas De Marchi >--- > tests/intel/xe_exec_threads.c | 1 + > 1 file changed, 1 insertion(+) > >diff --git a/tests/intel/xe_exec_threads.c b/tests/intel/xe_exec_threads.c >index 55907e2b3..977e8c600 100644 >--- a/tests/intel/xe_exec_threads.c >+++ b/tests/intel/xe_exec_threads.c >@@ -1081,6 +1081,7 @@ static void threads(int fd, int flags) > threads_data[i].fd = 0; > else > threads_data[i].fd = fd; >+ threads_data[i].gt = gt; > threads_data[i].vm_legacy_mode = > vm_legacy_mode; > threads_data[i].class = class; >-- >2.43.0 > ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t] tests/xe_exec_threads: Fill in GT field for second balancer thread 2024-03-20 20:47 ` Lucas De Marchi @ 2024-03-21 1:04 ` Matthew Brost 2024-03-21 6:01 ` Lucas De Marchi 0 siblings, 1 reply; 11+ messages in thread From: Matthew Brost @ 2024-03-21 1:04 UTC (permalink / raw) To: Lucas De Marchi; +Cc: Matt Roper, igt-dev On Wed, Mar 20, 2024 at 03:47:57PM -0500, Lucas De Marchi wrote: > On Wed, Mar 20, 2024 at 12:23:56PM -0700, Matt Roper wrote: > > The balancer subtests spawn two pthreads per engine class if there are > > multiple instances of the class. The GT field of the data structure is > > filled in properly for the first thread, but not for the second, > > effectively leaving it set to "0." > > > > For platforms with standalone media, this will result in failures when > > the thread tries to find the instances of a media class on GT0 and trips > > the "igt_assert(num_placements > 1)" assertion in test_balancer(). > > > > Signed-off-by: Matt Roper <matthew.d.roper@intel.com> > > > Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com> > > do you know why we unrolled a loop in there and did a wrong copy and I think the for_gt loop was added after the original version of this. Likely an ommision when that was added. > paste? That together with vertical spacing on flow control seems to be a > good source of bugs. Good find. > > The only difference between the first and second thread data I'm seeing > is flags VIRTUAL vs PARALLEL. Matt Brost, is this test from you? Could Yes, I wrote this one. Not my finest work in terms of copy / pasting, indeed the only difference should be VIRTUAL vs. PARALLEL. I think this should be consolidated into a loop. > you add an overview to its documentation? The boilerplate doc added > there after the fact looks less than helpful. > What kinda of documentation were you thinking of? Most all the IGTs are light on doc but updating the doc for ones I wrote is on my todo list... Matt > Lucas De Marchi > > > --- > > tests/intel/xe_exec_threads.c | 1 + > > 1 file changed, 1 insertion(+) > > > > diff --git a/tests/intel/xe_exec_threads.c b/tests/intel/xe_exec_threads.c > > index 55907e2b3..977e8c600 100644 > > --- a/tests/intel/xe_exec_threads.c > > +++ b/tests/intel/xe_exec_threads.c > > @@ -1081,6 +1081,7 @@ static void threads(int fd, int flags) > > threads_data[i].fd = 0; > > else > > threads_data[i].fd = fd; > > + threads_data[i].gt = gt; > > threads_data[i].vm_legacy_mode = > > vm_legacy_mode; > > threads_data[i].class = class; > > -- > > 2.43.0 > > ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t] tests/xe_exec_threads: Fill in GT field for second balancer thread 2024-03-21 1:04 ` Matthew Brost @ 2024-03-21 6:01 ` Lucas De Marchi 2024-03-21 18:43 ` Matthew Brost 0 siblings, 1 reply; 11+ messages in thread From: Lucas De Marchi @ 2024-03-21 6:01 UTC (permalink / raw) To: Matthew Brost; +Cc: Matt Roper, igt-dev On Thu, Mar 21, 2024 at 01:04:37AM +0000, Matthew Brost wrote: >On Wed, Mar 20, 2024 at 03:47:57PM -0500, Lucas De Marchi wrote: >> On Wed, Mar 20, 2024 at 12:23:56PM -0700, Matt Roper wrote: >> > The balancer subtests spawn two pthreads per engine class if there are >> > multiple instances of the class. The GT field of the data structure is >> > filled in properly for the first thread, but not for the second, >> > effectively leaving it set to "0." >> > >> > For platforms with standalone media, this will result in failures when >> > the thread tries to find the instances of a media class on GT0 and trips >> > the "igt_assert(num_placements > 1)" assertion in test_balancer(). >> > >> > Signed-off-by: Matt Roper <matthew.d.roper@intel.com> >> >> >> Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com> >> >> do you know why we unrolled a loop in there and did a wrong copy and > >I think the for_gt loop was added after the original version of this. >Likely an ommision when that was added. > >> paste? That together with vertical spacing on flow control seems to be a >> good source of bugs. Good find. >> >> The only difference between the first and second thread data I'm seeing >> is flags VIRTUAL vs PARALLEL. Matt Brost, is this test from you? Could > >Yes, I wrote this one. Not my finest work in terms of copy / pasting, >indeed the only difference should be VIRTUAL vs. PARALLEL. I think this >should be consolidated into a loop. sounds good. Something like this on top of this patch? (completely untested, it builds) diff --git a/tests/intel/xe_exec_threads.c b/tests/intel/xe_exec_threads.c index 977e8c600..b95870714 100644 --- a/tests/intel/xe_exec_threads.c +++ b/tests/intel/xe_exec_threads.c @@ -1030,6 +1030,7 @@ static void threads(int fd, int flags) xe_for_each_gt(fd, gt) xe_for_each_engine_class(class) { int num_placements = 0; + int *data_flags = (int[]){ VIRTUAL, PARALLEL, -1 }; xe_for_each_engine(fd, hwe) { if (hwe->engine_class != class || @@ -1038,36 +1039,10 @@ static void threads(int fd, int flags) ++num_placements; } - if (num_placements > 1) { - threads_data[i].mutex = &mutex; - threads_data[i].cond = &cond; - if (flags & SHARED_VM) - threads_data[i].addr = addr | - (i << ADDRESS_SHIFT); - else - threads_data[i].addr = addr; - threads_data[i].userptr = userptr | - (i << ADDRESS_SHIFT); - if (flags & FD) - threads_data[i].fd = 0; - else - threads_data[i].fd = fd; - threads_data[i].gt = gt; - threads_data[i].vm_legacy_mode = - vm_legacy_mode; - threads_data[i].class = class; - threads_data[i].n_exec_queue = N_EXEC_QUEUE; - threads_data[i].n_exec = N_EXEC; - threads_data[i].flags = flags; - threads_data[i].flags &= ~BALANCER; - threads_data[i].flags |= VIRTUAL; - threads_data[i].go = &go; - - ++n_threads; - pthread_create(&threads_data[i].thread, 0, - thread, &threads_data[i]); - ++i; + if (num_placements <= 1) + continue; + while (*data_flags >= 0) { threads_data[i].mutex = &mutex; threads_data[i].cond = &cond; if (flags & SHARED_VM) @@ -1089,13 +1064,14 @@ static void threads(int fd, int flags) threads_data[i].n_exec = N_EXEC; threads_data[i].flags = flags; threads_data[i].flags &= ~BALANCER; - threads_data[i].flags |= PARALLEL; + threads_data[i].flags |= *data_flags; threads_data[i].go = &go; ++n_threads; pthread_create(&threads_data[i].thread, 0, thread, &threads_data[i]); ++i; + data_flags++; } } } > >> you add an overview to its documentation? The boilerplate doc added >> there after the fact looks less than helpful. >> > >What kinda of documentation were you thinking of? Most all the IGTs are >light on doc but updating the doc for ones I wrote is on my todo list... It would be good to have an overview on what the test is checking and how the different subtests are different from each other. thanks Lucas De Marchi > >Matt > >> Lucas De Marchi >> >> > --- >> > tests/intel/xe_exec_threads.c | 1 + >> > 1 file changed, 1 insertion(+) >> > >> > diff --git a/tests/intel/xe_exec_threads.c b/tests/intel/xe_exec_threads.c >> > index 55907e2b3..977e8c600 100644 >> > --- a/tests/intel/xe_exec_threads.c >> > +++ b/tests/intel/xe_exec_threads.c >> > @@ -1081,6 +1081,7 @@ static void threads(int fd, int flags) >> > threads_data[i].fd = 0; >> > else >> > threads_data[i].fd = fd; >> > + threads_data[i].gt = gt; >> > threads_data[i].vm_legacy_mode = >> > vm_legacy_mode; >> > threads_data[i].class = class; >> > -- >> > 2.43.0 >> > ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t] tests/xe_exec_threads: Fill in GT field for second balancer thread 2024-03-21 6:01 ` Lucas De Marchi @ 2024-03-21 18:43 ` Matthew Brost 0 siblings, 0 replies; 11+ messages in thread From: Matthew Brost @ 2024-03-21 18:43 UTC (permalink / raw) To: Lucas De Marchi; +Cc: Matt Roper, igt-dev On Thu, Mar 21, 2024 at 01:01:22AM -0500, Lucas De Marchi wrote: > On Thu, Mar 21, 2024 at 01:04:37AM +0000, Matthew Brost wrote: > > On Wed, Mar 20, 2024 at 03:47:57PM -0500, Lucas De Marchi wrote: > > > On Wed, Mar 20, 2024 at 12:23:56PM -0700, Matt Roper wrote: > > > > The balancer subtests spawn two pthreads per engine class if there are > > > > multiple instances of the class. The GT field of the data structure is > > > > filled in properly for the first thread, but not for the second, > > > > effectively leaving it set to "0." > > > > > > > > For platforms with standalone media, this will result in failures when > > > > the thread tries to find the instances of a media class on GT0 and trips > > > > the "igt_assert(num_placements > 1)" assertion in test_balancer(). > > > > > > > > Signed-off-by: Matt Roper <matthew.d.roper@intel.com> > > > > > > > > > Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com> > > > > > > do you know why we unrolled a loop in there and did a wrong copy and > > > > I think the for_gt loop was added after the original version of this. > > Likely an ommision when that was added. > > > > > paste? That together with vertical spacing on flow control seems to be a > > > good source of bugs. Good find. > > > > > > The only difference between the first and second thread data I'm seeing > > > is flags VIRTUAL vs PARALLEL. Matt Brost, is this test from you? Could > > > > Yes, I wrote this one. Not my finest work in terms of copy / pasting, > > indeed the only difference should be VIRTUAL vs. PARALLEL. I think this > > should be consolidated into a loop. > > > sounds good. Something like this on top of this patch? (completely untested, it builds) > Yes, that looks about right. > diff --git a/tests/intel/xe_exec_threads.c b/tests/intel/xe_exec_threads.c > index 977e8c600..b95870714 100644 > --- a/tests/intel/xe_exec_threads.c > +++ b/tests/intel/xe_exec_threads.c > @@ -1030,6 +1030,7 @@ static void threads(int fd, int flags) > xe_for_each_gt(fd, gt) > xe_for_each_engine_class(class) { > int num_placements = 0; > + int *data_flags = (int[]){ VIRTUAL, PARALLEL, -1 }; > xe_for_each_engine(fd, hwe) { > if (hwe->engine_class != class || > @@ -1038,36 +1039,10 @@ static void threads(int fd, int flags) > ++num_placements; > } > - if (num_placements > 1) { > - threads_data[i].mutex = &mutex; > - threads_data[i].cond = &cond; > - if (flags & SHARED_VM) > - threads_data[i].addr = addr | > - (i << ADDRESS_SHIFT); > - else > - threads_data[i].addr = addr; > - threads_data[i].userptr = userptr | > - (i << ADDRESS_SHIFT); > - if (flags & FD) > - threads_data[i].fd = 0; > - else > - threads_data[i].fd = fd; > - threads_data[i].gt = gt; > - threads_data[i].vm_legacy_mode = > - vm_legacy_mode; > - threads_data[i].class = class; > - threads_data[i].n_exec_queue = N_EXEC_QUEUE; > - threads_data[i].n_exec = N_EXEC; > - threads_data[i].flags = flags; > - threads_data[i].flags &= ~BALANCER; > - threads_data[i].flags |= VIRTUAL; > - threads_data[i].go = &go; > - > - ++n_threads; > - pthread_create(&threads_data[i].thread, 0, > - thread, &threads_data[i]); > - ++i; > + if (num_placements <= 1) > + continue; > + while (*data_flags >= 0) { > threads_data[i].mutex = &mutex; > threads_data[i].cond = &cond; > if (flags & SHARED_VM) > @@ -1089,13 +1064,14 @@ static void threads(int fd, int flags) > threads_data[i].n_exec = N_EXEC; > threads_data[i].flags = flags; > threads_data[i].flags &= ~BALANCER; > - threads_data[i].flags |= PARALLEL; > + threads_data[i].flags |= *data_flags; > threads_data[i].go = &go; > ++n_threads; > pthread_create(&threads_data[i].thread, 0, > thread, &threads_data[i]); > ++i; > + data_flags++; > } > } > } > > > > > > you add an overview to its documentation? The boilerplate doc added > > > there after the fact looks less than helpful. > > > > > > > What kinda of documentation were you thinking of? Most all the IGTs are > > light on doc but updating the doc for ones I wrote is on my todo list... > > It would be good to have an overview on what the test is checking and > how the different subtests are different from each other. > > thanks > Lucas De Marchi Ok let me see if I can write something up. Matt > > > > > Matt > > > > > Lucas De Marchi > > > > > > > --- > > > > tests/intel/xe_exec_threads.c | 1 + > > > > 1 file changed, 1 insertion(+) > > > > > > > > diff --git a/tests/intel/xe_exec_threads.c b/tests/intel/xe_exec_threads.c > > > > index 55907e2b3..977e8c600 100644 > > > > --- a/tests/intel/xe_exec_threads.c > > > > +++ b/tests/intel/xe_exec_threads.c > > > > @@ -1081,6 +1081,7 @@ static void threads(int fd, int flags) > > > > threads_data[i].fd = 0; > > > > else > > > > threads_data[i].fd = fd; > > > > + threads_data[i].gt = gt; > > > > threads_data[i].vm_legacy_mode = > > > > vm_legacy_mode; > > > > threads_data[i].class = class; > > > > -- > > > > 2.43.0 > > > > ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Fi.CI.BAT: success for tests/xe_exec_threads: Fill in GT field for second balancer thread 2024-03-20 19:23 [PATCH i-g-t] tests/xe_exec_threads: Fill in GT field for second balancer thread Matt Roper 2024-03-20 20:47 ` Lucas De Marchi @ 2024-03-20 21:02 ` Patchwork 2024-03-20 21:11 ` ✓ CI.xeBAT: " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2024-03-20 21:02 UTC (permalink / raw) To: Matt Roper; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 13291 bytes --] == Series Details == Series: tests/xe_exec_threads: Fill in GT field for second balancer thread URL : https://patchwork.freedesktop.org/series/131382/ State : success == Summary == CI Bug Log - changes from CI_DRM_14458 -> IGTPW_10867 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/index.html Participating hosts (36 -> 36) ------------------------------ Additional (3): bat-dg1-7 bat-kbl-2 fi-glk-j4005 Missing (3): bat-mtlp-8 fi-apl-guc fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_10867 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@unbind-rebind: - fi-kbl-8809g: NOTRUN -> [DMESG-WARN][1] ([i915#10462]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/fi-kbl-8809g/igt@core_hotunplug@unbind-rebind.html * igt@debugfs_test@basic-hwmon: - bat-jsl-1: NOTRUN -> [SKIP][2] ([i915#9318]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/bat-jsl-1/igt@debugfs_test@basic-hwmon.html * igt@fbdev@info: - bat-kbl-2: NOTRUN -> [SKIP][3] ([i915#1849]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/bat-kbl-2/igt@fbdev@info.html - fi-kbl-8809g: NOTRUN -> [SKIP][4] ([i915#1849]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/fi-kbl-8809g/igt@fbdev@info.html * igt@gem_huc_copy@huc-copy: - fi-kbl-8809g: NOTRUN -> [SKIP][5] ([i915#2190]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/fi-kbl-8809g/igt@gem_huc_copy@huc-copy.html - bat-jsl-1: NOTRUN -> [SKIP][6] ([i915#2190]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/bat-jsl-1/igt@gem_huc_copy@huc-copy.html - fi-glk-j4005: NOTRUN -> [SKIP][7] ([i915#2190]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/fi-glk-j4005/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-kbl-2: NOTRUN -> [SKIP][8] +39 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html - bat-jsl-1: NOTRUN -> [SKIP][9] ([i915#4613]) +3 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/bat-jsl-1/igt@gem_lmem_swapping@parallel-random-engines.html - fi-glk-j4005: NOTRUN -> [SKIP][10] ([i915#4613]) +3 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/fi-glk-j4005/igt@gem_lmem_swapping@parallel-random-engines.html - fi-kbl-8809g: NOTRUN -> [SKIP][11] ([i915#4613]) +3 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/fi-kbl-8809g/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_mmap@basic: - bat-dg1-7: NOTRUN -> [SKIP][12] ([i915#4083]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/bat-dg1-7/igt@gem_mmap@basic.html * igt@gem_tiled_blits@basic: - bat-dg1-7: NOTRUN -> [SKIP][13] ([i915#4077]) +2 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/bat-dg1-7/igt@gem_tiled_blits@basic.html * igt@gem_tiled_pread_basic: - bat-dg1-7: NOTRUN -> [SKIP][14] ([i915#4079]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/bat-dg1-7/igt@gem_tiled_pread_basic.html * igt@i915_pm_rps@basic-api: - bat-dg1-7: NOTRUN -> [SKIP][15] ([i915#6621]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/bat-dg1-7/igt@i915_pm_rps@basic-api.html - bat-dg2-9: NOTRUN -> [SKIP][16] ([i915#6621]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/bat-dg2-9/igt@i915_pm_rps@basic-api.html * igt@kms_addfb_basic@bad-pitch-65536: - fi-kbl-8809g: NOTRUN -> [FAIL][17] ([i915#10457]) +1 other test fail [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/fi-kbl-8809g/igt@kms_addfb_basic@bad-pitch-65536.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - bat-dg1-7: NOTRUN -> [SKIP][18] ([i915#4215]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/bat-dg1-7/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - bat-dg1-7: NOTRUN -> [SKIP][19] ([i915#4212]) +7 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/bat-dg1-7/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_addfb_basic@too-high: - fi-kbl-8809g: NOTRUN -> [FAIL][20] ([i915#10455]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/fi-kbl-8809g/igt@kms_addfb_basic@too-high.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-jsl-1: NOTRUN -> [SKIP][21] ([i915#4103]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/bat-jsl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - bat-dg1-7: NOTRUN -> [SKIP][22] ([i915#4103] / [i915#4213]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/bat-dg1-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - fi-kbl-8809g: NOTRUN -> [SKIP][23] +58 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/fi-kbl-8809g/igt@kms_dsc@dsc-basic.html - bat-jsl-1: NOTRUN -> [SKIP][24] ([i915#3555] / [i915#9886]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/bat-jsl-1/igt@kms_dsc@dsc-basic.html - bat-dg1-7: NOTRUN -> [SKIP][25] ([i915#3555] / [i915#3840]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/bat-dg1-7/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-edid: - fi-kbl-8809g: NOTRUN -> [DMESG-FAIL][26] ([i915#10454]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/fi-kbl-8809g/igt@kms_force_connector_basic@force-edid.html * igt@kms_force_connector_basic@force-load-detect: - bat-jsl-1: NOTRUN -> [SKIP][27] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/bat-jsl-1/igt@kms_force_connector_basic@force-load-detect.html - bat-dg1-7: NOTRUN -> [SKIP][28] [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/bat-dg1-7/igt@kms_force_connector_basic@force-load-detect.html - bat-dg2-9: NOTRUN -> [SKIP][29] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/bat-dg2-9/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - bat-dg2-9: NOTRUN -> [SKIP][30] ([i915#5274]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/bat-dg2-9/igt@kms_force_connector_basic@prune-stale-modes.html - fi-kbl-8809g: NOTRUN -> [DMESG-WARN][31] ([i915#10454]) +1 other test dmesg-warn [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/fi-kbl-8809g/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_hdmi_inject@inject-audio: - bat-dg1-7: NOTRUN -> [SKIP][32] ([i915#433]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/bat-dg1-7/igt@kms_hdmi_inject@inject-audio.html - fi-kbl-8809g: NOTRUN -> [FAIL][33] ([IGT#3]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/fi-kbl-8809g/igt@kms_hdmi_inject@inject-audio.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-d-dp-2: - bat-rpls-3: [PASS][34] -> [FAIL][35] ([i915#9666]) +2 other tests fail [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/bat-rpls-3/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-d-dp-2.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/bat-rpls-3/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-d-dp-2.html * igt@kms_pipe_crc_basic@hang-read-crc: - bat-dg2-9: NOTRUN -> [SKIP][36] ([i915#9197]) +6 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/bat-dg2-9/igt@kms_pipe_crc_basic@hang-read-crc.html * igt@kms_pm_backlight@basic-brightness: - bat-dg1-7: NOTRUN -> [SKIP][37] ([i915#5354]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/bat-dg1-7/igt@kms_pm_backlight@basic-brightness.html - bat-dg2-9: NOTRUN -> [SKIP][38] ([i915#5354]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/bat-dg2-9/igt@kms_pm_backlight@basic-brightness.html * igt@kms_psr@psr-primary-page-flip: - bat-dg1-7: NOTRUN -> [SKIP][39] ([i915#9732]) +3 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/bat-dg1-7/igt@kms_psr@psr-primary-page-flip.html - fi-glk-j4005: NOTRUN -> [SKIP][40] +10 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/fi-glk-j4005/igt@kms_psr@psr-primary-page-flip.html - bat-dg2-9: NOTRUN -> [SKIP][41] ([i915#9673] / [i915#9732]) +3 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/bat-dg2-9/igt@kms_psr@psr-primary-page-flip.html * igt@kms_setmode@basic-clone-single-crtc: - bat-dg2-9: NOTRUN -> [SKIP][42] ([i915#3555]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/bat-dg2-9/igt@kms_setmode@basic-clone-single-crtc.html - bat-jsl-1: NOTRUN -> [SKIP][43] ([i915#3555]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/bat-jsl-1/igt@kms_setmode@basic-clone-single-crtc.html - bat-dg1-7: NOTRUN -> [SKIP][44] ([i915#3555]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/bat-dg1-7/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - bat-dg2-9: NOTRUN -> [SKIP][45] ([i915#3708] / [i915#9197]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/bat-dg2-9/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-mmap: - bat-dg1-7: NOTRUN -> [SKIP][46] ([i915#3708] / [i915#4077]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/bat-dg1-7/igt@prime_vgem@basic-fence-mmap.html - bat-dg2-9: NOTRUN -> [SKIP][47] ([i915#3708] / [i915#4077]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/bat-dg2-9/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-fence-read: - bat-dg1-7: NOTRUN -> [SKIP][48] ([i915#3708]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/bat-dg1-7/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-write: - bat-dg2-9: NOTRUN -> [SKIP][49] ([i915#3291] / [i915#3708]) +2 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/bat-dg2-9/igt@prime_vgem@basic-write.html [IGT#3]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/3 [i915#10454]: https://gitlab.freedesktop.org/drm/intel/issues/10454 [i915#10455]: https://gitlab.freedesktop.org/drm/intel/issues/10455 [i915#10457]: https://gitlab.freedesktop.org/drm/intel/issues/10457 [i915#10462]: https://gitlab.freedesktop.org/drm/intel/issues/10462 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [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#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#9197]: https://gitlab.freedesktop.org/drm/intel/issues/9197 [i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318 [i915#9666]: https://gitlab.freedesktop.org/drm/intel/issues/9666 [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9886]: https://gitlab.freedesktop.org/drm/intel/issues/9886 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7771 -> IGTPW_10867 CI-20190529: 20190529 CI_DRM_14458: 1cbe0387180a61b6abb4f5a6261763adaecbf51b @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10867: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/index.html IGT_7771: 7771 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/index.html [-- Attachment #2: Type: text/html, Size: 16073 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ CI.xeBAT: success for tests/xe_exec_threads: Fill in GT field for second balancer thread 2024-03-20 19:23 [PATCH i-g-t] tests/xe_exec_threads: Fill in GT field for second balancer thread Matt Roper 2024-03-20 20:47 ` Lucas De Marchi 2024-03-20 21:02 ` ✓ Fi.CI.BAT: success for " Patchwork @ 2024-03-20 21:11 ` Patchwork 2024-03-20 21:35 ` Matt Roper 2024-03-21 9:14 ` ✗ Fi.CI.IGT: failure " Patchwork 2024-03-25 8:54 ` ✓ Fi.CI.IGT: success " Patchwork 4 siblings, 1 reply; 11+ messages in thread From: Patchwork @ 2024-03-20 21:11 UTC (permalink / raw) To: Matt Roper; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1053 bytes --] == Series Details == Series: tests/xe_exec_threads: Fill in GT field for second balancer thread URL : https://patchwork.freedesktop.org/series/131382/ State : success == Summary == CI Bug Log - changes from XEIGT_7771_BAT -> XEIGTPW_10867_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_7771 -> IGTPW_10867 * Linux: xe-966-cfe25dc9ae2e1add3f2605831bf6d8bea481164b -> xe-967-1cbe0387180a61b6abb4f5a6261763adaecbf51b IGTPW_10867: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/index.html IGT_7771: 7771 xe-966-cfe25dc9ae2e1add3f2605831bf6d8bea481164b: cfe25dc9ae2e1add3f2605831bf6d8bea481164b xe-967-1cbe0387180a61b6abb4f5a6261763adaecbf51b: 1cbe0387180a61b6abb4f5a6261763adaecbf51b == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10867/index.html [-- Attachment #2: Type: text/html, Size: 1612 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: ✓ CI.xeBAT: success for tests/xe_exec_threads: Fill in GT field for second balancer thread 2024-03-20 21:11 ` ✓ CI.xeBAT: " Patchwork @ 2024-03-20 21:35 ` Matt Roper 0 siblings, 0 replies; 11+ messages in thread From: Matt Roper @ 2024-03-20 21:35 UTC (permalink / raw) To: igt-dev On Wed, Mar 20, 2024 at 09:11:08PM +0000, Patchwork wrote: > == Series Details == > > Series: tests/xe_exec_threads: Fill in GT field for second balancer thread > URL : https://patchwork.freedesktop.org/series/131382/ > State : success > > == Summary == > > CI Bug Log - changes from XEIGT_7771_BAT -> XEIGTPW_10867_BAT > ==================================================== > > Summary > ------- > > **SUCCESS** > > No regressions found. Applied to master; thanks Lucas for the review. Matt > > > > Participating hosts (4 -> 4) > ------------------------------ > > No changes in participating hosts > > > Changes > ------- > > No changes found > > > Build changes > ------------- > > * IGT: IGT_7771 -> IGTPW_10867 > * Linux: xe-966-cfe25dc9ae2e1add3f2605831bf6d8bea481164b -> xe-967-1cbe0387180a61b6abb4f5a6261763adaecbf51b > > IGTPW_10867: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/index.html > IGT_7771: 7771 > xe-966-cfe25dc9ae2e1add3f2605831bf6d8bea481164b: cfe25dc9ae2e1add3f2605831bf6d8bea481164b > xe-967-1cbe0387180a61b6abb4f5a6261763adaecbf51b: 1cbe0387180a61b6abb4f5a6261763adaecbf51b > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10867/index.html -- Matt Roper Graphics Software Engineer Linux GPU Platform Enablement Intel Corporation ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ Fi.CI.IGT: failure for tests/xe_exec_threads: Fill in GT field for second balancer thread 2024-03-20 19:23 [PATCH i-g-t] tests/xe_exec_threads: Fill in GT field for second balancer thread Matt Roper ` (2 preceding siblings ...) 2024-03-20 21:11 ` ✓ CI.xeBAT: " Patchwork @ 2024-03-21 9:14 ` Patchwork 2024-03-21 13:23 ` Kamil Konieczny 2024-03-25 8:54 ` ✓ Fi.CI.IGT: success " Patchwork 4 siblings, 1 reply; 11+ messages in thread From: Patchwork @ 2024-03-21 9:14 UTC (permalink / raw) To: Matt Roper; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 87285 bytes --] == Series Details == Series: tests/xe_exec_threads: Fill in GT field for second balancer thread URL : https://patchwork.freedesktop.org/series/131382/ State : failure == Summary == CI Bug Log - changes from CI_DRM_14458_full -> IGTPW_10867_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10867_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10867_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) 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_10867/index.html Participating hosts (9 -> 10) ------------------------------ Additional (1): shard-snb-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10867_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_store@dword@vcs0: - shard-mtlp: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-mtlp-5/igt@gem_exec_store@dword@vcs0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-8/igt@gem_exec_store@dword@vcs0.html * igt@kms_flip@plain-flip-ts-check@b-hdmi-a4: - shard-dg1: NOTRUN -> [FAIL][3] +1 other test fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-17/igt@kms_flip@plain-flip-ts-check@b-hdmi-a4.html #### Warnings #### * igt@gem_eio@kms: - shard-dg1: [FAIL][4] ([i915#5784]) -> [INCOMPLETE][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-dg1-13/igt@gem_eio@kms.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-17/igt@gem_eio@kms.html Known issues ------------ Here are the changes found in IGTPW_10867_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@device_reset@cold-reset-bound: - shard-dg1: NOTRUN -> [SKIP][6] ([i915#7701]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-15/igt@device_reset@cold-reset-bound.html * igt@device_reset@unbind-cold-reset-rebind: - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#7701]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-5/igt@device_reset@unbind-cold-reset-rebind.html - shard-dg2: NOTRUN -> [SKIP][8] ([i915#7701]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-11/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@busy-idle-check-all@ccs0: - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#8414]) +6 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-7/igt@drm_fdinfo@busy-idle-check-all@ccs0.html * igt@drm_fdinfo@most-busy-check-all@bcs0: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#8414]) +11 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-6/igt@drm_fdinfo@most-busy-check-all@bcs0.html * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: - shard-rkl: [PASS][11] -> [FAIL][12] ([i915#7742]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-6/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html * igt@drm_fdinfo@virtual-busy-hang: - shard-dg1: NOTRUN -> [SKIP][13] ([i915#8414]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-15/igt@drm_fdinfo@virtual-busy-hang.html * igt@gem_ccs@block-copy-compressed: - shard-mtlp: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#9323]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-3/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@suspend-resume: - shard-rkl: NOTRUN -> [SKIP][15] ([i915#9323]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-6/igt@gem_ccs@suspend-resume.html - shard-dg1: NOTRUN -> [SKIP][16] ([i915#9323]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-17/igt@gem_ccs@suspend-resume.html - shard-tglu: NOTRUN -> [SKIP][17] ([i915#9323]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-5/igt@gem_ccs@suspend-resume.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#7697]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-11/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-tglu: NOTRUN -> [SKIP][19] ([i915#6335]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-3/igt@gem_create@create-ext-cpu-access-sanity-check.html - shard-mtlp: NOTRUN -> [SKIP][20] ([i915#6335]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-4/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_create@create-ext-set-pat: - shard-rkl: NOTRUN -> [SKIP][21] ([i915#8562]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-4/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglu: [PASS][22] -> [FAIL][23] ([i915#6268]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-tglu-4/igt@gem_ctx_exec@basic-nohangcheck.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-3/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-dg2: [PASS][24] -> [INCOMPLETE][25] ([i915#9162]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-dg2-5/igt@gem_ctx_isolation@preservation-s3@rcs0.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-2/igt@gem_ctx_isolation@preservation-s3@rcs0.html * igt@gem_ctx_persistence@heartbeat-many: - shard-dg1: NOTRUN -> [SKIP][26] ([i915#8555]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-15/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#5882]) +9 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-8/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs0: - shard-mtlp: NOTRUN -> [SKIP][28] ([i915#5882]) +5 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-8/igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs0.html * igt@gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][29] ([i915#280]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-1/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-args: - shard-dg1: NOTRUN -> [SKIP][30] ([i915#280]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-16/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@invalid-sseu: - shard-tglu: NOTRUN -> [SKIP][31] ([i915#280]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-8/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_exec_balancer@bonded-semaphore: - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#4812]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-7/igt@gem_exec_balancer@bonded-semaphore.html - shard-dg2: NOTRUN -> [SKIP][33] ([i915#4812]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-11/igt@gem_exec_balancer@bonded-semaphore.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#4036]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-5/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][35] ([i915#4525]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-5/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_capture@capture@vecs0-lmem0: - shard-dg1: NOTRUN -> [FAIL][36] ([i915#10386]) +1 other test fail [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-14/igt@gem_exec_capture@capture@vecs0-lmem0.html * igt@gem_exec_capture@many-4k-incremental: - shard-glk: NOTRUN -> [FAIL][37] ([i915#9606]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-glk8/igt@gem_exec_capture@many-4k-incremental.html * igt@gem_exec_fair@basic-none-rrul: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#3539] / [i915#4852]) +5 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-5/igt@gem_exec_fair@basic-none-rrul.html - shard-dg1: NOTRUN -> [SKIP][39] ([i915#3539] / [i915#4852]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-16/igt@gem_exec_fair@basic-none-rrul.html - shard-mtlp: NOTRUN -> [SKIP][40] ([i915#4473] / [i915#4771]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-1/igt@gem_exec_fair@basic-none-rrul.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-rkl: NOTRUN -> [FAIL][41] ([i915#2842]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-4/igt@gem_exec_fair@basic-none-rrul@rcs0.html - shard-tglu: NOTRUN -> [FAIL][42] ([i915#2842]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-7/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-tglu: [PASS][43] -> [FAIL][44] ([i915#2842]) +1 other test fail [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-tglu-6/igt@gem_exec_fair@basic-none-share@rcs0.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-9/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-sync: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#3539]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-5/igt@gem_exec_fair@basic-sync.html * igt@gem_exec_fence@concurrent: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#4812]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-16/igt@gem_exec_fence@concurrent.html * igt@gem_exec_reloc@basic-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#3281]) +6 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-6/igt@gem_exec_reloc@basic-cpu-noreloc.html * igt@gem_exec_reloc@basic-gtt-read-active: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#3281]) +6 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-10/igt@gem_exec_reloc@basic-gtt-read-active.html * igt@gem_exec_schedule@preempt-queue: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4537] / [i915#4812]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-5/igt@gem_exec_schedule@preempt-queue.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg1: [PASS][50] -> [ABORT][51] ([i915#7975] / [i915#8213]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-dg1-18/igt@gem_exec_suspend@basic-s4-devices@lmem0.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-14/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#4860]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-2/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_fenced_exec_thrash@too-many-fences: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4860]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-2/igt@gem_fenced_exec_thrash@too-many-fences.html * igt@gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][54] ([i915#2190]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-1/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0: - shard-dg2: [PASS][55] -> [FAIL][56] ([i915#10378]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-dg2-6/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-11/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html * igt@gem_lmem_swapping@heavy-verify-multi@lmem0: - shard-dg1: NOTRUN -> [FAIL][57] ([i915#10378]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-16/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html - shard-dg2: NOTRUN -> [FAIL][58] ([i915#10378]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-5/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html * igt@gem_lmem_swapping@parallel-multi: - shard-rkl: NOTRUN -> [SKIP][59] ([i915#4613]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-4/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@random-engines: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4613]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-7/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@smem-oom: - shard-tglu: NOTRUN -> [SKIP][61] ([i915#4613]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-8/igt@gem_lmem_swapping@smem-oom.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: NOTRUN -> [TIMEOUT][62] ([i915#5493]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-6/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][63] ([i915#4613]) +4 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-glk6/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_lmem_swapping@verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#4565]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-16/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html * igt@gem_mmap_gtt@coherency: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#4077]) +8 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-15/igt@gem_mmap_gtt@coherency.html * igt@gem_mmap_gtt@cpuset-medium-copy-odd: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4077]) +6 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-3/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html * igt@gem_mmap_gtt@hang: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4077]) +11 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-2/igt@gem_mmap_gtt@hang.html * igt@gem_mmap_wc@close: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#4083]) +3 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-8/igt@gem_mmap_wc@close.html * igt@gem_mmap_wc@fault-concurrent: - shard-dg1: NOTRUN -> [SKIP][69] ([i915#4083]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-18/igt@gem_mmap_wc@fault-concurrent.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-rkl: NOTRUN -> [SKIP][70] ([i915#3282]) +4 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-4/igt@gem_partial_pwrite_pread@writes-after-reads.html - shard-dg1: NOTRUN -> [SKIP][71] ([i915#3282]) +4 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-17/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_pread@self: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#3282]) +3 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-2/igt@gem_pread@self.html * igt@gem_pxp@create-regular-context-2: - shard-tglu: NOTRUN -> [SKIP][73] ([i915#4270]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-2/igt@gem_pxp@create-regular-context-2.html * igt@gem_pxp@fail-invalid-protected-context: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4270]) +2 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-8/igt@gem_pxp@fail-invalid-protected-context.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#4270]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-8/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-dg1: NOTRUN -> [SKIP][76] ([i915#4270]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-14/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html - shard-rkl: NOTRUN -> [SKIP][77] ([i915#4270]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-6/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_readwrite@read-bad-handle: - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#3282]) +4 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-6/igt@gem_readwrite@read-bad-handle.html * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#8428]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-2/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_render_copy@y-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#5190] / [i915#8428]) +3 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-10/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_pwrite: - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#4079]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-6/igt@gem_set_tiling_vs_pwrite.html * igt@gem_softpin@evict-snoop: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#4885]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-6/igt@gem_softpin@evict-snoop.html * igt@gem_softpin@evict-snoop-interruptible: - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#4885]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-7/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_tiled_pread_basic: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#4079]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-2/igt@gem_tiled_pread_basic.html * igt@gem_unfence_active_buffers: - shard-mtlp: NOTRUN -> [SKIP][85] ([i915#4879]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-5/igt@gem_unfence_active_buffers.html - shard-dg2: NOTRUN -> [SKIP][86] ([i915#4879]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-11/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@coherency-unsync: - shard-rkl: NOTRUN -> [SKIP][87] ([i915#3297]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-1/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-dg1: NOTRUN -> [SKIP][88] ([i915#3297] / [i915#4880]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-18/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gem_userptr_blits@relocations: - shard-rkl: NOTRUN -> [SKIP][89] ([i915#3281]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-5/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@unsync-overlap: - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#3297]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-4/igt@gem_userptr_blits@unsync-overlap.html * igt@gem_userptr_blits@unsync-unmap: - shard-tglu: NOTRUN -> [SKIP][91] ([i915#3297]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-2/igt@gem_userptr_blits@unsync-unmap.html * igt@gen9_exec_parse@allowed-all: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#2856]) +2 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-10/igt@gen9_exec_parse@allowed-all.html - shard-tglu: NOTRUN -> [SKIP][93] ([i915#2527] / [i915#2856]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-4/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@batch-without-end: - shard-mtlp: NOTRUN -> [SKIP][94] ([i915#2856]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-4/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][95] ([i915#2527]) +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-5/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@shadow-peek: - shard-dg1: NOTRUN -> [SKIP][96] ([i915#2527]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-15/igt@gen9_exec_parse@shadow-peek.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: NOTRUN -> [INCOMPLETE][97] ([i915#9820] / [i915#9849]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-1/igt@i915_module_load@reload-with-fault-injection.html - shard-glk: [PASS][98] -> [ABORT][99] ([i915#9849]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-glk5/igt@i915_module_load@reload-with-fault-injection.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-glk3/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: NOTRUN -> [INCOMPLETE][100] ([i915#9820] / [i915#9849]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-reset: - shard-tglu: NOTRUN -> [SKIP][101] ([i915#8399]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-7/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-rkl: NOTRUN -> [SKIP][102] ([i915#8399]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-5/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_rps@thresholds-idle-park@gt0: - shard-mtlp: NOTRUN -> [SKIP][103] ([i915#8925]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-7/igt@i915_pm_rps@thresholds-idle-park@gt0.html * igt@i915_pm_rps@thresholds-idle-park@gt1: - shard-mtlp: NOTRUN -> [SKIP][104] ([i915#3555] / [i915#8925]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-7/igt@i915_pm_rps@thresholds-idle-park@gt1.html * igt@i915_power@sanity: - shard-mtlp: [PASS][105] -> [SKIP][106] ([i915#7984]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-mtlp-8/igt@i915_power@sanity.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-1/igt@i915_power@sanity.html - shard-rkl: NOTRUN -> [SKIP][107] ([i915#7984]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-4/igt@i915_power@sanity.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#6188]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-8/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_selftest@mock@memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][109] ([i915#9311]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-2/igt@i915_selftest@mock@memory_region.html - shard-rkl: NOTRUN -> [DMESG-WARN][110] ([i915#9311]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-4/igt@i915_selftest@mock@memory_region.html - shard-glk: NOTRUN -> [DMESG-WARN][111] ([i915#9311]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-glk8/igt@i915_selftest@mock@memory_region.html * igt@i915_suspend@basic-s3-without-i915: - shard-tglu: NOTRUN -> [INCOMPLETE][112] ([i915#7443]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-4/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg1: NOTRUN -> [SKIP][113] ([i915#4212]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-18/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#8709]) +3 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs: - shard-tglu: NOTRUN -> [SKIP][115] ([i915#8709]) +7 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-8/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-d-hdmi-a-2-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#8709]) +11 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-mtlp: NOTRUN -> [SKIP][117] ([i915#3555]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-rkl: NOTRUN -> [SKIP][118] ([i915#1769] / [i915#3555]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-addfb-size-overflow: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#5286]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-14/igt@kms_big_fb@4-tiled-addfb-size-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#5286]) +4 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][121] ([i915#4538] / [i915#5286]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-15/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html - shard-tglu: NOTRUN -> [SKIP][122] ([i915#5286]) +2 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-9/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][123] ([i915#3638]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-4/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html - shard-dg1: NOTRUN -> [SKIP][124] ([i915#3638]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-17/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#5190]) +2 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-5/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: NOTRUN -> [FAIL][126] ([i915#3743]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-mtlp: NOTRUN -> [SKIP][127] +18 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-3/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html - shard-dg2: NOTRUN -> [SKIP][128] ([i915#4538] / [i915#5190]) +6 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-2/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-mtlp: NOTRUN -> [SKIP][129] ([i915#6187]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-8/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu: NOTRUN -> [SKIP][130] +54 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg1: NOTRUN -> [SKIP][131] ([i915#4538]) +3 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_joiner@invalid-modeset: - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#2705]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-1/igt@kms_big_joiner@invalid-modeset.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#6095]) +75 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-16/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#10307] / [i915#10434]) +5 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-10/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs: - shard-tglu: NOTRUN -> [SKIP][135] ([i915#10278]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-6/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][136] ([i915#6095]) +63 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs: - shard-rkl: NOTRUN -> [SKIP][137] ([i915#10278]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#10307]) +157 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-8/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#6095]) +23 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-edp-1.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][140] ([i915#6095]) +19 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-4/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_cdclk@mode-transition: - shard-tglu: NOTRUN -> [SKIP][141] ([i915#3742]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-3/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#3742]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-4/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#4087]) +3 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-6/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html * igt@kms_chamelium_frames@dp-crc-multiple: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#7828]) +8 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-11/igt@kms_chamelium_frames@dp-crc-multiple.html * igt@kms_chamelium_hpd@dp-hpd-for-each-pipe: - shard-rkl: NOTRUN -> [SKIP][145] ([i915#7828]) +6 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-4/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-tglu: NOTRUN -> [SKIP][146] ([i915#7828]) +3 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-4/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][147] ([i915#7828]) +3 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-17/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_chamelium_hpd@vga-hpd: - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#7828]) +6 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-8/igt@kms_chamelium_hpd@vga-hpd.html * igt@kms_content_protection@atomic: - shard-tglu: NOTRUN -> [SKIP][149] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-9/igt@kms_content_protection@atomic.html * igt@kms_content_protection@content-type-change: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#9424]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-6/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg1: NOTRUN -> [SKIP][151] ([i915#3299]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-14/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@lic-type-0: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#9424]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-4/igt@kms_content_protection@lic-type-0.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#3359]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-8/igt@kms_cursor_crc@cursor-offscreen-512x170.html - shard-dg2: NOTRUN -> [SKIP][154] ([i915#3359]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-5/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][155] ([i915#3555]) +5 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-32x32.html - shard-dg1: NOTRUN -> [SKIP][156] ([i915#3555]) +3 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-17/igt@kms_cursor_crc@cursor-onscreen-32x32.html - shard-tglu: NOTRUN -> [SKIP][157] ([i915#3555]) +2 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-32x32.html - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#3555] / [i915#8814]) +2 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-128x42: - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#8814]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-5/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-dg1: NOTRUN -> [SKIP][160] ([i915#3359]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-17/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#3555]) +4 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-tglu: NOTRUN -> [SKIP][162] ([i915#3359]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-mtlp: NOTRUN -> [SKIP][163] ([i915#9809]) +3 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-7/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#4103]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - shard-dg1: NOTRUN -> [SKIP][165] ([i915#4103] / [i915#4213]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-14/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - shard-tglu: NOTRUN -> [SKIP][166] ([i915#4103]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#4103] / [i915#4213]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-10/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: NOTRUN -> [FAIL][168] ([i915#2346]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#9067]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-8/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-mtlp: NOTRUN -> [SKIP][170] ([i915#4213]) +1 other test skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#9227]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2.html - shard-rkl: NOTRUN -> [SKIP][172] ([i915#9723]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-6/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2.html * igt@kms_display_modes@extended-mode-basic: - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#3555] / [i915#8827]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-8/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dp_aux_dev: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#1257]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-5/igt@kms_dp_aux_dev.html - shard-tglu: NOTRUN -> [SKIP][175] ([i915#1257]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-7/igt@kms_dp_aux_dev.html * igt@kms_dsc@dsc-basic: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#3555] / [i915#3840]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-5/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg1: NOTRUN -> [SKIP][177] ([i915#3840]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-18/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-formats: - shard-tglu: NOTRUN -> [SKIP][178] ([i915#3555] / [i915#3840]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-6/igt@kms_dsc@dsc-with-formats.html - shard-dg2: NOTRUN -> [SKIP][179] ([i915#3555] / [i915#3840]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-10/igt@kms_dsc@dsc-with-formats.html * igt@kms_feature_discovery@display-3x: - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#1839]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-8/igt@kms_feature_discovery@display-3x.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible: - shard-dg2: NOTRUN -> [SKIP][181] +11 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-tglu: NOTRUN -> [SKIP][182] ([i915#3637]) +3 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-2/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-dg1: NOTRUN -> [SKIP][183] ([i915#9934]) +3 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-16/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#8381]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-10/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg1: NOTRUN -> [SKIP][185] ([i915#8381]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-15/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-mtlp: NOTRUN -> [SKIP][186] ([i915#3637]) +7 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ab-vga1-hdmi-a1: - shard-snb: [PASS][187] -> [FAIL][188] ([i915#2122]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-snb5/igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ab-vga1-hdmi-a1.html [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-snb7/igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ab-vga1-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][189] ([i915#2672]) +2 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][190] ([i915#2587] / [i915#2672]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][191] ([i915#2587] / [i915#2672]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][192] ([i915#2672]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#2672] / [i915#3555]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#2672]) +3 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move: - shard-mtlp: NOTRUN -> [SKIP][195] ([i915#1825]) +22 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#5354]) +28 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary: - shard-dg2: [PASS][197] -> [FAIL][198] ([i915#6880]) +1 other test fail [197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#10055]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][200] ([i915#3023]) +20 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html - shard-dg1: NOTRUN -> [SKIP][201] ([i915#8708]) +11 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][202] +23 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#8708]) +15 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-rkl: NOTRUN -> [SKIP][204] ([i915#5439]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#8708]) +7 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-rte: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#3458]) +17 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-rte.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][207] ([i915#1825]) +31 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][208] ([i915#3458]) +9 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html * igt@kms_hdr@bpc-switch: - shard-dg1: NOTRUN -> [SKIP][209] ([i915#3555] / [i915#8228]) +2 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-14/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@static-toggle: - shard-dg2: NOTRUN -> [SKIP][210] ([i915#3555] / [i915#8228]) +1 other test skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-2/igt@kms_hdr@static-toggle.html - shard-rkl: NOTRUN -> [SKIP][211] ([i915#3555] / [i915#8228]) +1 other test skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-4/igt@kms_hdr@static-toggle.html - shard-tglu: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#8228]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-8/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-dpms: - shard-mtlp: NOTRUN -> [SKIP][213] ([i915#3555] / [i915#8228]) +1 other test skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-1/igt@kms_hdr@static-toggle-dpms.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: - shard-dg1: [PASS][214] -> [FAIL][215] ([i915#8292]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-dg1-16/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-18/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-1: - shard-glk: NOTRUN -> [SKIP][216] +272 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-glk8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#9423]) +7 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][218] ([i915#9423]) +11 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-18/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#5176]) +3 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-b-edp-1.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][220] ([i915#9423]) +5 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][221] ([i915#5235]) +3 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-8/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#5235] / [i915#9423] / [i915#9728]) +3 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][223] ([i915#5235]) +2 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#5235]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#5235] / [i915#9423]) +15 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-2.html - shard-rkl: NOTRUN -> [SKIP][226] ([i915#5235]) +5 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][227] ([i915#5235]) +3 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-16/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-4.html * igt@kms_pm_backlight@fade-with-suspend: - shard-tglu: NOTRUN -> [SKIP][228] ([i915#9812]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-5/igt@kms_pm_backlight@fade-with-suspend.html - shard-dg1: NOTRUN -> [SKIP][229] ([i915#5354]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-18/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#9340]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-5/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [FAIL][231] ([i915#9301]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-7/igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-1.html * igt@kms_pm_lpsp@screens-disabled: - shard-rkl: NOTRUN -> [SKIP][232] ([i915#8430]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-6/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: [PASS][233] -> [SKIP][234] ([i915#9519]) +3 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-rkl-4/igt@kms_pm_rpm@dpms-lpsp.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][235] ([i915#9519]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: [PASS][236] -> [SKIP][237] ([i915#9519]) +3 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_prime@d3hot: - shard-rkl: NOTRUN -> [SKIP][238] ([i915#6524]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-6/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-cursor-plane-update-sf@psr2-pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#9808]) +1 other test skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-8/igt@kms_psr2_sf@fbc-cursor-plane-update-sf@psr2-pipe-a-edp-1.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-mtlp: NOTRUN -> [SKIP][240] ([i915#4348]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-dg1: NOTRUN -> [SKIP][241] ([i915#9683]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-15/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][242] ([i915#9683]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-2/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-tglu: NOTRUN -> [SKIP][243] ([i915#9683]) +1 other test skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-8/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-basic: - shard-mtlp: NOTRUN -> [SKIP][244] ([i915#9688]) +9 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-5/igt@kms_psr@fbc-pr-basic.html * igt@kms_psr@fbc-psr-basic: - shard-dg2: NOTRUN -> [SKIP][245] ([i915#9673] / [i915#9732]) +3 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-11/igt@kms_psr@fbc-psr-basic.html * igt@kms_psr@fbc-psr-primary-page-flip: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#9732]) +8 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-2/igt@kms_psr@fbc-psr-primary-page-flip.html * igt@kms_psr@fbc-psr-sprite-plane-move: - shard-tglu: NOTRUN -> [SKIP][247] ([i915#9732]) +14 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-3/igt@kms_psr@fbc-psr-sprite-plane-move.html * igt@kms_psr@pr-sprite-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][248] ([i915#9732]) +17 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-6/igt@kms_psr@pr-sprite-mmap-gtt.html - shard-dg1: NOTRUN -> [SKIP][249] ([i915#9732]) +9 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-17/igt@kms_psr@pr-sprite-mmap-gtt.html * igt@kms_psr@psr2-cursor-plane-move@edp-1: - shard-mtlp: [PASS][250] -> [FAIL][251] ([i915#10105]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-mtlp-5/igt@kms_psr@psr2-cursor-plane-move@edp-1.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-2/igt@kms_psr@psr2-cursor-plane-move@edp-1.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg1: NOTRUN -> [SKIP][252] ([i915#5289]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-17/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#5289]) +1 other test skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-snb: NOTRUN -> [SKIP][254] +4 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-snb6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-tglu: NOTRUN -> [SKIP][255] ([i915#5289]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1: - shard-tglu: [PASS][256] -> [FAIL][257] ([i915#9196]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-tglu: NOTRUN -> [SKIP][258] ([i915#9906]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-6/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-dg1: NOTRUN -> [SKIP][259] ([i915#9906]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-15/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-fb-id: - shard-mtlp: NOTRUN -> [SKIP][260] ([i915#2437]) +1 other test skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-8/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-pixel-formats: - shard-tglu: NOTRUN -> [SKIP][261] ([i915#2437] / [i915#9412]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-8/igt@kms_writeback@writeback-pixel-formats.html - shard-glk: NOTRUN -> [SKIP][262] ([i915#2437]) +1 other test skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-glk8/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-mtlp: NOTRUN -> [SKIP][263] ([i915#7387]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-6/igt@perf@gen8-unprivileged-single-ctx-counters.html - shard-dg2: NOTRUN -> [SKIP][264] ([i915#2436] / [i915#7387]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-2/igt@perf@gen8-unprivileged-single-ctx-counters.html - shard-rkl: NOTRUN -> [SKIP][265] ([i915#2436]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-5/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: NOTRUN -> [FAIL][266] ([i915#9100]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-10/igt@perf@non-zero-reason@0-rcs0.html * igt@perf@unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][267] ([i915#2433]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-4/igt@perf@unprivileged-single-ctx-counters.html * igt@prime_vgem@basic-fence-mmap: - shard-mtlp: NOTRUN -> [SKIP][268] ([i915#3708] / [i915#4077]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-5/igt@prime_vgem@basic-fence-mmap.html - shard-dg2: NOTRUN -> [SKIP][269] ([i915#3708] / [i915#4077]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-11/igt@prime_vgem@basic-fence-mmap.html - shard-dg1: NOTRUN -> [SKIP][270] ([i915#3708] / [i915#4077]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-16/igt@prime_vgem@basic-fence-mmap.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-mtlp: NOTRUN -> [SKIP][271] ([i915#9917]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-7/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-tglu: NOTRUN -> [SKIP][272] ([i915#9917]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-3/igt@sriov_basic@enable-vfs-bind-unbind-each.html * igt@syncobj_timeline@invalid-wait-zero-handles: - shard-glk: NOTRUN -> [FAIL][273] ([i915#9781]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-glk3/igt@syncobj_timeline@invalid-wait-zero-handles.html * igt@tools_test@sysfs_l3_parity: - shard-rkl: NOTRUN -> [SKIP][274] +35 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-1/igt@tools_test@sysfs_l3_parity.html - shard-dg1: NOTRUN -> [SKIP][275] ([i915#4818]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-16/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_submit_cl@bad-in-sync: - shard-dg1: NOTRUN -> [SKIP][276] ([i915#2575]) +5 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-15/igt@v3d/v3d_submit_cl@bad-in-sync.html * igt@v3d/v3d_submit_cl@simple-flush-cache: - shard-dg2: NOTRUN -> [SKIP][277] ([i915#2575]) +10 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-10/igt@v3d/v3d_submit_cl@simple-flush-cache.html * igt@v3d/v3d_submit_csd@bad-pad: - shard-tglu: NOTRUN -> [SKIP][278] ([i915#2575]) +13 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-5/igt@v3d/v3d_submit_csd@bad-pad.html * igt@v3d/v3d_wait_bo@bad-pad: - shard-mtlp: NOTRUN -> [SKIP][279] ([i915#2575]) +9 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-4/igt@v3d/v3d_wait_bo@bad-pad.html * igt@vc4/vc4_label_bo@set-label: - shard-rkl: NOTRUN -> [SKIP][280] ([i915#7711]) +5 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-6/igt@vc4/vc4_label_bo@set-label.html - shard-dg1: NOTRUN -> [SKIP][281] ([i915#7711]) +3 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-15/igt@vc4/vc4_label_bo@set-label.html * igt@vc4/vc4_purgeable_bo@access-purged-bo-mem: - shard-mtlp: NOTRUN -> [SKIP][282] ([i915#7711]) +5 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-6/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html * igt@vc4/vc4_tiling@get-after-free: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#7711]) +3 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-2/igt@vc4/vc4_tiling@get-after-free.html #### Possible fixes #### * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][284] ([i915#2842]) -> [PASS][285] [284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-glk2/igt@gem_exec_fair@basic-pace-share@rcs0.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-rkl: [FAIL][286] ([i915#2842]) -> [PASS][287] +2 other tests pass [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-rkl-4/igt@gem_exec_fair@basic-pace@vecs0.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-6/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_lmem_swapping@heavy-multi@lmem0: - shard-dg1: [FAIL][288] ([i915#10378]) -> [PASS][289] [288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-dg1-14/igt@gem_lmem_swapping@heavy-multi@lmem0.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-14/igt@gem_lmem_swapping@heavy-multi@lmem0.html * igt@gem_mmap_offset@clear@smem0: - shard-mtlp: [ABORT][290] ([i915#10029]) -> [PASS][291] [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-mtlp-4/igt@gem_mmap_offset@clear@smem0.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-1/igt@gem_mmap_offset@clear@smem0.html * igt@i915_module_load@reload: - shard-dg1: [DMESG-WARN][292] ([i915#4391] / [i915#4423]) -> [PASS][293] [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-dg1-13/igt@i915_module_load@reload.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-14/igt@i915_module_load@reload.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: [INCOMPLETE][294] ([i915#9820] / [i915#9849]) -> [PASS][295] [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-dg1-17/igt@i915_module_load@reload-with-fault-injection.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-13/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: - shard-dg1: [FAIL][296] ([i915#3591]) -> [PASS][297] +1 other test pass [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html * igt@i915_selftest@live@gt_heartbeat: - shard-dg2: [ABORT][298] ([i915#10366]) -> [PASS][299] [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-dg2-5/igt@i915_selftest@live@gt_heartbeat.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-10/igt@i915_selftest@live@gt_heartbeat.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite: - shard-dg2: [FAIL][300] ([i915#6880]) -> [PASS][301] [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: [FAIL][302] ([i915#9295]) -> [PASS][303] [302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-tglu-9/igt@kms_pm_dc@dc6-dpms.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-4/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2: [SKIP][304] ([i915#9519]) -> [PASS][305] +1 other test pass [304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-6/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_rotation_crc@primary-rotation-270: - shard-rkl: [INCOMPLETE][306] ([i915#8875] / [i915#9569]) -> [PASS][307] [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-rkl-1/igt@kms_rotation_crc@primary-rotation-270.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-4/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_setmode@basic@pipe-a-hdmi-a-1: - shard-snb: [FAIL][308] ([i915#5465]) -> [PASS][309] +1 other test pass [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-snb2/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-snb2/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1: - shard-tglu: [FAIL][310] ([i915#9196]) -> [PASS][311] [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html * igt@perf_pmu@rc6@runtime-pm-gt0: - shard-dg1: [DMESG-WARN][312] ([i915#4423]) -> [PASS][313] [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-dg1-13/igt@perf_pmu@rc6@runtime-pm-gt0.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-15/igt@perf_pmu@rc6@runtime-pm-gt0.html * igt@sysfs_timeslice_duration@duration@vecs1: - shard-dg2: [INCOMPLETE][314] -> [PASS][315] +1 other test pass [314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-dg2-11/igt@sysfs_timeslice_duration@duration@vecs1.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-5/igt@sysfs_timeslice_duration@duration@vecs1.html #### Warnings #### * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [DMESG-WARN][316] ([i915#4936] / [i915#5493]) -> [TIMEOUT][317] ([i915#5493]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0: - shard-tglu: [WARN][318] ([i915#2681]) -> [FAIL][319] ([i915#3591]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][320] ([i915#9424]) -> [SKIP][321] ([i915#9433]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-dg1-18/igt@kms_content_protection@mei-interface.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-18/igt@kms_content_protection@mei-interface.html * igt@kms_psr@psr-cursor-render: - shard-dg2: [SKIP][322] ([i915#9673] / [i915#9732]) -> [SKIP][323] ([i915#9732]) +10 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-dg2-11/igt@kms_psr@psr-cursor-render.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-5/igt@kms_psr@psr-cursor-render.html * igt@kms_psr@psr2-cursor-blt: - shard-dg2: [SKIP][324] ([i915#9732]) -> [SKIP][325] ([i915#9673] / [i915#9732]) +10 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-dg2-5/igt@kms_psr@psr2-cursor-blt.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-11/igt@kms_psr@psr2-cursor-blt.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-rkl: [INCOMPLETE][326] ([i915#8875] / [i915#9569]) -> [INCOMPLETE][327] ([i915#9569]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-rkl-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [CRASH][328] ([i915#9351]) -> [INCOMPLETE][329] ([i915#5493]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-dg2-6/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-2/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html * igt@runner@aborted: - shard-glk: ([FAIL][330], [FAIL][331]) -> [FAIL][332] ([i915#10291]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-glk5/igt@runner@aborted.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-glk3/igt@runner@aborted.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-glk2/igt@runner@aborted.html [i915#10029]: https://gitlab.freedesktop.org/drm/intel/issues/10029 [i915#10055]: https://gitlab.freedesktop.org/drm/intel/issues/10055 [i915#10105]: https://gitlab.freedesktop.org/drm/intel/issues/10105 [i915#10278]: https://gitlab.freedesktop.org/drm/intel/issues/10278 [i915#10291]: https://gitlab.freedesktop.org/drm/intel/issues/10291 [i915#10307]: https://gitlab.freedesktop.org/drm/intel/issues/10307 [i915#10366]: https://gitlab.freedesktop.org/drm/intel/issues/10366 [i915#10378]: https://gitlab.freedesktop.org/drm/intel/issues/10378 [i915#10386]: https://gitlab.freedesktop.org/drm/intel/issues/10386 [i915#10434]: https://gitlab.freedesktop.org/drm/intel/issues/10434 [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433 [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436 [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#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [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#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [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#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [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#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [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#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#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348 [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#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [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#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [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#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7443]: https://gitlab.freedesktop.org/drm/intel/issues/7443 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#7984]: https://gitlab.freedesktop.org/drm/intel/issues/7984 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399 [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#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8827]: https://gitlab.freedesktop.org/drm/intel/issues/8827 [i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067 [i915#9100]: https://gitlab.freedesktop.org/drm/intel/issues/9100 [i915#9162]: https://gitlab.freedesktop.org/drm/intel/issues/9162 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295 [i915#9301]: https://gitlab.freedesktop.org/drm/intel/issues/9301 [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/intel/issues/9340 [i915#9351]: https://gitlab.freedesktop.org/drm/intel/issues/9351 [i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412 [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#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9569]: https://gitlab.freedesktop.org/drm/intel/issues/9569 [i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606 [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673 [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723 [i915#9728]: https://gitlab.freedesktop.org/drm/intel/issues/9728 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9781]: https://gitlab.freedesktop.org/drm/intel/issues/9781 [i915#9808]: https://gitlab.freedesktop.org/drm/intel/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809 [i915#9812]: https://gitlab.freedesktop.org/drm/intel/issues/9812 [i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820 [i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849 [i915#9906]: https://gitlab.freedesktop.org/drm/intel/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/intel/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7771 -> IGTPW_10867 CI-20190529: 20190529 CI_DRM_14458: 1cbe0387180a61b6abb4f5a6261763adaecbf51b @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10867: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/index.html IGT_7771: 7771 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/index.html [-- Attachment #2: Type: text/html, Size: 106415 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: ✗ Fi.CI.IGT: failure for tests/xe_exec_threads: Fill in GT field for second balancer thread 2024-03-21 9:14 ` ✗ Fi.CI.IGT: failure " Patchwork @ 2024-03-21 13:23 ` Kamil Konieczny 0 siblings, 0 replies; 11+ messages in thread From: Kamil Konieczny @ 2024-03-21 13:23 UTC (permalink / raw) To: igt-dev; +Cc: Matt Roper, I915-ci-infra, lgci.bug.filing, TejasreeX Illipilli Hi igt-dev, On 2024-03-21 at 09:14:05 -0000, Patchwork wrote: > == Series Details == > > Series: tests/xe_exec_threads: Fill in GT field for second balancer thread > URL : https://patchwork.freedesktop.org/series/131382/ > State : failure > > == Summary == > > CI Bug Log - changes from CI_DRM_14458_full -> IGTPW_10867_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_10867_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_10867_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) 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_10867/index.html > > Participating hosts (9 -> 10) > ------------------------------ > > Additional (1): shard-snb-0 > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_10867_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@gem_exec_store@dword@vcs0: > - shard-mtlp: [PASS][1] -> [ABORT][2] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-mtlp-5/igt@gem_exec_store@dword@vcs0.html > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-8/igt@gem_exec_store@dword@vcs0.html > > * igt@kms_flip@plain-flip-ts-check@b-hdmi-a4: > - shard-dg1: NOTRUN -> [FAIL][3] +1 other test fail > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-17/igt@kms_flip@plain-flip-ts-check@b-hdmi-a4.html > > > #### Warnings #### > > * igt@gem_eio@kms: > - shard-dg1: [FAIL][4] ([i915#5784]) -> [INCOMPLETE][5] > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-dg1-13/igt@gem_eio@kms.html > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-17/igt@gem_eio@kms.html > These are unrelated to change in Xe test, no need for respin as this is already merged. Regards, Kamil > > Known issues > ------------ > > Here are the changes found in IGTPW_10867_full that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt@device_reset@cold-reset-bound: > - shard-dg1: NOTRUN -> [SKIP][6] ([i915#7701]) > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-15/igt@device_reset@cold-reset-bound.html ...cut... > > > Build changes > ------------- > > * CI: CI-20190529 -> None > * IGT: IGT_7771 -> IGTPW_10867 > > CI-20190529: 20190529 > CI_DRM_14458: 1cbe0387180a61b6abb4f5a6261763adaecbf51b @ git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_10867: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/index.html > IGT_7771: 7771 > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/index.html ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Fi.CI.IGT: success for tests/xe_exec_threads: Fill in GT field for second balancer thread 2024-03-20 19:23 [PATCH i-g-t] tests/xe_exec_threads: Fill in GT field for second balancer thread Matt Roper ` (3 preceding siblings ...) 2024-03-21 9:14 ` ✗ Fi.CI.IGT: failure " Patchwork @ 2024-03-25 8:54 ` Patchwork 4 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2024-03-25 8:54 UTC (permalink / raw) To: Matt Roper; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 87125 bytes --] == Series Details == Series: tests/xe_exec_threads: Fill in GT field for second balancer thread URL : https://patchwork.freedesktop.org/series/131382/ State : success == Summary == CI Bug Log - changes from CI_DRM_14458_full -> IGTPW_10867_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/index.html Participating hosts (9 -> 10) ------------------------------ Additional (1): shard-snb-0 Known issues ------------ Here are the changes found in IGTPW_10867_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@device_reset@cold-reset-bound: - shard-dg1: NOTRUN -> [SKIP][1] ([i915#7701]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-15/igt@device_reset@cold-reset-bound.html * igt@device_reset@unbind-cold-reset-rebind: - shard-mtlp: NOTRUN -> [SKIP][2] ([i915#7701]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-5/igt@device_reset@unbind-cold-reset-rebind.html - shard-dg2: NOTRUN -> [SKIP][3] ([i915#7701]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-11/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@busy-idle-check-all@ccs0: - shard-mtlp: NOTRUN -> [SKIP][4] ([i915#8414]) +6 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-7/igt@drm_fdinfo@busy-idle-check-all@ccs0.html * igt@drm_fdinfo@most-busy-check-all@bcs0: - shard-dg2: NOTRUN -> [SKIP][5] ([i915#8414]) +11 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-6/igt@drm_fdinfo@most-busy-check-all@bcs0.html * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: - shard-rkl: [PASS][6] -> [FAIL][7] ([i915#7742]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-6/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html * igt@drm_fdinfo@virtual-busy-hang: - shard-dg1: NOTRUN -> [SKIP][8] ([i915#8414]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-15/igt@drm_fdinfo@virtual-busy-hang.html * igt@gem_ccs@block-copy-compressed: - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#3555] / [i915#9323]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-3/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@suspend-resume: - shard-rkl: NOTRUN -> [SKIP][10] ([i915#9323]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-6/igt@gem_ccs@suspend-resume.html - shard-dg1: NOTRUN -> [SKIP][11] ([i915#9323]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-17/igt@gem_ccs@suspend-resume.html - shard-tglu: NOTRUN -> [SKIP][12] ([i915#9323]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-5/igt@gem_ccs@suspend-resume.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#7697]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-11/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-tglu: NOTRUN -> [SKIP][14] ([i915#6335]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-3/igt@gem_create@create-ext-cpu-access-sanity-check.html - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#6335]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-4/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_create@create-ext-set-pat: - shard-rkl: NOTRUN -> [SKIP][16] ([i915#8562]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-4/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglu: [PASS][17] -> [FAIL][18] ([i915#6268]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-tglu-4/igt@gem_ctx_exec@basic-nohangcheck.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-3/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-dg2: [PASS][19] -> [INCOMPLETE][20] ([i915#9162]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-dg2-5/igt@gem_ctx_isolation@preservation-s3@rcs0.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-2/igt@gem_ctx_isolation@preservation-s3@rcs0.html * igt@gem_ctx_persistence@heartbeat-many: - shard-dg1: NOTRUN -> [SKIP][21] ([i915#8555]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-15/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#5882]) +9 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-8/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs0: - shard-mtlp: NOTRUN -> [SKIP][23] ([i915#5882]) +5 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-8/igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs0.html * igt@gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][24] ([i915#280]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-1/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-args: - shard-dg1: NOTRUN -> [SKIP][25] ([i915#280]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-16/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@invalid-sseu: - shard-tglu: NOTRUN -> [SKIP][26] ([i915#280]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-8/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_exec_balancer@bonded-semaphore: - shard-mtlp: NOTRUN -> [SKIP][27] ([i915#4812]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-7/igt@gem_exec_balancer@bonded-semaphore.html - shard-dg2: NOTRUN -> [SKIP][28] ([i915#4812]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-11/igt@gem_exec_balancer@bonded-semaphore.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#4036]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-5/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][30] ([i915#4525]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-5/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_capture@capture@vecs0-lmem0: - shard-dg1: NOTRUN -> [FAIL][31] ([i915#10386]) +1 other test fail [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-14/igt@gem_exec_capture@capture@vecs0-lmem0.html * igt@gem_exec_capture@many-4k-incremental: - shard-glk: NOTRUN -> [FAIL][32] ([i915#9606]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-glk8/igt@gem_exec_capture@many-4k-incremental.html * igt@gem_exec_fair@basic-none-rrul: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#3539] / [i915#4852]) +5 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-5/igt@gem_exec_fair@basic-none-rrul.html - shard-dg1: NOTRUN -> [SKIP][34] ([i915#3539] / [i915#4852]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-16/igt@gem_exec_fair@basic-none-rrul.html - shard-mtlp: NOTRUN -> [SKIP][35] ([i915#4473] / [i915#4771]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-1/igt@gem_exec_fair@basic-none-rrul.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-rkl: NOTRUN -> [FAIL][36] ([i915#2842]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-4/igt@gem_exec_fair@basic-none-rrul@rcs0.html - shard-tglu: NOTRUN -> [FAIL][37] ([i915#2842]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-7/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-tglu: [PASS][38] -> [FAIL][39] ([i915#2842]) +1 other test fail [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-tglu-6/igt@gem_exec_fair@basic-none-share@rcs0.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-9/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-sync: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#3539]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-5/igt@gem_exec_fair@basic-sync.html * igt@gem_exec_fence@concurrent: - shard-dg1: NOTRUN -> [SKIP][41] ([i915#4812]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-16/igt@gem_exec_fence@concurrent.html * igt@gem_exec_reloc@basic-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#3281]) +6 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-6/igt@gem_exec_reloc@basic-cpu-noreloc.html * igt@gem_exec_reloc@basic-gtt-read-active: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#3281]) +6 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-10/igt@gem_exec_reloc@basic-gtt-read-active.html * igt@gem_exec_schedule@preempt-queue: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4537] / [i915#4812]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-5/igt@gem_exec_schedule@preempt-queue.html * igt@gem_exec_store@dword@vcs0: - shard-mtlp: [PASS][45] -> [ABORT][46] ([i915#8875]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-mtlp-5/igt@gem_exec_store@dword@vcs0.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-8/igt@gem_exec_store@dword@vcs0.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg1: [PASS][47] -> [ABORT][48] ([i915#7975] / [i915#8213]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-dg1-18/igt@gem_exec_suspend@basic-s4-devices@lmem0.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-14/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#4860]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-2/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_fenced_exec_thrash@too-many-fences: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4860]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-2/igt@gem_fenced_exec_thrash@too-many-fences.html * igt@gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][51] ([i915#2190]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-1/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0: - shard-dg2: [PASS][52] -> [FAIL][53] ([i915#10378]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-dg2-6/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-11/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html * igt@gem_lmem_swapping@heavy-verify-multi@lmem0: - shard-dg1: NOTRUN -> [FAIL][54] ([i915#10378]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-16/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html - shard-dg2: NOTRUN -> [FAIL][55] ([i915#10378]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-5/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html * igt@gem_lmem_swapping@parallel-multi: - shard-rkl: NOTRUN -> [SKIP][56] ([i915#4613]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-4/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@random-engines: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4613]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-7/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@smem-oom: - shard-tglu: NOTRUN -> [SKIP][58] ([i915#4613]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-8/igt@gem_lmem_swapping@smem-oom.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: NOTRUN -> [TIMEOUT][59] ([i915#5493]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-6/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][60] ([i915#4613]) +4 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-glk6/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_lmem_swapping@verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#4565]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-16/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html * igt@gem_mmap_gtt@coherency: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#4077]) +8 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-15/igt@gem_mmap_gtt@coherency.html * igt@gem_mmap_gtt@cpuset-medium-copy-odd: - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4077]) +6 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-3/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html * igt@gem_mmap_gtt@hang: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#4077]) +11 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-2/igt@gem_mmap_gtt@hang.html * igt@gem_mmap_wc@close: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#4083]) +3 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-8/igt@gem_mmap_wc@close.html * igt@gem_mmap_wc@fault-concurrent: - shard-dg1: NOTRUN -> [SKIP][66] ([i915#4083]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-18/igt@gem_mmap_wc@fault-concurrent.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-rkl: NOTRUN -> [SKIP][67] ([i915#3282]) +4 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-4/igt@gem_partial_pwrite_pread@writes-after-reads.html - shard-dg1: NOTRUN -> [SKIP][68] ([i915#3282]) +4 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-17/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_pread@self: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#3282]) +3 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-2/igt@gem_pread@self.html * igt@gem_pxp@create-regular-context-2: - shard-tglu: NOTRUN -> [SKIP][70] ([i915#4270]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-2/igt@gem_pxp@create-regular-context-2.html * igt@gem_pxp@fail-invalid-protected-context: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4270]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-8/igt@gem_pxp@fail-invalid-protected-context.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#4270]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-8/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-dg1: NOTRUN -> [SKIP][73] ([i915#4270]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-14/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html - shard-rkl: NOTRUN -> [SKIP][74] ([i915#4270]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-6/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_readwrite@read-bad-handle: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#3282]) +4 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-6/igt@gem_readwrite@read-bad-handle.html * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][76] ([i915#8428]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-2/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_render_copy@y-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#5190] / [i915#8428]) +3 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-10/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_pwrite: - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#4079]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-6/igt@gem_set_tiling_vs_pwrite.html * igt@gem_softpin@evict-snoop: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#4885]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-6/igt@gem_softpin@evict-snoop.html * igt@gem_softpin@evict-snoop-interruptible: - shard-mtlp: NOTRUN -> [SKIP][80] ([i915#4885]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-7/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_tiled_pread_basic: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#4079]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-2/igt@gem_tiled_pread_basic.html * igt@gem_unfence_active_buffers: - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#4879]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-5/igt@gem_unfence_active_buffers.html - shard-dg2: NOTRUN -> [SKIP][83] ([i915#4879]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-11/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@coherency-unsync: - shard-rkl: NOTRUN -> [SKIP][84] ([i915#3297]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-1/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#3297] / [i915#4880]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-18/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gem_userptr_blits@relocations: - shard-rkl: NOTRUN -> [SKIP][86] ([i915#3281]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-5/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@unsync-overlap: - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#3297]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-4/igt@gem_userptr_blits@unsync-overlap.html * igt@gem_userptr_blits@unsync-unmap: - shard-tglu: NOTRUN -> [SKIP][88] ([i915#3297]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-2/igt@gem_userptr_blits@unsync-unmap.html * igt@gen9_exec_parse@allowed-all: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#2856]) +2 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-10/igt@gen9_exec_parse@allowed-all.html - shard-tglu: NOTRUN -> [SKIP][90] ([i915#2527] / [i915#2856]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-4/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@batch-without-end: - shard-mtlp: NOTRUN -> [SKIP][91] ([i915#2856]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-4/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][92] ([i915#2527]) +2 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-5/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@shadow-peek: - shard-dg1: NOTRUN -> [SKIP][93] ([i915#2527]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-15/igt@gen9_exec_parse@shadow-peek.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: NOTRUN -> [INCOMPLETE][94] ([i915#9820] / [i915#9849]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-1/igt@i915_module_load@reload-with-fault-injection.html - shard-glk: [PASS][95] -> [ABORT][96] ([i915#9849]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-glk5/igt@i915_module_load@reload-with-fault-injection.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-glk3/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: NOTRUN -> [INCOMPLETE][97] ([i915#9820] / [i915#9849]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-reset: - shard-tglu: NOTRUN -> [SKIP][98] ([i915#8399]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-7/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-rkl: NOTRUN -> [SKIP][99] ([i915#8399]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-5/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_rps@thresholds-idle-park@gt0: - shard-mtlp: NOTRUN -> [SKIP][100] ([i915#8925]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-7/igt@i915_pm_rps@thresholds-idle-park@gt0.html * igt@i915_pm_rps@thresholds-idle-park@gt1: - shard-mtlp: NOTRUN -> [SKIP][101] ([i915#3555] / [i915#8925]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-7/igt@i915_pm_rps@thresholds-idle-park@gt1.html * igt@i915_power@sanity: - shard-mtlp: [PASS][102] -> [SKIP][103] ([i915#7984]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-mtlp-8/igt@i915_power@sanity.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-1/igt@i915_power@sanity.html - shard-rkl: NOTRUN -> [SKIP][104] ([i915#7984]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-4/igt@i915_power@sanity.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#6188]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-8/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_selftest@mock@memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][106] ([i915#9311]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-2/igt@i915_selftest@mock@memory_region.html - shard-rkl: NOTRUN -> [DMESG-WARN][107] ([i915#9311]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-4/igt@i915_selftest@mock@memory_region.html - shard-glk: NOTRUN -> [DMESG-WARN][108] ([i915#9311]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-glk8/igt@i915_selftest@mock@memory_region.html * igt@i915_suspend@basic-s3-without-i915: - shard-tglu: NOTRUN -> [INCOMPLETE][109] ([i915#7443]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-4/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#4212]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-18/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][111] ([i915#8709]) +3 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs: - shard-tglu: NOTRUN -> [SKIP][112] ([i915#8709]) +7 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-8/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-d-hdmi-a-2-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#8709]) +11 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-mtlp: NOTRUN -> [SKIP][114] ([i915#3555]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-rkl: NOTRUN -> [SKIP][115] ([i915#1769] / [i915#3555]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-addfb-size-overflow: - shard-dg1: NOTRUN -> [SKIP][116] ([i915#5286]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-14/igt@kms_big_fb@4-tiled-addfb-size-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#5286]) +4 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][118] ([i915#4538] / [i915#5286]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-15/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html - shard-tglu: NOTRUN -> [SKIP][119] ([i915#5286]) +2 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-9/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#3638]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-4/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html - shard-dg1: NOTRUN -> [SKIP][121] ([i915#3638]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-17/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#5190]) +2 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-5/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: NOTRUN -> [FAIL][123] ([i915#3743]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-mtlp: NOTRUN -> [SKIP][124] +18 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-3/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html - shard-dg2: NOTRUN -> [SKIP][125] ([i915#4538] / [i915#5190]) +6 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-2/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-mtlp: NOTRUN -> [SKIP][126] ([i915#6187]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-8/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu: NOTRUN -> [SKIP][127] +54 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg1: NOTRUN -> [SKIP][128] ([i915#4538]) +3 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_joiner@invalid-modeset: - shard-mtlp: NOTRUN -> [SKIP][129] ([i915#2705]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-1/igt@kms_big_joiner@invalid-modeset.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][130] ([i915#6095]) +75 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-16/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#10307] / [i915#10434]) +5 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-10/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs: - shard-tglu: NOTRUN -> [SKIP][132] ([i915#10278]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-6/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][133] ([i915#6095]) +63 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs: - shard-rkl: NOTRUN -> [SKIP][134] ([i915#10278]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#10307]) +157 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-8/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][136] ([i915#6095]) +23 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-edp-1.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][137] ([i915#6095]) +19 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-4/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_cdclk@mode-transition: - shard-tglu: NOTRUN -> [SKIP][138] ([i915#3742]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-3/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-rkl: NOTRUN -> [SKIP][139] ([i915#3742]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-4/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#4087]) +3 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-6/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html * igt@kms_chamelium_frames@dp-crc-multiple: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#7828]) +8 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-11/igt@kms_chamelium_frames@dp-crc-multiple.html * igt@kms_chamelium_hpd@dp-hpd-for-each-pipe: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#7828]) +6 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-4/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-tglu: NOTRUN -> [SKIP][143] ([i915#7828]) +3 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-4/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][144] ([i915#7828]) +3 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-17/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_chamelium_hpd@vga-hpd: - shard-mtlp: NOTRUN -> [SKIP][145] ([i915#7828]) +6 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-8/igt@kms_chamelium_hpd@vga-hpd.html * igt@kms_content_protection@atomic: - shard-tglu: NOTRUN -> [SKIP][146] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-9/igt@kms_content_protection@atomic.html * igt@kms_content_protection@content-type-change: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#9424]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-6/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg1: NOTRUN -> [SKIP][148] ([i915#3299]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-14/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@lic-type-0: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#9424]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-4/igt@kms_content_protection@lic-type-0.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][150] ([i915#3359]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-8/igt@kms_cursor_crc@cursor-offscreen-512x170.html - shard-dg2: NOTRUN -> [SKIP][151] ([i915#3359]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-5/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#3555]) +5 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-32x32.html - shard-dg1: NOTRUN -> [SKIP][153] ([i915#3555]) +3 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-17/igt@kms_cursor_crc@cursor-onscreen-32x32.html - shard-tglu: NOTRUN -> [SKIP][154] ([i915#3555]) +2 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-32x32.html - shard-mtlp: NOTRUN -> [SKIP][155] ([i915#3555] / [i915#8814]) +2 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-128x42: - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#8814]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-5/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-dg1: NOTRUN -> [SKIP][157] ([i915#3359]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-17/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#3555]) +4 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-tglu: NOTRUN -> [SKIP][159] ([i915#3359]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#9809]) +3 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-7/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#4103]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - shard-dg1: NOTRUN -> [SKIP][162] ([i915#4103] / [i915#4213]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-14/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - shard-tglu: NOTRUN -> [SKIP][163] ([i915#4103]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#4103] / [i915#4213]) +1 other test skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-10/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: NOTRUN -> [FAIL][165] ([i915#2346]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#9067]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-8/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#4213]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#9227]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2.html - shard-rkl: NOTRUN -> [SKIP][169] ([i915#9723]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-6/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2.html * igt@kms_display_modes@extended-mode-basic: - shard-mtlp: NOTRUN -> [SKIP][170] ([i915#3555] / [i915#8827]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-8/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dp_aux_dev: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#1257]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-5/igt@kms_dp_aux_dev.html - shard-tglu: NOTRUN -> [SKIP][172] ([i915#1257]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-7/igt@kms_dp_aux_dev.html * igt@kms_dsc@dsc-basic: - shard-rkl: NOTRUN -> [SKIP][173] ([i915#3555] / [i915#3840]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-5/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg1: NOTRUN -> [SKIP][174] ([i915#3840]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-18/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-formats: - shard-tglu: NOTRUN -> [SKIP][175] ([i915#3555] / [i915#3840]) +1 other test skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-6/igt@kms_dsc@dsc-with-formats.html - shard-dg2: NOTRUN -> [SKIP][176] ([i915#3555] / [i915#3840]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-10/igt@kms_dsc@dsc-with-formats.html * igt@kms_feature_discovery@display-3x: - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#1839]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-8/igt@kms_feature_discovery@display-3x.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible: - shard-dg2: NOTRUN -> [SKIP][178] +11 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-tglu: NOTRUN -> [SKIP][179] ([i915#3637]) +3 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-2/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-dg1: NOTRUN -> [SKIP][180] ([i915#9934]) +3 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-16/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#8381]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-10/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg1: NOTRUN -> [SKIP][182] ([i915#8381]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-15/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-mtlp: NOTRUN -> [SKIP][183] ([i915#3637]) +7 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ab-vga1-hdmi-a1: - shard-snb: [PASS][184] -> [FAIL][185] ([i915#2122]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-snb5/igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ab-vga1-hdmi-a1.html [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-snb7/igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ab-vga1-hdmi-a1.html * igt@kms_flip@plain-flip-ts-check@b-hdmi-a4: - shard-dg1: NOTRUN -> [FAIL][186] ([i915#2122]) +1 other test fail [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-17/igt@kms_flip@plain-flip-ts-check@b-hdmi-a4.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][187] ([i915#2672]) +2 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][188] ([i915#2587] / [i915#2672]) +1 other test skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][189] ([i915#2587] / [i915#2672]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#2672]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][191] ([i915#2672] / [i915#3555]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#2672]) +3 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move: - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#1825]) +22 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#5354]) +28 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary: - shard-dg2: [PASS][195] -> [FAIL][196] ([i915#6880]) +1 other test fail [195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][197] ([i915#10055]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#3023]) +20 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html - shard-dg1: NOTRUN -> [SKIP][199] ([i915#8708]) +11 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][200] +23 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#8708]) +15 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-rkl: NOTRUN -> [SKIP][202] ([i915#5439]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][203] ([i915#8708]) +7 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-rte: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#3458]) +17 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-rte.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][205] ([i915#1825]) +31 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][206] ([i915#3458]) +9 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html * igt@kms_hdr@bpc-switch: - shard-dg1: NOTRUN -> [SKIP][207] ([i915#3555] / [i915#8228]) +2 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-14/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@static-toggle: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#3555] / [i915#8228]) +1 other test skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-2/igt@kms_hdr@static-toggle.html - shard-rkl: NOTRUN -> [SKIP][209] ([i915#3555] / [i915#8228]) +1 other test skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-4/igt@kms_hdr@static-toggle.html - shard-tglu: NOTRUN -> [SKIP][210] ([i915#3555] / [i915#8228]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-8/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-dpms: - shard-mtlp: NOTRUN -> [SKIP][211] ([i915#3555] / [i915#8228]) +1 other test skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-1/igt@kms_hdr@static-toggle-dpms.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: - shard-dg1: [PASS][212] -> [FAIL][213] ([i915#8292]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-dg1-16/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-18/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-1: - shard-glk: NOTRUN -> [SKIP][214] +272 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-glk8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#9423]) +7 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][216] ([i915#9423]) +11 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-18/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][217] ([i915#5176]) +3 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-b-edp-1.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][218] ([i915#9423]) +5 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][219] ([i915#5235]) +3 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-8/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#5235] / [i915#9423] / [i915#9728]) +3 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][221] ([i915#5235]) +2 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#3555] / [i915#5235]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#5235] / [i915#9423]) +15 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-2.html - shard-rkl: NOTRUN -> [SKIP][224] ([i915#5235]) +5 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][225] ([i915#5235]) +3 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-16/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-4.html * igt@kms_pm_backlight@fade-with-suspend: - shard-tglu: NOTRUN -> [SKIP][226] ([i915#9812]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-5/igt@kms_pm_backlight@fade-with-suspend.html - shard-dg1: NOTRUN -> [SKIP][227] ([i915#5354]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-18/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#9340]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-5/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [FAIL][229] ([i915#9301]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-7/igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-1.html * igt@kms_pm_lpsp@screens-disabled: - shard-rkl: NOTRUN -> [SKIP][230] ([i915#8430]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-6/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: [PASS][231] -> [SKIP][232] ([i915#9519]) +3 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-rkl-4/igt@kms_pm_rpm@dpms-lpsp.html [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][233] ([i915#9519]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: [PASS][234] -> [SKIP][235] ([i915#9519]) +3 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_prime@d3hot: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#6524]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-6/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-cursor-plane-update-sf@psr2-pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][237] ([i915#9808]) +1 other test skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-8/igt@kms_psr2_sf@fbc-cursor-plane-update-sf@psr2-pipe-a-edp-1.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#4348]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-dg1: NOTRUN -> [SKIP][239] ([i915#9683]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-15/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#9683]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-2/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-tglu: NOTRUN -> [SKIP][241] ([i915#9683]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-8/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-basic: - shard-mtlp: NOTRUN -> [SKIP][242] ([i915#9688]) +9 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-5/igt@kms_psr@fbc-pr-basic.html * igt@kms_psr@fbc-psr-basic: - shard-dg2: NOTRUN -> [SKIP][243] ([i915#9673] / [i915#9732]) +3 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-11/igt@kms_psr@fbc-psr-basic.html * igt@kms_psr@fbc-psr-primary-page-flip: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#9732]) +8 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-2/igt@kms_psr@fbc-psr-primary-page-flip.html * igt@kms_psr@fbc-psr-sprite-plane-move: - shard-tglu: NOTRUN -> [SKIP][245] ([i915#9732]) +14 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-3/igt@kms_psr@fbc-psr-sprite-plane-move.html * igt@kms_psr@pr-sprite-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][246] ([i915#9732]) +17 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-6/igt@kms_psr@pr-sprite-mmap-gtt.html - shard-dg1: NOTRUN -> [SKIP][247] ([i915#9732]) +9 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-17/igt@kms_psr@pr-sprite-mmap-gtt.html * igt@kms_psr@psr2-cursor-plane-move@edp-1: - shard-mtlp: [PASS][248] -> [FAIL][249] ([i915#10105]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-mtlp-5/igt@kms_psr@psr2-cursor-plane-move@edp-1.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-2/igt@kms_psr@psr2-cursor-plane-move@edp-1.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg1: NOTRUN -> [SKIP][250] ([i915#5289]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-17/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][251] ([i915#5289]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-snb: NOTRUN -> [SKIP][252] +4 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-snb6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-tglu: NOTRUN -> [SKIP][253] ([i915#5289]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1: - shard-tglu: [PASS][254] -> [FAIL][255] ([i915#9196]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-tglu: NOTRUN -> [SKIP][256] ([i915#9906]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-6/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-dg1: NOTRUN -> [SKIP][257] ([i915#9906]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-15/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-fb-id: - shard-mtlp: NOTRUN -> [SKIP][258] ([i915#2437]) +1 other test skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-8/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-pixel-formats: - shard-tglu: NOTRUN -> [SKIP][259] ([i915#2437] / [i915#9412]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-8/igt@kms_writeback@writeback-pixel-formats.html - shard-glk: NOTRUN -> [SKIP][260] ([i915#2437]) +1 other test skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-glk8/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-mtlp: NOTRUN -> [SKIP][261] ([i915#7387]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-6/igt@perf@gen8-unprivileged-single-ctx-counters.html - shard-dg2: NOTRUN -> [SKIP][262] ([i915#2436] / [i915#7387]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-2/igt@perf@gen8-unprivileged-single-ctx-counters.html - shard-rkl: NOTRUN -> [SKIP][263] ([i915#2436]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-5/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: NOTRUN -> [FAIL][264] ([i915#9100]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-10/igt@perf@non-zero-reason@0-rcs0.html * igt@perf@unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][265] ([i915#2433]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-4/igt@perf@unprivileged-single-ctx-counters.html * igt@prime_vgem@basic-fence-mmap: - shard-mtlp: NOTRUN -> [SKIP][266] ([i915#3708] / [i915#4077]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-5/igt@prime_vgem@basic-fence-mmap.html - shard-dg2: NOTRUN -> [SKIP][267] ([i915#3708] / [i915#4077]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-11/igt@prime_vgem@basic-fence-mmap.html - shard-dg1: NOTRUN -> [SKIP][268] ([i915#3708] / [i915#4077]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-16/igt@prime_vgem@basic-fence-mmap.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-mtlp: NOTRUN -> [SKIP][269] ([i915#9917]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-7/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-tglu: NOTRUN -> [SKIP][270] ([i915#9917]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-3/igt@sriov_basic@enable-vfs-bind-unbind-each.html * igt@syncobj_timeline@invalid-wait-zero-handles: - shard-glk: NOTRUN -> [FAIL][271] ([i915#9781]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-glk3/igt@syncobj_timeline@invalid-wait-zero-handles.html * igt@tools_test@sysfs_l3_parity: - shard-rkl: NOTRUN -> [SKIP][272] +35 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-1/igt@tools_test@sysfs_l3_parity.html - shard-dg1: NOTRUN -> [SKIP][273] ([i915#4818]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-16/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_submit_cl@bad-in-sync: - shard-dg1: NOTRUN -> [SKIP][274] ([i915#2575]) +5 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-15/igt@v3d/v3d_submit_cl@bad-in-sync.html * igt@v3d/v3d_submit_cl@simple-flush-cache: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#2575]) +10 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-10/igt@v3d/v3d_submit_cl@simple-flush-cache.html * igt@v3d/v3d_submit_csd@bad-pad: - shard-tglu: NOTRUN -> [SKIP][276] ([i915#2575]) +13 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-5/igt@v3d/v3d_submit_csd@bad-pad.html * igt@v3d/v3d_wait_bo@bad-pad: - shard-mtlp: NOTRUN -> [SKIP][277] ([i915#2575]) +9 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-4/igt@v3d/v3d_wait_bo@bad-pad.html * igt@vc4/vc4_label_bo@set-label: - shard-rkl: NOTRUN -> [SKIP][278] ([i915#7711]) +5 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-6/igt@vc4/vc4_label_bo@set-label.html - shard-dg1: NOTRUN -> [SKIP][279] ([i915#7711]) +3 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-15/igt@vc4/vc4_label_bo@set-label.html * igt@vc4/vc4_purgeable_bo@access-purged-bo-mem: - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#7711]) +5 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-6/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html * igt@vc4/vc4_tiling@get-after-free: - shard-dg2: NOTRUN -> [SKIP][281] ([i915#7711]) +3 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-2/igt@vc4/vc4_tiling@get-after-free.html #### Possible fixes #### * igt@gem_eio@kms: - shard-dg2: [INCOMPLETE][282] ([i915#10513]) -> [PASS][283] [282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-dg2-6/igt@gem_eio@kms.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-11/igt@gem_eio@kms.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][284] ([i915#2842]) -> [PASS][285] [284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-glk2/igt@gem_exec_fair@basic-pace-share@rcs0.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-rkl: [FAIL][286] ([i915#2842]) -> [PASS][287] +2 other tests pass [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-rkl-4/igt@gem_exec_fair@basic-pace@vecs0.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-6/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_lmem_swapping@heavy-multi@lmem0: - shard-dg1: [FAIL][288] ([i915#10378]) -> [PASS][289] [288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-dg1-14/igt@gem_lmem_swapping@heavy-multi@lmem0.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-14/igt@gem_lmem_swapping@heavy-multi@lmem0.html * igt@gem_mmap_offset@clear@smem0: - shard-mtlp: [ABORT][290] ([i915#10029]) -> [PASS][291] [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-mtlp-4/igt@gem_mmap_offset@clear@smem0.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-mtlp-1/igt@gem_mmap_offset@clear@smem0.html * igt@i915_module_load@reload: - shard-dg1: [DMESG-WARN][292] ([i915#4391] / [i915#4423]) -> [PASS][293] [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-dg1-13/igt@i915_module_load@reload.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-14/igt@i915_module_load@reload.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: [INCOMPLETE][294] ([i915#9820] / [i915#9849]) -> [PASS][295] [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-dg1-17/igt@i915_module_load@reload-with-fault-injection.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-13/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: - shard-dg1: [FAIL][296] ([i915#3591]) -> [PASS][297] +1 other test pass [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html * igt@i915_selftest@live@gt_heartbeat: - shard-dg2: [ABORT][298] ([i915#10366]) -> [PASS][299] [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-dg2-5/igt@i915_selftest@live@gt_heartbeat.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-10/igt@i915_selftest@live@gt_heartbeat.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite: - shard-dg2: [FAIL][300] ([i915#6880]) -> [PASS][301] [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: [FAIL][302] ([i915#9295]) -> [PASS][303] [302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-tglu-9/igt@kms_pm_dc@dc6-dpms.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-4/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2: [SKIP][304] ([i915#9519]) -> [PASS][305] +1 other test pass [304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-6/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_rotation_crc@primary-rotation-270: - shard-rkl: [INCOMPLETE][306] ([i915#8875] / [i915#9569]) -> [PASS][307] [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-rkl-1/igt@kms_rotation_crc@primary-rotation-270.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-4/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_setmode@basic@pipe-a-hdmi-a-1: - shard-snb: [FAIL][308] ([i915#5465]) -> [PASS][309] +1 other test pass [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-snb2/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-snb2/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1: - shard-tglu: [FAIL][310] ([i915#9196]) -> [PASS][311] [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html * igt@perf_pmu@rc6@runtime-pm-gt0: - shard-dg1: [DMESG-WARN][312] ([i915#4423]) -> [PASS][313] [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-dg1-13/igt@perf_pmu@rc6@runtime-pm-gt0.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-15/igt@perf_pmu@rc6@runtime-pm-gt0.html * igt@sysfs_timeslice_duration@duration@vecs1: - shard-dg2: [INCOMPLETE][314] -> [PASS][315] [314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-dg2-11/igt@sysfs_timeslice_duration@duration@vecs1.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-5/igt@sysfs_timeslice_duration@duration@vecs1.html #### Warnings #### * igt@gem_eio@kms: - shard-dg1: [FAIL][316] ([i915#5784]) -> [INCOMPLETE][317] ([i915#10513]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-dg1-13/igt@gem_eio@kms.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-17/igt@gem_eio@kms.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [DMESG-WARN][318] ([i915#4936] / [i915#5493]) -> [TIMEOUT][319] ([i915#5493]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0: - shard-tglu: [WARN][320] ([i915#2681]) -> [FAIL][321] ([i915#3591]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][322] ([i915#9424]) -> [SKIP][323] ([i915#9433]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-dg1-18/igt@kms_content_protection@mei-interface.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg1-18/igt@kms_content_protection@mei-interface.html * igt@kms_psr@psr-cursor-render: - shard-dg2: [SKIP][324] ([i915#9673] / [i915#9732]) -> [SKIP][325] ([i915#9732]) +10 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-dg2-11/igt@kms_psr@psr-cursor-render.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-5/igt@kms_psr@psr-cursor-render.html * igt@kms_psr@psr2-cursor-blt: - shard-dg2: [SKIP][326] ([i915#9732]) -> [SKIP][327] ([i915#9673] / [i915#9732]) +10 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-dg2-5/igt@kms_psr@psr2-cursor-blt.html [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-11/igt@kms_psr@psr2-cursor-blt.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-rkl: [INCOMPLETE][328] ([i915#8875] / [i915#9569]) -> [INCOMPLETE][329] ([i915#9569]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-rkl-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-rkl-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [CRASH][330] ([i915#9351]) -> [INCOMPLETE][331] ([i915#5493]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-dg2-6/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-dg2-2/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html * igt@runner@aborted: - shard-glk: ([FAIL][332], [FAIL][333]) -> [FAIL][334] ([i915#10291]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-glk5/igt@runner@aborted.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14458/shard-glk3/igt@runner@aborted.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/shard-glk2/igt@runner@aborted.html [i915#10029]: https://gitlab.freedesktop.org/drm/intel/issues/10029 [i915#10055]: https://gitlab.freedesktop.org/drm/intel/issues/10055 [i915#10105]: https://gitlab.freedesktop.org/drm/intel/issues/10105 [i915#10278]: https://gitlab.freedesktop.org/drm/intel/issues/10278 [i915#10291]: https://gitlab.freedesktop.org/drm/intel/issues/10291 [i915#10307]: https://gitlab.freedesktop.org/drm/intel/issues/10307 [i915#10366]: https://gitlab.freedesktop.org/drm/intel/issues/10366 [i915#10378]: https://gitlab.freedesktop.org/drm/intel/issues/10378 [i915#10386]: https://gitlab.freedesktop.org/drm/intel/issues/10386 [i915#10434]: https://gitlab.freedesktop.org/drm/intel/issues/10434 [i915#10513]: https://gitlab.freedesktop.org/drm/intel/issues/10513 [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433 [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436 [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#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [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#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [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#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [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#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [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#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#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348 [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#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [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#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [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#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7443]: https://gitlab.freedesktop.org/drm/intel/issues/7443 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#7984]: https://gitlab.freedesktop.org/drm/intel/issues/7984 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399 [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#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8827]: https://gitlab.freedesktop.org/drm/intel/issues/8827 [i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067 [i915#9100]: https://gitlab.freedesktop.org/drm/intel/issues/9100 [i915#9162]: https://gitlab.freedesktop.org/drm/intel/issues/9162 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295 [i915#9301]: https://gitlab.freedesktop.org/drm/intel/issues/9301 [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/intel/issues/9340 [i915#9351]: https://gitlab.freedesktop.org/drm/intel/issues/9351 [i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412 [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#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9569]: https://gitlab.freedesktop.org/drm/intel/issues/9569 [i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606 [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673 [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723 [i915#9728]: https://gitlab.freedesktop.org/drm/intel/issues/9728 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9781]: https://gitlab.freedesktop.org/drm/intel/issues/9781 [i915#9808]: https://gitlab.freedesktop.org/drm/intel/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809 [i915#9812]: https://gitlab.freedesktop.org/drm/intel/issues/9812 [i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820 [i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849 [i915#9906]: https://gitlab.freedesktop.org/drm/intel/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/intel/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7771 -> IGTPW_10867 CI-20190529: 20190529 CI_DRM_14458: 1cbe0387180a61b6abb4f5a6261763adaecbf51b @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10867: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/index.html IGT_7771: 7771 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10867/index.html [-- Attachment #2: Type: text/html, Size: 106456 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2024-03-25 8:54 UTC | newest] Thread overview: 11+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-03-20 19:23 [PATCH i-g-t] tests/xe_exec_threads: Fill in GT field for second balancer thread Matt Roper 2024-03-20 20:47 ` Lucas De Marchi 2024-03-21 1:04 ` Matthew Brost 2024-03-21 6:01 ` Lucas De Marchi 2024-03-21 18:43 ` Matthew Brost 2024-03-20 21:02 ` ✓ Fi.CI.BAT: success for " Patchwork 2024-03-20 21:11 ` ✓ CI.xeBAT: " Patchwork 2024-03-20 21:35 ` Matt Roper 2024-03-21 9:14 ` ✗ Fi.CI.IGT: failure " Patchwork 2024-03-21 13:23 ` Kamil Konieczny 2024-03-25 8:54 ` ✓ Fi.CI.IGT: success " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox