* [i-g-t 1/2] tests/kms_vrr: Tweak flipline subtest
@ 2023-12-13 8:16 Bhanuprakash Modem
2023-12-13 8:16 ` [i-g-t 2/2] HAX: DO_NOT_MERGE: Add vrr flipline test to BAT Bhanuprakash Modem
` (4 more replies)
0 siblings, 5 replies; 9+ messages in thread
From: Bhanuprakash Modem @ 2023-12-13 8:16 UTC (permalink / raw)
To: igt-dev
As per the spec: If there is no flip request with in Vmax,
Hardware will terminate the Vblank at Vmax.
If we flip with the interval > Vmax, the expected refresh rate
could be: (Vmax + time left for the next flip + Vmin), and it
is very difficult to generalize. For low refresh rate panels
(like 40 - 60 Hz), result is not falling into the threshold.
Hence, tweak the test to increase the flip request interval.
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
tests/kms_vrr.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c
index 5c190cd8c..7cb7c3ef5 100644
--- a/tests/kms_vrr.c
+++ b/tests/kms_vrr.c
@@ -456,7 +456,7 @@ test_basic(data_t *data, enum pipe pipe, igt_output_t *output, uint32_t flags)
}
if (flags & TEST_FLIPLINE) {
- rate = rate_from_refresh(range.min - 5);
+ rate = rate_from_refresh(range.min - 10);
result = flip_and_measure(data, output, pipe, rate, TEST_DURATION_NS);
igt_assert_f(result < 50,
"Refresh rate (%u Hz) %"PRIu64"ns: Target VRR on threshold exceeded, result was %u%%\n",
--
2.40.0
^ permalink raw reply related [flat|nested] 9+ messages in thread* [i-g-t 2/2] HAX: DO_NOT_MERGE: Add vrr flipline test to BAT 2023-12-13 8:16 [i-g-t 1/2] tests/kms_vrr: Tweak flipline subtest Bhanuprakash Modem @ 2023-12-13 8:16 ` Bhanuprakash Modem 2023-12-13 9:53 ` [i-g-t 1/2] tests/kms_vrr: Tweak flipline subtest Bhanuprakash Modem ` (3 subsequent siblings) 4 siblings, 0 replies; 9+ messages in thread From: Bhanuprakash Modem @ 2023-12-13 8:16 UTC (permalink / raw) To: igt-dev Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> --- tests/intel-ci/fast-feedback.testlist | 2 ++ tests/intel-ci/xe-fast-feedback.testlist | 2 ++ 2 files changed, 4 insertions(+) diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist index 60ce1efa4..982f89340 100644 --- a/tests/intel-ci/fast-feedback.testlist +++ b/tests/intel-ci/fast-feedback.testlist @@ -1,6 +1,8 @@ # Try to load the driver if it's not available yet. igt@i915_module_load@load +igt@kms_vrr@flipline + # Keep alphabetically sorted by default igt@core_auth@basic-auth igt@debugfs_test@read_all_entries diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist index d7caa25c4..e6cc9672c 100644 --- a/tests/intel-ci/xe-fast-feedback.testlist +++ b/tests/intel-ci/xe-fast-feedback.testlist @@ -1,6 +1,8 @@ # Should be the first test igt@xe_module_load@load +igt@kms_vrr@flipline + igt@xe_compute@compute-square igt@xe_create@create-execqueues-noleak igt@xe_create@create-execqueues-leak -- 2.40.0 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* [i-g-t 1/2] tests/kms_vrr: Tweak flipline subtest 2023-12-13 8:16 [i-g-t 1/2] tests/kms_vrr: Tweak flipline subtest Bhanuprakash Modem 2023-12-13 8:16 ` [i-g-t 2/2] HAX: DO_NOT_MERGE: Add vrr flipline test to BAT Bhanuprakash Modem @ 2023-12-13 9:53 ` Bhanuprakash Modem 2024-01-09 5:54 ` Srinivas, Vidya 2024-01-09 10:17 ` Modem, Bhanuprakash 2023-12-13 12:53 ` ✓ CI.xeBAT: success for series starting with [i-g-t,1/2] tests/kms_vrr: Tweak flipline subtest (rev2) Patchwork ` (2 subsequent siblings) 4 siblings, 2 replies; 9+ messages in thread From: Bhanuprakash Modem @ 2023-12-13 9:53 UTC (permalink / raw) To: igt-dev As per the spec: If there is no flip request with in Vmax, Hardware will terminate the Vblank at Vmax. If we flip with the interval > Vmax, the expected refresh rate could be: (Vmax + time left for the next flip + Vmin), and it is very difficult to generalize. For low refresh rate panels (like 40 - 60 Hz), result is not falling into the threshold. Hence, tweak the test to increase the flip request interval. Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> --- tests/kms_vrr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c index 1ace970a5..71fc36162 100644 --- a/tests/kms_vrr.c +++ b/tests/kms_vrr.c @@ -481,11 +481,11 @@ test_basic(data_t *data, enum pipe pipe, igt_output_t *output, uint32_t flags) } if (flags & TEST_FLIPLINE) { - rate = rate_from_refresh(range.min - 5); + rate = rate_from_refresh(range.min - 10); result = flip_and_measure(data, output, pipe, rate, TEST_DURATION_NS); igt_assert_f(result < 50, "Refresh rate (%u Hz) %"PRIu64"ns: Target VRR on threshold exceeded, result was %u%%\n", - (range.min - 5), rate, result); + (range.min - 10), rate, result); } /* -- 2.40.0 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* RE: [i-g-t 1/2] tests/kms_vrr: Tweak flipline subtest 2023-12-13 9:53 ` [i-g-t 1/2] tests/kms_vrr: Tweak flipline subtest Bhanuprakash Modem @ 2024-01-09 5:54 ` Srinivas, Vidya 2024-01-09 10:17 ` Modem, Bhanuprakash 1 sibling, 0 replies; 9+ messages in thread From: Srinivas, Vidya @ 2024-01-09 5:54 UTC (permalink / raw) To: Modem, Bhanuprakash, igt-dev@lists.freedesktop.org Tested-by: Vidya Srinivas <vidya.srinivas@intel.com> > -----Original Message----- > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of > Bhanuprakash Modem > Sent: Wednesday, December 13, 2023 3:24 PM > To: igt-dev@lists.freedesktop.org > Subject: [i-g-t 1/2] tests/kms_vrr: Tweak flipline subtest > > As per the spec: If there is no flip request with in Vmax, Hardware will > terminate the Vblank at Vmax. > > If we flip with the interval > Vmax, the expected refresh rate could be: (Vmax > + time left for the next flip + Vmin), and it is very difficult to generalize. For > low refresh rate panels (like 40 - 60 Hz), result is not falling into the threshold. > > Hence, tweak the test to increase the flip request interval. > > Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > --- > tests/kms_vrr.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c index 1ace970a5..71fc36162 > 100644 > --- a/tests/kms_vrr.c > +++ b/tests/kms_vrr.c > @@ -481,11 +481,11 @@ test_basic(data_t *data, enum pipe pipe, > igt_output_t *output, uint32_t flags) > } > > if (flags & TEST_FLIPLINE) { > - rate = rate_from_refresh(range.min - 5); > + rate = rate_from_refresh(range.min - 10); > result = flip_and_measure(data, output, pipe, rate, > TEST_DURATION_NS); > igt_assert_f(result < 50, > "Refresh rate (%u Hz) %"PRIu64"ns: Target VRR on > threshold exceeded, result was %u%%\n", > - (range.min - 5), rate, result); > + (range.min - 10), rate, result); > } > > /* > -- > 2.40.0 ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [i-g-t 1/2] tests/kms_vrr: Tweak flipline subtest 2023-12-13 9:53 ` [i-g-t 1/2] tests/kms_vrr: Tweak flipline subtest Bhanuprakash Modem 2024-01-09 5:54 ` Srinivas, Vidya @ 2024-01-09 10:17 ` Modem, Bhanuprakash 2024-01-09 11:51 ` Golani, Mitulkumar Ajitkumar 1 sibling, 1 reply; 9+ messages in thread From: Modem, Bhanuprakash @ 2024-01-09 10:17 UTC (permalink / raw) To: Bhanuprakash Modem, Golani, Mitulkumar Ajitkumar, igt-dev@lists.freedesktop.org + Mitul to review On 13-12-2023 03:23 pm, Bhanuprakash Modem wrote: > As per the spec: If there is no flip request with in Vmax, > Hardware will terminate the Vblank at Vmax. > > If we flip with the interval > Vmax, the expected refresh rate > could be: (Vmax + time left for the next flip + Vmin), and it > is very difficult to generalize. For low refresh rate panels > (like 40 - 60 Hz), result is not falling into the threshold. > > Hence, tweak the test to increase the flip request interval. > > Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > --- > tests/kms_vrr.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c > index 1ace970a5..71fc36162 100644 > --- a/tests/kms_vrr.c > +++ b/tests/kms_vrr.c > @@ -481,11 +481,11 @@ test_basic(data_t *data, enum pipe pipe, igt_output_t *output, uint32_t flags) > } > > if (flags & TEST_FLIPLINE) { > - rate = rate_from_refresh(range.min - 5); > + rate = rate_from_refresh(range.min - 10); > result = flip_and_measure(data, output, pipe, rate, TEST_DURATION_NS); > igt_assert_f(result < 50, > "Refresh rate (%u Hz) %"PRIu64"ns: Target VRR on threshold exceeded, result was %u%%\n", > - (range.min - 5), rate, result); > + (range.min - 10), rate, result); > } > > /* ^ permalink raw reply [flat|nested] 9+ messages in thread
* RE: [i-g-t 1/2] tests/kms_vrr: Tweak flipline subtest 2024-01-09 10:17 ` Modem, Bhanuprakash @ 2024-01-09 11:51 ` Golani, Mitulkumar Ajitkumar 0 siblings, 0 replies; 9+ messages in thread From: Golani, Mitulkumar Ajitkumar @ 2024-01-09 11:51 UTC (permalink / raw) To: Modem, Bhanuprakash, igt-dev@lists.freedesktop.org > -----Original Message----- > From: Modem, Bhanuprakash <bhanuprakash.modem@intel.com> > Sent: Tuesday, January 9, 2024 3:48 PM > To: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>; Golani, > Mitulkumar Ajitkumar <mitulkumar.ajitkumar.golani@intel.com>; igt- > dev@lists.freedesktop.org > Subject: Re: [i-g-t 1/2] tests/kms_vrr: Tweak flipline subtest > > + Mitul to review > > On 13-12-2023 03:23 pm, Bhanuprakash Modem wrote: > > As per the spec: If there is no flip request with in Vmax, Hardware > > will terminate the Vblank at Vmax. > > > > If we flip with the interval > Vmax, the expected refresh rate could > > be: (Vmax + time left for the next flip + Vmin), and it is very > > difficult to generalize. For low refresh rate panels (like 40 - 60 > > Hz), result is not falling into the threshold. > > > > Hence, tweak the test to increase the flip request interval. > > > > Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > > --- > > tests/kms_vrr.c | 4 ++-- > > 1 file changed, 2 insertions(+), 2 deletions(-) > > > > diff --git a/tests/kms_vrr.c b/tests/kms_vrr.c index > > 1ace970a5..71fc36162 100644 > > --- a/tests/kms_vrr.c > > +++ b/tests/kms_vrr.c > > @@ -481,11 +481,11 @@ test_basic(data_t *data, enum pipe pipe, > igt_output_t *output, uint32_t flags) > > } > > > > if (flags & TEST_FLIPLINE) { > > - rate = rate_from_refresh(range.min - 5); > > + rate = rate_from_refresh(range.min - 10); > > result = flip_and_measure(data, output, pipe, rate, > TEST_DURATION_NS); > > igt_assert_f(result < 50, > > "Refresh rate (%u Hz) %"PRIu64"ns: Target VRR on > threshold exceeded, result was %u%%\n", > > - (range.min - 5), rate, result); > > + (range.min - 10), rate, result); Changes LGTM Reviewed-by: Mitul Golani <mitulkumar.ajitkumar.golani@intel.com> > > } > > > > /* ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ CI.xeBAT: success for series starting with [i-g-t,1/2] tests/kms_vrr: Tweak flipline subtest (rev2) 2023-12-13 8:16 [i-g-t 1/2] tests/kms_vrr: Tweak flipline subtest Bhanuprakash Modem 2023-12-13 8:16 ` [i-g-t 2/2] HAX: DO_NOT_MERGE: Add vrr flipline test to BAT Bhanuprakash Modem 2023-12-13 9:53 ` [i-g-t 1/2] tests/kms_vrr: Tweak flipline subtest Bhanuprakash Modem @ 2023-12-13 12:53 ` Patchwork 2023-12-13 13:06 ` ✓ Fi.CI.BAT: " Patchwork 2023-12-13 14:02 ` ✗ Fi.CI.IGT: failure " Patchwork 4 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2023-12-13 12:53 UTC (permalink / raw) To: Bhanuprakash Modem; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2529 bytes --] == Series Details == Series: series starting with [i-g-t,1/2] tests/kms_vrr: Tweak flipline subtest (rev2) URL : https://patchwork.freedesktop.org/series/127740/ State : success == Summary == CI Bug Log - changes from XEIGT_7638_BAT -> XEIGTPW_10411_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 3) ------------------------------ Missing (1): bat-dg2-oem2 Known issues ------------ Here are the changes found in XEIGTPW_10411_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_frontbuffer_tracking@basic: - bat-adlp-7: [PASS][1] -> [DMESG-FAIL][2] ([Intel XE#1033]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7638/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10411/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html * igt@kms_vrr@flipline: - bat-atsm-2: NOTRUN -> [SKIP][3] ([Intel XE#1024]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10411/bat-atsm-2/igt@kms_vrr@flipline.html - bat-pvc-2: NOTRUN -> [SKIP][4] ([Intel XE#1024]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10411/bat-pvc-2/igt@kms_vrr@flipline.html - bat-adlp-7: NOTRUN -> [SKIP][5] ([Intel XE#455]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10411/bat-adlp-7/igt@kms_vrr@flipline.html * igt@xe_prime_self_import@basic-with_one_bo: - bat-pvc-2: [PASS][6] -> [FAIL][7] ([Intel XE#999]) +1 other test fail [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7638/bat-pvc-2/igt@xe_prime_self_import@basic-with_one_bo.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10411/bat-pvc-2/igt@xe_prime_self_import@basic-with_one_bo.html [Intel XE#1024]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1024 [Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/999 Build changes ------------- * IGT: IGT_7638 -> IGTPW_10411 IGTPW_10411: 10411 IGT_7638: 52ca619dfeae57348b957778dcfdd8117d8ff9f0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-577-5cd1893366708380854f4694ae57417192458a6b: 5cd1893366708380854f4694ae57417192458a6b == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10411/index.html [-- Attachment #2: Type: text/html, Size: 3254 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] tests/kms_vrr: Tweak flipline subtest (rev2) 2023-12-13 8:16 [i-g-t 1/2] tests/kms_vrr: Tweak flipline subtest Bhanuprakash Modem ` (2 preceding siblings ...) 2023-12-13 12:53 ` ✓ CI.xeBAT: success for series starting with [i-g-t,1/2] tests/kms_vrr: Tweak flipline subtest (rev2) Patchwork @ 2023-12-13 13:06 ` Patchwork 2023-12-13 14:02 ` ✗ Fi.CI.IGT: failure " Patchwork 4 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2023-12-13 13:06 UTC (permalink / raw) To: Bhanuprakash Modem; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 10036 bytes --] == Series Details == Series: series starting with [i-g-t,1/2] tests/kms_vrr: Tweak flipline subtest (rev2) URL : https://patchwork.freedesktop.org/series/127740/ State : success == Summary == CI Bug Log - changes from CI_DRM_14012 -> IGTPW_10411 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/index.html Participating hosts (34 -> 33) ------------------------------ Additional (2): bat-dg2-8 bat-rpls-3 Missing (3): bat-mtlp-8 bat-dg2-9 fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10411: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@i915_selftest@live@hangcheck: - {bat-rpls-3}: NOTRUN -> [DMESG-WARN][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/bat-rpls-3/igt@i915_selftest@live@hangcheck.html * {igt@kms_psr@psr-cursor-plane-move}: - {bat-rpls-3}: NOTRUN -> [SKIP][2] +44 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/bat-rpls-3/igt@kms_psr@psr-cursor-plane-move.html Known issues ------------ Here are the changes found in IGTPW_10411 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_mmap@basic: - bat-dg2-8: NOTRUN -> [SKIP][3] ([i915#4083]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/bat-dg2-8/igt@gem_mmap@basic.html * igt@gem_mmap_gtt@basic: - bat-dg2-8: NOTRUN -> [SKIP][4] ([i915#4077]) +2 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/bat-dg2-8/igt@gem_mmap_gtt@basic.html * igt@gem_tiled_pread_basic: - bat-dg2-8: NOTRUN -> [SKIP][5] ([i915#4079]) +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/bat-dg2-8/igt@gem_tiled_pread_basic.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-dg2-8: NOTRUN -> [SKIP][6] ([i915#5190]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/bat-dg2-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - bat-dg2-8: NOTRUN -> [SKIP][7] ([i915#4215] / [i915#5190]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/bat-dg2-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - bat-dg2-8: NOTRUN -> [SKIP][8] ([i915#4212]) +6 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/bat-dg2-8/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@tile-pitch-mismatch: - bat-dg2-8: NOTRUN -> [SKIP][9] ([i915#4212] / [i915#5608]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/bat-dg2-8/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-dg2-8: NOTRUN -> [SKIP][10] ([i915#4103] / [i915#4213] / [i915#5608]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/bat-dg2-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_force_connector_basic@force-load-detect: - bat-dg2-8: NOTRUN -> [SKIP][11] ([fdo#109285]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/bat-dg2-8/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - bat-dg2-8: NOTRUN -> [SKIP][12] ([i915#5274]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/bat-dg2-8/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_vrr@flipline: - fi-skl-guc: NOTRUN -> [SKIP][13] ([fdo#109271]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/fi-skl-guc/igt@kms_vrr@flipline.html - fi-cfl-8700k: NOTRUN -> [SKIP][14] ([fdo#109271]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/fi-cfl-8700k/igt@kms_vrr@flipline.html - fi-blb-e6850: NOTRUN -> [SKIP][15] ([fdo#109271]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/fi-blb-e6850/igt@kms_vrr@flipline.html - fi-bsw-nick: NOTRUN -> [SKIP][16] ([fdo#109271]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/fi-bsw-nick/igt@kms_vrr@flipline.html - bat-kbl-2: NOTRUN -> [SKIP][17] ([fdo#109271]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/bat-kbl-2/igt@kms_vrr@flipline.html - bat-rplp-1: NOTRUN -> [SKIP][18] ([i915#3555]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/bat-rplp-1/igt@kms_vrr@flipline.html - fi-rkl-11600: NOTRUN -> [SKIP][19] ([i915#3555]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/fi-rkl-11600/igt@kms_vrr@flipline.html - fi-apl-guc: NOTRUN -> [SKIP][20] ([fdo#109271]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/fi-apl-guc/igt@kms_vrr@flipline.html - bat-atsm-1: NOTRUN -> [SKIP][21] ([i915#6078]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/bat-atsm-1/igt@kms_vrr@flipline.html - bat-dg1-7: NOTRUN -> [SKIP][22] ([i915#3555]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/bat-dg1-7/igt@kms_vrr@flipline.html - bat-jsl-3: NOTRUN -> [SKIP][23] ([i915#3555]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/bat-jsl-3/igt@kms_vrr@flipline.html - bat-dg2-11: NOTRUN -> [SKIP][24] ([i915#3555]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/bat-dg2-11/igt@kms_vrr@flipline.html - fi-kbl-x1275: NOTRUN -> [SKIP][25] ([fdo#109271]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/fi-kbl-x1275/igt@kms_vrr@flipline.html - fi-cfl-8109u: NOTRUN -> [SKIP][26] ([fdo#109271]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/fi-cfl-8109u/igt@kms_vrr@flipline.html - fi-kbl-7567u: NOTRUN -> [SKIP][27] ([fdo#109271]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/fi-kbl-7567u/igt@kms_vrr@flipline.html - bat-adln-1: NOTRUN -> [SKIP][28] ([i915#3555]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/bat-adln-1/igt@kms_vrr@flipline.html - fi-ivb-3770: NOTRUN -> [SKIP][29] ([fdo#109271]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/fi-ivb-3770/igt@kms_vrr@flipline.html - fi-elk-e7500: NOTRUN -> [SKIP][30] ([fdo#109271]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/fi-elk-e7500/igt@kms_vrr@flipline.html - bat-dg2-8: NOTRUN -> [SKIP][31] ([i915#3555]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/bat-dg2-8/igt@kms_vrr@flipline.html - fi-kbl-guc: NOTRUN -> [SKIP][32] ([fdo#109271]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/fi-kbl-guc/igt@kms_vrr@flipline.html - fi-ilk-650: NOTRUN -> [SKIP][33] ([fdo#109271]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/fi-ilk-650/igt@kms_vrr@flipline.html - bat-jsl-1: NOTRUN -> [SKIP][34] ([i915#3555]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/bat-jsl-1/igt@kms_vrr@flipline.html - fi-tgl-1115g4: NOTRUN -> [SKIP][35] ([i915#3555]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/fi-tgl-1115g4/igt@kms_vrr@flipline.html - fi-cfl-guc: NOTRUN -> [SKIP][36] ([fdo#109271]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/fi-cfl-guc/igt@kms_vrr@flipline.html - bat-mtlp-6: NOTRUN -> [SKIP][37] ([i915#9792]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/bat-mtlp-6/igt@kms_vrr@flipline.html - fi-skl-6600u: NOTRUN -> [SKIP][38] ([fdo#109271]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/fi-skl-6600u/igt@kms_vrr@flipline.html - fi-pnv-d510: NOTRUN -> [SKIP][39] ([fdo#109271]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/fi-pnv-d510/igt@kms_vrr@flipline.html - fi-glk-j4005: NOTRUN -> [SKIP][40] ([fdo#109271]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/fi-glk-j4005/igt@kms_vrr@flipline.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608 [i915#6078]: https://gitlab.freedesktop.org/drm/intel/issues/6078 [i915#9792]: https://gitlab.freedesktop.org/drm/intel/issues/9792 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7638 -> IGTPW_10411 CI-20190529: 20190529 CI_DRM_14012: 3dbd9e32db3edc72f8b7d82a75c0e7355e1bac92 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10411: 10411 IGT_7638: 52ca619dfeae57348b957778dcfdd8117d8ff9f0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/index.html [-- Attachment #2: Type: text/html, Size: 13033 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/2] tests/kms_vrr: Tweak flipline subtest (rev2) 2023-12-13 8:16 [i-g-t 1/2] tests/kms_vrr: Tweak flipline subtest Bhanuprakash Modem ` (3 preceding siblings ...) 2023-12-13 13:06 ` ✓ Fi.CI.BAT: " Patchwork @ 2023-12-13 14:02 ` Patchwork 4 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2023-12-13 14:02 UTC (permalink / raw) To: Bhanuprakash Modem; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 93399 bytes --] == Series Details == Series: series starting with [i-g-t,1/2] tests/kms_vrr: Tweak flipline subtest (rev2) URL : https://patchwork.freedesktop.org/series/127740/ State : failure == Summary == CI Bug Log - changes from CI_DRM_14012_full -> IGTPW_10411_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10411_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10411_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_10411/index.html Participating hosts (8 -> 7) ------------------------------ Missing (1): shard-glk-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10411_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_balancer@parallel-dmabuf-import-out-fence: - shard-dg2: NOTRUN -> [ABORT][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-7/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html * igt@i915_pm_rps@waitboost: - shard-dg2: NOTRUN -> [FAIL][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-6/igt@i915_pm_rps@waitboost.html - shard-dg1: NOTRUN -> [FAIL][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-14/igt@i915_pm_rps@waitboost.html #### Warnings #### * igt@kms_content_protection@content-type-change: - shard-snb: [SKIP][4] ([fdo#109271]) -> [INCOMPLETE][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14012/shard-snb5/igt@kms_content_protection@content-type-change.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-snb7/igt@kms_content_protection@content-type-change.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@kms_vrr@seamless-rr-switch-drrs}: - shard-rkl: NOTRUN -> [SKIP][6] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-5/igt@kms_vrr@seamless-rr-switch-drrs.html - shard-dg1: NOTRUN -> [SKIP][7] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-16/igt@kms_vrr@seamless-rr-switch-drrs.html - shard-dg2: NOTRUN -> [SKIP][8] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-6/igt@kms_vrr@seamless-rr-switch-drrs.html Known issues ------------ Here are the changes found in IGTPW_10411_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-dg1: NOTRUN -> [SKIP][9] ([i915#8411]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-18/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][10] ([i915#6230]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-1/igt@api_intel_bb@crc32.html - shard-dg1: NOTRUN -> [SKIP][11] ([i915#6230]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-19/igt@api_intel_bb@crc32.html - shard-tglu: NOTRUN -> [SKIP][12] ([i915#6230]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-8/igt@api_intel_bb@crc32.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#8411]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-8/igt@api_intel_bb@object-reloc-purge-cache.html - shard-dg2: NOTRUN -> [SKIP][14] ([i915#8411]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-5/igt@api_intel_bb@object-reloc-purge-cache.html - shard-rkl: NOTRUN -> [SKIP][15] ([i915#8411]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-4/igt@api_intel_bb@object-reloc-purge-cache.html * igt@drm_fdinfo@virtual-busy: - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#8414]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-7/igt@drm_fdinfo@virtual-busy.html - shard-dg2: NOTRUN -> [SKIP][17] ([i915#8414]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-6/igt@drm_fdinfo@virtual-busy.html - shard-dg1: NOTRUN -> [SKIP][18] ([i915#8414]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-14/igt@drm_fdinfo@virtual-busy.html * igt@gem_bad_reloc@negative-reloc-lut: - shard-rkl: NOTRUN -> [SKIP][19] ([i915#3281]) +11 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-4/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_ccs@suspend-resume: - shard-rkl: NOTRUN -> [SKIP][20] ([i915#9323]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-2/igt@gem_ccs@suspend-resume.html - shard-dg1: NOTRUN -> [SKIP][21] ([i915#9323]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-12/igt@gem_ccs@suspend-resume.html - shard-tglu: NOTRUN -> [SKIP][22] ([i915#9323]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-5/igt@gem_ccs@suspend-resume.html - shard-mtlp: NOTRUN -> [SKIP][23] ([i915#9323]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-7/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][24] ([i915#7297]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-10/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html * igt@gem_close_race@multigpu-basic-process: - shard-tglu: NOTRUN -> [SKIP][25] ([i915#7697]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-10/igt@gem_close_race@multigpu-basic-process.html - shard-mtlp: NOTRUN -> [SKIP][26] ([i915#7697]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-6/igt@gem_close_race@multigpu-basic-process.html - shard-dg2: NOTRUN -> [SKIP][27] ([i915#7697]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-6/igt@gem_close_race@multigpu-basic-process.html - shard-rkl: NOTRUN -> [SKIP][28] ([i915#7697]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-5/igt@gem_close_race@multigpu-basic-process.html - shard-dg1: NOTRUN -> [SKIP][29] ([i915#7697]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-16/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-mtlp: NOTRUN -> [SKIP][30] ([i915#6335]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-5/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_persistence@engines-queued: - shard-snb: NOTRUN -> [SKIP][31] ([fdo#109271] / [i915#1099]) +6 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-snb4/igt@gem_ctx_persistence@engines-queued.html * igt@gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][32] ([i915#280]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-1/igt@gem_ctx_sseu@engines.html - shard-dg1: NOTRUN -> [SKIP][33] ([i915#280]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-19/igt@gem_ctx_sseu@engines.html - shard-tglu: NOTRUN -> [SKIP][34] ([i915#280]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-8/igt@gem_ctx_sseu@engines.html - shard-dg2: NOTRUN -> [SKIP][35] ([i915#280]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-1/igt@gem_ctx_sseu@engines.html * igt@gem_exec_balancer@bonded-chain: - shard-rkl: NOTRUN -> [ABORT][36] ([i915#9856]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-5/igt@gem_exec_balancer@bonded-chain.html - shard-glk: NOTRUN -> [ABORT][37] ([i915#9856]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-glk1/igt@gem_exec_balancer@bonded-chain.html - shard-dg2: NOTRUN -> [ABORT][38] ([i915#9856]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-3/igt@gem_exec_balancer@bonded-chain.html * igt@gem_exec_balancer@bonded-pair: - shard-mtlp: NOTRUN -> [ABORT][39] ([i915#9856]) +1 other test abort [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-4/igt@gem_exec_balancer@bonded-pair.html - shard-dg2: NOTRUN -> [SKIP][40] ([i915#4771]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-5/igt@gem_exec_balancer@bonded-pair.html - shard-dg1: NOTRUN -> [SKIP][41] ([i915#4771]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-18/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#4036]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-11/igt@gem_exec_balancer@invalid-bonds.html - shard-dg1: NOTRUN -> [SKIP][43] ([i915#4036]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-14/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@nohangcheck: - shard-dg2: NOTRUN -> [ABORT][44] ([i915#9855]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-3/igt@gem_exec_balancer@nohangcheck.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [ABORT][45] ([i915#9855]) +1 other test abort [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-5/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_balancer@parallel-contexts: - shard-mtlp: NOTRUN -> [ABORT][46] ([i915#9855]) +1 other test abort [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-1/igt@gem_exec_balancer@parallel-contexts.html - shard-dg1: NOTRUN -> [ABORT][47] ([i915#9855]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-13/igt@gem_exec_balancer@parallel-contexts.html * igt@gem_exec_fair@basic-none-rrul: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#3539] / [i915#4852]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-5/igt@gem_exec_fair@basic-none-rrul.html - shard-dg1: NOTRUN -> [SKIP][49] ([i915#3539] / [i915#4852]) +3 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-17/igt@gem_exec_fair@basic-none-rrul.html - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4473] / [i915#4771]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-8/igt@gem_exec_fair@basic-none-rrul.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-glk: NOTRUN -> [FAIL][51] ([i915#2842]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-glk4/igt@gem_exec_fair@basic-none-rrul@rcs0.html - shard-rkl: NOTRUN -> [FAIL][52] ([i915#2842]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-4/igt@gem_exec_fair@basic-none-rrul@rcs0.html - shard-tglu: NOTRUN -> [FAIL][53] ([i915#2842]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-2/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fence@concurrent: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#4812]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-7/igt@gem_exec_fence@concurrent.html * igt@gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][55] ([i915#4812]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-13/igt@gem_exec_fence@submit.html - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4812]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-5/igt@gem_exec_fence@submit.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-tglu: NOTRUN -> [SKIP][57] ([fdo#109313]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-4/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#3711]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-5/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_params@secure-non-root: - shard-dg2: NOTRUN -> [SKIP][59] ([fdo#112283]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-6/igt@gem_exec_params@secure-non-root.html - shard-rkl: NOTRUN -> [SKIP][60] ([fdo#112283]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-5/igt@gem_exec_params@secure-non-root.html - shard-dg1: NOTRUN -> [SKIP][61] ([fdo#112283]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-16/igt@gem_exec_params@secure-non-root.html - shard-tglu: NOTRUN -> [SKIP][62] ([fdo#112283]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-10/igt@gem_exec_params@secure-non-root.html - shard-mtlp: NOTRUN -> [SKIP][63] ([fdo#112283]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-6/igt@gem_exec_params@secure-non-root.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#3281]) +12 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-6/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-wc-read-active: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#3281]) +12 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-15/igt@gem_exec_reloc@basic-wc-read-active.html * igt@gem_exec_reloc@basic-write-wc: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#3281]) +12 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-1/igt@gem_exec_reloc@basic-write-wc.html * igt@gem_exec_schedule@deep@rcs0: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4537]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-4/igt@gem_exec_schedule@deep@rcs0.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4537] / [i915#4812]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-5/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_exec_schedule@thriceslice: - shard-snb: NOTRUN -> [SKIP][69] ([fdo#109271]) +493 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-snb6/igt@gem_exec_schedule@thriceslice.html * igt@gem_exec_whisper@basic-contexts-priority: - shard-tglu: NOTRUN -> [INCOMPLETE][70] ([i915#6755] / [i915#9857]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-10/igt@gem_exec_whisper@basic-contexts-priority.html * igt@gem_exec_whisper@basic-fds: - shard-tglu: NOTRUN -> [INCOMPLETE][71] ([i915#9857]) +2 other tests incomplete [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-3/igt@gem_exec_whisper@basic-fds.html - shard-glk: NOTRUN -> [INCOMPLETE][72] ([i915#9857]) +4 other tests incomplete [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-glk2/igt@gem_exec_whisper@basic-fds.html * igt@gem_exec_whisper@basic-fds-all: - shard-mtlp: NOTRUN -> [ABORT][73] ([i915#9855] / [i915#9857]) +1 other test abort [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-2/igt@gem_exec_whisper@basic-fds-all.html * igt@gem_exec_whisper@basic-queues: - shard-snb: NOTRUN -> [INCOMPLETE][74] ([i915#9857]) +4 other tests incomplete [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-snb2/igt@gem_exec_whisper@basic-queues.html * igt@gem_exec_whisper@basic-queues-forked-all: - shard-tglu: NOTRUN -> [INCOMPLETE][75] ([i915#6755] / [i915#7392] / [i915#9857]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-3/igt@gem_exec_whisper@basic-queues-forked-all.html - shard-mtlp: NOTRUN -> [ABORT][76] ([i915#7392] / [i915#9857]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-3/igt@gem_exec_whisper@basic-queues-forked-all.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#4860]) +3 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-11/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy: - shard-dg1: NOTRUN -> [SKIP][78] ([i915#4860]) +3 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-15/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html * igt@gem_fenced_exec_thrash@too-many-fences: - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#4860]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-8/igt@gem_fenced_exec_thrash@too-many-fences.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][80] ([i915#4613] / [i915#7582]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-3/igt@gem_lmem_evict@dontneed-evict-race.html - shard-tglu: NOTRUN -> [SKIP][81] ([i915#4613] / [i915#7582]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-7/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@basic: - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#4613]) +8 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-1/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@heavy-random: - shard-tglu: NOTRUN -> [SKIP][83] ([i915#4613]) +7 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-3/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][84] ([i915#4613]) +9 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-3/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@random: - shard-glk: NOTRUN -> [SKIP][85] ([fdo#109271] / [i915#4613]) +8 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-glk2/igt@gem_lmem_swapping@random.html * igt@gem_mmap_gtt@basic: - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#4077]) +12 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-8/igt@gem_mmap_gtt@basic.html * igt@gem_mmap_gtt@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#4077]) +14 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-3/igt@gem_mmap_gtt@basic-small-bo.html * igt@gem_mmap_gtt@medium-copy-odd: - shard-dg1: NOTRUN -> [SKIP][88] ([i915#4077]) +13 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-13/igt@gem_mmap_gtt@medium-copy-odd.html * igt@gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#4083]) +2 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-1/igt@gem_mmap_wc@write-prefaulted.html - shard-dg1: NOTRUN -> [SKIP][90] ([i915#4083]) +2 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-13/igt@gem_mmap_wc@write-prefaulted.html - shard-mtlp: NOTRUN -> [SKIP][91] ([i915#4083]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-1/igt@gem_mmap_wc@write-prefaulted.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-rkl: NOTRUN -> [SKIP][92] ([i915#3282]) +8 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-2/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html - shard-dg1: NOTRUN -> [SKIP][93] ([i915#3282]) +7 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-18/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pread@exhaustion: - shard-snb: NOTRUN -> [WARN][94] ([i915#2658]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-snb4/igt@gem_pread@exhaustion.html * igt@gem_pread@uncached: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#3282]) +7 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-7/igt@gem_pread@uncached.html * igt@gem_pxp@create-valid-protected-context: - shard-mtlp: NOTRUN -> [SKIP][96] ([i915#4270]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-3/igt@gem_pxp@create-valid-protected-context.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#4270]) +2 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-11/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html - shard-rkl: NOTRUN -> [SKIP][98] ([i915#4270]) +2 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-7/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html - shard-dg1: NOTRUN -> [SKIP][99] ([i915#4270]) +2 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-17/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html - shard-tglu: NOTRUN -> [SKIP][100] ([i915#4270]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-10/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_readwrite@read-bad-handle: - shard-mtlp: NOTRUN -> [SKIP][101] ([i915#3282]) +5 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-8/igt@gem_readwrite@read-bad-handle.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs: - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#8428]) +4 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-1/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs.html * igt@gem_render_copy@y-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#5190]) +14 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-11/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html * igt@gem_render_tiled_blits@basic: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#4079]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-17/igt@gem_render_tiled_blits@basic.html * igt@gem_tiled_pread_basic: - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#4079]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-1/igt@gem_tiled_pread_basic.html - shard-dg2: NOTRUN -> [SKIP][106] ([i915#4079]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-1/igt@gem_tiled_pread_basic.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#3297]) +4 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-5/igt@gem_userptr_blits@create-destroy-unsync.html - shard-tglu: NOTRUN -> [SKIP][108] ([i915#3297]) +2 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-2/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#3297] / [i915#4880]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-6/igt@gem_userptr_blits@map-fixed-invalidate.html - shard-dg1: NOTRUN -> [SKIP][110] ([i915#3297] / [i915#4880]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-14/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#3297] / [i915#4958]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-6/igt@gem_userptr_blits@sd-probe.html - shard-dg1: NOTRUN -> [SKIP][112] ([i915#3297] / [i915#4958]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-19/igt@gem_userptr_blits@sd-probe.html * igt@gem_userptr_blits@unsync-overlap: - shard-mtlp: NOTRUN -> [SKIP][113] ([i915#3297]) +3 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-3/igt@gem_userptr_blits@unsync-overlap.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#3297]) +4 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-4/igt@gem_userptr_blits@unsync-unmap-after-close.html - shard-dg1: NOTRUN -> [SKIP][115] ([i915#3297]) +4 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-17/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gen7_exec_parse@load-register-reg: - shard-tglu: NOTRUN -> [SKIP][116] ([fdo#109289]) +2 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-4/igt@gen7_exec_parse@load-register-reg.html * igt@gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#2527]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-5/igt@gen9_exec_parse@bb-oversize.html - shard-dg1: NOTRUN -> [SKIP][118] ([i915#2527]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-16/igt@gen9_exec_parse@bb-oversize.html - shard-tglu: NOTRUN -> [SKIP][119] ([i915#2527] / [i915#2856]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-10/igt@gen9_exec_parse@bb-oversize.html - shard-mtlp: NOTRUN -> [SKIP][120] ([i915#2856]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-6/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@bb-start-param: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#2856]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-5/igt@gen9_exec_parse@bb-start-param.html * igt@i915_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#7091]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-11/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html - shard-mtlp: NOTRUN -> [SKIP][123] ([i915#8436]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-5/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html * igt@i915_pm_freq_api@freq-suspend: - shard-rkl: NOTRUN -> [SKIP][124] ([i915#8399]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-2/igt@i915_pm_freq_api@freq-suspend.html - shard-tglu: NOTRUN -> [SKIP][125] ([i915#8399]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-5/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#6621]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-11/igt@i915_pm_rps@min-max-config-loaded.html - shard-dg1: NOTRUN -> [SKIP][127] ([i915#6621]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-14/igt@i915_pm_rps@min-max-config-loaded.html - shard-mtlp: NOTRUN -> [SKIP][128] ([i915#6621]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-3/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@waitboost: - shard-mtlp: NOTRUN -> [FAIL][129] ([i915#8346]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-7/igt@i915_pm_rps@waitboost.html * igt@i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#4387]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-3/igt@i915_pm_sseu@full-enable.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-dg1: NOTRUN -> [SKIP][131] ([i915#4212]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-13/igt@kms_addfb_basic@basic-x-tiled-legacy.html - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#4212]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-5/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#4212]) +2 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-3/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_async_flips@crc@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][134] ([i915#8247]) +3 other tests fail [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-6/igt@kms_async_flips@crc@pipe-c-hdmi-a-3.html * igt@kms_async_flips@crc@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [FAIL][135] ([i915#8247]) +3 other tests fail [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-8/igt@kms_async_flips@crc@pipe-d-edp-1.html * igt@kms_async_flips@crc@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][136] ([i915#8247]) +3 other tests fail [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-15/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-snb: NOTRUN -> [SKIP][137] ([fdo#109271] / [i915#1769]) +1 other test skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-snb7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#1769] / [i915#3555]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-11/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-dg1: NOTRUN -> [SKIP][139] ([i915#1769] / [i915#3555]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-13/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-tglu: NOTRUN -> [SKIP][140] ([i915#1769] / [i915#3555]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-glk: NOTRUN -> [SKIP][141] ([fdo#109271] / [i915#1769]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-glk7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][142] ([fdo#111614]) +3 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-5/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][143] ([i915#5286]) +4 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-1/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][144] ([i915#4538] / [i915#5286]) +4 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-19/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html - shard-tglu: NOTRUN -> [SKIP][145] ([fdo#111615] / [i915#5286]) +3 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-8/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][146] ([fdo#111614]) +5 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-3/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][147] ([fdo#111614]) +4 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-6/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][148] ([i915#3638]) +5 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-14/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][149] ([fdo#111614] / [i915#3638]) +5 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-7/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-mtlp: NOTRUN -> [SKIP][150] ([fdo#111615]) +15 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#4538] / [i915#5190]) +7 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-1/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-rkl: NOTRUN -> [SKIP][152] ([fdo#111615]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-3/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html - shard-dg1: NOTRUN -> [SKIP][153] ([fdo#111615]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-14/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][154] ([fdo#110723]) +6 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu: NOTRUN -> [SKIP][155] ([fdo#111615]) +6 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][156] ([i915#4538]) +8 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_ccs@pipe-a-bad-pixel-format-4-tiled-mtl-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#5354]) +72 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-3/igt@kms_ccs@pipe-a-bad-pixel-format-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@pipe-a-crc-primary-basic-y-tiled-ccs: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#5354] / [i915#6095]) +21 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-5/igt@kms_ccs@pipe-a-crc-primary-basic-y-tiled-ccs.html * igt@kms_ccs@pipe-c-bad-rotation-90-4-tiled-mtl-rc-ccs-cc: - shard-tglu: NOTRUN -> [SKIP][159] ([i915#5354] / [i915#6095]) +39 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-5/igt@kms_ccs@pipe-c-bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@pipe-c-crc-primary-rotation-180-4-tiled-mtl-mc-ccs: - shard-glk: NOTRUN -> [SKIP][160] ([fdo#109271]) +192 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-glk1/igt@kms_ccs@pipe-c-crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-yf-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#5354] / [i915#6095]) +32 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-8/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-yf-tiled-ccs.html * igt@kms_ccs@pipe-d-ccs-on-another-bo-4-tiled-mtl-mc-ccs: - shard-rkl: NOTRUN -> [SKIP][162] ([i915#5354]) +25 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-7/igt@kms_ccs@pipe-d-ccs-on-another-bo-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@pipe-d-random-ccs-data-4-tiled-mtl-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][163] ([i915#5354] / [i915#6095]) +40 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-19/igt@kms_ccs@pipe-d-random-ccs-data-4-tiled-mtl-rc-ccs.html * igt@kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#3742]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-5/igt@kms_cdclk@plane-scaling.html - shard-dg1: NOTRUN -> [SKIP][165] ([i915#3742]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-16/igt@kms_cdclk@plane-scaling.html - shard-tglu: NOTRUN -> [SKIP][166] ([i915#3742]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-10/igt@kms_cdclk@plane-scaling.html * igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#4087]) +3 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-6/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html * igt@kms_cdclk@plane-scaling@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#4087]) +3 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-6/igt@kms_cdclk@plane-scaling@pipe-c-edp-1.html * igt@kms_chamelium_color@ctm-0-75: - shard-dg2: NOTRUN -> [SKIP][169] ([fdo#111827]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-3/igt@kms_chamelium_color@ctm-0-75.html * igt@kms_chamelium_edid@dp-mode-timings: - shard-mtlp: NOTRUN -> [SKIP][170] ([i915#7828]) +9 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-1/igt@kms_chamelium_edid@dp-mode-timings.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][171] ([i915#7828]) +9 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-2/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_edid@hdmi-mode-timings: - shard-tglu: NOTRUN -> [SKIP][172] ([i915#7828]) +10 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-3/igt@kms_chamelium_edid@hdmi-mode-timings.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#7828]) +8 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-1/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_hpd@dp-hpd: - shard-dg1: NOTRUN -> [SKIP][174] ([i915#7828]) +10 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-17/igt@kms_chamelium_hpd@dp-hpd.html * igt@kms_content_protection@atomic: - shard-dg1: NOTRUN -> [SKIP][175] ([i915#7116]) +1 other test skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-19/igt@kms_content_protection@atomic.html * igt@kms_content_protection@atomic-dpms: - shard-tglu: NOTRUN -> [SKIP][176] ([i915#6944] / [i915#7116] / [i915#7118]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-2/igt@kms_content_protection@atomic-dpms.html - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#6944]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-6/igt@kms_content_protection@atomic-dpms.html - shard-dg2: NOTRUN -> [SKIP][178] ([i915#7118]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-3/igt@kms_content_protection@atomic-dpms.html - shard-rkl: NOTRUN -> [SKIP][179] ([i915#7118]) +1 other test skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-5/igt@kms_content_protection@atomic-dpms.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#3359]) +2 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-rkl: NOTRUN -> [SKIP][181] ([fdo#109279] / [i915#3359]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-dg1: NOTRUN -> [SKIP][182] ([i915#3359]) +1 other test skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-16/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-rkl: NOTRUN -> [SKIP][183] ([i915#3555]) +6 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-3/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-tglu: NOTRUN -> [SKIP][184] ([i915#3359]) +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-7/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-mtlp: NOTRUN -> [SKIP][185] ([i915#3359]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-6/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html - shard-rkl: NOTRUN -> [SKIP][186] ([i915#3359]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-5/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-64x21: - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#8814]) +3 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-1/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#3555]) +7 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-7/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#8814]) +3 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-5/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic: - shard-dg2: NOTRUN -> [SKIP][190] ([fdo#109274] / [i915#5354]) +2 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-5/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-tglu: NOTRUN -> [SKIP][191] ([fdo#109274]) +3 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-5/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html - shard-mtlp: NOTRUN -> [SKIP][192] ([i915#9809]) +2 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-7/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: NOTRUN -> [FAIL][193] ([i915#2346]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#9067]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-rkl: NOTRUN -> [SKIP][195] ([i915#9067]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-5/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-dg1: NOTRUN -> [SKIP][196] ([i915#9067]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-16/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-tglu: NOTRUN -> [SKIP][197] ([i915#9067]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#4103] / [i915#4213]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-rkl: NOTRUN -> [SKIP][199] ([i915#4103]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-dg1: NOTRUN -> [SKIP][200] ([i915#4103] / [i915#4213]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-18/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_fbcon_fbt@psr: - shard-rkl: NOTRUN -> [SKIP][201] ([fdo#110189] / [i915#3955]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-2/igt@kms_fbcon_fbt@psr.html - shard-dg1: NOTRUN -> [SKIP][202] ([i915#3469]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-12/igt@kms_fbcon_fbt@psr.html - shard-tglu: NOTRUN -> [SKIP][203] ([i915#3469]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-5/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@chamelium: - shard-tglu: NOTRUN -> [SKIP][204] ([i915#2065] / [i915#4854]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-2/igt@kms_feature_discovery@chamelium.html - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#4854]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-2/igt@kms_feature_discovery@chamelium.html - shard-dg2: NOTRUN -> [SKIP][206] ([i915#4854]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-3/igt@kms_feature_discovery@chamelium.html - shard-rkl: NOTRUN -> [SKIP][207] ([i915#4854]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-3/igt@kms_feature_discovery@chamelium.html - shard-dg1: NOTRUN -> [SKIP][208] ([i915#4854]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-14/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#9337]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-7/igt@kms_feature_discovery@dp-mst.html - shard-rkl: NOTRUN -> [SKIP][210] ([i915#9337]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-7/igt@kms_feature_discovery@dp-mst.html - shard-dg1: NOTRUN -> [SKIP][211] ([i915#9337]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-17/igt@kms_feature_discovery@dp-mst.html - shard-tglu: NOTRUN -> [SKIP][212] ([i915#9337]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-3/igt@kms_feature_discovery@dp-mst.html - shard-mtlp: NOTRUN -> [SKIP][213] ([i915#9337]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-3/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible: - shard-dg2: NOTRUN -> [SKIP][214] ([fdo#109274]) +8 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-flip-vs-dpms: - shard-rkl: NOTRUN -> [SKIP][215] ([fdo#111825]) +12 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-7/igt@kms_flip@2x-flip-vs-dpms.html - shard-mtlp: NOTRUN -> [SKIP][216] ([i915#3637]) +7 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-2/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-dg2: NOTRUN -> [SKIP][217] ([fdo#109274] / [fdo#111767]) +1 other test skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-modeset: - shard-tglu: NOTRUN -> [SKIP][218] ([fdo#109274] / [i915#3637]) +8 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-3/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-mtlp: NOTRUN -> [SKIP][219] ([fdo#111767] / [i915#3637]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-7/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html - shard-rkl: NOTRUN -> [SKIP][220] ([fdo#111767] / [fdo#111825]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-2/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html - shard-dg1: NOTRUN -> [SKIP][221] ([fdo#111767] / [fdo#111825]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-12/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html - shard-tglu: NOTRUN -> [SKIP][222] ([fdo#109274] / [fdo#111767] / [i915#3637]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-5/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-dg1: NOTRUN -> [SKIP][223] ([fdo#111825]) +40 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-18/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][224] ([i915#8381]) +1 other test skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-1/igt@kms_flip@flip-vs-fences.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#8381]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-5/igt@kms_flip@flip-vs-fences-interruptible.html - shard-dg1: NOTRUN -> [SKIP][226] ([i915#8381]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-17/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][227] ([i915#2672]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#2672]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html - shard-rkl: NOTRUN -> [SKIP][229] ([i915#2672]) +1 other test skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html - shard-dg1: NOTRUN -> [SKIP][230] ([i915#2587] / [i915#2672]) +2 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][231] ([i915#2587] / [i915#2672]) +2 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][232] ([i915#3555] / [i915#8810]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/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-offscren-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][233] ([i915#8708]) +10 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][234] ([i915#8708]) +17 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-snb: [PASS][235] -> [SKIP][236] ([fdo#109271]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14012/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#8708]) +17 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#1825]) +30 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][239] ([fdo#111825] / [i915#1825]) +34 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt: - shard-dg1: NOTRUN -> [SKIP][240] ([i915#3458]) +15 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: NOTRUN -> [SKIP][241] ([i915#9766]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-2/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-dg1: NOTRUN -> [SKIP][242] ([i915#9766]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-12/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-tglu: NOTRUN -> [SKIP][243] ([i915#9766]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-5/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-dg2: NOTRUN -> [SKIP][244] ([i915#9766]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-10/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-mtlp: NOTRUN -> [SKIP][245] ([i915#9653]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-3/igt@kms_frontbuffer_tracking@plane-fbc-rte.html - shard-dg2: NOTRUN -> [SKIP][246] ([i915#9653]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-11/igt@kms_frontbuffer_tracking@plane-fbc-rte.html - shard-rkl: NOTRUN -> [SKIP][247] ([i915#9653]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-3/igt@kms_frontbuffer_tracking@plane-fbc-rte.html - shard-dg1: NOTRUN -> [SKIP][248] ([i915#9653]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-14/igt@kms_frontbuffer_tracking@plane-fbc-rte.html - shard-tglu: NOTRUN -> [SKIP][249] ([i915#9653]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-7/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#3458]) +15 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html - shard-rkl: NOTRUN -> [SKIP][251] ([i915#3023]) +19 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][252] ([fdo#109280]) +38 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary: - shard-tglu: NOTRUN -> [SKIP][253] ([fdo#110189]) +19 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-4/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#6118]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-7/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-dg2: NOTRUN -> [SKIP][255] ([fdo#109289]) +4 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-3/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html - shard-rkl: NOTRUN -> [SKIP][256] ([fdo#109289]) +4 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-2/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html - shard-dg1: NOTRUN -> [SKIP][257] ([fdo#109289]) +4 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-18/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c: - shard-mtlp: NOTRUN -> [SKIP][258] ([fdo#109289]) +2 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-6/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][259] ([i915#4573]) +1 other test fail [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-glk8/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html * igt@kms_plane_lowres@tiling-x@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][260] ([i915#3582]) +3 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-1/igt@kms_plane_lowres@tiling-x@pipe-a-edp-1.html * igt@kms_plane_lowres@tiling-y: - shard-mtlp: NOTRUN -> [SKIP][261] ([i915#3555] / [i915#8821]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-2/igt@kms_plane_lowres@tiling-y.html - shard-dg2: NOTRUN -> [SKIP][262] ([i915#8821]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-6/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][263] ([i915#9423]) +3 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][264] ([i915#5235]) +6 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][265] ([i915#3555] / [i915#5235]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d-edp-1.html * igt@kms_pm_backlight@fade-with-suspend: - shard-tglu: NOTRUN -> [SKIP][266] ([i915#9812]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-5/igt@kms_pm_backlight@fade-with-suspend.html - shard-dg1: NOTRUN -> [SKIP][267] ([i915#5354]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-12/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc5-dpms-negative: - shard-mtlp: NOTRUN -> [SKIP][268] ([i915#9293]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-1/igt@kms_pm_dc@dc5-dpms-negative.html * igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [FAIL][269] ([i915#9301]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-3/igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-1.html * igt@kms_pm_lpsp@screens-disabled: - shard-rkl: NOTRUN -> [SKIP][270] ([i915#8430]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-1/igt@kms_pm_lpsp@screens-disabled.html - shard-dg1: NOTRUN -> [SKIP][271] ([i915#8430]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-19/igt@kms_pm_lpsp@screens-disabled.html - shard-tglu: NOTRUN -> [SKIP][272] ([i915#8430]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-8/igt@kms_pm_lpsp@screens-disabled.html - shard-mtlp: NOTRUN -> [SKIP][273] ([i915#8430]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-1/igt@kms_pm_lpsp@screens-disabled.html - shard-dg2: NOTRUN -> [SKIP][274] ([i915#8430]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-1/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: [PASS][275] -> [SKIP][276] ([i915#9519]) +1 other test skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14012/shard-dg2-10/igt@kms_pm_rpm@dpms-lpsp.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-5/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][277] ([i915#9519]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-3/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg1: NOTRUN -> [SKIP][278] ([i915#9519]) +1 other test skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-17/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: NOTRUN -> [SKIP][279] ([i915#9519]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html - shard-tglu: NOTRUN -> [SKIP][280] ([i915#9519]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html - shard-mtlp: NOTRUN -> [SKIP][281] ([i915#9519]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-pc8-residency-stress: - shard-mtlp: NOTRUN -> [SKIP][282] ([fdo#109293]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-1/igt@kms_pm_rpm@modeset-pc8-residency-stress.html - shard-dg2: NOTRUN -> [SKIP][283] ([fdo#109293] / [fdo#109506]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-1/igt@kms_pm_rpm@modeset-pc8-residency-stress.html - shard-dg1: NOTRUN -> [SKIP][284] ([fdo#109293] / [fdo#109506]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-13/igt@kms_pm_rpm@modeset-pc8-residency-stress.html - shard-tglu: NOTRUN -> [SKIP][285] ([fdo#109293] / [fdo#109506]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-8/igt@kms_pm_rpm@modeset-pc8-residency-stress.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf: - shard-rkl: NOTRUN -> [SKIP][286] ([i915#9683]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-2/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html - shard-dg1: NOTRUN -> [SKIP][287] ([i915#9683]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-12/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html - shard-tglu: NOTRUN -> [SKIP][288] ([i915#9683]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-5/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][289] ([fdo#111068] / [i915#9683]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-5/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html - shard-rkl: NOTRUN -> [SKIP][290] ([fdo#111068] / [i915#9683]) +1 other test skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-2/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-mtlp: NOTRUN -> [SKIP][291] ([i915#4348]) +1 other test skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-5/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-dg2: NOTRUN -> [SKIP][292] ([i915#9683]) +2 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-11/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-dg1: NOTRUN -> [SKIP][293] ([fdo#111068] / [i915#9683]) +2 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-13/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-tglu: NOTRUN -> [SKIP][294] ([fdo#109642] / [fdo#111068] / [i915#9683]) +1 other test skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_rotation_crc@exhaust-fences: - shard-dg1: NOTRUN -> [SKIP][295] ([i915#4884]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-19/igt@kms_rotation_crc@exhaust-fences.html - shard-mtlp: NOTRUN -> [SKIP][296] ([i915#4235]) +1 other test skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-1/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][297] ([i915#5289]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-7/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html - shard-dg1: NOTRUN -> [SKIP][298] ([i915#5289]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-19/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html - shard-tglu: NOTRUN -> [SKIP][299] ([i915#5289]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [ABORT][300] ([i915#8875]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html - shard-mtlp: NOTRUN -> [SKIP][301] ([i915#5289]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][302] ([i915#4235] / [i915#5190]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-dg2: NOTRUN -> [SKIP][303] ([i915#4235]) +1 other test skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-3/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-tglu: NOTRUN -> [SKIP][304] ([i915#3555]) +6 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-8/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_setmode@clone-exclusive-crtc: - shard-dg1: NOTRUN -> [SKIP][305] ([i915#3555]) +7 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-19/igt@kms_setmode@clone-exclusive-crtc.html - shard-mtlp: NOTRUN -> [SKIP][306] ([i915#3555] / [i915#8809]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-1/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_tv_load_detect@load-detect: - shard-tglu: NOTRUN -> [SKIP][307] ([fdo#109309]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-5/igt@kms_tv_load_detect@load-detect.html - shard-mtlp: NOTRUN -> [SKIP][308] ([fdo#109309]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-7/igt@kms_tv_load_detect@load-detect.html - shard-dg2: NOTRUN -> [SKIP][309] ([fdo#109309]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-10/igt@kms_tv_load_detect@load-detect.html - shard-rkl: NOTRUN -> [SKIP][310] ([fdo#109309]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-2/igt@kms_tv_load_detect@load-detect.html - shard-dg1: NOTRUN -> [SKIP][311] ([fdo#109309]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-12/igt@kms_tv_load_detect@load-detect.html * igt@kms_vrr@flip-suspend: - shard-mtlp: NOTRUN -> [SKIP][312] ([i915#3555] / [i915#8808]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-8/igt@kms_vrr@flip-suspend.html * igt@perf@non-system-wide-paranoid: - shard-mtlp: NOTRUN -> [ABORT][313] ([i915#9847]) +2 other tests abort [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-8/igt@perf@non-system-wide-paranoid.html * igt@perf@oa-exponents@0-rcs0: - shard-dg2: NOTRUN -> [ABORT][314] ([i915#9847]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-7/igt@perf@oa-exponents@0-rcs0.html * igt@perf@sysctl-defaults: - shard-glk: NOTRUN -> [ABORT][315] ([i915#9847]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-glk1/igt@perf@sysctl-defaults.html * igt@perf_pmu@all-busy-idle-check-all: - shard-dg2: NOTRUN -> [ABORT][316] ([i915#9847] / [i915#9853]) +3 other tests abort [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-7/igt@perf_pmu@all-busy-idle-check-all.html - shard-rkl: NOTRUN -> [INCOMPLETE][317] ([i915#9853]) +5 other tests incomplete [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-4/igt@perf_pmu@all-busy-idle-check-all.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: NOTRUN -> [FAIL][318] ([i915#4349]) +3 other tests fail [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-3/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@busy-hang@rcs0: - shard-glk: NOTRUN -> [INCOMPLETE][319] ([i915#9853]) +6 other tests incomplete [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-glk4/igt@perf_pmu@busy-hang@rcs0.html - shard-mtlp: NOTRUN -> [ABORT][320] ([i915#9847] / [i915#9853]) +9 other tests abort [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-5/igt@perf_pmu@busy-hang@rcs0.html * igt@perf_pmu@busy@rcs0: - shard-dg2: NOTRUN -> [INCOMPLETE][321] ([i915#9847] / [i915#9853]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-6/igt@perf_pmu@busy@rcs0.html * igt@perf_pmu@cpu-hotplug: - shard-mtlp: NOTRUN -> [SKIP][322] ([i915#8850]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-5/igt@perf_pmu@cpu-hotplug.html - shard-dg2: NOTRUN -> [SKIP][323] ([i915#8850]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-11/igt@perf_pmu@cpu-hotplug.html - shard-dg1: NOTRUN -> [SKIP][324] ([i915#8850]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-13/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@event-wait@rcs0: - shard-mtlp: NOTRUN -> [SKIP][325] ([i915#3555] / [i915#8807]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-7/igt@perf_pmu@event-wait@rcs0.html * igt@perf_pmu@idle-no-semaphores@rcs0: - shard-tglu: NOTRUN -> [INCOMPLETE][326] ([i915#9853]) +7 other tests incomplete [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-4/igt@perf_pmu@idle-no-semaphores@rcs0.html * igt@perf_pmu@module-unload: - shard-dg1: NOTRUN -> [INCOMPLETE][327] ([i915#9853]) +7 other tests incomplete [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-14/igt@perf_pmu@module-unload.html - shard-dg2: NOTRUN -> [FAIL][328] ([i915#5793]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-3/igt@perf_pmu@module-unload.html - shard-rkl: NOTRUN -> [ABORT][329] ([i915#9847] / [i915#9853]) +2 other tests abort [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-3/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6: - shard-snb: NOTRUN -> [INCOMPLETE][330] ([i915#9853]) +6 other tests incomplete [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-snb4/igt@perf_pmu@rc6.html * igt@perf_pmu@rc6-all-gts: - shard-dg1: NOTRUN -> [SKIP][331] ([i915#8516]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-19/igt@perf_pmu@rc6-all-gts.html - shard-tglu: NOTRUN -> [SKIP][332] ([i915#8516]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-8/igt@perf_pmu@rc6-all-gts.html - shard-dg2: NOTRUN -> [SKIP][333] ([i915#5608] / [i915#8516]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-1/igt@perf_pmu@rc6-all-gts.html - shard-rkl: NOTRUN -> [SKIP][334] ([i915#8516]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-1/igt@perf_pmu@rc6-all-gts.html * igt@perf_pmu@render-node-busy-idle@rcs0: - shard-dg2: NOTRUN -> [INCOMPLETE][335] ([i915#9853]) +2 other tests incomplete [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-11/igt@perf_pmu@render-node-busy-idle@rcs0.html - shard-dg1: NOTRUN -> [ABORT][336] ([i915#9847] / [i915#9853]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-13/igt@perf_pmu@render-node-busy-idle@rcs0.html * igt@prime_vgem@basic-fence-mmap: - shard-mtlp: NOTRUN -> [SKIP][337] ([i915#3708] / [i915#4077]) +1 other test skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-1/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][338] ([i915#3708] / [i915#4077]) +1 other test skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-6/igt@prime_vgem@coherency-gtt.html - shard-rkl: NOTRUN -> [SKIP][339] ([fdo#109295] / [fdo#111656] / [i915#3708]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-5/igt@prime_vgem@coherency-gtt.html - shard-dg1: NOTRUN -> [SKIP][340] ([i915#3708] / [i915#4077]) +1 other test skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-16/igt@prime_vgem@coherency-gtt.html - shard-tglu: NOTRUN -> [SKIP][341] ([fdo#109295] / [fdo#111656]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-10/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-read-hang: - shard-mtlp: NOTRUN -> [SKIP][342] ([i915#3708]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-3/igt@prime_vgem@fence-read-hang.html - shard-dg2: NOTRUN -> [SKIP][343] ([i915#3708]) +1 other test skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-11/igt@prime_vgem@fence-read-hang.html - shard-rkl: NOTRUN -> [SKIP][344] ([fdo#109295] / [i915#3708]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-3/igt@prime_vgem@fence-read-hang.html - shard-dg1: NOTRUN -> [SKIP][345] ([i915#3708]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-14/igt@prime_vgem@fence-read-hang.html - shard-tglu: NOTRUN -> [SKIP][346] ([fdo#109295]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-7/igt@prime_vgem@fence-read-hang.html * igt@tools_test@sysfs_l3_parity: - shard-rkl: NOTRUN -> [SKIP][347] ([fdo#109307]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-3/igt@tools_test@sysfs_l3_parity.html - shard-dg1: NOTRUN -> [SKIP][348] ([fdo#109307] / [i915#4818]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-14/igt@tools_test@sysfs_l3_parity.html - shard-dg2: NOTRUN -> [SKIP][349] ([i915#4818]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-3/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_perfmon@get-values-invalid-pointer: - shard-dg1: NOTRUN -> [SKIP][350] ([i915#2575]) +4 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-12/igt@v3d/v3d_perfmon@get-values-invalid-pointer.html * igt@v3d/v3d_submit_csd@multiple-job-submission: - shard-tglu: NOTRUN -> [SKIP][351] ([fdo#109315] / [i915#2575]) +3 other tests skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-7/igt@v3d/v3d_submit_csd@multiple-job-submission.html - shard-mtlp: NOTRUN -> [SKIP][352] ([i915#2575]) +3 other tests skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-3/igt@v3d/v3d_submit_csd@multiple-job-submission.html * igt@v3d/v3d_submit_csd@single-out-sync: - shard-dg2: NOTRUN -> [SKIP][353] ([i915#2575]) +3 other tests skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-5/igt@v3d/v3d_submit_csd@single-out-sync.html - shard-rkl: NOTRUN -> [SKIP][354] ([fdo#109315]) +4 other tests skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-4/igt@v3d/v3d_submit_csd@single-out-sync.html * igt@vc4/vc4_tiling@set-bad-flags: - shard-tglu: NOTRUN -> [SKIP][355] ([i915#2575]) +5 other tests skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-tglu-8/igt@vc4/vc4_tiling@set-bad-flags.html - shard-mtlp: NOTRUN -> [SKIP][356] ([i915#7711]) +5 other tests skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-mtlp-1/igt@vc4/vc4_tiling@set-bad-flags.html * igt@vc4/vc4_tiling@set-bad-handle: - shard-dg1: NOTRUN -> [SKIP][357] ([i915#7711]) +6 other tests skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg1-13/igt@vc4/vc4_tiling@set-bad-handle.html * igt@vc4/vc4_wait_seqno@bad-seqno-1ns: - shard-dg2: NOTRUN -> [SKIP][358] ([i915#7711]) +7 other tests skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-dg2-11/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html - shard-rkl: NOTRUN -> [SKIP][359] ([i915#7711]) +5 other tests skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-7/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html #### Possible fixes #### * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-snb: [SKIP][360] ([fdo#109271]) -> [PASS][361] [360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14012/shard-snb5/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-snb7/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: [SKIP][362] ([i915#9519]) -> [PASS][363] [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14012/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-4/igt@kms_pm_rpm@dpms-lpsp.html #### Warnings #### * igt@perf_pmu@busy-start@rcs0: - shard-rkl: [INCOMPLETE][364] ([i915#9853]) -> [ABORT][365] ([i915#9847] / [i915#9853]) +1 other test abort [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14012/shard-rkl-1/igt@perf_pmu@busy-start@rcs0.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/shard-rkl-3/igt@perf_pmu@busy-start@rcs0.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#2065]: https://gitlab.freedesktop.org/drm/intel/issues/2065 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3711]: https://gitlab.freedesktop.org/drm/intel/issues/3711 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4884]: https://gitlab.freedesktop.org/drm/intel/issues/4884 [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608 [i915#5793]: https://gitlab.freedesktop.org/drm/intel/issues/5793 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6118]: https://gitlab.freedesktop.org/drm/intel/issues/6118 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6755]: https://gitlab.freedesktop.org/drm/intel/issues/6755 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#7091]: https://gitlab.freedesktop.org/drm/intel/issues/7091 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297 [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392 [i915#7582]: https://gitlab.freedesktop.org/drm/intel/issues/7582 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8346]: https://gitlab.freedesktop.org/drm/intel/issues/8346 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/intel/issues/8430 [i915#8436]: https://gitlab.freedesktop.org/drm/intel/issues/8436 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8807]: https://gitlab.freedesktop.org/drm/intel/issues/8807 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821 [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850 [i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875 [i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067 [i915#9293]: https://gitlab.freedesktop.org/drm/intel/issues/9293 [i915#9301]: https://gitlab.freedesktop.org/drm/intel/issues/9301 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/intel/issues/9337 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9653]: https://gitlab.freedesktop.org/drm/intel/issues/9653 [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673 [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/intel/issues/9766 [i915#9808]: https://gitlab.freedesktop.org/drm/intel/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809 [i915#9812]: https://gitlab.freedesktop.org/drm/intel/issues/9812 [i915#9847]: https://gitlab.freedesktop.org/drm/intel/issues/9847 [i915#9853]: https://gitlab.freedesktop.org/drm/intel/issues/9853 [i915#9855]: https://gitlab.freedesktop.org/drm/intel/issues/9855 [i915#9856]: https://gitlab.freedesktop.org/drm/intel/issues/9856 [i915#9857]: https://gitlab.freedesktop.org/drm/intel/issues/9857 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7638 -> IGTPW_10411 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_14012: 3dbd9e32db3edc72f8b7d82a75c0e7355e1bac92 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10411: 10411 IGT_7638: 52ca619dfeae57348b957778dcfdd8117d8ff9f0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10411/index.html [-- Attachment #2: Type: text/html, Size: 120879 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2024-01-09 11:51 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-12-13 8:16 [i-g-t 1/2] tests/kms_vrr: Tweak flipline subtest Bhanuprakash Modem 2023-12-13 8:16 ` [i-g-t 2/2] HAX: DO_NOT_MERGE: Add vrr flipline test to BAT Bhanuprakash Modem 2023-12-13 9:53 ` [i-g-t 1/2] tests/kms_vrr: Tweak flipline subtest Bhanuprakash Modem 2024-01-09 5:54 ` Srinivas, Vidya 2024-01-09 10:17 ` Modem, Bhanuprakash 2024-01-09 11:51 ` Golani, Mitulkumar Ajitkumar 2023-12-13 12:53 ` ✓ CI.xeBAT: success for series starting with [i-g-t,1/2] tests/kms_vrr: Tweak flipline subtest (rev2) Patchwork 2023-12-13 13:06 ` ✓ Fi.CI.BAT: " Patchwork 2023-12-13 14:02 ` ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox