* [PATCH i-g-t] tests/xe_eudebug_online: correct calculate the time diff
@ 2025-01-10 15:34 Maciej Patelczyk
2025-01-10 18:20 ` ✓ i915.CI.BAT: success for " Patchwork
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: Maciej Patelczyk @ 2025-01-10 15:34 UTC (permalink / raw)
To: igt-dev; +Cc: Maciej Patelczyk, Dominik Grzegorzek
When calculating time difference between two timespec values use
library function which does it right.
Previous way wasn't working well on slower machines. It was only
taking the tv_nsec field from struct timespec.
Fixes: bbf1730baf ("tests/xe_eudebug_online: Debug client which
runs workloads on EU")
CC: Dominik Grzegorzek <dominik.grzegorzek@intel.com>
Signed-off-by: Maciej Patelczyk <maciej.patelczyk@intel.com>
---
tests/intel/xe_eudebug_online.c | 13 ++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)
diff --git a/tests/intel/xe_eudebug_online.c b/tests/intel/xe_eudebug_online.c
index 052774a3b..f532387af 100644
--- a/tests/intel/xe_eudebug_online.c
+++ b/tests/intel/xe_eudebug_online.c
@@ -2235,6 +2235,11 @@ static int find_suitable_engines(struct drm_xe_engine_class_instance **hwes,
return engine_count;
}
+static uint64_t timespecs_diff_us(struct timespec *ts1, struct timespec *ts2)
+{
+ return (uint64_t)(fabs(igt_time_elapsed(ts1, ts2)) * USEC_PER_SEC);
+}
+
/**
* SUBTEST: breakpoint-many-sessions-single-tile
* Description:
@@ -2255,7 +2260,7 @@ static void test_many_sessions_on_tiles(int fd, bool multi_tile)
struct online_debug_data **data;
struct drm_xe_engine_class_instance **hwe;
struct drm_xe_eudebug_event_eu_attention *eus;
- uint64_t current_t, next_t, diff;
+ uint64_t diff;
int attempt_mask = 0, final_mask, should_break;
int i;
@@ -2318,10 +2323,8 @@ static void test_many_sessions_on_tiles(int fd, bool multi_tile)
igt_assert_eq(attempt_mask, final_mask);
for (i = 0; i < n - 1; i++) {
- /* Convert timestamps to microseconds */
- current_t = data[i]->exception_arrived.tv_nsec * 1000;
- next_t = data[i + 1]->exception_arrived.tv_nsec * 1000;
- diff = current_t < next_t ? next_t - current_t : current_t - next_t;
+ diff = timespecs_diff_us(&data[i]->exception_arrived,
+ &data[i + 1]->exception_arrived);
if (multi_tile)
igt_assert_f(diff < WORKLOAD_DELAY_US,
--
2.43.0
^ permalink raw reply related [flat|nested] 6+ messages in thread* ✓ i915.CI.BAT: success for tests/xe_eudebug_online: correct calculate the time diff 2025-01-10 15:34 [PATCH i-g-t] tests/xe_eudebug_online: correct calculate the time diff Maciej Patelczyk @ 2025-01-10 18:20 ` Patchwork 2025-01-10 18:23 ` ✓ Xe.CI.BAT: " Patchwork ` (2 subsequent siblings) 3 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2025-01-10 18:20 UTC (permalink / raw) To: Maciej Patelczyk; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3206 bytes --] == Series Details == Series: tests/xe_eudebug_online: correct calculate the time diff URL : https://patchwork.freedesktop.org/series/143401/ State : success == Summary == CI Bug Log - changes from IGT_8188 -> IGTPW_12427 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/index.html Participating hosts (38 -> 37) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12427 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@workarounds: - bat-arlh-3: [PASS][1] -> [DMESG-FAIL][2] ([i915#13393]) +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/bat-arlh-3/igt@i915_selftest@live@workarounds.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/bat-arlh-3/igt@i915_selftest@live@workarounds.html - bat-arls-5: [PASS][3] -> [DMESG-FAIL][4] ([i915#13393]) +1 other test dmesg-fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/bat-arls-5/igt@i915_selftest@live@workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/bat-arls-5/igt@i915_selftest@live@workarounds.html #### Possible fixes #### * igt@i915_selftest@live: - bat-mtlp-8: [DMESG-FAIL][5] ([i915#13393]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/bat-mtlp-8/igt@i915_selftest@live.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/bat-mtlp-8/igt@i915_selftest@live.html * igt@i915_selftest@live@gt_mocs: - bat-twl-2: [ABORT][7] ([i915#12919]) -> [PASS][8] +1 other test pass [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/bat-twl-2/igt@i915_selftest@live@gt_mocs.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/bat-twl-2/igt@i915_selftest@live@gt_mocs.html * igt@i915_selftest@live@workarounds: - {bat-mtlp-9}: [DMESG-FAIL][9] ([i915#13393]) -> [PASS][10] +1 other test pass [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/bat-mtlp-9/igt@i915_selftest@live@workarounds.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919 [i915#13393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13393 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8188 -> IGTPW_12427 CI-20190529: 20190529 CI_DRM_15942: 00f4619246294b1de4bac42742cfef95c1f37fde @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12427: 0f443b1b8112f9f7af4376873752e73d730dea5e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8188: ef0abf7f39a7ef0ecf2f08c62b90b852c435c755 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/index.html [-- Attachment #2: Type: text/html, Size: 4128 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ Xe.CI.BAT: success for tests/xe_eudebug_online: correct calculate the time diff 2025-01-10 15:34 [PATCH i-g-t] tests/xe_eudebug_online: correct calculate the time diff Maciej Patelczyk 2025-01-10 18:20 ` ✓ i915.CI.BAT: success for " Patchwork @ 2025-01-10 18:23 ` Patchwork 2025-01-13 8:26 ` [PATCH i-g-t] " Hajda, Andrzej 2025-01-14 20:48 ` ✗ i915.CI.Full: failure for " Patchwork 3 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2025-01-10 18:23 UTC (permalink / raw) To: Maciej Patelczyk; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 965 bytes --] == Series Details == Series: tests/xe_eudebug_online: correct calculate the time diff URL : https://patchwork.freedesktop.org/series/143401/ State : success == Summary == CI Bug Log - changes from XEIGT_8188_BAT -> XEIGTPW_12427_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8188 -> IGTPW_12427 IGTPW_12427: 0f443b1b8112f9f7af4376873752e73d730dea5e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8188: ef0abf7f39a7ef0ecf2f08c62b90b852c435c755 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2474-00f4619246294b1de4bac42742cfef95c1f37fde: 00f4619246294b1de4bac42742cfef95c1f37fde == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12427/index.html [-- Attachment #2: Type: text/html, Size: 1510 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH i-g-t] tests/xe_eudebug_online: correct calculate the time diff 2025-01-10 15:34 [PATCH i-g-t] tests/xe_eudebug_online: correct calculate the time diff Maciej Patelczyk 2025-01-10 18:20 ` ✓ i915.CI.BAT: success for " Patchwork 2025-01-10 18:23 ` ✓ Xe.CI.BAT: " Patchwork @ 2025-01-13 8:26 ` Hajda, Andrzej 2025-01-13 8:47 ` Maciej Patelczyk 2025-01-14 20:48 ` ✗ i915.CI.Full: failure for " Patchwork 3 siblings, 1 reply; 6+ messages in thread From: Hajda, Andrzej @ 2025-01-13 8:26 UTC (permalink / raw) To: Maciej Patelczyk, igt-dev; +Cc: Dominik Grzegorzek W dniu 10.01.2025 o 16:34, Maciej Patelczyk pisze: > When calculating time difference between two timespec values use > library function which does it right. > > Previous way wasn't working well on slower machines. It was only > taking the tv_nsec field from struct timespec. > > Fixes: bbf1730baf ("tests/xe_eudebug_online: Debug client which > runs workloads on EU") > CC: Dominik Grzegorzek <dominik.grzegorzek@intel.com> > Signed-off-by: Maciej Patelczyk <maciej.patelczyk@intel.com> > --- > tests/intel/xe_eudebug_online.c | 13 ++++++++----- > 1 file changed, 8 insertions(+), 5 deletions(-) > > diff --git a/tests/intel/xe_eudebug_online.c b/tests/intel/xe_eudebug_online.c > index 052774a3b..f532387af 100644 > --- a/tests/intel/xe_eudebug_online.c > +++ b/tests/intel/xe_eudebug_online.c > @@ -2235,6 +2235,11 @@ static int find_suitable_engines(struct drm_xe_engine_class_instance **hwes, > return engine_count; > } > > +static uint64_t timespecs_diff_us(struct timespec *ts1, struct timespec *ts2) > +{ > + return (uint64_t)(fabs(igt_time_elapsed(ts1, ts2)) * USEC_PER_SEC); It seems igt_time_elapsed handles correctly case ts1 > ts2, so the conversion looks correct. Something to bikeshed is the conversion from int type to double, then int again, up to you. I think there is no need to explicit conversion to uint64_t, no big deal. Reviewed-by: Andrzej Hajda <andrzej.hajda@intel.com> Regards Andrzej > +} > + > /** > * SUBTEST: breakpoint-many-sessions-single-tile > * Description: > @@ -2255,7 +2260,7 @@ static void test_many_sessions_on_tiles(int fd, bool multi_tile) > struct online_debug_data **data; > struct drm_xe_engine_class_instance **hwe; > struct drm_xe_eudebug_event_eu_attention *eus; > - uint64_t current_t, next_t, diff; > + uint64_t diff; > int attempt_mask = 0, final_mask, should_break; > int i; > > @@ -2318,10 +2323,8 @@ static void test_many_sessions_on_tiles(int fd, bool multi_tile) > igt_assert_eq(attempt_mask, final_mask); > > for (i = 0; i < n - 1; i++) { > - /* Convert timestamps to microseconds */ > - current_t = data[i]->exception_arrived.tv_nsec * 1000; > - next_t = data[i + 1]->exception_arrived.tv_nsec * 1000; > - diff = current_t < next_t ? next_t - current_t : current_t - next_t; > + diff = timespecs_diff_us(&data[i]->exception_arrived, > + &data[i + 1]->exception_arrived); > > if (multi_tile) > igt_assert_f(diff < WORKLOAD_DELAY_US, ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH i-g-t] tests/xe_eudebug_online: correct calculate the time diff 2025-01-13 8:26 ` [PATCH i-g-t] " Hajda, Andrzej @ 2025-01-13 8:47 ` Maciej Patelczyk 0 siblings, 0 replies; 6+ messages in thread From: Maciej Patelczyk @ 2025-01-13 8:47 UTC (permalink / raw) To: Hajda, Andrzej, igt-dev; +Cc: Dominik Grzegorzek On 13.01.2025 09:26, Hajda, Andrzej wrote: > > W dniu 10.01.2025 o 16:34, Maciej Patelczyk pisze: >> When calculating time difference between two timespec values use >> library function which does it right. >> >> Previous way wasn't working well on slower machines. It was only >> taking the tv_nsec field from struct timespec. >> >> Fixes: bbf1730baf ("tests/xe_eudebug_online: Debug client which >> runs workloads on EU") >> CC: Dominik Grzegorzek <dominik.grzegorzek@intel.com> >> Signed-off-by: Maciej Patelczyk <maciej.patelczyk@intel.com> >> --- >> tests/intel/xe_eudebug_online.c | 13 ++++++++----- >> 1 file changed, 8 insertions(+), 5 deletions(-) >> >> diff --git a/tests/intel/xe_eudebug_online.c >> b/tests/intel/xe_eudebug_online.c >> index 052774a3b..f532387af 100644 >> --- a/tests/intel/xe_eudebug_online.c >> +++ b/tests/intel/xe_eudebug_online.c >> @@ -2235,6 +2235,11 @@ static int find_suitable_engines(struct >> drm_xe_engine_class_instance **hwes, >> return engine_count; >> } >> +static uint64_t timespecs_diff_us(struct timespec *ts1, struct >> timespec *ts2) >> +{ >> + return (uint64_t)(fabs(igt_time_elapsed(ts1, ts2)) * USEC_PER_SEC); > > > It seems igt_time_elapsed handles correctly case ts1 > ts2, so the > conversion looks correct. > > Something to bikeshed is the conversion from int type to double, then > int again, up to you. > > I think there is no need to explicit conversion to uint64_t, no big deal. > > Reviewed-by: Andrzej Hajda <andrzej.hajda@intel.com> > > Regards > Andrzej > > Thanks Andrzej. I wanted encapsulate all in that function so that no further changes are needed. I could change the diff variable to double but since WORKLOAD_DELAY_US is long int what's the point? Some conversion is unavoidable anyway. Regards, Maciej >> +} >> + >> /** >> * SUBTEST: breakpoint-many-sessions-single-tile >> * Description: >> @@ -2255,7 +2260,7 @@ static void test_many_sessions_on_tiles(int fd, >> bool multi_tile) >> struct online_debug_data **data; >> struct drm_xe_engine_class_instance **hwe; >> struct drm_xe_eudebug_event_eu_attention *eus; >> - uint64_t current_t, next_t, diff; >> + uint64_t diff; >> int attempt_mask = 0, final_mask, should_break; >> int i; >> @@ -2318,10 +2323,8 @@ static void test_many_sessions_on_tiles(int >> fd, bool multi_tile) >> igt_assert_eq(attempt_mask, final_mask); >> for (i = 0; i < n - 1; i++) { >> - /* Convert timestamps to microseconds */ >> - current_t = data[i]->exception_arrived.tv_nsec * 1000; >> - next_t = data[i + 1]->exception_arrived.tv_nsec * 1000; >> - diff = current_t < next_t ? next_t - current_t : current_t - >> next_t; >> + diff = timespecs_diff_us(&data[i]->exception_arrived, >> + &data[i + 1]->exception_arrived); >> if (multi_tile) >> igt_assert_f(diff < WORKLOAD_DELAY_US, ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ i915.CI.Full: failure for tests/xe_eudebug_online: correct calculate the time diff 2025-01-10 15:34 [PATCH i-g-t] tests/xe_eudebug_online: correct calculate the time diff Maciej Patelczyk ` (2 preceding siblings ...) 2025-01-13 8:26 ` [PATCH i-g-t] " Hajda, Andrzej @ 2025-01-14 20:48 ` Patchwork 3 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2025-01-14 20:48 UTC (permalink / raw) To: Maciej Patelczyk; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100276 bytes --] == Series Details == Series: tests/xe_eudebug_online: correct calculate the time diff URL : https://patchwork.freedesktop.org/series/143401/ State : failure == Summary == CI Bug Log - changes from IGT_8188_full -> IGTPW_12427_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12427_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12427_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_12427/index.html Participating hosts (12 -> 11) ------------------------------ Missing (1): shard-glk-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12427_full: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@live: - shard-rkl: [PASS][1] -> [DMESG-FAIL][2] +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-1/igt@i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-4/igt@i915_selftest@live.html * igt@kms_flip@flip-vs-fences-interruptible@a-vga1: - shard-snb: [PASS][3] -> [INCOMPLETE][4] +1 other test incomplete [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-snb2/igt@kms_flip@flip-vs-fences-interruptible@a-vga1.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-snb2/igt@kms_flip@flip-vs-fences-interruptible@a-vga1.html * igt@kms_pm_dc@dc5-psr: - shard-mtlp: [PASS][5] -> [FAIL][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-mtlp-6/igt@kms_pm_dc@dc5-psr.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-1/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_rpm@fences-dpms: - shard-rkl: [PASS][7] -> [SKIP][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-3/igt@kms_pm_rpm@fences-dpms.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-5/igt@kms_pm_rpm@fences-dpms.html * igt@kms_setmode@basic@pipe-a-hdmi-a-1: - shard-glk: [PASS][9] -> [FAIL][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk4/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-glk7/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html Known issues ------------ Here are the changes found in IGTPW_12427_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][11] ([i915#8411]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-4/igt@api_intel_bb@object-reloc-purge-cache.html * igt@device_reset@cold-reset-bound: - shard-tglu-1: NOTRUN -> [SKIP][12] ([i915#11078]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@busy-idle@vecs0: - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#8414]) +6 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-4/igt@drm_fdinfo@busy-idle@vecs0.html * igt@drm_fdinfo@most-busy-check-all: - shard-dg1: NOTRUN -> [SKIP][14] ([i915#8414]) +7 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-12/igt@drm_fdinfo@most-busy-check-all.html * igt@drm_fdinfo@most-busy-check-all@bcs0: - shard-dg2: NOTRUN -> [SKIP][15] ([i915#8414]) +8 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-7/igt@drm_fdinfo@most-busy-check-all@bcs0.html * igt@gem_ccs@block-copy-compressed: - shard-tglu-1: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9323]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@block-multicopy-compressed: - shard-tglu: NOTRUN -> [SKIP][17] ([i915#9323]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-10/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][18] ([i915#3555] / [i915#9323]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-2/igt@gem_ccs@ctrl-surf-copy.html - shard-mtlp: NOTRUN -> [SKIP][19] ([i915#3555] / [i915#9323]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-7/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@suspend-resume: - shard-dg2: [PASS][20] -> [INCOMPLETE][21] ([i915#7297]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-7/igt@gem_ccs@suspend-resume.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-10/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [PASS][22] -> [INCOMPLETE][23] ([i915#12392] / [i915#7297]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-7/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-10/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html * igt@gem_ctx_freq@sysfs: - shard-dg2: NOTRUN -> [FAIL][24] ([i915#9561]) +1 other test fail [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-4/igt@gem_ctx_freq@sysfs.html * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-glk: NOTRUN -> [INCOMPLETE][25] ([i915#12353]) +1 other test incomplete [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-glk1/igt@gem_ctx_isolation@preservation-s3@rcs0.html * igt@gem_ctx_persistence@hang: - shard-mtlp: NOTRUN -> [SKIP][26] ([i915#8555]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-4/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_persistence@heartbeat-close: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#8555]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-close.html * igt@gem_ctx_persistence@heartbeat-many: - shard-dg1: NOTRUN -> [SKIP][28] ([i915#8555]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-12/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_persistence@legacy-engines-persistence: - shard-snb: NOTRUN -> [SKIP][29] ([i915#1099]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-snb7/igt@gem_ctx_persistence@legacy-engines-persistence.html * igt@gem_ctx_sseu@engines: - shard-tglu: NOTRUN -> [SKIP][30] ([i915#280]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-7/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-args: - shard-rkl: NOTRUN -> [SKIP][31] ([i915#280]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-4/igt@gem_ctx_sseu@invalid-args.html - shard-tglu-1: NOTRUN -> [SKIP][32] ([i915#280]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#280]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-10/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_ctx_sseu@mmap-args: - shard-dg1: NOTRUN -> [SKIP][34] ([i915#280]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-13/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@hibernate: - shard-dg2: NOTRUN -> [ABORT][35] ([i915#10030] / [i915#7975] / [i915#8213]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-3/igt@gem_eio@hibernate.html * igt@gem_eio@in-flight-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][36] ([i915#13390]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-glk9/igt@gem_eio@in-flight-suspend.html * igt@gem_exec_balancer@bonded-pair: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#4771]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-11/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@parallel-keep-in-fence: - shard-tglu: NOTRUN -> [SKIP][38] ([i915#4525]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-2/igt@gem_exec_balancer@parallel-keep-in-fence.html * igt@gem_exec_balancer@parallel-keep-submit-fence: - shard-rkl: NOTRUN -> [SKIP][39] ([i915#4525]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-3/igt@gem_exec_balancer@parallel-keep-submit-fence.html * igt@gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][40] ([i915#4812]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-14/igt@gem_exec_fence@submit.html * igt@gem_exec_fence@submit67: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#4812]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-7/igt@gem_exec_fence@submit67.html * igt@gem_exec_flush@basic-uc-rw-default: - shard-dg1: NOTRUN -> [SKIP][42] ([i915#3539] / [i915#4852]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-13/igt@gem_exec_flush@basic-uc-rw-default.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#3539]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-10/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_flush@basic-wb-pro-default: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#3539] / [i915#4852]) +3 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-1/igt@gem_exec_flush@basic-wb-pro-default.html * igt@gem_exec_parallel@engines: - shard-rkl: NOTRUN -> [DMESG-WARN][45] ([i915#12964]) +9 other tests dmesg-warn [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-4/igt@gem_exec_parallel@engines.html * igt@gem_exec_params@rsvd2-dirt: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#5107]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-5/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-cpu-read-noreloc: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#3281]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-3/igt@gem_exec_reloc@basic-cpu-read-noreloc.html * igt@gem_exec_reloc@basic-gtt-cpu-active: - shard-rkl: NOTRUN -> [SKIP][48] ([i915#3281]) +5 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-cpu-active.html * igt@gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#3281]) +6 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-17/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html * igt@gem_exec_reloc@basic-write-gtt: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#3281]) +12 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-5/igt@gem_exec_reloc@basic-write-gtt.html * igt@gem_exec_schedule@semaphore-power: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#4537] / [i915#4812]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-3/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg1: [PASS][52] -> [ABORT][53] ([i915#7975] / [i915#8213]) +1 other test abort [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-17/igt@gem_exec_suspend@basic-s4-devices@lmem0.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-14/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_fence_thrash@bo-write-verify-threaded-none: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#4860]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-14/igt@gem_fence_thrash@bo-write-verify-threaded-none.html * igt@gem_fence_thrash@bo-write-verify-x: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4860]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-5/igt@gem_fence_thrash@bo-write-verify-x.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4860]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-1/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-tglu-1: NOTRUN -> [SKIP][57] ([i915#4613] / [i915#7582]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-rkl: NOTRUN -> [SKIP][58] ([i915#4613]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-5/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-tglu: NOTRUN -> [SKIP][59] ([i915#4613]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-3/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@smem-oom: - shard-tglu-1: NOTRUN -> [SKIP][60] ([i915#4613]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt@gem_lmem_swapping@smem-oom.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [PASS][61] -> [TIMEOUT][62] ([i915#5493]) +1 other test timeout [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-11/igt@gem_lmem_swapping@smem-oom@lmem0.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-7/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][63] ([i915#4613]) +8 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-glk3/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#12193]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-17/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_lmem_swapping@verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#4565]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-17/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html * igt@gem_madvise@dontneed-before-pwrite: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#3282]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-6/igt@gem_madvise@dontneed-before-pwrite.html * igt@gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#284]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-5/igt@gem_media_vme.html - shard-tglu: NOTRUN -> [SKIP][68] ([i915#284]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-3/igt@gem_media_vme.html * igt@gem_mmap_gtt@basic-small-copy-xy: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4077]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-3/igt@gem_mmap_gtt@basic-small-copy-xy.html * igt@gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4083]) +7 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-8/igt@gem_mmap_wc@write-prefaulted.html - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4083]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-6/igt@gem_mmap_wc@write-prefaulted.html * igt@gem_mmap_wc@write-read: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#4083]) +5 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-18/igt@gem_mmap_wc@write-read.html * igt@gem_pread@exhaustion: - shard-dg1: NOTRUN -> [SKIP][73] ([i915#3282]) +4 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-17/igt@gem_pread@exhaustion.html - shard-tglu: NOTRUN -> [WARN][74] ([i915#2658]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-3/igt@gem_pread@exhaustion.html - shard-glk: NOTRUN -> [WARN][75] ([i915#2658]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-glk6/igt@gem_pread@exhaustion.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#3282]) +8 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-10/igt@gem_pread@snoop.html * igt@gem_pwrite@basic-exhaustion: - shard-snb: NOTRUN -> [WARN][77] ([i915#2658]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-snb5/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pwrite_snooped: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#3282]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-1/igt@gem_pwrite_snooped.html * igt@gem_pxp@display-protected-crc: - shard-dg1: NOTRUN -> [SKIP][79] ([i915#4270]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-13/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#4270]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-10/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-rkl: NOTRUN -> [TIMEOUT][81] ([i915#12917] / [i915#12964]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-5/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_render_copy@linear-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#5190] / [i915#8428]) +11 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-11/igt@gem_render_copy@linear-to-vebox-yf-tiled.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#8428]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-1/igt@gem_render_copy@y-tiled-ccs-to-y-tiled.html * igt@gem_render_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#4079]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-10/igt@gem_render_tiled_blits@basic.html * igt@gem_tiled_partial_pwrite_pread@writes: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#4077]) +13 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-5/igt@gem_tiled_partial_pwrite_pread@writes.html * igt@gem_tiled_partial_pwrite_pread@writes-after-reads: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#4077]) +4 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-18/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-rkl: NOTRUN -> [SKIP][87] ([i915#3297]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-4/igt@gem_userptr_blits@create-destroy-unsync.html - shard-tglu-1: NOTRUN -> [SKIP][88] ([i915#3297]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#3297]) +6 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-10/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@forbidden-operations: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#3282] / [i915#3297]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-10/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-mtlp: NOTRUN -> [SKIP][91] ([i915#3297]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-3/igt@gem_userptr_blits@map-fixed-invalidate-busy.html - shard-dg1: NOTRUN -> [SKIP][92] ([i915#3297] / [i915#4880]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-12/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#3297] / [i915#4880]) +2 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-8/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@readonly-unsync: - shard-tglu: NOTRUN -> [SKIP][94] ([i915#3297]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-9/igt@gem_userptr_blits@readonly-unsync.html * igt@gem_userptr_blits@relocations: - shard-dg1: NOTRUN -> [SKIP][95] ([i915#3281] / [i915#3297]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-18/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#3297] / [i915#4958]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-1/igt@gem_userptr_blits@sd-probe.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-dg1: NOTRUN -> [SKIP][97] ([i915#3297]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-17/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gen7_exec_parse@bitmasks: - shard-dg2: NOTRUN -> [SKIP][98] +13 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-8/igt@gen7_exec_parse@bitmasks.html * igt@gen9_exec_parse@allowed-all: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#2856]) +5 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-5/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@batch-invalid-length: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#2527]) +2 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-7/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@bb-large: - shard-tglu-1: NOTRUN -> [SKIP][101] ([i915#2527] / [i915#2856]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-tglu: NOTRUN -> [SKIP][102] ([i915#2527] / [i915#2856]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-6/igt@gen9_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@unaligned-access: - shard-mtlp: NOTRUN -> [SKIP][103] ([i915#2856]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-8/igt@gen9_exec_parse@unaligned-access.html * igt@gen9_exec_parse@unaligned-jump: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#2527]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-12/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: [PASS][105] -> [ABORT][106] ([i915#9820]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-7/igt@i915_module_load@reload-with-fault-injection.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-3/igt@i915_module_load@reload-with-fault-injection.html - shard-snb: NOTRUN -> [ABORT][107] ([i915#9820]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-snb5/igt@i915_module_load@reload-with-fault-injection.html - shard-tglu: NOTRUN -> [ABORT][108] ([i915#12817] / [i915#9820]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-7/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_module_load@resize-bar: - shard-dg1: NOTRUN -> [SKIP][109] ([i915#7178]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-12/igt@i915_module_load@resize-bar.html * igt@i915_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#7091]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-10/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: - shard-tglu-1: NOTRUN -> [WARN][111] ([i915#2681]) +4 other tests warn [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html * igt@i915_pm_rpm@system-suspend: - shard-glk: [PASS][112] -> [INCOMPLETE][113] ([i915#12797]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk1/igt@i915_pm_rpm@system-suspend.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-glk3/igt@i915_pm_rpm@system-suspend.html * igt@i915_pm_rps@basic-api: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#11681] / [i915#6621]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-7/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@thresholds-idle: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#11681]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-5/igt@i915_pm_rps@thresholds-idle.html - shard-dg1: NOTRUN -> [SKIP][116] ([i915#11681]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-13/igt@i915_pm_rps@thresholds-idle.html * igt@i915_power@sanity: - shard-mtlp: [PASS][117] -> [SKIP][118] ([i915#7984]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-mtlp-8/igt@i915_power@sanity.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-1/igt@i915_power@sanity.html * igt@i915_query@hwconfig_table: - shard-tglu: NOTRUN -> [SKIP][119] ([i915#6245]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-4/igt@i915_query@hwconfig_table.html * igt@i915_selftest@live@workarounds: - shard-mtlp: [PASS][120] -> [DMESG-FAIL][121] ([i915#13393]) +1 other test dmesg-fail [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-mtlp-7/igt@i915_selftest@live@workarounds.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-5/igt@i915_selftest@live@workarounds.html * igt@i915_selftest@mock: - shard-tglu: NOTRUN -> [DMESG-WARN][122] ([i915#9311]) +1 other test dmesg-warn [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-3/igt@i915_selftest@mock.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#4212]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-10/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-mtlp: NOTRUN -> [SKIP][124] ([i915#4212]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-8/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-4-y-rc-ccs-cc: - shard-dg1: NOTRUN -> [SKIP][125] ([i915#8709]) +15 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-17/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-hdmi-a-4-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#8709]) +11 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#9531]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-tglu: NOTRUN -> [SKIP][128] ([i915#9531]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-snb: NOTRUN -> [SKIP][129] ([i915#1769]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-snb2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-dg2: NOTRUN -> [SKIP][130] ([i915#1769] / [i915#3555]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-tglu-1: NOTRUN -> [SKIP][131] ([i915#1769] / [i915#3555]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1: - shard-mtlp: [PASS][132] -> [FAIL][133] ([i915#11808] / [i915#5956]) +1 other test fail [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-mtlp-6/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-8/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][134] ([i915#4538] / [i915#5286]) +2 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-18/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [SKIP][135] ([i915#5286]) +4 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180: - shard-tglu-1: NOTRUN -> [SKIP][136] ([i915#5286]) +3 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][137] ([i915#3638]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-12/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#5190]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-3/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#4538] / [i915#5190]) +13 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][140] ([i915#6187]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][141] ([i915#4538]) +3 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#12313]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-2/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#10307] / [i915#6095]) +176 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-1/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-3.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][144] ([i915#6095]) +59 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-8/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-y-tiled-ccs: - shard-tglu-1: NOTRUN -> [SKIP][145] ([i915#6095]) +44 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][146] ([i915#6095]) +19 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-c-edp-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][147] ([i915#6095]) +57 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#12805]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-5/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-rkl: NOTRUN -> [SKIP][149] ([i915#12805]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#6095]) +17 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-7/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-3.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][151] ([i915#12313]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#12313]) +2 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-5/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][153] ([i915#12313]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html - shard-tglu: NOTRUN -> [SKIP][154] ([i915#12313]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-7/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][155] ([i915#6095]) +141 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-13/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-dg1: NOTRUN -> [SKIP][156] ([i915#11151] / [i915#7828]) +4 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-17/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#11151] / [i915#7828]) +13 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-3/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#11151] / [i915#7828]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-3/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-tglu: NOTRUN -> [SKIP][159] ([i915#11151] / [i915#7828]) +4 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-2/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#11151] / [i915#7828]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-2/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-tglu-1: NOTRUN -> [SKIP][161] ([i915#11151] / [i915#7828]) +4 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_color@deep-color: - shard-tglu: NOTRUN -> [SKIP][162] ([i915#3555] / [i915#9979]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-6/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic: - shard-tglu-1: NOTRUN -> [SKIP][163] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt@kms_content_protection@atomic.html - shard-dg2: NOTRUN -> [SKIP][164] ([i915#7118] / [i915#9424]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-4/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#3299]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-4/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-tglu: NOTRUN -> [SKIP][166] ([i915#3116] / [i915#3299]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-3/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#3299]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-5/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@lic-type-0: - shard-tglu: NOTRUN -> [SKIP][168] ([i915#6944] / [i915#9424]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-2/igt@kms_content_protection@lic-type-0.html - shard-dg2: NOTRUN -> [SKIP][169] ([i915#9424]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-11/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-1: - shard-dg1: NOTRUN -> [SKIP][170] ([i915#9424]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-13/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@mei-interface: - shard-rkl: NOTRUN -> [SKIP][171] ([i915#9424]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-3/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-tglu: NOTRUN -> [SKIP][172] ([i915#6944] / [i915#7116] / [i915#7118]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-6/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][173] ([i915#1339] / [i915#7173]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-10/igt@kms_content_protection@uevent@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][174] ([i915#13049]) +2 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-7/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-rkl: NOTRUN -> [SKIP][175] ([i915#13049]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-tglu-1: NOTRUN -> [SKIP][176] ([i915#3555]) +3 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg1: NOTRUN -> [SKIP][177] ([i915#13049]) +2 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-13/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#13049]) +2 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-5/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-tglu-1: NOTRUN -> [SKIP][179] ([i915#13049]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#3555]) +7 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-10/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-rkl: NOTRUN -> [SKIP][181] ([i915#3555]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-1/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_crc@cursor-sliding-64x21: - shard-mtlp: NOTRUN -> [SKIP][182] ([i915#8814]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-8/igt@kms_cursor_crc@cursor-sliding-64x21.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#4103]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][184] ([i915#9809]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-7/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-rkl: NOTRUN -> [SKIP][185] +6 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#13046] / [i915#5354]) +6 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: NOTRUN -> [FAIL][187] ([i915#2346]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-tglu: NOTRUN -> [SKIP][188] ([i915#9067]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-9/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg1: NOTRUN -> [SKIP][189] ([i915#4103] / [i915#4213]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-12/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#4103] / [i915#4213]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-10/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-tglu: NOTRUN -> [SKIP][191] ([i915#4103]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-rkl: NOTRUN -> [SKIP][192] ([i915#4103]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg1: NOTRUN -> [SKIP][193] ([i915#9723]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-18/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-tglu-1: NOTRUN -> [SKIP][194] ([i915#1769] / [i915#3555] / [i915#3804]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][195] ([i915#3804]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg1: NOTRUN -> [SKIP][196] ([i915#3555]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-13/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_dp_aux_dev: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#1257]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-4/igt@kms_dp_aux_dev.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#8812]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-10/igt@kms_draw_crc@draw-method-mmap-wc.html - shard-dg1: NOTRUN -> [SKIP][199] ([i915#8812]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-12/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-basic: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#3555] / [i915#3840]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-1/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#3840] / [i915#9688]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-3/igt@kms_dsc@dsc-fractional-bpp.html - shard-tglu: NOTRUN -> [SKIP][202] ([i915#3840]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-4/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-bpc: - shard-tglu: NOTRUN -> [SKIP][203] ([i915#3555] / [i915#3840]) +1 other test skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-3/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-rkl: NOTRUN -> [SKIP][204] ([i915#3555] / [i915#3840]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-3/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#3469]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-3/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#3955]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-7/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@dp-mst: - shard-rkl: NOTRUN -> [SKIP][207] ([i915#9337]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-1/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][208] ([i915#658]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-3/igt@kms_feature_discovery@psr1.html - shard-dg2: NOTRUN -> [SKIP][209] ([i915#658]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-5/igt@kms_feature_discovery@psr1.html * igt@kms_fence_pin_leak: - shard-dg1: NOTRUN -> [SKIP][210] ([i915#4881]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-18/igt@kms_fence_pin_leak.html - shard-dg2: NOTRUN -> [SKIP][211] ([i915#4881]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-8/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-dg1: NOTRUN -> [SKIP][212] ([i915#9934]) +4 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-14/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-fences: - shard-tglu-1: NOTRUN -> [SKIP][213] ([i915#3637]) +4 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-rmfb: - shard-mtlp: NOTRUN -> [SKIP][214] ([i915#3637]) +1 other test skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-5/igt@kms_flip@2x-flip-vs-rmfb.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-tglu: NOTRUN -> [SKIP][215] ([i915#3637]) +4 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-8/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#9934]) +10 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-3/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-rkl: NOTRUN -> [SKIP][217] ([i915#9934]) +4 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html - shard-glk: [PASS][218] -> [FAIL][219] ([i915#11989]) +3 other tests fail [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk8/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-glk7/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-dg1: [PASS][220] -> [DMESG-WARN][221] ([i915#4423]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-17/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-12/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1: - shard-mtlp: [PASS][222] -> [FAIL][223] ([i915#11989]) +1 other test fail [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-mtlp-4/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-2/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html * igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a2: - shard-rkl: NOTRUN -> [FAIL][224] ([i915#11989]) +4 other tests fail [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-5/igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a2.html * igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1: - shard-tglu: [PASS][225] -> [FAIL][226] ([i915#11989]) +5 other tests fail [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-9/igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-7/igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1: - shard-glk: NOTRUN -> [FAIL][227] ([i915#13027]) +3 other tests fail [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-glk6/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1.html * igt@kms_flip@flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#8381]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-8/igt@kms_flip@flip-vs-fences.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-rkl: [PASS][229] -> [DMESG-FAIL][230] ([i915#12964]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-4/igt@kms_flip@flip-vs-suspend-interruptible.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-3/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2: - shard-rkl: NOTRUN -> [DMESG-FAIL][231] ([i915#12964]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-3/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html * igt@kms_flip@plain-flip-fb-recreate: - shard-rkl: [PASS][232] -> [FAIL][233] ([i915#11989]) +1 other test fail [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-4/igt@kms_flip@plain-flip-fb-recreate.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-5/igt@kms_flip@plain-flip-fb-recreate.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][234] ([i915#2672] / [i915#3555]) +1 other test skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][235] ([i915#2587] / [i915#2672]) +1 other test skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][236] ([i915#2587] / [i915#2672]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][237] ([i915#2672] / [i915#3555]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#2672] / [i915#3555] / [i915#8813]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#2672] / [i915#8813]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#2672] / [i915#3555] / [i915#5190]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#2672]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-tglu: NOTRUN -> [SKIP][242] ([i915#2587] / [i915#2672] / [i915#3555]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][243] ([i915#2587] / [i915#2672]) +1 other test skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][244] ([i915#2672] / [i915#3555]) +1 other test skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][245] ([i915#3555] / [i915#8810] / [i915#8813]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][246] ([i915#3555] / [i915#8810]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt: - shard-dg2: [PASS][247] -> [FAIL][248] ([i915#6880]) +1 other test fail [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][249] ([i915#1825]) +10 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-dg1: NOTRUN -> [SKIP][250] +24 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt: - shard-snb: [PASS][251] -> [SKIP][252] [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-tglu-1: NOTRUN -> [SKIP][253] +53 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#5354]) +34 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][255] ([i915#1825]) +7 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#8708]) +33 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#10055]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg1: NOTRUN -> [SKIP][258] ([i915#9766]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-14/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][259] ([i915#3458]) +22 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][260] ([i915#8708]) +1 other test skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-modesetfrombusy: - shard-rkl: NOTRUN -> [SKIP][261] ([i915#3023]) +11 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][262] ([i915#8708]) +15 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][263] ([i915#3458]) +11 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-rgb565-draw-pwrite.html * igt@kms_hdr@bpc-switch: - shard-tglu: NOTRUN -> [SKIP][264] ([i915#3555] / [i915#8228]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-6/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@bpc-switch-dpms: - shard-dg1: NOTRUN -> [SKIP][265] ([i915#3555] / [i915#8228]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-12/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@bpc-switch-suspend: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#3555] / [i915#8228]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-7/igt@kms_hdr@bpc-switch-suspend.html - shard-tglu-1: NOTRUN -> [SKIP][267] ([i915#3555] / [i915#8228]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@brightness-with-hdr: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#12713]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-1/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@static-swap: - shard-rkl: NOTRUN -> [SKIP][269] ([i915#3555] / [i915#8228]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-5/igt@kms_hdr@static-swap.html * igt@kms_joiner@basic-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][270] ([i915#10656]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt@kms_joiner@basic-big-joiner.html - shard-dg2: NOTRUN -> [SKIP][271] ([i915#10656]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-4/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][272] ([i915#12394]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt@kms_joiner@basic-force-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][273] ([i915#12394]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-12/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][274] ([i915#12339]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-2/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-dg1: NOTRUN -> [SKIP][275] ([i915#12388]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-14/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_panel_fitting@legacy: - shard-tglu-1: NOTRUN -> [SKIP][276] ([i915#6301]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][277] ([i915#13409] / [i915#13476]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-glk6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-dg2: NOTRUN -> [SKIP][278] ([i915#13046] / [i915#5354] / [i915#9423]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-7/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@intel-max-src-size: - shard-glk: [PASS][279] -> [SKIP][280] [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk7/igt@kms_plane_scaling@intel-max-src-size.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-glk6/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c: - shard-tglu: NOTRUN -> [SKIP][281] ([i915#12247]) +9 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2: NOTRUN -> [SKIP][282] ([i915#12247] / [i915#9423]) +2 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a: - shard-dg1: NOTRUN -> [SKIP][283] ([i915#12247]) +4 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-17/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a: - shard-tglu-1: NOTRUN -> [SKIP][284] ([i915#12247]) +8 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][285] ([i915#12247] / [i915#6953] / [i915#9423]) +1 other test skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d: - shard-dg2: NOTRUN -> [SKIP][286] ([i915#12247]) +19 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-tglu-1: NOTRUN -> [SKIP][287] ([i915#12247] / [i915#6953]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][288] ([i915#12247] / [i915#6953]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b: - shard-mtlp: NOTRUN -> [SKIP][289] ([i915#12247]) +3 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-6/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b.html * igt@kms_pm_backlight@bad-brightness: - shard-rkl: NOTRUN -> [SKIP][290] ([i915#5354]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-3/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@basic-brightness: - shard-tglu: NOTRUN -> [SKIP][291] ([i915#9812]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-2/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-tglu: NOTRUN -> [SKIP][292] ([i915#12343]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-9/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade-with-dpms: - shard-tglu-1: NOTRUN -> [SKIP][293] ([i915#9812]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg1: NOTRUN -> [SKIP][294] ([i915#3828]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-12/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_rpm@basic-rte: - shard-dg2: [PASS][295] -> [INCOMPLETE][296] ([i915#10553]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-3/igt@kms_pm_rpm@basic-rte.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-1/igt@kms_pm_rpm@basic-rte.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][297] ([i915#9519]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][298] ([i915#9519]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@pm-tiling: - shard-rkl: NOTRUN -> [SKIP][299] ([i915#12916]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-1/igt@kms_pm_rpm@pm-tiling.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-glk: NOTRUN -> [INCOMPLETE][300] ([i915#10553]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-glk9/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_prime@d3hot: - shard-dg2: NOTRUN -> [SKIP][301] ([i915#6524] / [i915#6805]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-7/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][302] ([i915#11520]) +10 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-glk7/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][303] ([i915#9808]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][304] ([i915#12316]) +2 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-dg1: NOTRUN -> [SKIP][305] ([i915#11520]) +5 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-18/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-snb: NOTRUN -> [SKIP][306] ([i915#11520]) +7 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-snb2/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-cursor-plane-update-sf: - shard-tglu: NOTRUN -> [SKIP][307] ([i915#11520]) +7 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-6/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][308] ([i915#11520]) +1 other test skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-2/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-tglu-1: NOTRUN -> [SKIP][309] ([i915#11520]) +5 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][310] ([i915#11520]) +11 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-11/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][311] ([i915#9683]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-10/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-tglu: NOTRUN -> [SKIP][312] ([i915#9683]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-9/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-tglu-1: NOTRUN -> [SKIP][313] ([i915#9683]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-no-drrs: - shard-rkl: NOTRUN -> [SKIP][314] ([i915#1072] / [i915#9732]) +6 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-2/igt@kms_psr@fbc-pr-no-drrs.html * igt@kms_psr@fbc-pr-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][315] ([i915#1072] / [i915#9732]) +24 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-7/igt@kms_psr@fbc-pr-primary-mmap-gtt.html * igt@kms_psr@fbc-psr2-basic: - shard-dg1: NOTRUN -> [SKIP][316] ([i915#1072] / [i915#9732]) +10 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-12/igt@kms_psr@fbc-psr2-basic.html * igt@kms_psr@pr-no-drrs: - shard-mtlp: NOTRUN -> [SKIP][317] ([i915#9688]) +4 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-7/igt@kms_psr@pr-no-drrs.html * igt@kms_psr@psr-sprite-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][318] ([i915#9732]) +11 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt@kms_psr@psr-sprite-mmap-cpu.html * igt@kms_psr@psr2-primary-render: - shard-tglu: NOTRUN -> [SKIP][319] ([i915#9732]) +17 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-7/igt@kms_psr@psr2-primary-render.html * igt@kms_psr@psr2-sprite-plane-onoff: - shard-glk: NOTRUN -> [SKIP][320] +429 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-glk8/igt@kms_psr@psr2-sprite-plane-onoff.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg1: NOTRUN -> [SKIP][321] ([i915#9685]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-17/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-dg2: NOTRUN -> [SKIP][322] ([i915#9685]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-10/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@bad-tiling: - shard-dg2: NOTRUN -> [SKIP][323] ([i915#12755]) +1 other test skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-8/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@exhaust-fences: - shard-dg2: NOTRUN -> [SKIP][324] ([i915#4235]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-11/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-tglu: NOTRUN -> [SKIP][325] ([i915#5289]) +1 other test skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-10/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][326] ([i915#5289]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg1: NOTRUN -> [SKIP][327] ([i915#5289]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-12/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][328] ([i915#12755] / [i915#5190]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-snb: NOTRUN -> [SKIP][329] +450 other tests skip [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-snb5/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_scaling_modes@scaling-mode-full: - shard-tglu: NOTRUN -> [SKIP][330] ([i915#3555]) +3 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-3/igt@kms_scaling_modes@scaling-mode-full.html * igt@kms_selftest@drm_framebuffer: - shard-glk: NOTRUN -> [ABORT][331] ([i915#13179]) +1 other test abort [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-glk7/igt@kms_selftest@drm_framebuffer.html * igt@kms_setmode@basic: - shard-tglu: [PASS][332] -> [FAIL][333] ([i915#5465]) +2 other tests fail [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-7/igt@kms_setmode@basic.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-6/igt@kms_setmode@basic.html * igt@kms_setmode@basic@pipe-a-hdmi-a-2: - shard-glk: [PASS][334] -> [FAIL][335] ([i915#5465]) +5 other tests fail [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk4/igt@kms_setmode@basic@pipe-a-hdmi-a-2.html [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-glk7/igt@kms_setmode@basic@pipe-a-hdmi-a-2.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-mtlp: [PASS][336] -> [FAIL][337] ([i915#5465]) +2 other tests fail [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-mtlp-6/igt@kms_setmode@basic@pipe-b-edp-1.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-7/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@kms_tiled_display@basic-test-pattern: - shard-tglu: NOTRUN -> [SKIP][338] ([i915#8623]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-8/igt@kms_tiled_display@basic-test-pattern.html - shard-glk: NOTRUN -> [FAIL][339] ([i915#10959]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-glk5/igt@kms_tiled_display@basic-test-pattern.html - shard-dg2: NOTRUN -> [SKIP][340] ([i915#8623]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-7/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][341] ([i915#12276]) +2 other tests incomplete [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-glk4/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html * igt@kms_vrr@flipline: - shard-mtlp: NOTRUN -> [SKIP][342] ([i915#3555] / [i915#8808]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-2/igt@kms_vrr@flipline.html * igt@kms_vrr@lobf: - shard-dg2: NOTRUN -> [SKIP][343] ([i915#11920]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-4/igt@kms_vrr@lobf.html - shard-tglu: NOTRUN -> [SKIP][344] ([i915#11920]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-8/igt@kms_vrr@lobf.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-tglu-1: NOTRUN -> [SKIP][345] ([i915#9906]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][346] ([i915#2437]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-8/igt@kms_writeback@writeback-check-output.html - shard-tglu-1: NOTRUN -> [SKIP][347] ([i915#2437]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-1/igt@kms_writeback@writeback-check-output.html - shard-glk: NOTRUN -> [SKIP][348] ([i915#2437]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-glk9/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][349] ([i915#2437] / [i915#9412]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-11/igt@kms_writeback@writeback-check-output-xrgb2101010.html - shard-rkl: NOTRUN -> [SKIP][350] ([i915#2437] / [i915#9412]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-3/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg1: NOTRUN -> [SKIP][351] ([i915#2437] / [i915#9412]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-17/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-mtlp: NOTRUN -> [SKIP][352] +7 other tests skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-5/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][353] ([i915#7387]) +1 other test skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-1/igt@perf@global-sseu-config-invalid.html * igt@perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][354] ([i915#2434]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-4/igt@perf@mi-rpc.html * igt@perf@non-zero-reason: - shard-dg2: NOTRUN -> [FAIL][355] ([i915#9100]) +1 other test fail [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-10/igt@perf@non-zero-reason.html * igt@perf@polling@0-rcs0: - shard-rkl: [PASS][356] -> [DMESG-WARN][357] ([i915#12964]) +41 other tests dmesg-warn [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-3/igt@perf@polling@0-rcs0.html [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-1/igt@perf@polling@0-rcs0.html * igt@perf_pmu@frequency@gt0: - shard-dg2: NOTRUN -> [FAIL][358] ([i915#12549] / [i915#6806]) +1 other test fail [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-4/igt@perf_pmu@frequency@gt0.html * igt@perf_pmu@semaphore-busy@bcs0: - shard-mtlp: [PASS][359] -> [FAIL][360] ([i915#4349]) +5 other tests fail [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-mtlp-4/igt@perf_pmu@semaphore-busy@bcs0.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-5/igt@perf_pmu@semaphore-busy@bcs0.html * igt@perf_pmu@semaphore-busy@vcs1: - shard-dg1: [PASS][361] -> [FAIL][362] ([i915#4349]) +3 other tests fail [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-14/igt@perf_pmu@semaphore-busy@vcs1.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-14/igt@perf_pmu@semaphore-busy@vcs1.html * igt@prime_vgem@basic-fence-mmap: - shard-mtlp: NOTRUN -> [SKIP][363] ([i915#3708] / [i915#4077]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-6/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][364] ([i915#3291] / [i915#3708]) +1 other test skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-5/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@fence-write-hang: - shard-tglu: NOTRUN -> [SKIP][365] +80 other tests skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-2/igt@prime_vgem@fence-write-hang.html - shard-dg2: NOTRUN -> [SKIP][366] ([i915#3708]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-1/igt@prime_vgem@fence-write-hang.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-tglu: NOTRUN -> [FAIL][367] ([i915#12910]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-9/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html - shard-dg1: NOTRUN -> [SKIP][368] ([i915#9917]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-14/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html #### Possible fixes #### * igt@gem_ctx_isolation@preservation-s3: - shard-rkl: [DMESG-FAIL][369] ([i915#12964]) -> [PASS][370] +2 other tests pass [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-2/igt@gem_ctx_isolation@preservation-s3.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-7/igt@gem_ctx_isolation@preservation-s3.html * igt@gem_ctx_isolation@preservation-s3@vecs1: - shard-dg2: [INCOMPLETE][371] ([i915#12353]) -> [PASS][372] +1 other test pass [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-5/igt@gem_ctx_isolation@preservation-s3@vecs1.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-1/igt@gem_ctx_isolation@preservation-s3@vecs1.html * igt@gem_exec_big@single: - shard-tglu: [ABORT][373] ([i915#11713]) -> [PASS][374] [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-2/igt@gem_exec_big@single.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-10/igt@gem_exec_big@single.html * igt@gem_tiled_swapping@non-threaded: - shard-tglu: [FAIL][375] -> [PASS][376] [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-10/igt@gem_tiled_swapping@non-threaded.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-9/igt@gem_tiled_swapping@non-threaded.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-dg1: [FAIL][377] ([i915#3591]) -> [PASS][378] [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: - shard-dg1: [FAIL][379] ([i915#12739] / [i915#3591]) -> [PASS][380] [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html * igt@i915_pm_rpm@gem-mmap-type: - shard-rkl: [SKIP][381] ([i915#13328]) -> [PASS][382] [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-5/igt@i915_pm_rpm@gem-mmap-type.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-3/igt@i915_pm_rpm@gem-mmap-type.html * igt@kms_async_flips@async-flip-suspend-resume: - shard-glk: [INCOMPLETE][383] ([i915#12761]) -> [PASS][384] +1 other test pass [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk5/igt@kms_async_flips@async-flip-suspend-resume.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-glk2/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-tglu: [FAIL][385] ([i915#11808]) -> [PASS][386] +1 other test pass [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-snb: [FAIL][387] ([i915#2346]) -> [PASS][388] [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-snb7/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-snb5/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt@kms_cursor_legacy@torture-move@pipe-b: - shard-rkl: [DMESG-WARN][389] ([i915#12964]) -> [PASS][390] +41 other tests pass [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-3/igt@kms_cursor_legacy@torture-move@pipe-b.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-4/igt@kms_cursor_legacy@torture-move@pipe-b.html * igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a1: - shard-tglu: [FAIL][391] ([i915#11989]) -> [PASS][392] +3 other tests pass [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-10/igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a1.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-6/igt@kms_flip@plain-flip-fb-recreate@c-hdmi-a1.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff: - shard-dg1: [DMESG-WARN][393] ([i915#4391] / [i915#4423]) -> [PASS][394] +1 other test pass [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-rkl: [DMESG-WARN][395] ([i915#12917] / [i915#12964]) -> [PASS][396] [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_hdmi_inject@inject-audio: - shard-tglu: [SKIP][397] ([i915#13030]) -> [PASS][398] [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-4/igt@kms_hdmi_inject@inject-audio.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-6/igt@kms_hdmi_inject@inject-audio.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1: - shard-glk: [INCOMPLETE][399] ([i915#12756]) -> [PASS][400] [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk9/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-glk6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu: [SKIP][401] ([i915#4281]) -> [PASS][402] [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-tglu-7/igt@kms_pm_dc@dc9-dpms.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-tglu-3/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: [SKIP][403] ([i915#9519]) -> [PASS][404] [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-1/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-8/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1: - shard-glk: [INCOMPLETE][405] ([i915#12276]) -> [PASS][406] [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-glk3/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-glk3/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html * igt@perf_pmu@all-busy-check-all: - shard-dg1: [FAIL][407] -> [PASS][408] [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-14/igt@perf_pmu@all-busy-check-all.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-14/igt@perf_pmu@all-busy-check-all.html - shard-mtlp: [FAIL][409] -> [PASS][410] [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-mtlp-5/igt@perf_pmu@all-busy-check-all.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-5/igt@perf_pmu@all-busy-check-all.html * igt@syncobj_timeline@invalid-multi-wait-all-unsubmitted-submitted-signaled: - shard-dg1: [DMESG-WARN][411] ([i915#4423]) -> [PASS][412] [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-14/igt@syncobj_timeline@invalid-multi-wait-all-unsubmitted-submitted-signaled.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-13/igt@syncobj_timeline@invalid-multi-wait-all-unsubmitted-submitted-signaled.html #### Warnings #### * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [DMESG-WARN][413] ([i915#5493]) -> [TIMEOUT][414] ([i915#5493]) +1 other test timeout [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt@gem_lmem_swapping@smem-oom@lmem0.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-12/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-rkl: [SKIP][415] ([i915#4270]) -> [TIMEOUT][416] ([i915#12917] / [i915#12964]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-6/igt@gem_pxp@reject-modify-context-protection-off-2.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-3/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-rkl: [TIMEOUT][417] ([i915#12917] / [i915#12964]) -> [SKIP][418] ([i915#4270]) [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-7/igt@gem_pxp@verify-pxp-stale-ctx-execution.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-1/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: [DMESG-WARN][419] ([i915#13475]) -> [ABORT][420] ([i915#13493]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-17/igt@i915_module_load@reload-with-fault-injection.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-17/igt@i915_module_load@reload-with-fault-injection.html - shard-mtlp: [ABORT][421] ([i915#10131] / [i915#10887] / [i915#13493] / [i915#9820]) -> [DMESG-WARN][422] ([i915#10887] / [i915#13475]) [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rpm@reg-read-ioctl: - shard-rkl: [DMESG-WARN][423] ([i915#12964]) -> [SKIP][424] ([i915#13328]) [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-rkl-4/igt@i915_pm_rpm@reg-read-ioctl.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-rkl-3/igt@i915_pm_rpm@reg-read-ioctl.html * igt@kms_content_protection@uevent: - shard-dg2: [SKIP][425] ([i915#7118] / [i915#9424]) -> [FAIL][426] ([i915#1339] / [i915#7173]) [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-7/igt@kms_content_protection@uevent.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-10/igt@kms_content_protection@uevent.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic: - shard-dg1: [SKIP][427] -> [SKIP][428] ([i915#4423]) [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-17/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-18/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg1: [SKIP][429] ([i915#4423] / [i915#9067]) -> [SKIP][430] ([i915#9067]) [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-14/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: - shard-dg1: [SKIP][431] ([i915#4423]) -> [SKIP][432] [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu: - shard-dg2: [SKIP][433] ([i915#10433] / [i915#3458]) -> [SKIP][434] ([i915#3458]) +1 other test skip [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary: - shard-dg2: [SKIP][435] ([i915#3458]) -> [SKIP][436] ([i915#10433] / [i915#3458]) +1 other test skip [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8188/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt: - shard-dg1: [SKIP][437] ([i915#3458]) -> [SKIP][438] ([i915#3458] / [i915#4423]) +2 other tests skip [437]: https://in == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12427/index.html [-- Attachment #2: Type: text/html, Size: 109923 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2025-01-14 20:48 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-01-10 15:34 [PATCH i-g-t] tests/xe_eudebug_online: correct calculate the time diff Maciej Patelczyk 2025-01-10 18:20 ` ✓ i915.CI.BAT: success for " Patchwork 2025-01-10 18:23 ` ✓ Xe.CI.BAT: " Patchwork 2025-01-13 8:26 ` [PATCH i-g-t] " Hajda, Andrzej 2025-01-13 8:47 ` Maciej Patelczyk 2025-01-14 20:48 ` ✗ i915.CI.Full: failure for " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox