* [igt-dev] [i-g-t 1/2] tests/kms_feature_discovery: Fix display subtest
@ 2023-11-21 7:54 Bhanuprakash Modem
2023-11-21 7:54 ` [igt-dev] [i-g-t 2/2] tests/kms_feature_discovery: update display-1x Bhanuprakash Modem
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: Bhanuprakash Modem @ 2023-11-21 7:54 UTC (permalink / raw)
To: igt-dev, swati2.sharma
Instead of doing nothing, check the connected platform really
supports the display or not.
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
tests/kms_feature_discovery.c | 22 ++++++++++++++--------
1 file changed, 14 insertions(+), 8 deletions(-)
diff --git a/tests/kms_feature_discovery.c b/tests/kms_feature_discovery.c
index 428f97ffe..81064aa0e 100644
--- a/tests/kms_feature_discovery.c
+++ b/tests/kms_feature_discovery.c
@@ -30,8 +30,7 @@
* anything else means we have a serious problem.
*
* SUBTEST: display
- * Description: Make sure that we have display support with
- * some outputs connected.
+ * Description: Make sure that we have display support.
* Driver requirement: i915, xe
* Functionality: feature_discovery
* Mega feature: General Display Features
@@ -97,18 +96,25 @@ igt_main {
igt_fixture {
fd = drm_open_driver_master(DRIVER_ANY);
debugfs_fd = igt_debugfs_dir(fd);
+
+ errno = 0;
}
igt_subtest_group {
- igt_fixture {
- igt_display_require(&display, fd);
- }
-
- igt_describe("Make sure that we have display support with some outputs connected.");
+ igt_describe("Make sure that we have display support.");
igt_subtest("display") {
- /* will skip because of the fixture */
+ drmModeResPtr resources = drmModeGetResources(fd);
+
+ /* Operation not supported on non-display platforms. */
+ if (!resources)
+ igt_assert_eq(errno, EOPNOTSUPP);
+
+ drmModeFreeResources(resources);
}
+ igt_fixture
+ igt_display_require(&display, fd);
+
igt_subtest_group {
volatile int output_count = 0;
igt_output_t *output;
--
2.40.0
^ permalink raw reply related [flat|nested] 8+ messages in thread* [igt-dev] [i-g-t 2/2] tests/kms_feature_discovery: update display-1x 2023-11-21 7:54 [igt-dev] [i-g-t 1/2] tests/kms_feature_discovery: Fix display subtest Bhanuprakash Modem @ 2023-11-21 7:54 ` Bhanuprakash Modem 2023-11-23 8:33 ` Kamil Konieczny 2023-11-21 11:24 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] tests/kms_feature_discovery: Fix display subtest Patchwork ` (3 subsequent siblings) 4 siblings, 1 reply; 8+ messages in thread From: Bhanuprakash Modem @ 2023-11-21 7:54 UTC (permalink / raw) To: igt-dev, swati2.sharma From: Swati Sharma <swati2.sharma@intel.com> Use same logic to detect 1x display as 2x, 3x and 4x displays. Signed-off-by: Swati Sharma <swati2.sharma@intel.com> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> --- tests/kms_feature_discovery.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tests/kms_feature_discovery.c b/tests/kms_feature_discovery.c index 81064aa0e..1b192b0bd 100644 --- a/tests/kms_feature_discovery.c +++ b/tests/kms_feature_discovery.c @@ -72,7 +72,7 @@ * Mega feature: General Display Features * Test category: functionality test * - * arg[1].values: 2, 3, 4 + * arg[1].values: 1, 2, 3, 4 */ #include "igt.h" @@ -137,6 +137,11 @@ igt_main { } } + igt_describe("Make sure that we can use at least 1 output at a time."); + igt_subtest("display-1x") { + igt_require(output_count >= 1); + } + igt_describe("Make sure that we can use at least 2 outputs at the same time."); igt_subtest("display-2x") { igt_require(output_count >= 2); -- 2.40.0 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [igt-dev] [i-g-t 2/2] tests/kms_feature_discovery: update display-1x 2023-11-21 7:54 ` [igt-dev] [i-g-t 2/2] tests/kms_feature_discovery: update display-1x Bhanuprakash Modem @ 2023-11-23 8:33 ` Kamil Konieczny 0 siblings, 0 replies; 8+ messages in thread From: Kamil Konieczny @ 2023-11-23 8:33 UTC (permalink / raw) To: igt-dev Hi Bhanuprakash, On 2023-11-21 at 13:24:51 +0530, Bhanuprakash Modem wrote: > From: Swati Sharma <swati2.sharma@intel.com> > > Use same logic to detect 1x display as 2x, 3x and 4x displays. > > Signed-off-by: Swati Sharma <swati2.sharma@intel.com> > Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > --- > tests/kms_feature_discovery.c | 7 ++++++- > 1 file changed, 6 insertions(+), 1 deletion(-) > > diff --git a/tests/kms_feature_discovery.c b/tests/kms_feature_discovery.c > index 81064aa0e..1b192b0bd 100644 > --- a/tests/kms_feature_discovery.c > +++ b/tests/kms_feature_discovery.c > @@ -72,7 +72,7 @@ > * Mega feature: General Display Features > * Test category: functionality test > * > - * arg[1].values: 2, 3, 4 > + * arg[1].values: 1, 2, 3, 4 > */ > > #include "igt.h" > @@ -137,6 +137,11 @@ igt_main { > } > } > > + igt_describe("Make sure that we can use at least 1 output at a time."); > + igt_subtest("display-1x") { > + igt_require(output_count >= 1); > + } > + > igt_describe("Make sure that we can use at least 2 outputs at the same time."); > igt_subtest("display-2x") { > igt_require(output_count >= 2); > -- > 2.40.0 > ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] tests/kms_feature_discovery: Fix display subtest 2023-11-21 7:54 [igt-dev] [i-g-t 1/2] tests/kms_feature_discovery: Fix display subtest Bhanuprakash Modem 2023-11-21 7:54 ` [igt-dev] [i-g-t 2/2] tests/kms_feature_discovery: update display-1x Bhanuprakash Modem @ 2023-11-21 11:24 ` Patchwork 2023-11-21 11:30 ` [igt-dev] ✓ CI.xeBAT: " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-11-21 11:24 UTC (permalink / raw) To: Bhanuprakash Modem; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2214 bytes --] == Series Details == Series: series starting with [i-g-t,1/2] tests/kms_feature_discovery: Fix display subtest URL : https://patchwork.freedesktop.org/series/126693/ State : success == Summary == CI Bug Log - changes from CI_DRM_13904 -> IGTPW_10226 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/index.html Participating hosts (28 -> 28) ------------------------------ Additional (1): fi-pnv-d510 Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_10226 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_lmem_swapping@basic: - fi-pnv-d510: NOTRUN -> [SKIP][1] ([fdo#109271]) +25 other tests skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/fi-pnv-d510/igt@gem_lmem_swapping@basic.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1: - bat-rplp-1: [PASS][2] -> [ABORT][3] ([i915#8668]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13904/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7595 -> IGTPW_10226 CI-20190529: 20190529 CI_DRM_13904: e7f3669de4cd241d80b35b37ddf7c5e0a2129516 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10226: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/index.html IGT_7595: cfa00d99b1dfa0621ea552d1ed54907798da1a1a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@kms_feature_discovery@display-1x == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/index.html [-- Attachment #2: Type: text/html, Size: 2849 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for series starting with [i-g-t,1/2] tests/kms_feature_discovery: Fix display subtest 2023-11-21 7:54 [igt-dev] [i-g-t 1/2] tests/kms_feature_discovery: Fix display subtest Bhanuprakash Modem 2023-11-21 7:54 ` [igt-dev] [i-g-t 2/2] tests/kms_feature_discovery: update display-1x Bhanuprakash Modem 2023-11-21 11:24 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] tests/kms_feature_discovery: Fix display subtest Patchwork @ 2023-11-21 11:30 ` Patchwork 2023-11-22 5:48 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-11-23 6:19 ` [igt-dev] [i-g-t 1/2] " Sharma, Swati2 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-11-21 11:30 UTC (permalink / raw) To: Bhanuprakash Modem; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5484 bytes --] == Series Details == Series: series starting with [i-g-t,1/2] tests/kms_feature_discovery: Fix display subtest URL : https://patchwork.freedesktop.org/series/126693/ State : success == Summary == CI Bug Log - changes from XEIGT_7595_BAT -> XEIGTPW_10226_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 3) ------------------------------ Missing (1): bat-dg2-oem2 Known issues ------------ Here are the changes found in XEIGTPW_10226_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@unbind-rebind: - bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#939]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7595/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10226/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html * igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size: - bat-adlp-7: [PASS][3] -> [FAIL][4] ([Intel XE#692]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7595/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10226/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html * igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1: - bat-adlp-7: [PASS][5] -> [FAIL][6] ([Intel XE#480]) +1 other test fail [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7595/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10226/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html * igt@xe_guc_pc@freq_basic_api: - bat-adlp-7: [PASS][7] -> [FAIL][8] ([Intel XE#935]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7595/bat-adlp-7/igt@xe_guc_pc@freq_basic_api.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10226/bat-adlp-7/igt@xe_guc_pc@freq_basic_api.html - bat-pvc-2: [PASS][9] -> [FAIL][10] ([Intel XE#935]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7595/bat-pvc-2/igt@xe_guc_pc@freq_basic_api.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10226/bat-pvc-2/igt@xe_guc_pc@freq_basic_api.html - bat-atsm-2: [PASS][11] -> [FAIL][12] ([Intel XE#935]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7595/bat-atsm-2/igt@xe_guc_pc@freq_basic_api.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10226/bat-atsm-2/igt@xe_guc_pc@freq_basic_api.html * igt@xe_guc_pc@freq_fixed_idle: - bat-atsm-2: [PASS][13] -> [FAIL][14] ([Intel XE#940]) +1 other test fail [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7595/bat-atsm-2/igt@xe_guc_pc@freq_fixed_idle.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10226/bat-atsm-2/igt@xe_guc_pc@freq_fixed_idle.html * igt@xe_guc_pc@freq_range_idle: - bat-adlp-7: [PASS][15] -> [FAIL][16] ([Intel XE#940]) +1 other test fail [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7595/bat-adlp-7/igt@xe_guc_pc@freq_range_idle.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10226/bat-adlp-7/igt@xe_guc_pc@freq_range_idle.html #### Possible fixes #### * igt@kms_cursor_legacy@basic-flip-before-cursor-legacy: - bat-adlp-7: [FAIL][17] ([i915#2346]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7595/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10226/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html #### Warnings #### * igt@kms_frontbuffer_tracking@basic: - bat-adlp-7: [FAIL][19] ([Intel XE#616] / [Intel XE#750]) -> [DMESG-FAIL][20] ([Intel XE#282] / [i915#2017]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7595/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10226/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html [Intel XE#282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/282 [Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/692 [Intel XE#750]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/750 [Intel XE#935]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/935 [Intel XE#939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/939 [Intel XE#940]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/940 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 Build changes ------------- * IGT: IGT_7595 -> IGTPW_10226 * Linux: xe-505-b25aa17bffa88c86fec716e40bdb3848eea17b23 -> xe-511-723ff01a3dd919ece2542a522b5c6caf13a56daf IGTPW_10226: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/index.html IGT_7595: cfa00d99b1dfa0621ea552d1ed54907798da1a1a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-505-b25aa17bffa88c86fec716e40bdb3848eea17b23: b25aa17bffa88c86fec716e40bdb3848eea17b23 xe-511-723ff01a3dd919ece2542a522b5c6caf13a56daf: 723ff01a3dd919ece2542a522b5c6caf13a56daf == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10226/index.html [-- Attachment #2: Type: text/html, Size: 6465 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/2] tests/kms_feature_discovery: Fix display subtest 2023-11-21 7:54 [igt-dev] [i-g-t 1/2] tests/kms_feature_discovery: Fix display subtest Bhanuprakash Modem ` (2 preceding siblings ...) 2023-11-21 11:30 ` [igt-dev] ✓ CI.xeBAT: " Patchwork @ 2023-11-22 5:48 ` Patchwork 2023-11-23 6:19 ` [igt-dev] [i-g-t 1/2] " Sharma, Swati2 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-11-22 5:48 UTC (permalink / raw) To: Modem, Bhanuprakash; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 73826 bytes --] == Series Details == Series: series starting with [i-g-t,1/2] tests/kms_feature_discovery: Fix display subtest URL : https://patchwork.freedesktop.org/series/126693/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13904_full -> IGTPW_10226_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10226_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10226_full, please notify your bug team (lgci.bug.filing@intel.com) 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_10226/index.html Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10226_full: ### IGT changes ### #### Possible regressions #### * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-a-edp-1: - shard-mtlp: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13904/shard-mtlp-7/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-a-edp-1.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-8/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24@pipe-a-edp-1.html * igt@perf_pmu@most-busy-idle-check-all@rcs0: - shard-dg1: [PASS][3] -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13904/shard-dg1-16/igt@perf_pmu@most-busy-idle-check-all@rcs0.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg1-18/igt@perf_pmu@most-busy-idle-check-all@rcs0.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0}: - shard-tglu: [FAIL][5] ([i915#3591]) -> [WARN][6] +1 other test warn [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13904/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html * {igt@kms_dirtyfb@drrs-dirtyfb-ioctl}: - shard-dg1: NOTRUN -> [SKIP][7] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg1-18/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * {igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1}: - shard-dg2: NOTRUN -> [SKIP][8] +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-10/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html * {igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2}: - shard-rkl: NOTRUN -> [SKIP][9] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-rkl-4/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2.html New tests --------- New tests have been introduced between CI_DRM_13904_full and IGTPW_10226_full: ### New IGT tests (2) ### * igt@kms_feature_discovery@display-1x: - Statuses : 5 pass(s) - Exec time: [0.0] s * igt@kms_rmfb@close-fd@pipe-a-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_10226_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@drm_fdinfo@most-busy-idle-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#8414]) +20 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-3/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html * igt@drm_fdinfo@virtual-busy-hang-all: - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#8414]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-5/igt@drm_fdinfo@virtual-busy-hang-all.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][12] ([i915#7697]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-10/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglu: [PASS][13] -> [FAIL][14] ([i915#6268]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13904/shard-tglu-7/igt@gem_ctx_exec@basic-nohangcheck.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-tglu-9/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][15] ([i915#280]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-2/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@wait-wedge-10ms: - shard-mtlp: [PASS][16] -> [ABORT][17] ([i915#9262]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13904/shard-mtlp-2/igt@gem_eio@wait-wedge-10ms.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-4/igt@gem_eio@wait-wedge-10ms.html * igt@gem_eio@wait-wedge-1us: - shard-mtlp: [PASS][18] -> [ABORT][19] ([i915#9414]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13904/shard-mtlp-8/igt@gem_eio@wait-wedge-1us.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-8/igt@gem_eio@wait-wedge-1us.html * igt@gem_exec_balancer@bonded-semaphore: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#4812]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-10/igt@gem_exec_balancer@bonded-semaphore.html * igt@gem_exec_balancer@parallel-ordering: - shard-tglu: NOTRUN -> [FAIL][21] ([i915#6117]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-tglu-7/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_capture@capture-invisible@lmem0: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#6334]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-6/igt@gem_exec_capture@capture-invisible@lmem0.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-mtlp: NOTRUN -> [SKIP][23] ([i915#6334]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-2/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_capture@capture-recoverable: - shard-tglu: NOTRUN -> [SKIP][24] ([i915#6344]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-tglu-3/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-rkl: [PASS][25] -> [FAIL][26] ([i915#2842]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13904/shard-rkl-4/igt@gem_exec_fair@basic-none-rrul@rcs0.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-rkl-1/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-none-vip: - shard-mtlp: NOTRUN -> [SKIP][27] ([i915#4473] / [i915#4771]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-5/igt@gem_exec_fair@basic-none-vip.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-tglu: [PASS][28] -> [FAIL][29] ([i915#2842]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13904/shard-tglu-2/igt@gem_exec_fair@basic-pace@rcs0.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-tglu-9/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_fence@concurrent: - shard-mtlp: NOTRUN -> [SKIP][30] ([i915#4812]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-4/igt@gem_exec_fence@concurrent.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#3539] / [i915#4852]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-6/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#3539]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-2/igt@gem_exec_flush@basic-uc-set-default.html - shard-dg1: NOTRUN -> [SKIP][33] ([i915#3539]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg1-18/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_reloc@basic-gtt-wc: - shard-dg1: NOTRUN -> [SKIP][34] ([i915#3281]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg1-14/igt@gem_exec_reloc@basic-gtt-wc.html * igt@gem_exec_reloc@basic-wc: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#3281]) +9 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-6/igt@gem_exec_reloc@basic-wc.html * igt@gem_exec_reloc@basic-write-wc: - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#3281]) +3 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-7/igt@gem_exec_reloc@basic-write-wc.html * igt@gem_exec_reloc@basic-write-wc-active: - shard-rkl: NOTRUN -> [SKIP][37] ([i915#3281]) +2 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-rkl-1/igt@gem_exec_reloc@basic-write-wc-active.html * igt@gem_exec_schedule@semaphore-power: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#4537] / [i915#4812]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-10/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg2: [PASS][39] -> [ABORT][40] ([i915#7975] / [i915#8213]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13904/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices@lmem0.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-6/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#4860]) +3 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-11/igt@gem_fenced_exec_thrash@2-spare-fences.html - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4860]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-8/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-tglu: NOTRUN -> [SKIP][43] ([i915#4613]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-tglu-2/igt@gem_lmem_swapping@heavy-verify-random.html - shard-glk: NOTRUN -> [SKIP][44] ([fdo#109271] / [i915#4613]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-glk8/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][45] ([i915#4565]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg1-17/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: NOTRUN -> [DMESG-WARN][46] ([i915#4936] / [i915#5493]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-6/igt@gem_lmem_swapping@smem-oom@lmem0.html - shard-dg1: [PASS][47] -> [TIMEOUT][48] ([i915#5493]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13904/shard-dg1-19/igt@gem_lmem_swapping@smem-oom@lmem0.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-rkl: NOTRUN -> [SKIP][49] ([i915#4613]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-rkl-7/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#8289]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-3/igt@gem_media_fill@media-fill.html * igt@gem_mmap@bad-size: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4083]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-1/igt@gem_mmap@bad-size.html * igt@gem_mmap_gtt@big-bo: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#4077]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg1-18/igt@gem_mmap_gtt@big-bo.html * igt@gem_mmap_gtt@cpuset-medium-copy-xy: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4077]) +7 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-2/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html * igt@gem_mmap_wc@bad-offset: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#4083]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg1-14/igt@gem_mmap_wc@bad-offset.html * igt@gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4083]) +5 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-11/igt@gem_mmap_wc@copy.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-dg1: NOTRUN -> [SKIP][56] ([i915#3282]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg1-17/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#3282]) +6 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-10/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4270]) +4 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-11/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-tglu: NOTRUN -> [SKIP][59] ([i915#4270]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-tglu-3/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-rkl: NOTRUN -> [SKIP][60] ([i915#4270]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-rkl-4/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4270]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-5/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_readwrite@write-bad-handle: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#3282]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-8/igt@gem_readwrite@write-bad-handle.html * igt@gem_render_copy@y-tiled-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#8428]) +2 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-8/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html * igt@gem_render_tiled_blits@basic: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#4079]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg1-17/igt@gem_render_tiled_blits@basic.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#4079]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-2/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4079]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-4/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_softpin@evict-snoop: - shard-rkl: NOTRUN -> [SKIP][67] ([fdo#109312]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-rkl-1/igt@gem_softpin@evict-snoop.html * igt@gem_userptr_blits@coherency-sync: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#3297]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-7/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@coherency-unsync: - shard-tglu: NOTRUN -> [SKIP][69] ([i915#3297]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-tglu-2/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#3297]) +3 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-2/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@forbidden-operations: - shard-rkl: NOTRUN -> [SKIP][71] ([i915#3282]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-rkl-7/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#3297] / [i915#4880]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-11/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@vma-merge: - shard-dg2: NOTRUN -> [FAIL][73] ([i915#3318]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-2/igt@gem_userptr_blits@vma-merge.html * igt@gen7_exec_parse@chained-batch: - shard-dg2: NOTRUN -> [SKIP][74] ([fdo#109289]) +4 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-6/igt@gen7_exec_parse@chained-batch.html * igt@gen7_exec_parse@cmd-crossing-page: - shard-rkl: NOTRUN -> [SKIP][75] ([fdo#109289]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-rkl-7/igt@gen7_exec_parse@cmd-crossing-page.html - shard-dg1: NOTRUN -> [SKIP][76] ([fdo#109289]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg1-18/igt@gen7_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@allowed-all: - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#2856]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-2/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@allowed-single: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#2527]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-rkl-1/igt@gen9_exec_parse@allowed-single.html - shard-glk: [PASS][79] -> [INCOMPLETE][80] ([i915#5566]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13904/shard-glk3/igt@gen9_exec_parse@allowed-single.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-glk9/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@bb-chained: - shard-tglu: NOTRUN -> [SKIP][81] ([i915#2527] / [i915#2856]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-tglu-9/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@valid-registers: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#2856]) +6 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-2/igt@gen9_exec_parse@valid-registers.html - shard-dg1: NOTRUN -> [SKIP][83] ([i915#2527]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg1-14/igt@gen9_exec_parse@valid-registers.html * igt@i915_module_load@resize-bar: - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#6412]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-7/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-rkl: NOTRUN -> [SKIP][85] ([i915#6590]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-rkl-7/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-mtlp: NOTRUN -> [SKIP][86] ([fdo#109293]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-2/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_rps@thresholds-park@gt0: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#8925]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-6/igt@i915_pm_rps@thresholds-park@gt0.html - shard-mtlp: NOTRUN -> [SKIP][88] ([i915#8925]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-5/igt@i915_pm_rps@thresholds-park@gt0.html * igt@i915_pm_rps@thresholds-park@gt1: - shard-mtlp: NOTRUN -> [SKIP][89] ([i915#3555] / [i915#8925]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-5/igt@i915_pm_rps@thresholds-park@gt1.html * igt@i915_pm_rps@waitboost: - shard-dg2: [PASS][90] -> [FAIL][91] ([i915#8229]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13904/shard-dg2-2/igt@i915_pm_rps@waitboost.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-3/igt@i915_pm_rps@waitboost.html - shard-dg1: [PASS][92] -> [FAIL][93] ([i915#8229]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13904/shard-dg1-18/igt@i915_pm_rps@waitboost.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg1-19/igt@i915_pm_rps@waitboost.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#6188]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-2/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_query@query-topology-known-pci-ids: - shard-dg1: NOTRUN -> [SKIP][95] ([fdo#109303]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg1-14/igt@i915_query@query-topology-known-pci-ids.html - shard-dg2: NOTRUN -> [SKIP][96] ([fdo#109303]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-2/igt@i915_query@query-topology-known-pci-ids.html * igt@i915_selftest@mock@memory_region: - shard-mtlp: NOTRUN -> [DMESG-WARN][97] ([i915#9311]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-2/igt@i915_selftest@mock@memory_region.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-mtlp: NOTRUN -> [SKIP][98] ([i915#4077]) +2 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-7/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][99] ([i915#4212]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg1-19/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#4212]) +3 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-2/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html - shard-mtlp: NOTRUN -> [SKIP][101] ([i915#4212]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-4/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-2: - shard-dg2: NOTRUN -> [FAIL][102] ([i915#8247]) +3 other tests fail [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-2/igt@kms_async_flips@crc@pipe-a-hdmi-a-2.html * igt@kms_async_flips@crc@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][103] ([i915#8247]) +3 other tests fail [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg1-14/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-mtlp: NOTRUN -> [SKIP][104] ([i915#3555]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-dg2: NOTRUN -> [SKIP][105] ([i915#9531]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-mtlp: NOTRUN -> [SKIP][106] ([i915#1769] / [i915#3555]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#1769] / [i915#3555]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [SKIP][108] ([fdo#111615] / [i915#5286]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-tglu-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-dg1: NOTRUN -> [SKIP][109] ([i915#4538] / [i915#5286]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg1-17/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][110] ([fdo#111614]) +2 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-6/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][111] ([fdo#111614] / [i915#3638]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-rkl-7/igt@kms_big_fb@linear-8bpp-rotate-270.html - shard-dg1: NOTRUN -> [SKIP][112] ([i915#3638]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg1-18/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][113] ([fdo#111614]) +2 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-6/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-64bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][114] ([fdo#111614]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-tglu-10/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#5190]) +7 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-6/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [PASS][116] -> [FAIL][117] ([i915#3743]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13904/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-tglu-10/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#4538] / [i915#5190]) +5 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-6/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#4538]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg1-19/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-rkl: NOTRUN -> [SKIP][120] ([fdo#110723]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-rkl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-mtlp: NOTRUN -> [SKIP][121] ([fdo#111615]) +4 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_joiner@invalid-modeset: - shard-tglu: NOTRUN -> [SKIP][122] ([i915#2705]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-tglu-9/igt@kms_big_joiner@invalid-modeset.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#4087] / [i915#7213]) +3 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-6/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#4087]) +3 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-6/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-mtlp: NOTRUN -> [SKIP][125] ([i915#7828]) +3 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-2/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][126] ([fdo#111827]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-11/igt@kms_chamelium_color@degamma.html - shard-rkl: NOTRUN -> [SKIP][127] ([fdo#111827]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-rkl-1/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_color@gamma: - shard-tglu: NOTRUN -> [SKIP][128] ([fdo#111827]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-tglu-9/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_edid@dp-edid-change-during-suspend: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#7828]) +10 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-6/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html - shard-dg1: NOTRUN -> [SKIP][130] ([i915#7828]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg1-15/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html * igt@kms_chamelium_frames@dp-frame-dump: - shard-tglu: NOTRUN -> [SKIP][131] ([i915#7828]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-tglu-3/igt@kms_chamelium_frames@dp-frame-dump.html * igt@kms_chamelium_hpd@dp-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#7828]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-rkl-7/igt@kms_chamelium_hpd@dp-hpd-fast.html * igt@kms_color@deep-color@pipe-b-edp-1-degamma: - shard-mtlp: NOTRUN -> [FAIL][133] ([i915#6892]) +3 other tests fail [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-8/igt@kms_color@deep-color@pipe-b-edp-1-degamma.html * igt@kms_content_protection@atomic-dpms: - shard-tglu: NOTRUN -> [SKIP][134] ([i915#6944] / [i915#7116] / [i915#7118]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-tglu-7/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@atomic@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][135] ([i915#7173]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-11/igt@kms_content_protection@atomic@pipe-a-dp-4.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-mtlp: NOTRUN -> [SKIP][136] ([i915#3299]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-1/igt@kms_content_protection@dp-mst-lic-type-0.html - shard-dg2: NOTRUN -> [SKIP][137] ([i915#3299]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-11/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@legacy: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#7118]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-2/igt@kms_content_protection@legacy.html * igt@kms_content_protection@uevent@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][139] ([i915#1339]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-11/igt@kms_content_protection@uevent@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#3359]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#3555]) +5 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-3/igt@kms_cursor_crc@cursor-sliding-32x10.html - shard-rkl: NOTRUN -> [SKIP][142] ([i915#3555]) +1 other test skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-mtlp: NOTRUN -> [SKIP][143] ([i915#3359]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-5/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-tglu: NOTRUN -> [SKIP][144] ([i915#3359]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-tglu-9/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-mtlp: NOTRUN -> [SKIP][145] ([i915#3555] / [i915#8814]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-5/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-rkl: NOTRUN -> [SKIP][146] ([fdo#111825]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-rkl-7/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg1: NOTRUN -> [SKIP][147] ([i915#4103] / [i915#4213]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg1-19/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#4103] / [i915#4213]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-tglu: NOTRUN -> [SKIP][149] ([fdo#109274]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-tglu-10/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-dg2: NOTRUN -> [SKIP][150] ([fdo#109274] / [i915#5354]) +3 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][151] ([fdo#111767] / [i915#3546]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][152] ([fdo#109274] / [fdo#111767] / [i915#5354]) +1 other test skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-rkl: NOTRUN -> [SKIP][153] ([i915#4103]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-rkl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][154] ([i915#3804]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-rkl-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dsc@dsc-with-bpc: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#3555] / [i915#3840]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-6/igt@kms_dsc@dsc-with-bpc.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-rkl: NOTRUN -> [SKIP][156] ([fdo#111767] / [fdo#111825]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-rkl-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#8381]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-10/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-tglu: NOTRUN -> [SKIP][158] ([fdo#109274] / [fdo#111767] / [i915#3637]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-tglu-10/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][159] ([fdo#109274]) +7 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-6/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-snb: NOTRUN -> [SKIP][160] ([fdo#109271]) +8 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-snb5/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-tglu: NOTRUN -> [SKIP][161] ([fdo#109274] / [i915#3637]) +1 other test skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-tglu-10/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#8381]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-5/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][163] ([i915#2672]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html - shard-dg1: NOTRUN -> [SKIP][164] ([i915#2587] / [i915#2672]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#2672]) +3 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][166] ([i915#2587] / [i915#2672]) +1 other test skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#3555] / [i915#8810]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#2672]) +6 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#5354]) +27 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-mtlp: NOTRUN -> [SKIP][170] ([i915#1825]) +19 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#8708]) +6 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt: - shard-tglu: NOTRUN -> [SKIP][172] ([fdo#109280]) +9 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-tglu-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][173] ([i915#3023]) +3 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg1: NOTRUN -> [SKIP][174] ([i915#3458]) +3 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][175] ([fdo#111825]) +6 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#8708]) +22 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][177] ([fdo#111825] / [i915#1825]) +8 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][178] ([i915#8708]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#3458]) +17 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html * igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary: - shard-tglu: NOTRUN -> [SKIP][180] ([fdo#110189]) +4 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html * igt@kms_hdr@invalid-hdr: - shard-rkl: NOTRUN -> [SKIP][181] ([i915#3555] / [i915#8228]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-rkl-7/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#3555] / [i915#8228]) +4 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-2/igt@kms_hdr@static-toggle-suspend.html - shard-dg1: NOTRUN -> [SKIP][183] ([i915#3555] / [i915#8228]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg1-18/igt@kms_hdr@static-toggle-suspend.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-mtlp: NOTRUN -> [SKIP][184] ([i915#4816]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-dg2: NOTRUN -> [SKIP][185] ([i915#4816]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-11/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane_lowres@tiling-yf: - shard-tglu: NOTRUN -> [SKIP][186] ([i915#3555]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-tglu-10/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@tiling-yf: - shard-dg1: NOTRUN -> [SKIP][187] ([i915#3555]) +2 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg1-18/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][188] ([i915#8292]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-rkl-1/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][189] ([i915#5176] / [i915#9423]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-rkl-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][190] ([i915#5176] / [i915#9423]) +3 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg1-17/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][191] ([i915#5235]) +3 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-tglu-9/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][192] ([i915#5235]) +3 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-rkl-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][193] ([i915#5235]) +3 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg1-18/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-4.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-dp-4: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#5235]) +23 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-11/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-dp-4.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][195] ([i915#3555] / [i915#5235]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#5235]) +5 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c-edp-1.html * igt@kms_prime@d3hot: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#6524] / [i915#6805]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-11/igt@kms_prime@d3hot.html - shard-mtlp: NOTRUN -> [SKIP][198] ([i915#6524]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-5/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf: - shard-dg1: NOTRUN -> [SKIP][199] ([i915#9683]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg1-15/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][200] ([fdo#111068] / [i915#9683]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-tglu-9/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#9683]) +3 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-2/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@psr2_sprite_mmap_gtt: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#9681]) +5 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-10/igt@kms_psr@psr2_sprite_mmap_gtt.html - shard-dg1: NOTRUN -> [SKIP][203] ([i915#9673]) +1 other test skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg1-16/igt@kms_psr@psr2_sprite_mmap_gtt.html * igt@kms_psr@psr2_sprite_render: - shard-tglu: NOTRUN -> [SKIP][204] ([i915#9673]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-tglu-9/igt@kms_psr@psr2_sprite_render.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#9685]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-rotation-90: - shard-mtlp: NOTRUN -> [SKIP][206] ([i915#4235]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-5/igt@kms_rotation_crc@primary-rotation-90.html - shard-dg2: NOTRUN -> [SKIP][207] ([i915#4235]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-6/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#4235] / [i915#5190]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-11/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_tiled_display@basic-test-pattern: - shard-mtlp: NOTRUN -> [SKIP][209] ([i915#8623]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-1/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1: - shard-snb: [PASS][210] -> [FAIL][211] ([i915#9196]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13904/shard-snb5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1.html [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-snb5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1.html * igt@kms_vrr@negative-basic: - shard-glk: NOTRUN -> [SKIP][212] ([fdo#109271]) +36 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-glk4/igt@kms_vrr@negative-basic.html * igt@kms_writeback@writeback-pixel-formats: - shard-mtlp: NOTRUN -> [SKIP][213] ([i915#2437]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-8/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#7387]) +1 other test skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-2/igt@perf@global-sseu-config-invalid.html * igt@perf_pmu@busy@vcs0: - shard-mtlp: [PASS][215] -> [FAIL][216] ([i915#4349]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13904/shard-mtlp-4/igt@perf_pmu@busy@vcs0.html [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-7/igt@perf_pmu@busy@vcs0.html * igt@perf_pmu@cpu-hotplug: - shard-dg1: NOTRUN -> [SKIP][217] ([i915#8850]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg1-19/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@rc6-all-gts: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#5608] / [i915#8516]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-10/igt@perf_pmu@rc6-all-gts.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#3291] / [i915#3708]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-6/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-write: - shard-dg1: NOTRUN -> [SKIP][220] ([i915#3708]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg1-16/igt@prime_vgem@basic-write.html * igt@prime_vgem@fence-flip-hang: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#3708]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-10/igt@prime_vgem@fence-flip-hang.html * igt@prime_vgem@fence-read-hang: - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#3708]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-4/igt@prime_vgem@fence-read-hang.html * igt@v3d/v3d_mmap@mmap-bad-handle: - shard-rkl: NOTRUN -> [SKIP][223] ([fdo#109315]) +1 other test skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-rkl-4/igt@v3d/v3d_mmap@mmap-bad-handle.html * igt@v3d/v3d_perfmon@get-values-valid-perfmon: - shard-dg1: NOTRUN -> [SKIP][224] ([i915#2575]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg1-18/igt@v3d/v3d_perfmon@get-values-valid-perfmon.html * igt@v3d/v3d_submit_cl@bad-bo: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#2575]) +14 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-11/igt@v3d/v3d_submit_cl@bad-bo.html * igt@v3d/v3d_submit_cl@valid-submission: - shard-mtlp: NOTRUN -> [SKIP][226] ([i915#2575]) +9 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-5/igt@v3d/v3d_submit_cl@valid-submission.html * igt@v3d/v3d_submit_csd@bad-pad: - shard-tglu: NOTRUN -> [SKIP][227] ([fdo#109315] / [i915#2575]) +2 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-tglu-7/igt@v3d/v3d_submit_csd@bad-pad.html * igt@vc4/vc4_create_bo@create-bo-0: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#7711]) +7 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-10/igt@vc4/vc4_create_bo@create-bo-0.html * igt@vc4/vc4_dmabuf_poll@poll-read-waits-until-write-done: - shard-tglu: NOTRUN -> [SKIP][229] ([i915#2575]) +1 other test skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-tglu-10/igt@vc4/vc4_dmabuf_poll@poll-read-waits-until-write-done.html * igt@vc4/vc4_label_bo@set-kernel-name: - shard-mtlp: NOTRUN -> [SKIP][230] ([i915#7711]) +1 other test skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-6/igt@vc4/vc4_label_bo@set-kernel-name.html * igt@vc4/vc4_perfmon@get-values-invalid-perfmon: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#7711]) +1 other test skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-rkl-1/igt@vc4/vc4_perfmon@get-values-invalid-perfmon.html * igt@vc4/vc4_purgeable_bo@mark-purgeable-twice: - shard-dg1: NOTRUN -> [SKIP][232] ([i915#7711]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg1-18/igt@vc4/vc4_purgeable_bo@mark-purgeable-twice.html #### Possible fixes #### * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [FAIL][233] ([i915#7742]) -> [PASS][234] [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13904/shard-rkl-1/igt@drm_fdinfo@most-busy-check-all@rcs0.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@gem_busy@busy@vecs0: - shard-mtlp: [INCOMPLETE][235] -> [PASS][236] [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13904/shard-mtlp-4/igt@gem_busy@busy@vecs0.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-8/igt@gem_busy@busy@vecs0.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [INCOMPLETE][237] ([i915#7297]) -> [PASS][238] [237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13904/shard-dg2-2/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-11/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html * igt@gem_eio@unwedge-stress: - shard-dg1: [FAIL][239] ([i915#5784]) -> [PASS][240] [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13904/shard-dg1-16/igt@gem_eio@unwedge-stress.html [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg1-16/igt@gem_eio@unwedge-stress.html * igt@gem_eio@wait-10ms: - shard-mtlp: [ABORT][241] ([i915#9414]) -> [PASS][242] [241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13904/shard-mtlp-1/igt@gem_eio@wait-10ms.html [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-7/igt@gem_eio@wait-10ms.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-tglu: [FAIL][243] ([i915#2842]) -> [PASS][244] [243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13904/shard-tglu-10/igt@gem_exec_fair@basic-none-share@rcs0.html [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-tglu-2/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-rkl: [FAIL][245] ([i915#2842]) -> [PASS][246] [245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13904/shard-rkl-7/igt@gem_exec_fair@basic-pace-solo@rcs0.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-rkl-4/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg1: [ABORT][247] ([i915#7975] / [i915#8213]) -> [PASS][248] [247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13904/shard-dg1-14/igt@gem_exec_suspend@basic-s4-devices@lmem0.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg1-18/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@i915_hangman@gt-error-state-capture@vcs0: - shard-mtlp: [ABORT][249] ([i915#9262]) -> [PASS][250] [249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13904/shard-mtlp-4/igt@i915_hangman@gt-error-state-capture@vcs0.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-2/igt@i915_hangman@gt-error-state-capture@vcs0.html * igt@i915_module_load@reload-no-display: - shard-snb: [INCOMPLETE][251] ([i915#4528]) -> [PASS][252] [251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13904/shard-snb5/igt@i915_module_load@reload-no-display.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-snb4/igt@i915_module_load@reload-no-display.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: [FAIL][253] ([i915#3743]) -> [PASS][254] +1 other test pass [253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13904/shard-tglu-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-tglu-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt: - shard-dg2: [FAIL][255] ([i915#6880]) -> [PASS][256] [255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13904/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][257] ([i915#8292]) -> [PASS][258] [257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13904/shard-tglu-7/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-tglu-10/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * {igt@kms_pm_rpm@modeset-lpsp-stress-no-wait}: - shard-dg1: [SKIP][259] ([i915#9519]) -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13904/shard-dg1-18/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-dg1-19/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1: - shard-mtlp: [FAIL][261] ([i915#9196]) -> [PASS][262] [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13904/shard-mtlp-4/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-7/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1: - shard-tglu: [FAIL][263] ([i915#9196]) -> [PASS][264] [263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13904/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html * igt@perf_pmu@busy-double-start@bcs0: - shard-mtlp: [FAIL][265] ([i915#4349]) -> [PASS][266] [265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13904/shard-mtlp-1/igt@perf_pmu@busy-double-start@bcs0.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-mtlp-8/igt@perf_pmu@busy-double-start@bcs0.html #### Warnings #### * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][267] ([i915#4816]) -> [SKIP][268] ([i915#4070] / [i915#4816]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13904/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#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#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 [i915#1339]: https://gitlab.freedesktop.org/drm/intel/issues/1339 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [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#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117 [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344 [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6892]: https://gitlab.freedesktop.org/drm/intel/issues/6892 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8063]: https://gitlab.freedesktop.org/drm/intel/issues/8063 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8229]: https://gitlab.freedesktop.org/drm/intel/issues/8229 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [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#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262 [i915#9310]: https://gitlab.freedesktop.org/drm/intel/issues/9310 [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311 [i915#9414]: https://gitlab.freedesktop.org/drm/intel/issues/9414 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424 [i915#9433]: https://gitlab.freedesktop.org/drm/intel/issues/9433 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9531]: https://gitlab.freedesktop.org/drm/intel/issues/9531 [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673 [i915#9681]: https://gitlab.freedesktop.org/drm/intel/issues/9681 [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7595 -> IGTPW_10226 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13904: e7f3669de4cd241d80b35b37ddf7c5e0a2129516 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10226: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10226/index.html IGT_7595: cfa00d99b1dfa0621ea552d1ed54907798da1a1a @ 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_10226/index.html [-- Attachment #2: Type: text/html, Size: 89192 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [igt-dev] [i-g-t 1/2] tests/kms_feature_discovery: Fix display subtest 2023-11-21 7:54 [igt-dev] [i-g-t 1/2] tests/kms_feature_discovery: Fix display subtest Bhanuprakash Modem ` (3 preceding siblings ...) 2023-11-22 5:48 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-11-23 6:19 ` Sharma, Swati2 2023-11-27 13:01 ` Modem, Bhanuprakash 4 siblings, 1 reply; 8+ messages in thread From: Sharma, Swati2 @ 2023-11-23 6:19 UTC (permalink / raw) To: Bhanuprakash Modem, igt-dev Hi Bhanu, With this change, test is passing on atsm https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10248/bat-atsm-1/igt@kms_feature_discovery@display.html On 21-Nov-23 1:24 PM, Bhanuprakash Modem wrote: > Instead of doing nothing, check the connected platform really > supports the display or not. > > Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > --- > tests/kms_feature_discovery.c | 22 ++++++++++++++-------- > 1 file changed, 14 insertions(+), 8 deletions(-) > > diff --git a/tests/kms_feature_discovery.c b/tests/kms_feature_discovery.c > index 428f97ffe..81064aa0e 100644 > --- a/tests/kms_feature_discovery.c > +++ b/tests/kms_feature_discovery.c > @@ -30,8 +30,7 @@ > * anything else means we have a serious problem. > * > * SUBTEST: display > - * Description: Make sure that we have display support with > - * some outputs connected. > + * Description: Make sure that we have display support. > * Driver requirement: i915, xe > * Functionality: feature_discovery > * Mega feature: General Display Features > @@ -97,18 +96,25 @@ igt_main { > igt_fixture { > fd = drm_open_driver_master(DRIVER_ANY); > debugfs_fd = igt_debugfs_dir(fd); > + > + errno = 0; > } > > igt_subtest_group { > - igt_fixture { > - igt_display_require(&display, fd); > - } > - > - igt_describe("Make sure that we have display support with some outputs connected."); > + igt_describe("Make sure that we have display support."); > igt_subtest("display") { > - /* will skip because of the fixture */ > + drmModeResPtr resources = drmModeGetResources(fd); > + > + /* Operation not supported on non-display platforms. */ > + if (!resources) > + igt_assert_eq(errno, EOPNOTSUPP); > + > + drmModeFreeResources(resources); > } > > + igt_fixture > + igt_display_require(&display, fd); > + > igt_subtest_group { > volatile int output_count = 0; > igt_output_t *output; ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [igt-dev] [i-g-t 1/2] tests/kms_feature_discovery: Fix display subtest 2023-11-23 6:19 ` [igt-dev] [i-g-t 1/2] " Sharma, Swati2 @ 2023-11-27 13:01 ` Modem, Bhanuprakash 0 siblings, 0 replies; 8+ messages in thread From: Modem, Bhanuprakash @ 2023-11-27 13:01 UTC (permalink / raw) To: Sharma, Swati2, igt-dev Hi Swati, On 23-11-2023 11:49 am, Sharma, Swati2 wrote: > Hi Bhanu, > > With this change, test is passing on atsm > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10248/bat-atsm-1/igt@kms_feature_discovery@display.html drmModeGetResources() is expected to return 0 on display supported platforms and -EOPNOTSUPP error in case of non-display platforms. Hence it is expected PASS. Test will fail if we get any return value other than 0 & EOPNOTSUPP. - Bhanu > > > On 21-Nov-23 1:24 PM, Bhanuprakash Modem wrote: >> Instead of doing nothing, check the connected platform really >> supports the display or not. >> >> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> >> --- >> tests/kms_feature_discovery.c | 22 ++++++++++++++-------- >> 1 file changed, 14 insertions(+), 8 deletions(-) >> >> diff --git a/tests/kms_feature_discovery.c >> b/tests/kms_feature_discovery.c >> index 428f97ffe..81064aa0e 100644 >> --- a/tests/kms_feature_discovery.c >> +++ b/tests/kms_feature_discovery.c >> @@ -30,8 +30,7 @@ >> * anything else means we have a serious problem. >> * >> * SUBTEST: display >> - * Description: Make sure that we have display support with >> - * some outputs connected. >> + * Description: Make sure that we have display support. >> * Driver requirement: i915, xe >> * Functionality: feature_discovery >> * Mega feature: General Display Features >> @@ -97,18 +96,25 @@ igt_main { >> igt_fixture { >> fd = drm_open_driver_master(DRIVER_ANY); >> debugfs_fd = igt_debugfs_dir(fd); >> + >> + errno = 0; >> } >> igt_subtest_group { >> - igt_fixture { >> - igt_display_require(&display, fd); >> - } >> - >> - igt_describe("Make sure that we have display support with >> some outputs connected."); >> + igt_describe("Make sure that we have display support."); >> igt_subtest("display") { >> - /* will skip because of the fixture */ >> + drmModeResPtr resources = drmModeGetResources(fd); >> + >> + /* Operation not supported on non-display platforms. */ >> + if (!resources) >> + igt_assert_eq(errno, EOPNOTSUPP); >> + >> + drmModeFreeResources(resources); >> } >> + igt_fixture >> + igt_display_require(&display, fd); >> + >> igt_subtest_group { >> volatile int output_count = 0; >> igt_output_t *output; ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2023-11-27 13:02 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-11-21 7:54 [igt-dev] [i-g-t 1/2] tests/kms_feature_discovery: Fix display subtest Bhanuprakash Modem 2023-11-21 7:54 ` [igt-dev] [i-g-t 2/2] tests/kms_feature_discovery: update display-1x Bhanuprakash Modem 2023-11-23 8:33 ` Kamil Konieczny 2023-11-21 11:24 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] tests/kms_feature_discovery: Fix display subtest Patchwork 2023-11-21 11:30 ` [igt-dev] ✓ CI.xeBAT: " Patchwork 2023-11-22 5:48 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-11-23 6:19 ` [igt-dev] [i-g-t 1/2] " Sharma, Swati2 2023-11-27 13:01 ` Modem, Bhanuprakash
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox