* [PATCH i-g-t 0/2] RFC: Fix chamelium port allocation during igt_fixture
@ 2025-12-05 7:46 Moahmmed Bilal
2025-12-05 7:46 ` [PATCH i-g-t 1/2] RFC: chamelium/kms_chamelium_hpd: add helper function to select connector port Moahmmed Bilal
` (5 more replies)
0 siblings, 6 replies; 12+ messages in thread
From: Moahmmed Bilal @ 2025-12-05 7:46 UTC (permalink / raw)
To: igt-dev; +Cc: jeevan.b, kunal1.joshi, Moahmmed Bilal
selecting appropriate connector and solving the igt_fixture issue.
Mohammed Bilal (2):
RFC: chamelium/kms_chamelium_hpd: add helper function to select
connector port
RFC: chamelium/kms_chamelium_hpd: use helper function for connector
lookup in DP/HDMI/VGA tests
tests/chamelium/kms_chamelium_hpd.c | 426 ++++++++++++++++++++--------
1 file changed, 303 insertions(+), 123 deletions(-)
--
2.48.1
^ permalink raw reply [flat|nested] 12+ messages in thread* [PATCH i-g-t 1/2] RFC: chamelium/kms_chamelium_hpd: add helper function to select connector port 2025-12-05 7:46 [PATCH i-g-t 0/2] RFC: Fix chamelium port allocation during igt_fixture Moahmmed Bilal @ 2025-12-05 7:46 ` Moahmmed Bilal 2025-12-05 10:15 ` Sebastian Brzezinka 2025-12-05 7:46 ` [PATCH i-g-t 2/2] RFC: chamelium/kms_chamelium_hpd: use helper function for connector lookup in DP/HDMI/VGA tests Moahmmed Bilal ` (4 subsequent siblings) 5 siblings, 1 reply; 12+ messages in thread From: Moahmmed Bilal @ 2025-12-05 7:46 UTC (permalink / raw) To: igt-dev; +Cc: jeevan.b, kunal1.joshi, Mohammed Bilal From: Mohammed Bilal <mohammed.bilal@intel.com> Introduce a new helper function get_port() which returns the chamelium_port matching the requested connector type. The helper iterates through the available ports and returns the first match, or NULL if no matching connector is found. Signed-off-by: Mohammed Bilal <mohammed.bilal@intel.com> --- tests/chamelium/kms_chamelium_hpd.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/tests/chamelium/kms_chamelium_hpd.c b/tests/chamelium/kms_chamelium_hpd.c index 161f494e9..3c8af63bd 100644 --- a/tests/chamelium/kms_chamelium_hpd.c +++ b/tests/chamelium/kms_chamelium_hpd.c @@ -158,6 +158,21 @@ enum test_modeset_mode { TEST_MODESET_OFF, }; +__maybe_unused +static struct chamelium_port *get_port(struct chamelium_port **ports, + int port_count, int connector_type) +{ + int i; + + for (i = 0; i < port_count; i++) { + if (chamelium_port_get_type(ports[i]) == + connector_type) + return ports[i]; + } + + return NULL; +} + static void try_suspend_resume_hpd(chamelium_data_t *data, struct chamelium_port *port, enum igt_suspend_state state, -- 2.48.1 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH i-g-t 1/2] RFC: chamelium/kms_chamelium_hpd: add helper function to select connector port 2025-12-05 7:46 ` [PATCH i-g-t 1/2] RFC: chamelium/kms_chamelium_hpd: add helper function to select connector port Moahmmed Bilal @ 2025-12-05 10:15 ` Sebastian Brzezinka 0 siblings, 0 replies; 12+ messages in thread From: Sebastian Brzezinka @ 2025-12-05 10:15 UTC (permalink / raw) To: Moahmmed Bilal, igt-dev; +Cc: jeevan.b, kunal1.joshi Hi Moahmmed On Fri Dec 5, 2025 at 8:46 AM CET, Moahmmed Bilal wrote: > From: Mohammed Bilal <mohammed.bilal@intel.com> > > Introduce a new helper function get_port() which returns the > chamelium_port matching the requested connector type. > The helper iterates through the available ports and > returns the first match, or NULL if no matching connector is found. > > Signed-off-by: Mohammed Bilal <mohammed.bilal@intel.com> > --- > tests/chamelium/kms_chamelium_hpd.c | 15 +++++++++++++++ > 1 file changed, 15 insertions(+) > > diff --git a/tests/chamelium/kms_chamelium_hpd.c b/tests/chamelium/kms_chamelium_hpd.c > index 161f494e9..3c8af63bd 100644 > --- a/tests/chamelium/kms_chamelium_hpd.c > +++ b/tests/chamelium/kms_chamelium_hpd.c > @@ -158,6 +158,21 @@ enum test_modeset_mode { > TEST_MODESET_OFF, > }; > > +__maybe_unused This function is used in the next patch. If the use of __maybe_unused here is intended to bypass current CI warnings, please remove this attribute in the next patch to avoid confusion. > +static struct chamelium_port *get_port(struct chamelium_port **ports, > + int port_count, int connector_type) It's a small detail, but please use uint for port_count. BR Seba ^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH i-g-t 2/2] RFC: chamelium/kms_chamelium_hpd: use helper function for connector lookup in DP/HDMI/VGA tests 2025-12-05 7:46 [PATCH i-g-t 0/2] RFC: Fix chamelium port allocation during igt_fixture Moahmmed Bilal 2025-12-05 7:46 ` [PATCH i-g-t 1/2] RFC: chamelium/kms_chamelium_hpd: add helper function to select connector port Moahmmed Bilal @ 2025-12-05 7:46 ` Moahmmed Bilal 2025-12-05 10:29 ` Sebastian Brzezinka 2025-12-08 5:31 ` B, Jeevan 2025-12-05 22:54 ` ✓ Xe.CI.BAT: success for RFC: Fix chamelium port allocation during igt_fixture (rev2) Patchwork ` (3 subsequent siblings) 5 siblings, 2 replies; 12+ messages in thread From: Moahmmed Bilal @ 2025-12-05 7:46 UTC (permalink / raw) To: igt-dev; +Cc: jeevan.b, kunal1.joshi, Mohammed Bilal From: Mohammed Bilal <mohammed.bilal@intel.com> Use the new get_port() helper to retrieve the appropriate connector for each hotplug subtest, ensuring consistent connector handling across DP/HDMI/VGA tests. Also remove the per-connector igt_fixture blocks, as they were being executed regardless of which subtest was run. The helper-based approach avoids unwanted fixture execution and keeps connector selection simple and reliable. Signed-off-by: Mohammed Bilal <mohammed.bilal@intel.com> --- tests/chamelium/kms_chamelium_hpd.c | 411 +++++++++++++++++++--------- 1 file changed, 288 insertions(+), 123 deletions(-) diff --git a/tests/chamelium/kms_chamelium_hpd.c b/tests/chamelium/kms_chamelium_hpd.c index 3c8af63bd..840363311 100644 --- a/tests/chamelium/kms_chamelium_hpd.c +++ b/tests/chamelium/kms_chamelium_hpd.c @@ -440,7 +440,6 @@ static void test_hpd_storm_detect(chamelium_data_t *data, igt_hpd_storm_set_threshold(data->drm_fd, 1); chamelium_fire_hpd_pulses(data->chamelium, port, width, 10); igt_assert(igt_hpd_storm_detected(data->drm_fd)); - mon = igt_watch_uevents(); chamelium_fire_hpd_pulses(data->chamelium, port, width, 10); @@ -478,156 +477,327 @@ IGT_TEST_DESCRIPTION("Testing HPD with a Chamelium board"); igt_main { chamelium_data_t data; - struct chamelium_port *port; - int p; igt_fixture { chamelium_init_test(&data); } - igt_describe("DisplayPort tests"); - igt_subtest_group { - igt_fixture { - chamelium_require_connector_present( - data.ports, DRM_MODE_CONNECTOR_DisplayPort, - data.port_count, 1); - } +igt_describe("DP tests"); - igt_describe(test_basic_hotplug_desc); - connector_subtest("dp-hpd", DisplayPort) - test_hotplug(&data, port, HPD_TOGGLE_COUNT_DP_HDMI, - TEST_MODESET_OFF); + igt_describe(test_basic_hotplug_desc); + igt_subtest("dp-hpd") + { + struct chamelium_port *hport = + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_DisplayPort); - igt_describe(test_basic_hotplug_desc); - connector_subtest("dp-hpd-fast", DisplayPort) test_hotplug( - &data, port, HPD_TOGGLE_COUNT_FAST, TEST_MODESET_OFF); + if (!hport) + igt_skip("DP connector not available\n"); - igt_describe(test_basic_hotplug_desc); - connector_subtest("dp-hpd-enable-disable-mode", DisplayPort) - test_hotplug(&data, port, HPD_TOGGLE_COUNT_FAST, - TEST_MODESET_ON_OFF); + test_hotplug(&data, hport, HPD_TOGGLE_COUNT_DP_HDMI, TEST_MODESET_OFF); + } - igt_describe(test_basic_hotplug_desc); - connector_subtest("dp-hpd-with-enabled-mode", DisplayPort) - test_hotplug(&data, port, HPD_TOGGLE_COUNT_FAST, - TEST_MODESET_ON); + igt_describe(test_basic_hotplug_desc); + igt_subtest("dp-hpd-fast") + { + struct chamelium_port *hport = + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_DisplayPort); - igt_describe(test_hotplug_for_each_pipe_desc); - connector_subtest("dp-hpd-for-each-pipe", DisplayPort) - test_hotplug_for_each_pipe(&data, port); + if (!hport) + igt_skip("DP connector not available\n"); - igt_describe(test_suspend_resume_hpd_desc); - connector_subtest("dp-hpd-after-suspend", DisplayPort) - test_suspend_resume_hpd(&data, port, SUSPEND_STATE_MEM, - SUSPEND_TEST_NONE); + test_hotplug(&data, hport, HPD_TOGGLE_COUNT_FAST, TEST_MODESET_OFF); + } - igt_describe(test_suspend_resume_hpd_desc); - connector_subtest("dp-hpd-after-hibernate", DisplayPort) - test_suspend_resume_hpd(&data, port, SUSPEND_STATE_DISK, - SUSPEND_TEST_DEVICES); + igt_describe(test_basic_hotplug_desc); + igt_subtest("dp-hpd-enable-disable-mode") + { + struct chamelium_port *hport = + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_DisplayPort); - igt_describe(test_hpd_storm_detect_desc); - connector_subtest("dp-hpd-storm", DisplayPort) - test_hpd_storm_detect(&data, port, - HPD_STORM_PULSE_INTERVAL_DP); + if (!hport) + igt_skip("DP connector not available\n"); - igt_describe(test_hpd_storm_disable_desc); - connector_subtest("dp-hpd-storm-disable", DisplayPort) - test_hpd_storm_disable(&data, port, - HPD_STORM_PULSE_INTERVAL_DP); + test_hotplug(&data, hport, HPD_TOGGLE_COUNT_FAST, TEST_MODESET_ON_OFF); } - igt_describe("HDMI tests"); - igt_subtest_group { - igt_fixture { - chamelium_require_connector_present( - data.ports, DRM_MODE_CONNECTOR_HDMIA, - data.port_count, 1); - } + igt_describe(test_basic_hotplug_desc); + igt_subtest("dp-hpd-with-enabled-mode") + { + struct chamelium_port *hport = + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_DisplayPort); + + if (!hport) + igt_skip("DP connector not available\n"); - igt_describe(test_basic_hotplug_desc); - connector_subtest("hdmi-hpd", HDMIA) - test_hotplug(&data, port, HPD_TOGGLE_COUNT_DP_HDMI, - TEST_MODESET_OFF); + test_hotplug(&data, hport, HPD_TOGGLE_COUNT_FAST, TEST_MODESET_ON); + } + + igt_describe(test_hotplug_for_each_pipe_desc); + igt_subtest("dp-hpd-for-each-pipe") + { + struct chamelium_port *hport = + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_DisplayPort); - igt_describe(test_basic_hotplug_desc); - connector_subtest("hdmi-hpd-fast", HDMIA) test_hotplug( - &data, port, HPD_TOGGLE_COUNT_FAST, TEST_MODESET_OFF); + if (!hport) + igt_skip("DP connector not available\n"); - igt_describe(test_basic_hotplug_desc); - connector_subtest("hdmi-hpd-enable-disable-mode", HDMIA) - test_hotplug(&data, port, HPD_TOGGLE_COUNT_FAST, - TEST_MODESET_ON_OFF); + test_hotplug_for_each_pipe(&data, hport); + } - igt_describe(test_basic_hotplug_desc); - connector_subtest("hdmi-hpd-with-enabled-mode", HDMIA) - test_hotplug(&data, port, HPD_TOGGLE_COUNT_FAST, - TEST_MODESET_ON); + igt_describe(test_suspend_resume_hpd_desc); + igt_subtest("dp-hpd-after-suspend") + { + struct chamelium_port *hport = + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_DisplayPort); - igt_describe(test_hotplug_for_each_pipe_desc); - connector_subtest("hdmi-hpd-for-each-pipe", HDMIA) - test_hotplug_for_each_pipe(&data, port); + if (!hport) + igt_skip("DP connector not available\n"); - igt_describe(test_suspend_resume_hpd_desc); - connector_subtest("hdmi-hpd-after-suspend", HDMIA) - test_suspend_resume_hpd(&data, port, SUSPEND_STATE_MEM, - SUSPEND_TEST_NONE); + test_suspend_resume_hpd(&data, hport, SUSPEND_STATE_MEM, SUSPEND_TEST_NONE); + } - igt_describe(test_suspend_resume_hpd_desc); - connector_subtest("hdmi-hpd-after-hibernate", HDMIA) - test_suspend_resume_hpd(&data, port, SUSPEND_STATE_DISK, - SUSPEND_TEST_DEVICES); + igt_describe(test_suspend_resume_hpd_desc); + igt_subtest("dp-hpd-after-hibernate") + { + struct chamelium_port *hport = + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_DisplayPort); - igt_describe(test_hpd_storm_detect_desc); - connector_subtest("hdmi-hpd-storm", HDMIA) - test_hpd_storm_detect(&data, port, - HPD_STORM_PULSE_INTERVAL_HDMI); + if (!hport) + igt_skip("DP connector not available\n"); - igt_describe(test_hpd_storm_disable_desc); - connector_subtest("hdmi-hpd-storm-disable", HDMIA) - test_hpd_storm_disable(&data, port, - HPD_STORM_PULSE_INTERVAL_HDMI); + test_suspend_resume_hpd(&data, hport, SUSPEND_STATE_DISK, SUSPEND_TEST_DEVICES); } - igt_describe("VGA tests"); - igt_subtest_group { - igt_fixture { - chamelium_require_connector_present( - data.ports, DRM_MODE_CONNECTOR_VGA, - data.port_count, 1); - } + igt_describe(test_hpd_storm_detect_desc); + igt_subtest("dp-hpd-storm") + { + struct chamelium_port *hport = + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_DisplayPort); + + if (!hport) + igt_skip("DP connector not available\n"); - igt_describe(test_basic_hotplug_desc); - connector_subtest("vga-hpd", VGA) test_hotplug( - &data, port, HPD_TOGGLE_COUNT_VGA, TEST_MODESET_OFF); + test_hpd_storm_detect(&data, hport, HPD_STORM_PULSE_INTERVAL_DP); + } + + igt_describe(test_hpd_storm_disable_desc); + igt_subtest("dp-hpd-storm-disable") + { + struct chamelium_port *hport = + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_DisplayPort); - igt_describe(test_basic_hotplug_desc); - connector_subtest("vga-hpd-fast", VGA) test_hotplug( - &data, port, HPD_TOGGLE_COUNT_FAST, TEST_MODESET_OFF); + if (!hport) + igt_skip("DP connector not available\n"); - igt_describe(test_basic_hotplug_desc); - connector_subtest("vga-hpd-enable-disable-mode", VGA) - test_hotplug(&data, port, HPD_TOGGLE_COUNT_FAST, - TEST_MODESET_ON_OFF); + test_hpd_storm_disable(&data, hport, HPD_STORM_PULSE_INTERVAL_DP); + } - igt_describe(test_basic_hotplug_desc); - connector_subtest("vga-hpd-with-enabled-mode", VGA) - test_hotplug(&data, port, HPD_TOGGLE_COUNT_FAST, - TEST_MODESET_ON); +igt_describe("HDMI tests"); - igt_describe(test_suspend_resume_hpd_desc); - connector_subtest("vga-hpd-after-suspend", VGA) - test_suspend_resume_hpd(&data, port, SUSPEND_STATE_MEM, - SUSPEND_TEST_NONE); + igt_describe(test_basic_hotplug_desc); + igt_subtest("hdmi-hpd") + { + struct chamelium_port *hport = + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_HDMIA); - igt_describe(test_suspend_resume_hpd_desc); - connector_subtest("vga-hpd-after-hibernate", VGA) - test_suspend_resume_hpd(&data, port, SUSPEND_STATE_DISK, - SUSPEND_TEST_DEVICES); + if (!hport) + igt_skip("HDMI connector not available\n"); - igt_describe(test_hpd_without_ddc_desc); - connector_subtest("vga-hpd-without-ddc", VGA) - test_hpd_without_ddc(&data, port); + test_hotplug(&data, hport, HPD_TOGGLE_COUNT_DP_HDMI, TEST_MODESET_OFF); + } + + igt_describe(test_basic_hotplug_desc); + igt_subtest("hdmi-hpd-fast") + { + struct chamelium_port *hport = + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_HDMIA); + + if (!hport) + igt_skip("HDMI connector not available\n"); + + test_hotplug(&data, hport, HPD_TOGGLE_COUNT_FAST, TEST_MODESET_OFF); + } + + igt_describe(test_basic_hotplug_desc); + igt_subtest("hdmi-hpd-enable-disable-mode") + { + struct chamelium_port *hport = + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_HDMIA); + + if (!hport) + igt_skip("HDMI connector not available\n"); + + test_hotplug(&data, hport, HPD_TOGGLE_COUNT_FAST, TEST_MODESET_ON_OFF); + } + + igt_describe(test_basic_hotplug_desc); + igt_subtest("hdmi-hpd-with-enabled-mode") + { + struct chamelium_port *hport = + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_HDMIA); + + if (!hport) + igt_skip("HDMI connector not available\n"); + + test_hotplug(&data, hport, HPD_TOGGLE_COUNT_FAST, TEST_MODESET_ON); + } + + igt_describe(test_hotplug_for_each_pipe_desc); + igt_subtest("hdmi-hpd-for-each-pipe") + { + struct chamelium_port *hport = + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_HDMIA); + + if (!hport) + igt_skip("HDMI connector not available\n"); + + test_hotplug_for_each_pipe(&data, hport); + } + + igt_describe(test_suspend_resume_hpd_desc); + igt_subtest("hdmi-hpd-after-suspend") + { + struct chamelium_port *hport = + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_HDMIA); + + if (!hport) + igt_skip("HDMI connector not available\n"); + + test_suspend_resume_hpd(&data, hport, SUSPEND_STATE_MEM, SUSPEND_TEST_NONE); + } + + igt_describe(test_suspend_resume_hpd_desc); + igt_subtest("hdmi-hpd-after-hibernate") + { + struct chamelium_port *hport = + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_HDMIA); + + if (!hport) + igt_skip("HDMI connector not available\n"); + + test_suspend_resume_hpd(&data, hport, SUSPEND_STATE_DISK, SUSPEND_TEST_DEVICES); + } + + igt_describe(test_hpd_storm_detect_desc); + igt_subtest("hdmi-hpd-storm") + { + struct chamelium_port *hport = + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_HDMIA); + + if (!hport) + igt_skip("HDMI connector not available\n"); + + test_hpd_storm_detect(&data, hport, HPD_STORM_PULSE_INTERVAL_HDMI); + } + + igt_describe(test_hpd_storm_disable_desc); + igt_subtest("hdmi-hpd-storm-disable") + { + struct chamelium_port *hport = + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_HDMIA); + + if (!hport) + igt_skip("HDMI connector not available\n"); + + test_hpd_storm_disable(&data, hport, HPD_STORM_PULSE_INTERVAL_HDMI); + } + +igt_describe("VGA tests"); + + igt_describe(test_basic_hotplug_desc); + igt_subtest("vga-hpd") + { + struct chamelium_port *hport = + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_VGA); + + if (!hport) + igt_skip("VGA connector not available\n"); + + test_hotplug(&data, hport, HPD_TOGGLE_COUNT_VGA, TEST_MODESET_OFF); + } + + igt_describe(test_basic_hotplug_desc); + igt_subtest("vga-hpd-fast") + { + struct chamelium_port *hport = + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_VGA); + + if (!hport) + igt_skip("VGA connector not available\n"); + + test_hotplug(&data, hport, HPD_TOGGLE_COUNT_FAST, TEST_MODESET_OFF); + } + + igt_describe(test_basic_hotplug_desc); + igt_subtest("vga-hpd-enable-disable-mode") + { + struct chamelium_port *hport = + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_VGA); + + if (!hport) + igt_skip("VGA connector not available\n"); + + test_hotplug(&data, hport, HPD_TOGGLE_COUNT_FAST, TEST_MODESET_ON_OFF); + } + + igt_describe(test_basic_hotplug_desc); + igt_subtest("vga-hpd-with-enabled-mode") + { + struct chamelium_port *hport = + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_VGA); + + if (!hport) + igt_skip("VGA connector not available\n"); + + test_hotplug(&data, hport, HPD_TOGGLE_COUNT_FAST, TEST_MODESET_ON); + } + + igt_describe(test_suspend_resume_hpd_desc); + igt_subtest("vga-hpd-after-suspend") + { + struct chamelium_port *hport = + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_VGA); + + if (!hport) + igt_skip("VGA connector not available\n"); + + test_suspend_resume_hpd(&data, hport, SUSPEND_STATE_MEM, SUSPEND_TEST_NONE); + } + + igt_describe(test_suspend_resume_hpd_desc); + igt_subtest("vga-hpd-after-hibernate") + { + struct chamelium_port *hport = + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_VGA); + + if (!hport) + igt_skip("VGA connector not available\n"); + + test_suspend_resume_hpd(&data, hport, SUSPEND_STATE_DISK, SUSPEND_TEST_DEVICES); + } + + igt_describe(test_hpd_without_ddc_desc); + igt_subtest("vga-hpd-without-ddc") + { + struct chamelium_port *hport = + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_VGA); + + if (!hport) + igt_skip("VGA connector not available\n"); + + test_hpd_without_ddc(&data, hport); + } + + igt_describe(test_hotplug_for_each_pipe_desc); + igt_subtest("vga-hpd-for-each-pipe") + { + struct chamelium_port *hport = + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_VGA); + + if (!hport) + igt_skip("VGA connector not available\n"); + + test_hotplug_for_each_pipe(&data, hport); } igt_describe("Tests that operate on all connectors"); @@ -643,15 +813,10 @@ igt_main igt_describe(test_suspend_resume_hpd_common_desc); igt_subtest("common-hpd-after-hibernate") - test_suspend_resume_hpd_common(&data, - SUSPEND_STATE_DISK, + test_suspend_resume_hpd_common(&data, SUSPEND_STATE_DISK, SUSPEND_TEST_DEVICES); } - igt_describe(test_hotplug_for_each_pipe_desc); - connector_subtest("vga-hpd-for-each-pipe", VGA) - test_hotplug_for_each_pipe(&data, port); - igt_fixture { igt_display_fini(&data.display); drm_close_driver(data.drm_fd); -- 2.48.1 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH i-g-t 2/2] RFC: chamelium/kms_chamelium_hpd: use helper function for connector lookup in DP/HDMI/VGA tests 2025-12-05 7:46 ` [PATCH i-g-t 2/2] RFC: chamelium/kms_chamelium_hpd: use helper function for connector lookup in DP/HDMI/VGA tests Moahmmed Bilal @ 2025-12-05 10:29 ` Sebastian Brzezinka 2025-12-08 5:31 ` B, Jeevan 1 sibling, 0 replies; 12+ messages in thread From: Sebastian Brzezinka @ 2025-12-05 10:29 UTC (permalink / raw) To: Moahmmed Bilal, igt-dev; +Cc: jeevan.b, kunal1.joshi Hi Moahmmed On Fri Dec 5, 2025 at 8:46 AM CET, Moahmmed Bilal wrote: > From: Mohammed Bilal <mohammed.bilal@intel.com> > > Use the new get_port() helper to retrieve the appropriate connector for each > hotplug subtest, ensuring consistent connector handling across DP/HDMI/VGA > tests. Also remove the per-connector igt_fixture blocks, as they were being > executed regardless of which subtest was run. The helper-based approach avoids > unwanted fixture execution and keeps connector selection simple and reliable. > > Signed-off-by: Mohammed Bilal <mohammed.bilal@intel.com> > --- > tests/chamelium/kms_chamelium_hpd.c | 411 +++++++++++++++++++--------- > 1 file changed, 288 insertions(+), 123 deletions(-) > > diff --git a/tests/chamelium/kms_chamelium_hpd.c b/tests/chamelium/kms_chamelium_hpd.c > index 3c8af63bd..840363311 100644 > --- a/tests/chamelium/kms_chamelium_hpd.c > +++ b/tests/chamelium/kms_chamelium_hpd.c > @@ -440,7 +440,6 @@ static void test_hpd_storm_detect(chamelium_data_t *data, > igt_hpd_storm_set_threshold(data->drm_fd, 1); > chamelium_fire_hpd_pulses(data->chamelium, port, width, 10); > igt_assert(igt_hpd_storm_detected(data->drm_fd)); > - Please preserve the existing line breaks. > mon = igt_watch_uevents(); > chamelium_fire_hpd_pulses(data->chamelium, port, width, 10); > > @@ -478,156 +477,327 @@ IGT_TEST_DESCRIPTION("Testing HPD with a Chamelium board"); > igt_main > { > chamelium_data_t data; > - struct chamelium_port *port; > - int p; > > igt_fixture { > chamelium_init_test(&data); > } > > - igt_describe("DisplayPort tests"); > - igt_subtest_group { > - igt_fixture { > - chamelium_require_connector_present( > - data.ports, DRM_MODE_CONNECTOR_DisplayPort, > - data.port_count, 1); > - } > +igt_describe("DP tests"); > > - igt_describe(test_basic_hotplug_desc); > - connector_subtest("dp-hpd", DisplayPort) > - test_hotplug(&data, port, HPD_TOGGLE_COUNT_DP_HDMI, > - TEST_MODESET_OFF); > + igt_describe(test_basic_hotplug_desc); > + igt_subtest("dp-hpd") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_DisplayPort); > > - igt_describe(test_basic_hotplug_desc); > - connector_subtest("dp-hpd-fast", DisplayPort) test_hotplug( > - &data, port, HPD_TOGGLE_COUNT_FAST, TEST_MODESET_OFF); > + if (!hport) > + igt_skip("DP connector not available\n"); > > - igt_describe(test_basic_hotplug_desc); > - connector_subtest("dp-hpd-enable-disable-mode", DisplayPort) > - test_hotplug(&data, port, HPD_TOGGLE_COUNT_FAST, > - TEST_MODESET_ON_OFF); > + test_hotplug(&data, hport, HPD_TOGGLE_COUNT_DP_HDMI, TEST_MODESET_OFF); > + } > > - igt_describe(test_basic_hotplug_desc); > - connector_subtest("dp-hpd-with-enabled-mode", DisplayPort) > - test_hotplug(&data, port, HPD_TOGGLE_COUNT_FAST, > - TEST_MODESET_ON); > + igt_describe(test_basic_hotplug_desc); > + igt_subtest("dp-hpd-fast") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_DisplayPort); > > - igt_describe(test_hotplug_for_each_pipe_desc); > - connector_subtest("dp-hpd-for-each-pipe", DisplayPort) > - test_hotplug_for_each_pipe(&data, port); > + if (!hport) > + igt_skip("DP connector not available\n"); > > - igt_describe(test_suspend_resume_hpd_desc); > - connector_subtest("dp-hpd-after-suspend", DisplayPort) > - test_suspend_resume_hpd(&data, port, SUSPEND_STATE_MEM, > - SUSPEND_TEST_NONE); > + test_hotplug(&data, hport, HPD_TOGGLE_COUNT_FAST, TEST_MODESET_OFF); > + } > > - igt_describe(test_suspend_resume_hpd_desc); > - connector_subtest("dp-hpd-after-hibernate", DisplayPort) > - test_suspend_resume_hpd(&data, port, SUSPEND_STATE_DISK, > - SUSPEND_TEST_DEVICES); > + igt_describe(test_basic_hotplug_desc); > + igt_subtest("dp-hpd-enable-disable-mode") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_DisplayPort); > > - igt_describe(test_hpd_storm_detect_desc); > - connector_subtest("dp-hpd-storm", DisplayPort) > - test_hpd_storm_detect(&data, port, > - HPD_STORM_PULSE_INTERVAL_DP); > + if (!hport) > + igt_skip("DP connector not available\n"); > > - igt_describe(test_hpd_storm_disable_desc); > - connector_subtest("dp-hpd-storm-disable", DisplayPort) > - test_hpd_storm_disable(&data, port, > - HPD_STORM_PULSE_INTERVAL_DP); > + test_hotplug(&data, hport, HPD_TOGGLE_COUNT_FAST, TEST_MODESET_ON_OFF); > } > > - igt_describe("HDMI tests"); > - igt_subtest_group { > - igt_fixture { > - chamelium_require_connector_present( > - data.ports, DRM_MODE_CONNECTOR_HDMIA, > - data.port_count, 1); > - } > + igt_describe(test_basic_hotplug_desc); > + igt_subtest("dp-hpd-with-enabled-mode") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_DisplayPort); > + > + if (!hport) > + igt_skip("DP connector not available\n"); > > - igt_describe(test_basic_hotplug_desc); > - connector_subtest("hdmi-hpd", HDMIA) > - test_hotplug(&data, port, HPD_TOGGLE_COUNT_DP_HDMI, > - TEST_MODESET_OFF); > + test_hotplug(&data, hport, HPD_TOGGLE_COUNT_FAST, TEST_MODESET_ON); > + } > + > + igt_describe(test_hotplug_for_each_pipe_desc); > + igt_subtest("dp-hpd-for-each-pipe") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_DisplayPort); > > - igt_describe(test_basic_hotplug_desc); > - connector_subtest("hdmi-hpd-fast", HDMIA) test_hotplug( > - &data, port, HPD_TOGGLE_COUNT_FAST, TEST_MODESET_OFF); > + if (!hport) > + igt_skip("DP connector not available\n"); > > - igt_describe(test_basic_hotplug_desc); > - connector_subtest("hdmi-hpd-enable-disable-mode", HDMIA) > - test_hotplug(&data, port, HPD_TOGGLE_COUNT_FAST, > - TEST_MODESET_ON_OFF); > + test_hotplug_for_each_pipe(&data, hport); > + } > > - igt_describe(test_basic_hotplug_desc); > - connector_subtest("hdmi-hpd-with-enabled-mode", HDMIA) > - test_hotplug(&data, port, HPD_TOGGLE_COUNT_FAST, > - TEST_MODESET_ON); > + igt_describe(test_suspend_resume_hpd_desc); > + igt_subtest("dp-hpd-after-suspend") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_DisplayPort); > > - igt_describe(test_hotplug_for_each_pipe_desc); > - connector_subtest("hdmi-hpd-for-each-pipe", HDMIA) > - test_hotplug_for_each_pipe(&data, port); > + if (!hport) > + igt_skip("DP connector not available\n"); > > - igt_describe(test_suspend_resume_hpd_desc); > - connector_subtest("hdmi-hpd-after-suspend", HDMIA) > - test_suspend_resume_hpd(&data, port, SUSPEND_STATE_MEM, > - SUSPEND_TEST_NONE); > + test_suspend_resume_hpd(&data, hport, SUSPEND_STATE_MEM, SUSPEND_TEST_NONE); > + } > > - igt_describe(test_suspend_resume_hpd_desc); > - connector_subtest("hdmi-hpd-after-hibernate", HDMIA) > - test_suspend_resume_hpd(&data, port, SUSPEND_STATE_DISK, > - SUSPEND_TEST_DEVICES); > + igt_describe(test_suspend_resume_hpd_desc); > + igt_subtest("dp-hpd-after-hibernate") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_DisplayPort); > > - igt_describe(test_hpd_storm_detect_desc); > - connector_subtest("hdmi-hpd-storm", HDMIA) > - test_hpd_storm_detect(&data, port, > - HPD_STORM_PULSE_INTERVAL_HDMI); > + if (!hport) > + igt_skip("DP connector not available\n"); > > - igt_describe(test_hpd_storm_disable_desc); > - connector_subtest("hdmi-hpd-storm-disable", HDMIA) > - test_hpd_storm_disable(&data, port, > - HPD_STORM_PULSE_INTERVAL_HDMI); > + test_suspend_resume_hpd(&data, hport, SUSPEND_STATE_DISK, SUSPEND_TEST_DEVICES); > } > > - igt_describe("VGA tests"); > - igt_subtest_group { > - igt_fixture { > - chamelium_require_connector_present( > - data.ports, DRM_MODE_CONNECTOR_VGA, > - data.port_count, 1); > - } > + igt_describe(test_hpd_storm_detect_desc); > + igt_subtest("dp-hpd-storm") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_DisplayPort); > + > + if (!hport) > + igt_skip("DP connector not available\n"); > > - igt_describe(test_basic_hotplug_desc); > - connector_subtest("vga-hpd", VGA) test_hotplug( > - &data, port, HPD_TOGGLE_COUNT_VGA, TEST_MODESET_OFF); > + test_hpd_storm_detect(&data, hport, HPD_STORM_PULSE_INTERVAL_DP); > + } > + > + igt_describe(test_hpd_storm_disable_desc); > + igt_subtest("dp-hpd-storm-disable") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_DisplayPort); > > - igt_describe(test_basic_hotplug_desc); > - connector_subtest("vga-hpd-fast", VGA) test_hotplug( > - &data, port, HPD_TOGGLE_COUNT_FAST, TEST_MODESET_OFF); > + if (!hport) > + igt_skip("DP connector not available\n"); > > - igt_describe(test_basic_hotplug_desc); > - connector_subtest("vga-hpd-enable-disable-mode", VGA) > - test_hotplug(&data, port, HPD_TOGGLE_COUNT_FAST, > - TEST_MODESET_ON_OFF); > + test_hpd_storm_disable(&data, hport, HPD_STORM_PULSE_INTERVAL_DP); > + } > > - igt_describe(test_basic_hotplug_desc); > - connector_subtest("vga-hpd-with-enabled-mode", VGA) > - test_hotplug(&data, port, HPD_TOGGLE_COUNT_FAST, > - TEST_MODESET_ON); > +igt_describe("HDMI tests"); > > - igt_describe(test_suspend_resume_hpd_desc); > - connector_subtest("vga-hpd-after-suspend", VGA) > - test_suspend_resume_hpd(&data, port, SUSPEND_STATE_MEM, > - SUSPEND_TEST_NONE); > + igt_describe(test_basic_hotplug_desc); > + igt_subtest("hdmi-hpd") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_HDMIA); > > - igt_describe(test_suspend_resume_hpd_desc); > - connector_subtest("vga-hpd-after-hibernate", VGA) > - test_suspend_resume_hpd(&data, port, SUSPEND_STATE_DISK, > - SUSPEND_TEST_DEVICES); > + if (!hport) > + igt_skip("HDMI connector not available\n"); > > - igt_describe(test_hpd_without_ddc_desc); > - connector_subtest("vga-hpd-without-ddc", VGA) > - test_hpd_without_ddc(&data, port); > + test_hotplug(&data, hport, HPD_TOGGLE_COUNT_DP_HDMI, TEST_MODESET_OFF); > + } > + > + igt_describe(test_basic_hotplug_desc); > + igt_subtest("hdmi-hpd-fast") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_HDMIA); > + > + if (!hport) > + igt_skip("HDMI connector not available\n"); > + > + test_hotplug(&data, hport, HPD_TOGGLE_COUNT_FAST, TEST_MODESET_OFF); > + } > + > + igt_describe(test_basic_hotplug_desc); > + igt_subtest("hdmi-hpd-enable-disable-mode") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_HDMIA); > + > + if (!hport) > + igt_skip("HDMI connector not available\n"); > + > + test_hotplug(&data, hport, HPD_TOGGLE_COUNT_FAST, TEST_MODESET_ON_OFF); > + } > + > + igt_describe(test_basic_hotplug_desc); > + igt_subtest("hdmi-hpd-with-enabled-mode") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_HDMIA); > + > + if (!hport) > + igt_skip("HDMI connector not available\n"); > + > + test_hotplug(&data, hport, HPD_TOGGLE_COUNT_FAST, TEST_MODESET_ON); > + } > + > + igt_describe(test_hotplug_for_each_pipe_desc); > + igt_subtest("hdmi-hpd-for-each-pipe") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_HDMIA); > + > + if (!hport) > + igt_skip("HDMI connector not available\n"); > + > + test_hotplug_for_each_pipe(&data, hport); > + } > + > + igt_describe(test_suspend_resume_hpd_desc); > + igt_subtest("hdmi-hpd-after-suspend") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_HDMIA); > + > + if (!hport) > + igt_skip("HDMI connector not available\n"); > + > + test_suspend_resume_hpd(&data, hport, SUSPEND_STATE_MEM, SUSPEND_TEST_NONE); > + } > + > + igt_describe(test_suspend_resume_hpd_desc); > + igt_subtest("hdmi-hpd-after-hibernate") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_HDMIA); > + > + if (!hport) > + igt_skip("HDMI connector not available\n"); > + > + test_suspend_resume_hpd(&data, hport, SUSPEND_STATE_DISK, SUSPEND_TEST_DEVICES); > + } > + > + igt_describe(test_hpd_storm_detect_desc); > + igt_subtest("hdmi-hpd-storm") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_HDMIA); > + > + if (!hport) > + igt_skip("HDMI connector not available\n"); > + > + test_hpd_storm_detect(&data, hport, HPD_STORM_PULSE_INTERVAL_HDMI); > + } > + > + igt_describe(test_hpd_storm_disable_desc); > + igt_subtest("hdmi-hpd-storm-disable") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_HDMIA); > + > + if (!hport) > + igt_skip("HDMI connector not available\n"); > + > + test_hpd_storm_disable(&data, hport, HPD_STORM_PULSE_INTERVAL_HDMI); > + } > + > +igt_describe("VGA tests"); > + > + igt_describe(test_basic_hotplug_desc); > + igt_subtest("vga-hpd") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_VGA); > + > + if (!hport) > + igt_skip("VGA connector not available\n"); > + > + test_hotplug(&data, hport, HPD_TOGGLE_COUNT_VGA, TEST_MODESET_OFF); > + } > + > + igt_describe(test_basic_hotplug_desc); > + igt_subtest("vga-hpd-fast") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_VGA); > + > + if (!hport) > + igt_skip("VGA connector not available\n"); > + > + test_hotplug(&data, hport, HPD_TOGGLE_COUNT_FAST, TEST_MODESET_OFF); > + } > + > + igt_describe(test_basic_hotplug_desc); > + igt_subtest("vga-hpd-enable-disable-mode") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_VGA); > + > + if (!hport) > + igt_skip("VGA connector not available\n"); > + > + test_hotplug(&data, hport, HPD_TOGGLE_COUNT_FAST, TEST_MODESET_ON_OFF); > + } > + > + igt_describe(test_basic_hotplug_desc); > + igt_subtest("vga-hpd-with-enabled-mode") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_VGA); > + > + if (!hport) > + igt_skip("VGA connector not available\n"); > + > + test_hotplug(&data, hport, HPD_TOGGLE_COUNT_FAST, TEST_MODESET_ON); > + } > + > + igt_describe(test_suspend_resume_hpd_desc); > + igt_subtest("vga-hpd-after-suspend") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_VGA); > + > + if (!hport) > + igt_skip("VGA connector not available\n"); > + > + test_suspend_resume_hpd(&data, hport, SUSPEND_STATE_MEM, SUSPEND_TEST_NONE); > + } > + > + igt_describe(test_suspend_resume_hpd_desc); > + igt_subtest("vga-hpd-after-hibernate") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_VGA); > + > + if (!hport) > + igt_skip("VGA connector not available\n"); > + > + test_suspend_resume_hpd(&data, hport, SUSPEND_STATE_DISK, SUSPEND_TEST_DEVICES); > + } > + > + igt_describe(test_hpd_without_ddc_desc); > + igt_subtest("vga-hpd-without-ddc") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_VGA); > + > + if (!hport) > + igt_skip("VGA connector not available\n"); > + > + test_hpd_without_ddc(&data, hport); > + } > + > + igt_describe(test_hotplug_for_each_pipe_desc); > + igt_subtest("vga-hpd-for-each-pipe") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, DRM_MODE_CONNECTOR_VGA); > + > + if (!hport) > + igt_skip("VGA connector not available\n"); > + > + test_hotplug_for_each_pipe(&data, hport); > } > > igt_describe("Tests that operate on all connectors"); > @@ -643,15 +813,10 @@ igt_main > > igt_describe(test_suspend_resume_hpd_common_desc); > igt_subtest("common-hpd-after-hibernate") > - test_suspend_resume_hpd_common(&data, > - SUSPEND_STATE_DISK, > + test_suspend_resume_hpd_common(&data, SUSPEND_STATE_DISK, > SUSPEND_TEST_DEVICES); > } > > - igt_describe(test_hotplug_for_each_pipe_desc); > - connector_subtest("vga-hpd-for-each-pipe", VGA) > - test_hotplug_for_each_pipe(&data, port); > - > igt_fixture { > igt_display_fini(&data.display); > drm_close_driver(data.drm_fd); This appears quite repetitive. You might want to define this once, perhaps something like this: ``` #define connector_test(name, connector_type, test_fn, ...) \ igt_subtest(name) \ { \ struct chamelium_port *hport = \ get_port(data.ports, data.port_count, \ DRM_MODE_CONNECTOR_##connector_type); \ \ if (!hport) \ igt_skip("%s connector not available\n", #connector_type); \ \ test_fn(&data, hport, ##__VA_ARGS__); \ } ``` BR Seba ^ permalink raw reply [flat|nested] 12+ messages in thread
* RE: [PATCH i-g-t 2/2] RFC: chamelium/kms_chamelium_hpd: use helper function for connector lookup in DP/HDMI/VGA tests 2025-12-05 7:46 ` [PATCH i-g-t 2/2] RFC: chamelium/kms_chamelium_hpd: use helper function for connector lookup in DP/HDMI/VGA tests Moahmmed Bilal 2025-12-05 10:29 ` Sebastian Brzezinka @ 2025-12-08 5:31 ` B, Jeevan 1 sibling, 0 replies; 12+ messages in thread From: B, Jeevan @ 2025-12-08 5:31 UTC (permalink / raw) To: Bilal, Mohammed, igt-dev@lists.freedesktop.org; +Cc: Joshi, Kunal1 I agree with Sebastian, Please fix the following: * Reduce Duplication with Helper Macro * Cache Port Lookups * Fix Formatting Issues - BR Jeevan B > -----Original Message----- > From: Bilal, Mohammed <mohammed.bilal@intel.com> > Sent: Friday, December 5, 2025 1:16 PM > To: igt-dev@lists.freedesktop.org > Cc: B, Jeevan <jeevan.b@intel.com>; Joshi, Kunal1 <kunal1.joshi@intel.com>; > Bilal, Mohammed <mohammed.bilal@intel.com> > Subject: [PATCH i-g-t 2/2] RFC: chamelium/kms_chamelium_hpd: use helper > function for connector lookup in DP/HDMI/VGA tests > > From: Mohammed Bilal <mohammed.bilal@intel.com> > > Use the new get_port() helper to retrieve the appropriate connector for each > hotplug subtest, ensuring consistent connector handling across > DP/HDMI/VGA tests. Also remove the per-connector igt_fixture blocks, as > they were being executed regardless of which subtest was run. The helper- > based approach avoids unwanted fixture execution and keeps connector > selection simple and reliable. > > Signed-off-by: Mohammed Bilal <mohammed.bilal@intel.com> > --- > tests/chamelium/kms_chamelium_hpd.c | 411 +++++++++++++++++++------ > --- > 1 file changed, 288 insertions(+), 123 deletions(-) > > diff --git a/tests/chamelium/kms_chamelium_hpd.c > b/tests/chamelium/kms_chamelium_hpd.c > index 3c8af63bd..840363311 100644 > --- a/tests/chamelium/kms_chamelium_hpd.c > +++ b/tests/chamelium/kms_chamelium_hpd.c > @@ -440,7 +440,6 @@ static void > test_hpd_storm_detect(chamelium_data_t *data, > igt_hpd_storm_set_threshold(data->drm_fd, 1); > chamelium_fire_hpd_pulses(data->chamelium, port, width, 10); > igt_assert(igt_hpd_storm_detected(data->drm_fd)); > - > mon = igt_watch_uevents(); > chamelium_fire_hpd_pulses(data->chamelium, port, width, 10); > > @@ -478,156 +477,327 @@ IGT_TEST_DESCRIPTION("Testing HPD with a > Chamelium board"); igt_main { > chamelium_data_t data; > - struct chamelium_port *port; > - int p; > > igt_fixture { > chamelium_init_test(&data); > } > > - igt_describe("DisplayPort tests"); > - igt_subtest_group { > - igt_fixture { > - chamelium_require_connector_present( > - data.ports, > DRM_MODE_CONNECTOR_DisplayPort, > - data.port_count, 1); > - } > +igt_describe("DP tests"); > > - igt_describe(test_basic_hotplug_desc); > - connector_subtest("dp-hpd", DisplayPort) > - test_hotplug(&data, port, > HPD_TOGGLE_COUNT_DP_HDMI, > - TEST_MODESET_OFF); > + igt_describe(test_basic_hotplug_desc); > + igt_subtest("dp-hpd") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, > +DRM_MODE_CONNECTOR_DisplayPort); > > - igt_describe(test_basic_hotplug_desc); > - connector_subtest("dp-hpd-fast", DisplayPort) test_hotplug( > - &data, port, HPD_TOGGLE_COUNT_FAST, > TEST_MODESET_OFF); > + if (!hport) > + igt_skip("DP connector not available\n"); > > - igt_describe(test_basic_hotplug_desc); > - connector_subtest("dp-hpd-enable-disable-mode", > DisplayPort) > - test_hotplug(&data, port, > HPD_TOGGLE_COUNT_FAST, > - TEST_MODESET_ON_OFF); > + test_hotplug(&data, hport, HPD_TOGGLE_COUNT_DP_HDMI, > TEST_MODESET_OFF); > + } > > - igt_describe(test_basic_hotplug_desc); > - connector_subtest("dp-hpd-with-enabled-mode", > DisplayPort) > - test_hotplug(&data, port, > HPD_TOGGLE_COUNT_FAST, > - TEST_MODESET_ON); > + igt_describe(test_basic_hotplug_desc); > + igt_subtest("dp-hpd-fast") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, > +DRM_MODE_CONNECTOR_DisplayPort); > > - igt_describe(test_hotplug_for_each_pipe_desc); > - connector_subtest("dp-hpd-for-each-pipe", DisplayPort) > - test_hotplug_for_each_pipe(&data, port); > + if (!hport) > + igt_skip("DP connector not available\n"); > > - igt_describe(test_suspend_resume_hpd_desc); > - connector_subtest("dp-hpd-after-suspend", DisplayPort) > - test_suspend_resume_hpd(&data, port, > SUSPEND_STATE_MEM, > - SUSPEND_TEST_NONE); > + test_hotplug(&data, hport, HPD_TOGGLE_COUNT_FAST, > TEST_MODESET_OFF); > + } > > - igt_describe(test_suspend_resume_hpd_desc); > - connector_subtest("dp-hpd-after-hibernate", DisplayPort) > - test_suspend_resume_hpd(&data, port, > SUSPEND_STATE_DISK, > - SUSPEND_TEST_DEVICES); > + igt_describe(test_basic_hotplug_desc); > + igt_subtest("dp-hpd-enable-disable-mode") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, > +DRM_MODE_CONNECTOR_DisplayPort); > > - igt_describe(test_hpd_storm_detect_desc); > - connector_subtest("dp-hpd-storm", DisplayPort) > - test_hpd_storm_detect(&data, port, > - > HPD_STORM_PULSE_INTERVAL_DP); > + if (!hport) > + igt_skip("DP connector not available\n"); > > - igt_describe(test_hpd_storm_disable_desc); > - connector_subtest("dp-hpd-storm-disable", DisplayPort) > - test_hpd_storm_disable(&data, port, > - > HPD_STORM_PULSE_INTERVAL_DP); > + test_hotplug(&data, hport, HPD_TOGGLE_COUNT_FAST, > +TEST_MODESET_ON_OFF); > } > > - igt_describe("HDMI tests"); > - igt_subtest_group { > - igt_fixture { > - chamelium_require_connector_present( > - data.ports, > DRM_MODE_CONNECTOR_HDMIA, > - data.port_count, 1); > - } > + igt_describe(test_basic_hotplug_desc); > + igt_subtest("dp-hpd-with-enabled-mode") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, > +DRM_MODE_CONNECTOR_DisplayPort); > + > + if (!hport) > + igt_skip("DP connector not available\n"); > > - igt_describe(test_basic_hotplug_desc); > - connector_subtest("hdmi-hpd", HDMIA) > - test_hotplug(&data, port, > HPD_TOGGLE_COUNT_DP_HDMI, > - TEST_MODESET_OFF); > + test_hotplug(&data, hport, HPD_TOGGLE_COUNT_FAST, > TEST_MODESET_ON); > + } > + > + igt_describe(test_hotplug_for_each_pipe_desc); > + igt_subtest("dp-hpd-for-each-pipe") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, > +DRM_MODE_CONNECTOR_DisplayPort); > > - igt_describe(test_basic_hotplug_desc); > - connector_subtest("hdmi-hpd-fast", HDMIA) test_hotplug( > - &data, port, HPD_TOGGLE_COUNT_FAST, > TEST_MODESET_OFF); > + if (!hport) > + igt_skip("DP connector not available\n"); > > - igt_describe(test_basic_hotplug_desc); > - connector_subtest("hdmi-hpd-enable-disable-mode", > HDMIA) > - test_hotplug(&data, port, > HPD_TOGGLE_COUNT_FAST, > - TEST_MODESET_ON_OFF); > + test_hotplug_for_each_pipe(&data, hport); > + } > > - igt_describe(test_basic_hotplug_desc); > - connector_subtest("hdmi-hpd-with-enabled-mode", HDMIA) > - test_hotplug(&data, port, > HPD_TOGGLE_COUNT_FAST, > - TEST_MODESET_ON); > + igt_describe(test_suspend_resume_hpd_desc); > + igt_subtest("dp-hpd-after-suspend") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, > +DRM_MODE_CONNECTOR_DisplayPort); > > - igt_describe(test_hotplug_for_each_pipe_desc); > - connector_subtest("hdmi-hpd-for-each-pipe", HDMIA) > - test_hotplug_for_each_pipe(&data, port); > + if (!hport) > + igt_skip("DP connector not available\n"); > > - igt_describe(test_suspend_resume_hpd_desc); > - connector_subtest("hdmi-hpd-after-suspend", HDMIA) > - test_suspend_resume_hpd(&data, port, > SUSPEND_STATE_MEM, > - SUSPEND_TEST_NONE); > + test_suspend_resume_hpd(&data, hport, > SUSPEND_STATE_MEM, SUSPEND_TEST_NONE); > + } > > - igt_describe(test_suspend_resume_hpd_desc); > - connector_subtest("hdmi-hpd-after-hibernate", HDMIA) > - test_suspend_resume_hpd(&data, port, > SUSPEND_STATE_DISK, > - SUSPEND_TEST_DEVICES); > + igt_describe(test_suspend_resume_hpd_desc); > + igt_subtest("dp-hpd-after-hibernate") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, > +DRM_MODE_CONNECTOR_DisplayPort); > > - igt_describe(test_hpd_storm_detect_desc); > - connector_subtest("hdmi-hpd-storm", HDMIA) > - test_hpd_storm_detect(&data, port, > - > HPD_STORM_PULSE_INTERVAL_HDMI); > + if (!hport) > + igt_skip("DP connector not available\n"); > > - igt_describe(test_hpd_storm_disable_desc); > - connector_subtest("hdmi-hpd-storm-disable", HDMIA) > - test_hpd_storm_disable(&data, port, > - > HPD_STORM_PULSE_INTERVAL_HDMI); > + test_suspend_resume_hpd(&data, hport, > SUSPEND_STATE_DISK, > +SUSPEND_TEST_DEVICES); > } > > - igt_describe("VGA tests"); > - igt_subtest_group { > - igt_fixture { > - chamelium_require_connector_present( > - data.ports, DRM_MODE_CONNECTOR_VGA, > - data.port_count, 1); > - } > + igt_describe(test_hpd_storm_detect_desc); > + igt_subtest("dp-hpd-storm") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, > +DRM_MODE_CONNECTOR_DisplayPort); > + > + if (!hport) > + igt_skip("DP connector not available\n"); > > - igt_describe(test_basic_hotplug_desc); > - connector_subtest("vga-hpd", VGA) test_hotplug( > - &data, port, HPD_TOGGLE_COUNT_VGA, > TEST_MODESET_OFF); > + test_hpd_storm_detect(&data, hport, > HPD_STORM_PULSE_INTERVAL_DP); > + } > + > + igt_describe(test_hpd_storm_disable_desc); > + igt_subtest("dp-hpd-storm-disable") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, > +DRM_MODE_CONNECTOR_DisplayPort); > > - igt_describe(test_basic_hotplug_desc); > - connector_subtest("vga-hpd-fast", VGA) test_hotplug( > - &data, port, HPD_TOGGLE_COUNT_FAST, > TEST_MODESET_OFF); > + if (!hport) > + igt_skip("DP connector not available\n"); > > - igt_describe(test_basic_hotplug_desc); > - connector_subtest("vga-hpd-enable-disable-mode", VGA) > - test_hotplug(&data, port, > HPD_TOGGLE_COUNT_FAST, > - TEST_MODESET_ON_OFF); > + test_hpd_storm_disable(&data, hport, > HPD_STORM_PULSE_INTERVAL_DP); > + } > > - igt_describe(test_basic_hotplug_desc); > - connector_subtest("vga-hpd-with-enabled-mode", VGA) > - test_hotplug(&data, port, > HPD_TOGGLE_COUNT_FAST, > - TEST_MODESET_ON); > +igt_describe("HDMI tests"); > > - igt_describe(test_suspend_resume_hpd_desc); > - connector_subtest("vga-hpd-after-suspend", VGA) > - test_suspend_resume_hpd(&data, port, > SUSPEND_STATE_MEM, > - SUSPEND_TEST_NONE); > + igt_describe(test_basic_hotplug_desc); > + igt_subtest("hdmi-hpd") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, > DRM_MODE_CONNECTOR_HDMIA); > > - igt_describe(test_suspend_resume_hpd_desc); > - connector_subtest("vga-hpd-after-hibernate", VGA) > - test_suspend_resume_hpd(&data, port, > SUSPEND_STATE_DISK, > - SUSPEND_TEST_DEVICES); > + if (!hport) > + igt_skip("HDMI connector not available\n"); > > - igt_describe(test_hpd_without_ddc_desc); > - connector_subtest("vga-hpd-without-ddc", VGA) > - test_hpd_without_ddc(&data, port); > + test_hotplug(&data, hport, HPD_TOGGLE_COUNT_DP_HDMI, > TEST_MODESET_OFF); > + } > + > + igt_describe(test_basic_hotplug_desc); > + igt_subtest("hdmi-hpd-fast") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, > DRM_MODE_CONNECTOR_HDMIA); > + > + if (!hport) > + igt_skip("HDMI connector not available\n"); > + > + test_hotplug(&data, hport, HPD_TOGGLE_COUNT_FAST, > TEST_MODESET_OFF); > + } > + > + igt_describe(test_basic_hotplug_desc); > + igt_subtest("hdmi-hpd-enable-disable-mode") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, > DRM_MODE_CONNECTOR_HDMIA); > + > + if (!hport) > + igt_skip("HDMI connector not available\n"); > + > + test_hotplug(&data, hport, HPD_TOGGLE_COUNT_FAST, > TEST_MODESET_ON_OFF); > + } > + > + igt_describe(test_basic_hotplug_desc); > + igt_subtest("hdmi-hpd-with-enabled-mode") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, > DRM_MODE_CONNECTOR_HDMIA); > + > + if (!hport) > + igt_skip("HDMI connector not available\n"); > + > + test_hotplug(&data, hport, HPD_TOGGLE_COUNT_FAST, > TEST_MODESET_ON); > + } > + > + igt_describe(test_hotplug_for_each_pipe_desc); > + igt_subtest("hdmi-hpd-for-each-pipe") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, > DRM_MODE_CONNECTOR_HDMIA); > + > + if (!hport) > + igt_skip("HDMI connector not available\n"); > + > + test_hotplug_for_each_pipe(&data, hport); > + } > + > + igt_describe(test_suspend_resume_hpd_desc); > + igt_subtest("hdmi-hpd-after-suspend") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, > DRM_MODE_CONNECTOR_HDMIA); > + > + if (!hport) > + igt_skip("HDMI connector not available\n"); > + > + test_suspend_resume_hpd(&data, hport, > SUSPEND_STATE_MEM, SUSPEND_TEST_NONE); > + } > + > + igt_describe(test_suspend_resume_hpd_desc); > + igt_subtest("hdmi-hpd-after-hibernate") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, > DRM_MODE_CONNECTOR_HDMIA); > + > + if (!hport) > + igt_skip("HDMI connector not available\n"); > + > + test_suspend_resume_hpd(&data, hport, > SUSPEND_STATE_DISK, SUSPEND_TEST_DEVICES); > + } > + > + igt_describe(test_hpd_storm_detect_desc); > + igt_subtest("hdmi-hpd-storm") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, > DRM_MODE_CONNECTOR_HDMIA); > + > + if (!hport) > + igt_skip("HDMI connector not available\n"); > + > + test_hpd_storm_detect(&data, hport, > HPD_STORM_PULSE_INTERVAL_HDMI); > + } > + > + igt_describe(test_hpd_storm_disable_desc); > + igt_subtest("hdmi-hpd-storm-disable") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, > DRM_MODE_CONNECTOR_HDMIA); > + > + if (!hport) > + igt_skip("HDMI connector not available\n"); > + > + test_hpd_storm_disable(&data, hport, > HPD_STORM_PULSE_INTERVAL_HDMI); > + } > + > +igt_describe("VGA tests"); > + > + igt_describe(test_basic_hotplug_desc); > + igt_subtest("vga-hpd") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, > DRM_MODE_CONNECTOR_VGA); > + > + if (!hport) > + igt_skip("VGA connector not available\n"); > + > + test_hotplug(&data, hport, HPD_TOGGLE_COUNT_VGA, > TEST_MODESET_OFF); > + } > + > + igt_describe(test_basic_hotplug_desc); > + igt_subtest("vga-hpd-fast") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, > DRM_MODE_CONNECTOR_VGA); > + > + if (!hport) > + igt_skip("VGA connector not available\n"); > + > + test_hotplug(&data, hport, HPD_TOGGLE_COUNT_FAST, > TEST_MODESET_OFF); > + } > + > + igt_describe(test_basic_hotplug_desc); > + igt_subtest("vga-hpd-enable-disable-mode") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, > DRM_MODE_CONNECTOR_VGA); > + > + if (!hport) > + igt_skip("VGA connector not available\n"); > + > + test_hotplug(&data, hport, HPD_TOGGLE_COUNT_FAST, > TEST_MODESET_ON_OFF); > + } > + > + igt_describe(test_basic_hotplug_desc); > + igt_subtest("vga-hpd-with-enabled-mode") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, > DRM_MODE_CONNECTOR_VGA); > + > + if (!hport) > + igt_skip("VGA connector not available\n"); > + > + test_hotplug(&data, hport, HPD_TOGGLE_COUNT_FAST, > TEST_MODESET_ON); > + } > + > + igt_describe(test_suspend_resume_hpd_desc); > + igt_subtest("vga-hpd-after-suspend") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, > DRM_MODE_CONNECTOR_VGA); > + > + if (!hport) > + igt_skip("VGA connector not available\n"); > + > + test_suspend_resume_hpd(&data, hport, > SUSPEND_STATE_MEM, SUSPEND_TEST_NONE); > + } > + > + igt_describe(test_suspend_resume_hpd_desc); > + igt_subtest("vga-hpd-after-hibernate") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, > DRM_MODE_CONNECTOR_VGA); > + > + if (!hport) > + igt_skip("VGA connector not available\n"); > + > + test_suspend_resume_hpd(&data, hport, > SUSPEND_STATE_DISK, SUSPEND_TEST_DEVICES); > + } > + > + igt_describe(test_hpd_without_ddc_desc); > + igt_subtest("vga-hpd-without-ddc") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, > DRM_MODE_CONNECTOR_VGA); > + > + if (!hport) > + igt_skip("VGA connector not available\n"); > + > + test_hpd_without_ddc(&data, hport); > + } > + > + igt_describe(test_hotplug_for_each_pipe_desc); > + igt_subtest("vga-hpd-for-each-pipe") > + { > + struct chamelium_port *hport = > + get_port(data.ports, data.port_count, > DRM_MODE_CONNECTOR_VGA); > + > + if (!hport) > + igt_skip("VGA connector not available\n"); > + > + test_hotplug_for_each_pipe(&data, hport); > } > > igt_describe("Tests that operate on all connectors"); @@ -643,15 > +813,10 @@ igt_main > > igt_describe(test_suspend_resume_hpd_common_desc); > igt_subtest("common-hpd-after-hibernate") > - test_suspend_resume_hpd_common(&data, > - SUSPEND_STATE_DISK, > + test_suspend_resume_hpd_common(&data, > SUSPEND_STATE_DISK, > SUSPEND_TEST_DEVICES); > } > > - igt_describe(test_hotplug_for_each_pipe_desc); > - connector_subtest("vga-hpd-for-each-pipe", VGA) > - test_hotplug_for_each_pipe(&data, port); > - > igt_fixture { > igt_display_fini(&data.display); > drm_close_driver(data.drm_fd); > -- > 2.48.1 ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ Xe.CI.BAT: success for RFC: Fix chamelium port allocation during igt_fixture (rev2) 2025-12-05 7:46 [PATCH i-g-t 0/2] RFC: Fix chamelium port allocation during igt_fixture Moahmmed Bilal 2025-12-05 7:46 ` [PATCH i-g-t 1/2] RFC: chamelium/kms_chamelium_hpd: add helper function to select connector port Moahmmed Bilal 2025-12-05 7:46 ` [PATCH i-g-t 2/2] RFC: chamelium/kms_chamelium_hpd: use helper function for connector lookup in DP/HDMI/VGA tests Moahmmed Bilal @ 2025-12-05 22:54 ` Patchwork 2025-12-05 23:19 ` ✓ i915.CI.BAT: " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2025-12-05 22:54 UTC (permalink / raw) To: Moahmmed Bilal; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1853 bytes --] == Series Details == Series: RFC: Fix chamelium port allocation during igt_fixture (rev2) URL : https://patchwork.freedesktop.org/series/158533/ State : success == Summary == CI Bug Log - changes from XEIGT_8658_BAT -> XEIGTPW_14165_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (12 -> 12) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_14165_BAT that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@xe_waitfence@abstime: - bat-dg2-oem2: [TIMEOUT][1] ([Intel XE#6506]) -> [PASS][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/bat-dg2-oem2/igt@xe_waitfence@abstime.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/bat-dg2-oem2/igt@xe_waitfence@abstime.html * igt@xe_waitfence@engine: - bat-dg2-oem2: [FAIL][3] ([Intel XE#6519]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/bat-dg2-oem2/igt@xe_waitfence@engine.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/bat-dg2-oem2/igt@xe_waitfence@engine.html [Intel XE#6506]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6506 [Intel XE#6519]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6519 Build changes ------------- * IGT: IGT_8658 -> IGTPW_14165 IGTPW_14165: ea728fd779cd1fd9e578ebafc5364c4b1885bcfa @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8658: 5d645d459768a0e5c8e5e95b9fce16bb17319825 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-4203-db6505187efb9c255df1dd6e78c00d95fadfef79: db6505187efb9c255df1dd6e78c00d95fadfef79 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/index.html [-- Attachment #2: Type: text/html, Size: 2449 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ i915.CI.BAT: success for RFC: Fix chamelium port allocation during igt_fixture (rev2) 2025-12-05 7:46 [PATCH i-g-t 0/2] RFC: Fix chamelium port allocation during igt_fixture Moahmmed Bilal ` (2 preceding siblings ...) 2025-12-05 22:54 ` ✓ Xe.CI.BAT: success for RFC: Fix chamelium port allocation during igt_fixture (rev2) Patchwork @ 2025-12-05 23:19 ` Patchwork 2025-12-06 9:30 ` ✗ Xe.CI.Full: failure " Patchwork 2025-12-07 3:34 ` ✗ i915.CI.Full: " Patchwork 5 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2025-12-05 23:19 UTC (permalink / raw) To: Moahmmed Bilal; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3521 bytes --] == Series Details == Series: RFC: Fix chamelium port allocation during igt_fixture (rev2) URL : https://patchwork.freedesktop.org/series/158533/ State : success == Summary == CI Bug Log - changes from IGT_8658 -> IGTPW_14165 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/index.html Participating hosts (45 -> 43) ------------------------------ Missing (2): fi-snb-2520m bat-adls-6 Known issues ------------ Here are the changes found in IGTPW_14165 that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@i915_selftest@live: - bat-jsl-1: [DMESG-FAIL][1] ([i915#15281]) -> [PASS][2] +1 other test pass [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/bat-jsl-1/igt@i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/bat-jsl-1/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-dg2-11: [DMESG-FAIL][3] ([i915#12061]) -> [PASS][4] +1 other test pass [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/bat-dg2-11/igt@i915_selftest@live@workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/bat-dg2-11/igt@i915_selftest@live@workarounds.html - bat-mtlp-9: [DMESG-FAIL][5] ([i915#12061]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/bat-mtlp-9/igt@i915_selftest@live@workarounds.html - bat-arls-6: [DMESG-FAIL][7] ([i915#12061]) -> [PASS][8] +1 other test pass [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/bat-arls-6/igt@i915_selftest@live@workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/bat-arls-6/igt@i915_selftest@live@workarounds.html #### Warnings #### * igt@i915_selftest@live: - bat-atsm-1: [DMESG-FAIL][9] ([i915#12061] / [i915#14204]) -> [DMESG-FAIL][10] ([i915#12061] / [i915#13929]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/bat-atsm-1/igt@i915_selftest@live.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/bat-atsm-1/igt@i915_selftest@live.html * igt@i915_selftest@live@mman: - bat-atsm-1: [DMESG-FAIL][11] ([i915#14204]) -> [DMESG-FAIL][12] ([i915#13929]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/bat-atsm-1/igt@i915_selftest@live@mman.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/bat-atsm-1/igt@i915_selftest@live@mman.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#13929]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13929 [i915#14204]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14204 [i915#15281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15281 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8658 -> IGTPW_14165 CI-20190529: 20190529 CI_DRM_17642: db6505187efb9c255df1dd6e78c00d95fadfef79 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14165: ea728fd779cd1fd9e578ebafc5364c4b1885bcfa @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8658: 5d645d459768a0e5c8e5e95b9fce16bb17319825 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/index.html [-- Attachment #2: Type: text/html, Size: 4660 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ Xe.CI.Full: failure for RFC: Fix chamelium port allocation during igt_fixture (rev2) 2025-12-05 7:46 [PATCH i-g-t 0/2] RFC: Fix chamelium port allocation during igt_fixture Moahmmed Bilal ` (3 preceding siblings ...) 2025-12-05 23:19 ` ✓ i915.CI.BAT: " Patchwork @ 2025-12-06 9:30 ` Patchwork 2025-12-07 3:34 ` ✗ i915.CI.Full: " Patchwork 5 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2025-12-06 9:30 UTC (permalink / raw) To: Moahmmed Bilal; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 49051 bytes --] == Series Details == Series: RFC: Fix chamelium port allocation during igt_fixture (rev2) URL : https://patchwork.freedesktop.org/series/158533/ State : failure == Summary == CI Bug Log - changes from XEIGT_8658_FULL -> XEIGTPW_14165_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_14165_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_14165_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. Participating hosts (4 -> 3) ------------------------------ Missing (1): shard-adlp Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_14165_FULL: ### IGT changes ### #### Possible regressions #### * igt@kms_content_protection@lic-type-0@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][1] +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-6/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html Known issues ------------ Here are the changes found in XEIGTPW_14165_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_async_flips@async-flip-suspend-resume@pipe-d-hdmi-a-6: - shard-dg2-set2: [PASS][2] -> [INCOMPLETE][3] ([Intel XE#4912]) +1 other test incomplete [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-dg2-432/igt@kms_async_flips@async-flip-suspend-resume@pipe-d-hdmi-a-6.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-dg2-432/igt@kms_async_flips@async-flip-suspend-resume@pipe-d-hdmi-a-6.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#2327]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-2/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][5] ([Intel XE#1124]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-dg2-463/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#1124]) +8 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#610]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-4/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-bmg: [PASS][8] -> [SKIP][9] ([Intel XE#367]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2314] / [Intel XE#2894]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-8/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html * igt@kms_bw@linear-tiling-1-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#367]) +2 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-8/igt@kms_bw@linear-tiling-1-displays-3840x2160p.html - shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#367]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-dg2-464/igt@kms_bw@linear-tiling-1-displays-3840x2160p.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2887]) +11 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-4/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2652] / [Intel XE#787]) +17 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-8/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#787]) +13 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-dg2-433/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#455] / [Intel XE#787]) +3 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-dg2-433/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#3432]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html * igt@kms_chamelium_color@ctm-0-75: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#306]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-dg2-432/igt@kms_chamelium_color@ctm-0-75.html - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2325]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-8/igt@kms_chamelium_color@ctm-0-75.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2252]) +10 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-6/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate: - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#373]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate.html * igt@kms_chamelium_hpd@vga-hpd: - shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#373]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-lnl-4/igt@kms_chamelium_hpd@vga-hpd.html * igt@kms_colorop@plane-xr24-xr24-ctm_3x4_bt709_dec: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#6704]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-lnl-3/igt@kms_colorop@plane-xr24-xr24-ctm_3x4_bt709_dec.html * igt@kms_colorop@plane-xr30-xr30-bt2020_inv_oetf: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#6704]) +8 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-6/igt@kms_colorop@plane-xr30-xr30-bt2020_inv_oetf.html - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#6704]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-dg2-436/igt@kms_colorop@plane-xr30-xr30-bt2020_inv_oetf.html * igt@kms_content_protection@dp-mst-type-1: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2390]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-6/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_cursor_crc@cursor-offscreen-256x85: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#1424]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-lnl-4/igt@kms_cursor_crc@cursor-offscreen-256x85.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2320]) +2 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-8/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2286]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#1340]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-bmg: [PASS][31] -> [FAIL][32] ([Intel XE#4367]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-2/igt@kms_dp_linktrain_fallback@dp-fallback.html [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#4331]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-4/igt@kms_dp_linktrain_fallback@dsc-fallback.html - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#4331]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-dg2-464/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_dsc@dsc-with-formats: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#455]) +3 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-dg2-435/igt@kms_dsc@dsc-with-formats.html * igt@kms_fb_coherency@memset-crc: - shard-bmg: NOTRUN -> [CRASH][36] ([Intel XE#6706]) +1 other test crash [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-8/igt@kms_fb_coherency@memset-crc.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#4422]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-2/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html * igt@kms_fbcon_fbt@fbc: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#4156]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-5/igt@kms_fbcon_fbt@fbc.html * igt@kms_feature_discovery@display-4x: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#1138]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-8/igt@kms_feature_discovery@display-4x.html * igt@kms_flip@flip-vs-suspend@d-dp2: - shard-bmg: [PASS][40] -> [INCOMPLETE][41] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-3/igt@kms_flip@flip-vs-suspend@d-dp2.html [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-3/igt@kms_flip@flip-vs-suspend@d-dp2.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2293] / [Intel XE#2380]) +7 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2293]) +7 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2311]) +30 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@drrs-slowdraw: - shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#651]) +3 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-slowdraw.html * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#4141]) +16 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-pgflip-blt: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#651]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#653]) +10 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2313]) +33 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#656]) +3 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-lnl-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt.html * igt@kms_hdr@brightness-with-hdr: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#3544]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3: - shard-bmg: NOTRUN -> [ABORT][52] ([Intel XE#6740]) +1 other test abort [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-1/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3.html * igt@kms_panel_fitting@legacy: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2486]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-8/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#5624]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-6/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html - shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#5624]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-dg2-463/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#5825]) +4 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-5/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2938]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-5/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade-with-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#870]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-dg2-433/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_backlight@fade-with-suspend: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#870]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-8/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2391]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-6/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [PASS][61] -> [FAIL][62] ([Intel XE#718]) +1 other test fail [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-lnl-3/igt@kms_pm_dc@dc5-dpms.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-lnl-3/igt@kms_pm_dc@dc5-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2392]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-4/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_dc@deep-pkgc: - shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#908]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-dg2-435/igt@kms_pm_dc@deep-pkgc.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#1439] / [Intel XE#836]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-3/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf: - shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#1406] / [Intel XE#1489]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#1406] / [Intel XE#4608]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#1406] / [Intel XE#1489]) +10 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-3/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr@fbc-psr2-sprite-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-dg2-432/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +14 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-1/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2330]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html - shard-dg2-set2: NOTRUN -> [SKIP][73] ([Intel XE#1127]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-dg2-434/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#3414]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-dg2-463/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_scaling_modes@scaling-mode-full: - shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#2413]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-2/igt@kms_scaling_modes@scaling-mode-full.html * igt@kms_setmode@basic@pipe-a-hdmi-a-6: - shard-dg2-set2: [PASS][76] -> [FAIL][77] ([Intel XE#6361]) +1 other test fail [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-dg2-464/igt@kms_setmode@basic@pipe-a-hdmi-a-6.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-dg2-434/igt@kms_setmode@basic@pipe-a-hdmi-a-6.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-lnl: [PASS][78] -> [FAIL][79] ([Intel XE#6361]) +2 other tests fail [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-lnl-2/igt@kms_setmode@basic@pipe-b-edp-1.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-lnl-8/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@kms_sharpness_filter@filter-modifiers: - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#6503]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-3/igt@kms_sharpness_filter@filter-modifiers.html * igt@kms_vrr@flip-basic: - shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#1499]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-2/igt@kms_vrr@flip-basic.html * igt@xe_compute@ccs-mode-basic: - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#6599]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-4/igt@xe_compute@ccs-mode-basic.html * igt@xe_compute_preempt@compute-preempt-many-vram-evict: - shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#6360]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-dg2-463/igt@xe_compute_preempt@compute-preempt-many-vram-evict.html * igt@xe_configfs@survivability-mode: - shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#6010]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-dg2-436/igt@xe_configfs@survivability-mode.html - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#6010]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-lnl-3/igt@xe_configfs@survivability-mode.html * igt@xe_copy_basic@mem-page-copy-1: - shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#5300]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-dg2-436/igt@xe_copy_basic@mem-page-copy-1.html * igt@xe_eudebug@attach-debug-metadata: - shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#4837]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-lnl-5/igt@xe_eudebug@attach-debug-metadata.html * igt@xe_eudebug@discovery-race-vmbind: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#4837]) +9 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-1/igt@xe_eudebug@discovery-race-vmbind.html * igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-vram: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#4837] / [Intel XE#6665]) +3 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-5/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-vram.html - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#4837] / [Intel XE#6665]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-dg2-436/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-vram.html - shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#4837] / [Intel XE#6665]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-lnl-3/igt@xe_eudebug_online@writes-caching-vram-bb-sram-target-vram.html * igt@xe_eudebug_sriov@deny-eudebug: - shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#5793]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-8/igt@xe_eudebug_sriov@deny-eudebug.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr: - shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2322]) +11 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html * igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#288]) +4 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-dg2-464/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-prefetch.html * igt@xe_exec_sip_eudebug@breakpoint-writesip: - shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#4837]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-dg2-434/igt@xe_exec_sip_eudebug@breakpoint-writesip.html * igt@xe_exec_system_allocator@many-64k-mmap-free-huge-nomemset: - shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#5007]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-8/igt@xe_exec_system_allocator@many-64k-mmap-free-huge-nomemset.html * igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset: - shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#4943]) +25 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-8/igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset.html * igt@xe_exec_system_allocator@threads-many-execqueues-malloc-fork-read-after: - shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#4915]) +62 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-dg2-464/igt@xe_exec_system_allocator@threads-many-execqueues-malloc-fork-read-after.html * igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add: - shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#6281]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-3/igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add.html * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv: - shard-dg2-set2: NOTRUN -> [ABORT][100] ([Intel XE#5466]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-dg2-436/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#2229]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-dg2-435/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html * igt@xe_module_load@load: - shard-bmg: ([PASS][102], [PASS][103], [PASS][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123], [PASS][124], [PASS][125], [PASS][126]) -> ([PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143], [PASS][144], [SKIP][145], [PASS][146], [PASS][147], [PASS][148], [PASS][149], [PASS][150], [PASS][151]) ([Intel XE#2457]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-1/igt@xe_module_load@load.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-3/igt@xe_module_load@load.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-4/igt@xe_module_load@load.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-4/igt@xe_module_load@load.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-5/igt@xe_module_load@load.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-5/igt@xe_module_load@load.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-5/igt@xe_module_load@load.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-3/igt@xe_module_load@load.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-5/igt@xe_module_load@load.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-4/igt@xe_module_load@load.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-2/igt@xe_module_load@load.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-5/igt@xe_module_load@load.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-2/igt@xe_module_load@load.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-2/igt@xe_module_load@load.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-3/igt@xe_module_load@load.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-2/igt@xe_module_load@load.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-4/igt@xe_module_load@load.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-1/igt@xe_module_load@load.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-8/igt@xe_module_load@load.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-8/igt@xe_module_load@load.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-1/igt@xe_module_load@load.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-1/igt@xe_module_load@load.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-6/igt@xe_module_load@load.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-6/igt@xe_module_load@load.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-8/igt@xe_module_load@load.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-1/igt@xe_module_load@load.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-8/igt@xe_module_load@load.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-3/igt@xe_module_load@load.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-8/igt@xe_module_load@load.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-8/igt@xe_module_load@load.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-8/igt@xe_module_load@load.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-8/igt@xe_module_load@load.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-2/igt@xe_module_load@load.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-5/igt@xe_module_load@load.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-6/igt@xe_module_load@load.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-1/igt@xe_module_load@load.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-1/igt@xe_module_load@load.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-4/igt@xe_module_load@load.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-4/igt@xe_module_load@load.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-6/igt@xe_module_load@load.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-6/igt@xe_module_load@load.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-4/igt@xe_module_load@load.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-4/igt@xe_module_load@load.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-4/igt@xe_module_load@load.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-2/igt@xe_module_load@load.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-5/igt@xe_module_load@load.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-2/igt@xe_module_load@load.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-3/igt@xe_module_load@load.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-3/igt@xe_module_load@load.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-3/igt@xe_module_load@load.html * igt@xe_pm@d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#2284] / [Intel XE#366]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-dg2-433/igt@xe_pm@d3cold-basic-exec.html * igt@xe_pm@d3hot-i2c: - shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#5742]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-lnl-4/igt@xe_pm@d3hot-i2c.html * igt@xe_pm@s2idle-d3cold-basic-exec: - shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#2284]) +2 other tests skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-2/igt@xe_pm@s2idle-d3cold-basic-exec.html * igt@xe_pmu@engine-activity-accuracy-50: - shard-lnl: [PASS][155] -> [FAIL][156] ([Intel XE#6251]) +1 other test fail [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-lnl-8/igt@xe_pmu@engine-activity-accuracy-50.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-lnl-1/igt@xe_pmu@engine-activity-accuracy-50.html * igt@xe_pmu@gt-frequency: - shard-dg2-set2: [PASS][157] -> [FAIL][158] ([Intel XE#4819]) +1 other test fail [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-dg2-434/igt@xe_pmu@gt-frequency.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-dg2-435/igt@xe_pmu@gt-frequency.html * igt@xe_pxp@pxp-optout: - shard-dg2-set2: NOTRUN -> [SKIP][159] ([Intel XE#4733]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-dg2-463/igt@xe_pxp@pxp-optout.html * igt@xe_pxp@pxp-stale-bo-exec-post-suspend: - shard-bmg: NOTRUN -> [SKIP][160] ([Intel XE#4733]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-5/igt@xe_pxp@pxp-stale-bo-exec-post-suspend.html * igt@xe_query@multigpu-query-invalid-extension: - shard-bmg: NOTRUN -> [SKIP][161] ([Intel XE#944]) +2 other tests skip [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-3/igt@xe_query@multigpu-query-invalid-extension.html #### Possible fixes #### * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [INCOMPLETE][162] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168]) -> [PASS][163] [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4: - shard-dg2-set2: [INCOMPLETE][164] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#6168]) -> [PASS][165] [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [INCOMPLETE][166] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345]) -> [PASS][167] [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6: - shard-dg2-set2: [INCOMPLETE][168] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][169] [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-bmg: [FAIL][170] ([Intel XE#5299]) -> [PASS][171] [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_flip@flip-vs-expired-vblank@c-edp1: - shard-lnl: [FAIL][172] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][173] +3 other tests pass [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-bmg: [INCOMPLETE][174] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][175] +1 other test pass [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-3/igt@kms_flip@flip-vs-suspend-interruptible.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-1/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-a: - shard-bmg: [INCOMPLETE][176] ([Intel XE#5545]) -> [PASS][177] +1 other test pass [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-a.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-a.html * igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1: - shard-lnl: [FAIL][178] ([Intel XE#2142]) -> [PASS][179] +1 other test pass [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-lnl-1/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-lnl-8/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html * igt@testdisplay: - shard-bmg: [ABORT][180] ([Intel XE#6740]) -> [PASS][181] [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-5/igt@testdisplay.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-4/igt@testdisplay.html * igt@xe_exec_system_allocator@many-stride-malloc-prefetch: - shard-bmg: [WARN][182] ([Intel XE#5786]) -> [PASS][183] [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-8/igt@xe_exec_system_allocator@many-stride-malloc-prefetch.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-8/igt@xe_exec_system_allocator@many-stride-malloc-prefetch.html * igt@xe_pmu@engine-activity-accuracy-90: - shard-lnl: [FAIL][184] ([Intel XE#6251]) -> [PASS][185] +1 other test pass [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-lnl-2/igt@xe_pmu@engine-activity-accuracy-90.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-lnl-4/igt@xe_pmu@engine-activity-accuracy-90.html * igt@xe_sriov_flr@flr-vfs-parallel: - shard-bmg: [FAIL][186] ([Intel XE#6569]) -> [PASS][187] +1 other test pass [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-4/igt@xe_sriov_flr@flr-vfs-parallel.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-6/igt@xe_sriov_flr@flr-vfs-parallel.html #### Warnings #### * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move: - shard-bmg: [SKIP][188] ([Intel XE#2311]) -> [SKIP][189] ([Intel XE#2312]) [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [SKIP][190] ([Intel XE#362]) -> [FAIL][191] ([Intel XE#1729]) [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][192] ([Intel XE#2426]) -> [SKIP][193] ([Intel XE#2509]) [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8658/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391 [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156 [Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331 [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345 [Intel XE#4367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4367 [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#4819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4819 [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#4912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4912 [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915 [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943 [Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007 [Intel XE#5299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5299 [Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300 [Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466 [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545 [Intel XE#5624]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5624 [Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742 [Intel XE#5786]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5786 [Intel XE#5793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5793 [Intel XE#5825]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5825 [Intel XE#6010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6010 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#6168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6168 [Intel XE#6251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6251 [Intel XE#6281]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6281 [Intel XE#6360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6360 [Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569 [Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599 [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665 [Intel XE#6704]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6704 [Intel XE#6706]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6706 [Intel XE#6740]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6740 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_8658 -> IGTPW_14165 IGTPW_14165: ea728fd779cd1fd9e578ebafc5364c4b1885bcfa @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8658: 5d645d459768a0e5c8e5e95b9fce16bb17319825 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-4203-db6505187efb9c255df1dd6e78c00d95fadfef79: db6505187efb9c255df1dd6e78c00d95fadfef79 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14165/index.html [-- Attachment #2: Type: text/html, Size: 55807 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ i915.CI.Full: failure for RFC: Fix chamelium port allocation during igt_fixture (rev2) 2025-12-05 7:46 [PATCH i-g-t 0/2] RFC: Fix chamelium port allocation during igt_fixture Moahmmed Bilal ` (4 preceding siblings ...) 2025-12-06 9:30 ` ✗ Xe.CI.Full: failure " Patchwork @ 2025-12-07 3:34 ` Patchwork 5 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2025-12-07 3:34 UTC (permalink / raw) To: Moahmmed Bilal; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 156778 bytes --] == Series Details == Series: RFC: Fix chamelium port allocation during igt_fixture (rev2) URL : https://patchwork.freedesktop.org/series/158533/ State : failure == Summary == CI Bug Log - changes from IGT_8658_full -> IGTPW_14165_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_14165_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_14165_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_14165/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_14165_full: ### IGT changes ### #### Possible regressions #### * igt@gem_eio@in-flight-external: - shard-mtlp: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-mtlp-5/igt@gem_eio@in-flight-external.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-mtlp-8/igt@gem_eio@in-flight-external.html * igt@i915_pm_rpm@gem-execbuf-stress@lmem0: - shard-dg2: [PASS][3] -> [ABORT][4] +1 other test abort [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-6/igt@i915_pm_rpm@gem-execbuf-stress@lmem0.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-3/igt@i915_pm_rpm@gem-execbuf-stress@lmem0.html * igt@kms_properties@connector-properties-atomic: - shard-dg2: [PASS][5] -> [FAIL][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-5/igt@kms_properties@connector-properties-atomic.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-11/igt@kms_properties@connector-properties-atomic.html * igt@kms_properties@connector-properties-atomic@pipe-a-dp-3: - shard-dg2: NOTRUN -> [FAIL][7] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-11/igt@kms_properties@connector-properties-atomic@pipe-a-dp-3.html New tests --------- New tests have been introduced between IGT_8658_full and IGTPW_14165_full: ### New IGT tests (2) ### * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [2.07] s * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [2.06] s Known issues ------------ Here are the changes found in IGTPW_14165_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][8] ([i915#8411]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-3/igt@api_intel_bb@object-reloc-purge-cache.html - shard-dg1: NOTRUN -> [SKIP][9] ([i915#8411]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-14/igt@api_intel_bb@object-reloc-purge-cache.html * igt@device_reset@cold-reset-bound: - shard-tglu: NOTRUN -> [SKIP][10] ([i915#11078]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-6/igt@device_reset@cold-reset-bound.html * igt@gem_ccs@block-multicopy-inplace: - shard-tglu-1: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#9323]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-1/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][12] ([i915#3555] / [i915#9323]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-4/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@suspend-resume: - shard-dg2: [PASS][13] -> [INCOMPLETE][14] ([i915#13356]) +1 other test incomplete [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-7/igt@gem_ccs@suspend-resume.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-1/igt@gem_ccs@suspend-resume.html - shard-tglu: NOTRUN -> [SKIP][15] ([i915#9323]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-2/igt@gem_ccs@suspend-resume.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#7697]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-7/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-big: - shard-rkl: NOTRUN -> [SKIP][17] ([i915#14544] / [i915#6335]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#280]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-11/igt@gem_ctx_sseu@invalid-sseu.html - shard-rkl: NOTRUN -> [SKIP][19] ([i915#280]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-3/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@in-flight-suspend: - shard-dg1: [PASS][20] -> [DMESG-WARN][21] ([i915#4391] / [i915#4423]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg1-13/igt@gem_eio@in-flight-suspend.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-19/igt@gem_eio@in-flight-suspend.html - shard-glk: NOTRUN -> [INCOMPLETE][22] ([i915#13390]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-glk6/igt@gem_eio@in-flight-suspend.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#4771]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-5/igt@gem_exec_balancer@bonded-sync.html - shard-dg1: NOTRUN -> [SKIP][24] ([i915#4771]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-15/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@noheartbeat: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#8555]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-7/igt@gem_exec_balancer@noheartbeat.html * igt@gem_exec_balancer@parallel-contexts: - shard-tglu-1: NOTRUN -> [SKIP][26] ([i915#4525]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-1/igt@gem_exec_balancer@parallel-contexts.html * igt@gem_exec_balancer@parallel-keep-submit-fence: - shard-rkl: NOTRUN -> [SKIP][27] ([i915#4525]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-7/igt@gem_exec_balancer@parallel-keep-submit-fence.html * igt@gem_exec_balancer@parallel-out-fence: - shard-tglu: NOTRUN -> [SKIP][28] ([i915#4525]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-6/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_exec_capture@capture-invisible@lmem0: - shard-dg1: NOTRUN -> [SKIP][29] ([i915#6334]) +2 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-15/igt@gem_exec_capture@capture-invisible@lmem0.html * igt@gem_exec_flush@basic-wb-prw-default: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#3539] / [i915#4852]) +2 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-4/igt@gem_exec_flush@basic-wb-prw-default.html - shard-dg1: NOTRUN -> [SKIP][31] ([i915#3539] / [i915#4852]) +2 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-16/igt@gem_exec_flush@basic-wb-prw-default.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#3281]) +13 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-8/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-gtt: - shard-mtlp: NOTRUN -> [SKIP][33] ([i915#3281]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-mtlp-8/igt@gem_exec_reloc@basic-gtt.html * igt@gem_exec_reloc@basic-gtt-cpu: - shard-rkl: NOTRUN -> [SKIP][34] ([i915#3281]) +3 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-3/igt@gem_exec_reloc@basic-gtt-cpu.html * igt@gem_exec_reloc@basic-gtt-read: - shard-rkl: NOTRUN -> [SKIP][35] ([i915#14544] / [i915#3281]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-read.html * igt@gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][36] ([i915#3281]) +13 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-12/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html * igt@gem_exec_schedule@preempt-queue: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#4812]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-16/igt@gem_exec_schedule@preempt-queue.html - shard-dg2: NOTRUN -> [SKIP][38] ([i915#4537] / [i915#4812]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-6/igt@gem_exec_schedule@preempt-queue.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#4860]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-11/igt@gem_fenced_exec_thrash@2-spare-fences.html - shard-dg1: NOTRUN -> [SKIP][40] ([i915#4860]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-18/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][41] ([i915#14544] / [i915#2190]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-tglu: NOTRUN -> [SKIP][42] ([i915#4613] / [i915#7582]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-3/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-glk: NOTRUN -> [SKIP][43] ([i915#4613]) +4 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-glk5/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4613]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-mtlp-4/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][45] ([i915#4613]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-3/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@random: - shard-tglu-1: NOTRUN -> [SKIP][46] ([i915#4613]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-1/igt@gem_lmem_swapping@random.html * igt@gem_lmem_swapping@verify-ccs: - shard-dg1: NOTRUN -> [SKIP][47] ([i915#12193]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-14/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_lmem_swapping@verify-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#4565]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-14/igt@gem_lmem_swapping@verify-ccs@lmem0.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-tglu: NOTRUN -> [SKIP][49] ([i915#4613]) +4 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-9/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_mmap_gtt@zero-extend: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#4077]) +4 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-4/igt@gem_mmap_gtt@zero-extend.html - shard-dg1: NOTRUN -> [SKIP][51] ([i915#4077]) +5 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-16/igt@gem_mmap_gtt@zero-extend.html - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4077]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-mtlp-4/igt@gem_mmap_gtt@zero-extend.html * igt@gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4083]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-6/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html - shard-dg1: NOTRUN -> [SKIP][54] ([i915#4083]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-18/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt@gem_pread@exhaustion: - shard-snb: NOTRUN -> [WARN][55] ([i915#2658]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-snb7/igt@gem_pread@exhaustion.html - shard-tglu: NOTRUN -> [WARN][56] ([i915#2658]) +1 other test warn [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-5/igt@gem_pread@exhaustion.html * igt@gem_pread@snoop: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#3282]) +4 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-17/igt@gem_pread@snoop.html * igt@gem_pxp@create-regular-context-1: - shard-mtlp: [PASS][58] -> [SKIP][59] ([i915#4270]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-mtlp-2/igt@gem_pxp@create-regular-context-1.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-mtlp-8/igt@gem_pxp@create-regular-context-1.html * igt@gem_pxp@create-regular-context-2: - shard-rkl: [PASS][60] -> [SKIP][61] ([i915#4270]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-8/igt@gem_pxp@create-regular-context-2.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-4/igt@gem_pxp@create-regular-context-2.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#4270]) +2 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-4/igt@gem_pxp@protected-raw-src-copy-not-readible.html - shard-dg1: NOTRUN -> [SKIP][63] ([i915#4270]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-19/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_readwrite@read-write: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#3282]) +3 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-6/igt@gem_readwrite@read-write.html * igt@gem_readwrite@write-bad-handle: - shard-rkl: NOTRUN -> [SKIP][65] ([i915#3282]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-4/igt@gem_readwrite@write-bad-handle.html - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#3282]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-mtlp-7/igt@gem_readwrite@write-bad-handle.html * igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#8428]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-mtlp-5/igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs.html * igt@gem_render_copy@y-tiled-to-vebox-linear: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#5190] / [i915#8428]) +3 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-3/igt@gem_render_copy@y-tiled-to-vebox-linear.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#4079]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-4/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html - shard-dg1: NOTRUN -> [SKIP][70] ([i915#4079]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-19/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_userptr_blits@coherency-sync: - shard-tglu: NOTRUN -> [SKIP][71] ([i915#3297]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-5/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-tglu: NOTRUN -> [SKIP][72] ([i915#3297] / [i915#3323]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-4/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-rkl: NOTRUN -> [SKIP][73] ([i915#3297]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-5/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gen9_exec_parse@allowed-all: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#2856]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-3/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@bb-chained: - shard-tglu: NOTRUN -> [SKIP][75] ([i915#2527] / [i915#2856]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-5/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@secure-batches: - shard-dg1: NOTRUN -> [SKIP][76] ([i915#2527]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-13/igt@gen9_exec_parse@secure-batches.html * igt@gen9_exec_parse@shadow-peek: - shard-tglu-1: NOTRUN -> [SKIP][77] ([i915#2527] / [i915#2856]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-1/igt@gen9_exec_parse@shadow-peek.html * igt@i915_drm_fdinfo@all-busy-check-all: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#14123]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-6/igt@i915_drm_fdinfo@all-busy-check-all.html - shard-dg1: NOTRUN -> [SKIP][79] ([i915#14123]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-12/igt@i915_drm_fdinfo@all-busy-check-all.html * igt@i915_drm_fdinfo@busy-idle-check-all@vcs0: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#11527]) +7 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-11/igt@i915_drm_fdinfo@busy-idle-check-all@vcs0.html * igt@i915_drm_fdinfo@busy-idle-check-all@vcs1: - shard-dg1: NOTRUN -> [SKIP][81] ([i915#11527]) +5 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-14/igt@i915_drm_fdinfo@busy-idle-check-all@vcs1.html * igt@i915_drm_fdinfo@virtual-busy-hang: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#14118]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-1/igt@i915_drm_fdinfo@virtual-busy-hang.html - shard-dg1: NOTRUN -> [SKIP][83] ([i915#14118]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-18/igt@i915_drm_fdinfo@virtual-busy-hang.html * igt@i915_module_load@load: - shard-snb: ([PASS][84], [PASS][85], [PASS][86], [PASS][87], [PASS][88], [PASS][89], [PASS][90], [PASS][91], [PASS][92], [PASS][93], [PASS][94], [PASS][95], [PASS][96], [PASS][97], [PASS][98], [PASS][99], [PASS][100], [PASS][101], [PASS][102], [PASS][103], [PASS][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108]) -> ([PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [SKIP][122], [PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-snb7/igt@i915_module_load@load.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-snb6/igt@i915_module_load@load.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-snb4/igt@i915_module_load@load.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-snb6/igt@i915_module_load@load.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-snb4/igt@i915_module_load@load.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-snb5/igt@i915_module_load@load.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-snb7/igt@i915_module_load@load.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-snb5/igt@i915_module_load@load.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-snb4/igt@i915_module_load@load.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-snb5/igt@i915_module_load@load.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-snb6/igt@i915_module_load@load.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-snb4/igt@i915_module_load@load.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-snb5/igt@i915_module_load@load.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-snb6/igt@i915_module_load@load.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-snb7/igt@i915_module_load@load.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-snb4/igt@i915_module_load@load.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-snb6/igt@i915_module_load@load.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-snb7/igt@i915_module_load@load.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-snb6/igt@i915_module_load@load.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-snb4/igt@i915_module_load@load.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-snb4/igt@i915_module_load@load.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-snb5/igt@i915_module_load@load.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-snb7/igt@i915_module_load@load.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-snb7/igt@i915_module_load@load.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-snb5/igt@i915_module_load@load.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-snb7/igt@i915_module_load@load.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-snb7/igt@i915_module_load@load.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-snb7/igt@i915_module_load@load.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-snb7/igt@i915_module_load@load.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-snb7/igt@i915_module_load@load.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-snb7/igt@i915_module_load@load.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-snb7/igt@i915_module_load@load.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-snb6/igt@i915_module_load@load.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-snb6/igt@i915_module_load@load.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-snb6/igt@i915_module_load@load.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-snb6/igt@i915_module_load@load.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-snb6/igt@i915_module_load@load.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-snb6/igt@i915_module_load@load.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-snb5/igt@i915_module_load@load.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-snb5/igt@i915_module_load@load.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-snb5/igt@i915_module_load@load.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-snb5/igt@i915_module_load@load.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-snb5/igt@i915_module_load@load.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-snb5/igt@i915_module_load@load.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-snb4/igt@i915_module_load@load.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-snb4/igt@i915_module_load@load.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-snb4/igt@i915_module_load@load.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-snb4/igt@i915_module_load@load.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-snb4/igt@i915_module_load@load.html - shard-tglu: ([PASS][133], [PASS][134], [PASS][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147], [PASS][148], [PASS][149], [PASS][150], [PASS][151], [PASS][152], [PASS][153], [PASS][154]) -> ([PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166], [SKIP][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176]) ([i915#14785]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-tglu-4/igt@i915_module_load@load.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-tglu-6/igt@i915_module_load@load.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-tglu-7/igt@i915_module_load@load.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-tglu-2/igt@i915_module_load@load.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-tglu-9/igt@i915_module_load@load.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-tglu-2/igt@i915_module_load@load.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-tglu-4/igt@i915_module_load@load.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-tglu-8/igt@i915_module_load@load.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-tglu-5/igt@i915_module_load@load.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-tglu-8/igt@i915_module_load@load.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-tglu-9/igt@i915_module_load@load.html [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-tglu-4/igt@i915_module_load@load.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-tglu-5/igt@i915_module_load@load.html [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-tglu-7/igt@i915_module_load@load.html [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-tglu-6/igt@i915_module_load@load.html [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-tglu-10/igt@i915_module_load@load.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-tglu-9/igt@i915_module_load@load.html [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-tglu-2/igt@i915_module_load@load.html [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-tglu-7/igt@i915_module_load@load.html [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-tglu-10/igt@i915_module_load@load.html [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-tglu-3/igt@i915_module_load@load.html [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-tglu-6/igt@i915_module_load@load.html [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-7/igt@i915_module_load@load.html [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-9/igt@i915_module_load@load.html [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-9/igt@i915_module_load@load.html [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-9/igt@i915_module_load@load.html [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-8/igt@i915_module_load@load.html [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-8/igt@i915_module_load@load.html [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-7/igt@i915_module_load@load.html [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-6/igt@i915_module_load@load.html [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-6/igt@i915_module_load@load.html [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-5/igt@i915_module_load@load.html [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-5/igt@i915_module_load@load.html [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-5/igt@i915_module_load@load.html [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-4/igt@i915_module_load@load.html [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-4/igt@i915_module_load@load.html [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-3/igt@i915_module_load@load.html [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-3/igt@i915_module_load@load.html [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-2/igt@i915_module_load@load.html [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-2/igt@i915_module_load@load.html [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-2/igt@i915_module_load@load.html [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-10/igt@i915_module_load@load.html [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-10/igt@i915_module_load@load.html [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-10/igt@i915_module_load@load.html - shard-dg2: ([PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185], [PASS][186], [PASS][187], [PASS][188], [PASS][189], [PASS][190], [PASS][191], [PASS][192], [PASS][193], [PASS][194], [PASS][195], [PASS][196], [PASS][197], [PASS][198], [PASS][199], [PASS][200], [PASS][201]) -> ([SKIP][202], [PASS][203], [PASS][204], [PASS][205], [PASS][206], [PASS][207], [PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214], [PASS][215], [PASS][216], [PASS][217], [PASS][218], [PASS][219], [PASS][220], [PASS][221], [PASS][222], [PASS][223], [PASS][224], [PASS][225]) ([i915#14785]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-7/igt@i915_module_load@load.html [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-7/igt@i915_module_load@load.html [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-8/igt@i915_module_load@load.html [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-11/igt@i915_module_load@load.html [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-6/igt@i915_module_load@load.html [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-3/igt@i915_module_load@load.html [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-1/igt@i915_module_load@load.html [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-5/igt@i915_module_load@load.html [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-11/igt@i915_module_load@load.html [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-6/igt@i915_module_load@load.html [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-11/igt@i915_module_load@load.html [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-4/igt@i915_module_load@load.html [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-5/igt@i915_module_load@load.html [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-8/igt@i915_module_load@load.html [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-7/igt@i915_module_load@load.html [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-5/igt@i915_module_load@load.html [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-11/igt@i915_module_load@load.html [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-3/igt@i915_module_load@load.html [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-6/igt@i915_module_load@load.html [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-1/igt@i915_module_load@load.html [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-1/igt@i915_module_load@load.html [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-8/igt@i915_module_load@load.html [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-3/igt@i915_module_load@load.html [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-5/igt@i915_module_load@load.html [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-4/igt@i915_module_load@load.html [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-11/igt@i915_module_load@load.html [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-11/igt@i915_module_load@load.html [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-11/igt@i915_module_load@load.html [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-1/igt@i915_module_load@load.html [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-1/igt@i915_module_load@load.html [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-3/igt@i915_module_load@load.html [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-3/igt@i915_module_load@load.html [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-3/igt@i915_module_load@load.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-4/igt@i915_module_load@load.html [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-4/igt@i915_module_load@load.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-4/igt@i915_module_load@load.html [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-5/igt@i915_module_load@load.html [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-5/igt@i915_module_load@load.html [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-5/igt@i915_module_load@load.html [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-5/igt@i915_module_load@load.html [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-6/igt@i915_module_load@load.html [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-6/igt@i915_module_load@load.html [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-6/igt@i915_module_load@load.html [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-7/igt@i915_module_load@load.html [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-7/igt@i915_module_load@load.html [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-7/igt@i915_module_load@load.html [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-8/igt@i915_module_load@load.html [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-8/igt@i915_module_load@load.html [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-8/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-mtlp: [PASS][226] -> [ABORT][227] ([i915#15342] / [i915#15386]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-reset: - shard-tglu-1: NOTRUN -> [SKIP][228] ([i915#8399]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-1/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-rkl: NOTRUN -> [SKIP][229] ([i915#14544] / [i915#8399]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_rpm@system-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][230] ([i915#13356]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-glk1/igt@i915_pm_rpm@system-suspend.html * igt@i915_power@sanity: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#7984]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-4/igt@i915_power@sanity.html * igt@i915_query@hwconfig_table: - shard-tglu-1: NOTRUN -> [SKIP][232] ([i915#6245]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-1/igt@i915_query@hwconfig_table.html * igt@i915_query@test-query-geometry-subslices: - shard-tglu: NOTRUN -> [SKIP][233] ([i915#5723]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-6/igt@i915_query@test-query-geometry-subslices.html * igt@i915_suspend@basic-s2idle-without-i915: - shard-rkl: NOTRUN -> [ABORT][234] ([i915#15131]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-1/igt@i915_suspend@basic-s2idle-without-i915.html * igt@i915_suspend@debugfs-reader: - shard-glk: NOTRUN -> [INCOMPLETE][235] ([i915#4817]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-glk5/igt@i915_suspend@debugfs-reader.html * igt@i915_suspend@fence-restore-untiled: - shard-glk10: NOTRUN -> [INCOMPLETE][236] ([i915#4817]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-glk10/igt@i915_suspend@fence-restore-untiled.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#4212]) +2 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-11/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][238] ([i915#4212]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-12/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: NOTRUN -> [SKIP][239] ([i915#12454] / [i915#12712]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-5/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html - shard-tglu: NOTRUN -> [SKIP][240] ([i915#12454] / [i915#12712]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-10/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html - shard-mtlp: NOTRUN -> [SKIP][241] ([i915#12454] / [i915#12712]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-mtlp-8/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-suspend-resume: - shard-glk10: NOTRUN -> [INCOMPLETE][242] ([i915#12761]) +1 other test incomplete [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-glk10/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-tglu: NOTRUN -> [SKIP][243] ([i915#9531]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-10/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#1769] / [i915#3555]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-dg1: NOTRUN -> [SKIP][245] ([i915#1769] / [i915#3555]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-19/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][246] ([i915#5956]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [SKIP][247] ([i915#5286]) +6 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/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-32bpp-rotate-0-hflip-async-flip: - shard-rkl: NOTRUN -> [SKIP][248] ([i915#5286]) +1 other test skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [PASS][249] -> [FAIL][250] ([i915#5138]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-tglu-1: NOTRUN -> [SKIP][251] ([i915#5286]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][252] ([i915#4538] / [i915#5286]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-14/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#3638]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-5/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][254] ([i915#3638]) +2 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-13/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][255] ([i915#4538] / [i915#5190]) +5 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-11/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html - shard-mtlp: NOTRUN -> [SKIP][256] +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-mtlp-8/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#5190]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-11/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][258] ([i915#4538]) +3 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-13/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt@kms_busy@extended-modeset-hang-newfb@pipe-d: - shard-dg2: [PASS][259] -> [DMESG-WARN][260] ([i915#13890]) +10 other tests dmesg-warn [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-5/igt@kms_busy@extended-modeset-hang-newfb@pipe-d.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-11/igt@kms_busy@extended-modeset-hang-newfb@pipe-d.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][261] ([i915#6095]) +110 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-16/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][262] ([i915#12313]) +3 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-10/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][263] ([i915#12313]) +1 other test skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-1/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html - shard-dg1: NOTRUN -> [SKIP][264] ([i915#12313]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-13/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][265] ([i915#14544] / [i915#6095]) +7 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][266] ([i915#6095]) +74 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-10/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][267] ([i915#6095]) +39 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-c-dp-3: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#10307] / [i915#6095]) +115 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-11/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-c-dp-3.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][269] ([i915#6095]) +65 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][270] ([i915#12796] / [i915#14694]) +1 other test incomplete [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-glk1/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-b-dp-3: - shard-dg2: NOTRUN -> [SKIP][271] ([i915#6095]) +26 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-11/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-b-dp-3.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][272] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][273] ([i915#14098] / [i915#6095]) +36 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][274] ([i915#12313]) +1 other test skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html - shard-rkl: NOTRUN -> [SKIP][275] ([i915#12313]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][276] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [SKIP][277] +373 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-glk6/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1.html * igt@kms_cdclk@plane-scaling: - shard-tglu-1: NOTRUN -> [SKIP][278] ([i915#3742]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-1/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_edid@vga-edid-read: - shard-tglu-1: NOTRUN -> [SKIP][279] ([i915#11151] / [i915#7828]) +2 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-1/igt@kms_chamelium_edid@vga-edid-read.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][280] ([i915#11151] / [i915#7828]) +4 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-11/igt@kms_chamelium_frames@dp-crc-fast.html - shard-dg1: NOTRUN -> [SKIP][281] ([i915#11151] / [i915#7828]) +1 other test skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-12/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_frames@hdmi-crc-multiple: - shard-rkl: NOTRUN -> [SKIP][282] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@kms_chamelium_frames@hdmi-crc-multiple.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: NOTRUN -> [SKIP][283] ([i915#11151] / [i915#7828]) +2 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-4/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@vga-hpd-without-ddc: - shard-tglu: NOTRUN -> [SKIP][284] ([i915#11151] / [i915#7828]) +8 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-3/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html * igt@kms_color@deep-color: - shard-tglu: NOTRUN -> [SKIP][285] ([i915#3555] / [i915#9979]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-8/igt@kms_color@deep-color.html * igt@kms_colorop@plane-xr24-xr24-bt2020_oetf: - shard-dg2: NOTRUN -> [SKIP][286] ([i915#15343]) +6 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-7/igt@kms_colorop@plane-xr24-xr24-bt2020_oetf.html * igt@kms_colorop@plane-xr24-xr24-pq_eotf-pq_inv_eotf: - shard-tglu-1: NOTRUN -> [SKIP][287] ([i915#15343]) +3 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-1/igt@kms_colorop@plane-xr24-xr24-pq_eotf-pq_inv_eotf.html * igt@kms_colorop@plane-xr24-xr24-srgb_eotf-srgb_inv_eotf-srgb_eotf: - shard-rkl: NOTRUN -> [SKIP][288] ([i915#15343]) +3 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-5/igt@kms_colorop@plane-xr24-xr24-srgb_eotf-srgb_inv_eotf-srgb_eotf.html * igt@kms_colorop@plane-xr30-xr30-bt2020_inv_oetf: - shard-snb: NOTRUN -> [SKIP][289] +94 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-snb4/igt@kms_colorop@plane-xr30-xr30-bt2020_inv_oetf.html - shard-dg1: NOTRUN -> [SKIP][290] ([i915#15343]) +6 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-17/igt@kms_colorop@plane-xr30-xr30-bt2020_inv_oetf.html * igt@kms_colorop@plane-xr30-xr30-pq_125_eotf: - shard-tglu: NOTRUN -> [SKIP][291] ([i915#15343]) +10 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-8/igt@kms_colorop@plane-xr30-xr30-pq_125_eotf.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-tglu: NOTRUN -> [SKIP][292] ([i915#3116] / [i915#3299]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-8/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@legacy@pipe-a-dp-3: - shard-dg2: NOTRUN -> [FAIL][293] ([i915#7173]) +1 other test fail [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-11/igt@kms_content_protection@legacy@pipe-a-dp-3.html * igt@kms_content_protection@lic-type-0: - shard-dg2: NOTRUN -> [SKIP][294] ([i915#6944] / [i915#9424]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-8/igt@kms_content_protection@lic-type-0.html - shard-rkl: NOTRUN -> [SKIP][295] ([i915#6944] / [i915#9424]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-2/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-1: - shard-tglu: NOTRUN -> [SKIP][296] ([i915#6944] / [i915#9424]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-10/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@mei-interface: - shard-tglu-1: NOTRUN -> [SKIP][297] ([i915#6944] / [i915#9424]) +1 other test skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-1/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][298] ([i915#6944] / [i915#7118]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-3/igt@kms_content_protection@srm.html - shard-dg1: NOTRUN -> [SKIP][299] ([i915#6944] / [i915#7116]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-14/igt@kms_content_protection@srm.html * igt@kms_content_protection@type1: - shard-tglu: NOTRUN -> [SKIP][300] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-7/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-rkl: NOTRUN -> [SKIP][301] ([i915#13049]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-3/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-tglu: NOTRUN -> [FAIL][302] ([i915#13566]) +1 other test fail [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1: - shard-rkl: [PASS][303] -> [FAIL][304] ([i915#13566]) +3 other tests fail [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-8/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-2/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html - shard-tglu-1: NOTRUN -> [FAIL][305] ([i915#13566]) +1 other test fail [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-1/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-dg1: NOTRUN -> [SKIP][306] ([i915#3555]) +3 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-17/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-tglu-1: NOTRUN -> [SKIP][307] ([i915#13049]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-tglu: NOTRUN -> [SKIP][308] ([i915#13049]) +1 other test skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-10/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-dg2: NOTRUN -> [SKIP][309] ([i915#3555]) +4 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-3/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-tglu: [PASS][310] -> [FAIL][311] ([i915#13566]) +1 other test fail [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-tglu-9/igt@kms_cursor_crc@cursor-sliding-256x85.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-tglu: NOTRUN -> [SKIP][312] ([i915#3555]) +3 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][313] ([i915#13566]) +2 other tests fail [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-2.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-rkl: NOTRUN -> [SKIP][314] ([i915#3555]) +2 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_cursor_crc@cursor-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][315] ([i915#12358] / [i915#14152] / [i915#7882]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-glk8/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][316] ([i915#12358] / [i915#14152]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-glk8/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][317] ([i915#13046] / [i915#5354]) +3 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-rkl: NOTRUN -> [SKIP][318] +11 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-5/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-legacy: - shard-dg1: NOTRUN -> [DMESG-WARN][319] ([i915#4423]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-13/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-tglu: NOTRUN -> [SKIP][320] ([i915#9067]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-3/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][321] ([i915#4103] / [i915#4213]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-tglu: NOTRUN -> [SKIP][322] ([i915#4103]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_cursor_legacy@torture-bo: - shard-dg1: [PASS][323] -> [DMESG-WARN][324] ([i915#4423]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg1-18/igt@kms_cursor_legacy@torture-bo.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-13/igt@kms_cursor_legacy@torture-bo.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-tglu: NOTRUN -> [SKIP][325] ([i915#9723]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-10/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-tglu: NOTRUN -> [SKIP][326] ([i915#1769] / [i915#3555] / [i915#3804]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][327] ([i915#3804]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dp_aux_dev: - shard-dg2: NOTRUN -> [SKIP][328] ([i915#1257]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-4/igt@kms_dp_aux_dev.html - shard-dg1: NOTRUN -> [SKIP][329] ([i915#1257]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-19/igt@kms_dp_aux_dev.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-tglu: NOTRUN -> [SKIP][330] ([i915#13749]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-2/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dp_link_training@uhbr-sst: - shard-tglu-1: NOTRUN -> [SKIP][331] ([i915#13748]) +1 other test skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-1/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-rkl: NOTRUN -> [SKIP][332] ([i915#13707]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-5/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-rkl: NOTRUN -> [SKIP][333] ([i915#3555] / [i915#3840]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-8/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-tglu: NOTRUN -> [SKIP][334] ([i915#3555] / [i915#3840]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-8/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fb_coherency@memset-crc: - shard-glk: NOTRUN -> [CRASH][335] ([i915#15351]) +1 other test crash [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-glk8/igt@kms_fb_coherency@memset-crc.html * igt@kms_feature_discovery@display-2x: - shard-dg1: NOTRUN -> [SKIP][336] ([i915#1839]) +2 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-13/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@display-4x: - shard-dg2: NOTRUN -> [SKIP][337] ([i915#1839]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-1/igt@kms_feature_discovery@display-4x.html - shard-tglu-1: NOTRUN -> [SKIP][338] ([i915#1839]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-1/igt@kms_feature_discovery@display-4x.html * igt@kms_flip@2x-flip-vs-dpms: - shard-tglu-1: NOTRUN -> [SKIP][339] ([i915#3637] / [i915#9934]) +2 other tests skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms.html - shard-dg1: NOTRUN -> [SKIP][340] ([i915#9934]) +3 other tests skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-18/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-dpms-on-nop: - shard-dg2: NOTRUN -> [SKIP][341] ([i915#9934]) +3 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-7/igt@kms_flip@2x-flip-vs-dpms-on-nop.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-tglu: NOTRUN -> [SKIP][342] ([i915#3637] / [i915#9934]) +5 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-8/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-rkl: NOTRUN -> [SKIP][343] ([i915#9934]) +4 other tests skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-2/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][344] ([i915#8381]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-11/igt@kms_flip@flip-vs-fences-interruptible.html - shard-dg1: NOTRUN -> [SKIP][345] ([i915#8381]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-18/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip@nonexisting-fb@c-dp3: - shard-dg2: NOTRUN -> [DMESG-WARN][346] ([i915#13890]) +8 other tests dmesg-warn [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-11/igt@kms_flip@nonexisting-fb@c-dp3.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-dg1: NOTRUN -> [SKIP][347] ([i915#2672] / [i915#3555]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][348] ([i915#2587] / [i915#2672]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-rkl: NOTRUN -> [SKIP][349] ([i915#2672] / [i915#3555]) +1 other test skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][350] ([i915#2672]) +1 other test skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling: - shard-dg2: [PASS][351] -> [DMESG-FAIL][352] ([i915#13890]) +1 other test dmesg-fail [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][353] ([i915#2587] / [i915#2672]) +3 other tests skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-dg2: NOTRUN -> [SKIP][354] ([i915#2672] / [i915#3555]) +2 other tests skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][355] ([i915#2672] / [i915#3555]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][356] ([i915#2587] / [i915#2672]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2: NOTRUN -> [SKIP][357] ([i915#2672] / [i915#3555] / [i915#5190]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][358] ([i915#2672]) +2 other tests skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling: - shard-tglu: NOTRUN -> [SKIP][359] ([i915#2672] / [i915#3555]) +3 other tests skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-9/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-mtlp: NOTRUN -> [SKIP][360] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff: - shard-dg2: NOTRUN -> [SKIP][361] ([i915#5354]) +14 other tests skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move: - shard-mtlp: NOTRUN -> [SKIP][362] ([i915#1825]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2: NOTRUN -> [SKIP][363] ([i915#10055]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][364] ([i915#15102]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][365] ([i915#15102]) +1 other test skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render: - shard-glk10: NOTRUN -> [SKIP][366] +219 other tests skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-glk10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw: - shard-tglu-1: NOTRUN -> [SKIP][367] +28 other tests skip [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt: - shard-dg1: NOTRUN -> [SKIP][368] +26 other tests skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][369] ([i915#8708]) +12 other tests skip [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html - shard-rkl: NOTRUN -> [SKIP][370] ([i915#14544] / [i915#1825]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][371] ([i915#1825]) +12 other tests skip [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][372] ([i915#15102]) +24 other tests skip [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-tglu: NOTRUN -> [SKIP][373] ([i915#5439]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-dg1: NOTRUN -> [SKIP][374] ([i915#9766]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-19/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-tglu: NOTRUN -> [SKIP][375] ([i915#9766]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-9/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-dg2: NOTRUN -> [SKIP][376] ([i915#9766]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-4/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][377] ([i915#15102]) +2 other tests skip [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html - shard-dg1: NOTRUN -> [SKIP][378] ([i915#15104]) +1 other test skip [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][379] ([i915#15104]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html - shard-dg2: NOTRUN -> [SKIP][380] ([i915#15104]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][381] ([i915#15102]) +6 other tests skip [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][382] ([i915#14544] / [i915#15102] / [i915#3023]) +1 other test skip [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][383] ([i915#15102] / [i915#3458]) +11 other tests skip [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][384] +74 other tests skip [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][385] ([i915#8708]) +12 other tests skip [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][386] ([i915#15102] / [i915#3023]) +7 other tests skip [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-suspend.html - shard-dg1: NOTRUN -> [SKIP][387] ([i915#15102] / [i915#3458]) +10 other tests skip [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu: NOTRUN -> [SKIP][388] ([i915#3555] / [i915#8228]) +1 other test skip [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-5/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@static-toggle-dpms: - shard-dg2: [PASS][389] -> [SKIP][390] ([i915#3555] / [i915#8228]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-11/igt@kms_hdr@static-toggle-dpms.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-3/igt@kms_hdr@static-toggle-dpms.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][391] ([i915#3555] / [i915#8228]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-5/igt@kms_hdr@static-toggle-suspend.html - shard-dg1: NOTRUN -> [SKIP][392] ([i915#3555] / [i915#8228]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-15/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-force-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][393] ([i915#12388]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-1/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-dg1: NOTRUN -> [SKIP][394] ([i915#12394]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-16/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@basic-max-non-joiner: - shard-tglu: NOTRUN -> [SKIP][395] ([i915#15283]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-8/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-dg2: NOTRUN -> [SKIP][396] ([i915#10656] / [i915#12388]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-4/igt@kms_joiner@invalid-modeset-force-big-joiner.html - shard-rkl: NOTRUN -> [SKIP][397] ([i915#10656] / [i915#12388]) [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][398] ([i915#12339]) [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-tglu: NOTRUN -> [SKIP][399] ([i915#13522]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-3/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-mtlp: NOTRUN -> [SKIP][400] ([i915#4816]) [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-mtlp-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-dg2: NOTRUN -> [SKIP][401] ([i915#4816]) [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-rkl: NOTRUN -> [SKIP][402] ([i915#14544] / [i915#1839] / [i915#4816]) [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-tglu: NOTRUN -> [SKIP][403] ([i915#1839]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-9/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@atomic-fastset: - shard-tglu-1: NOTRUN -> [SKIP][404] ([i915#6301]) [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-1/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-tglu: NOTRUN -> [SKIP][405] ([i915#14712]) [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-3/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html - shard-dg2: NOTRUN -> [SKIP][406] ([i915#14712]) [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-3/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html - shard-dg1: NOTRUN -> [SKIP][407] ([i915#14712]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-14/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_plane_multiple@2x-tiling-x: - shard-rkl: NOTRUN -> [SKIP][408] ([i915#13958]) [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-5/igt@kms_plane_multiple@2x-tiling-x.html * igt@kms_plane_multiple@2x-tiling-y: - shard-dg2: NOTRUN -> [SKIP][409] ([i915#13958]) +1 other test skip [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-5/igt@kms_plane_multiple@2x-tiling-y.html - shard-dg1: NOTRUN -> [SKIP][410] ([i915#13958]) [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-15/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_multiple@tiling-4: - shard-rkl: NOTRUN -> [SKIP][411] ([i915#14259]) [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-4/igt@kms_plane_multiple@tiling-4.html - shard-dg1: NOTRUN -> [SKIP][412] ([i915#14259]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-13/igt@kms_plane_multiple@tiling-4.html - shard-tglu: NOTRUN -> [SKIP][413] ([i915#14259]) [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-4/igt@kms_plane_multiple@tiling-4.html * igt@kms_pm_backlight@bad-brightness: - shard-dg1: NOTRUN -> [SKIP][414] ([i915#5354]) [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-15/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-tglu-1: NOTRUN -> [SKIP][415] ([i915#12343]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-1/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade-with-dpms: - shard-tglu: NOTRUN -> [SKIP][416] ([i915#9812]) [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-6/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg2: NOTRUN -> [SKIP][417] ([i915#3828]) [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-11/igt@kms_pm_dc@dc5-retention-flops.html - shard-rkl: NOTRUN -> [SKIP][418] ([i915#3828]) [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-3/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: NOTRUN -> [FAIL][419] ([i915#9295]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-9/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu: NOTRUN -> [SKIP][420] ([i915#4281]) [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-7/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: [PASS][421] -> [SKIP][422] ([i915#9340]) [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-8/igt@kms_pm_lpsp@kms-lpsp.html - shard-tglu-1: NOTRUN -> [SKIP][423] ([i915#3828]) [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-1/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [PASS][424] -> [SKIP][425] ([i915#15073]) [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: NOTRUN -> [SKIP][426] ([i915#15073]) [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-3/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html - shard-dg1: NOTRUN -> [SKIP][427] ([i915#15073]) [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-tglu: NOTRUN -> [SKIP][428] ([i915#15073]) [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@system-suspend-idle: - shard-rkl: [PASS][429] -> [ABORT][430] ([i915#15132]) [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-5/igt@kms_pm_rpm@system-suspend-idle.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-1/igt@kms_pm_rpm@system-suspend-idle.html * igt@kms_prime@basic-crc-hybrid: - shard-tglu: NOTRUN -> [SKIP][431] ([i915#6524]) [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-6/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg2: NOTRUN -> [SKIP][432] ([i915#6524] / [i915#6805]) [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-4/igt@kms_prime@basic-modeset-hybrid.html - shard-dg1: NOTRUN -> [SKIP][433] ([i915#6524]) [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-19/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][434] ([i915#11520]) +2 other tests skip [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][435] ([i915#11520]) +5 other tests skip [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][436] ([i915#9808]) [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-mtlp-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][437] ([i915#12316]) +1 other test skip [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-mtlp-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-b-edp-1.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-glk: NOTRUN -> [SKIP][438] ([i915#11520]) +10 other tests skip [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-glk8/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][439] ([i915#11520]) +6 other tests skip [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-3/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area: - shard-glk10: NOTRUN -> [SKIP][440] ([i915#11520]) +8 other tests skip [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-glk10/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-snb: NOTRUN -> [SKIP][441] ([i915#11520]) +3 other tests skip [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-snb7/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html - shard-dg1: NOTRUN -> [SKIP][442] ([i915#11520]) +7 other tests skip [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-16/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html - shard-tglu: NOTRUN -> [SKIP][443] ([i915#11520]) +8 other tests skip [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-4/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-tglu-1: NOTRUN -> [SKIP][444] ([i915#9683]) [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-tglu: NOTRUN -> [SKIP][445] ([i915#9683]) [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-3/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr-no-drrs: - shard-tglu: NOTRUN -> [SKIP][446] ([i915#9732]) +23 other tests skip [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-6/igt@kms_psr@fbc-psr-no-drrs.html * igt@kms_psr@fbc-psr-sprite-plane-onoff: - shard-rkl: NOTRUN -> [SKIP][447] ([i915#1072] / [i915#14544] / [i915#9732]) [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@kms_psr@fbc-psr-sprite-plane-onoff.html * igt@kms_psr@pr-cursor-render: - shard-mtlp: NOTRUN -> [SKIP][448] ([i915#9688]) [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-mtlp-6/igt@kms_psr@pr-cursor-render.html * igt@kms_psr@psr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][449] ([i915#1072] / [i915#9732]) +14 other tests skip [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-5/igt@kms_psr@psr-cursor-render.html * igt@kms_psr@psr2-cursor-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][450] ([i915#1072] / [i915#9732]) +7 other tests skip [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-7/igt@kms_psr@psr2-cursor-mmap-gtt.html * igt@kms_psr@psr2-sprite-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][451] ([i915#9732]) +10 other tests skip [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-gtt.html - shard-dg1: NOTRUN -> [SKIP][452] ([i915#1072] / [i915#9732]) +11 other tests skip [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-18/igt@kms_psr@psr2-sprite-mmap-gtt.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglu: NOTRUN -> [SKIP][453] ([i915#9685]) +1 other test skip [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-10/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-tglu: NOTRUN -> [SKIP][454] ([i915#5289]) [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-9/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-dg2: NOTRUN -> [SKIP][455] ([i915#12755]) [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-1/igt@kms_rotation_crc@sprite-rotation-270.html - shard-mtlp: NOTRUN -> [SKIP][456] ([i915#12755]) [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-mtlp-7/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_scaling_modes@scaling-mode-center: - shard-tglu-1: NOTRUN -> [SKIP][457] ([i915#3555]) +1 other test skip [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-1/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_selftest@drm_framebuffer: - shard-tglu: NOTRUN -> [ABORT][458] ([i915#13179]) +1 other test abort [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-5/igt@kms_selftest@drm_framebuffer.html * igt@kms_setmode@clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][459] ([i915#3555] / [i915#8809]) [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-mtlp-6/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-tglu: NOTRUN -> [SKIP][460] ([i915#8623]) [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-10/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][461] ([i915#12276]) +1 other test incomplete [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-glk5/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html * igt@kms_vrr@flip-basic-fastset: - shard-dg2: NOTRUN -> [SKIP][462] ([i915#9906]) +1 other test skip [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-7/igt@kms_vrr@flip-basic-fastset.html - shard-dg1: NOTRUN -> [SKIP][463] ([i915#9906]) [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-17/igt@kms_vrr@flip-basic-fastset.html - shard-tglu: NOTRUN -> [SKIP][464] ([i915#9906]) +1 other test skip [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-10/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@max-min: - shard-tglu-1: NOTRUN -> [SKIP][465] ([i915#9906]) [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-1/igt@kms_vrr@max-min.html * igt@kms_vrr@negative-basic: - shard-mtlp: [PASS][466] -> [FAIL][467] ([i915#10393]) +1 other test fail [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-mtlp-8/igt@kms_vrr@negative-basic.html [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-mtlp-3/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-rkl: NOTRUN -> [SKIP][468] ([i915#14544] / [i915#9906]) [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_writeback@writeback-check-output: - shard-tglu: NOTRUN -> [SKIP][469] ([i915#2437]) [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-4/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-glk: NOTRUN -> [SKIP][470] ([i915#2437]) +1 other test skip [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-glk1/igt@kms_writeback@writeback-check-output-xrgb2101010.html - shard-dg2: NOTRUN -> [SKIP][471] ([i915#2437] / [i915#9412]) [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-8/igt@kms_writeback@writeback-check-output-xrgb2101010.html - shard-dg1: NOTRUN -> [SKIP][472] ([i915#2437] / [i915#9412]) [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-12/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-invalid-parameters: - shard-dg1: NOTRUN -> [SKIP][473] ([i915#2437]) [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-12/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf_pmu@busy-double-start@rcs0: - shard-mtlp: [PASS][474] -> [FAIL][475] ([i915#4349]) [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-mtlp-5/igt@perf_pmu@busy-double-start@rcs0.html [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-mtlp-2/igt@perf_pmu@busy-double-start@rcs0.html * igt@perf_pmu@event-wait@rcs0: - shard-dg2: NOTRUN -> [SKIP][476] +11 other tests skip [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-3/igt@perf_pmu@event-wait@rcs0.html * igt@perf_pmu@module-unload: - shard-glk10: NOTRUN -> [FAIL][477] ([i915#14433]) [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-glk10/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-tglu: NOTRUN -> [SKIP][478] ([i915#8516]) [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-10/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_mmap@test_aperture_limit: - shard-dg2: NOTRUN -> [SKIP][479] ([i915#14121]) +1 other test skip [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-8/igt@prime_mmap@test_aperture_limit.html * igt@prime_vgem@fence-flip-hang: - shard-rkl: NOTRUN -> [SKIP][480] ([i915#3708]) [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-4/igt@prime_vgem@fence-flip-hang.html * igt@prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][481] ([i915#3708]) +1 other test skip [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-1/igt@prime_vgem@fence-read-hang.html - shard-dg1: NOTRUN -> [SKIP][482] ([i915#3708]) [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-18/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-rkl: NOTRUN -> [SKIP][483] ([i915#9917]) [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-2/igt@sriov_basic@enable-vfs-bind-unbind-each.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-tglu: NOTRUN -> [FAIL][484] ([i915#12910]) [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-8/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-2: - shard-tglu-1: NOTRUN -> [FAIL][485] ([i915#12910]) +8 other tests fail [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-1/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-2.html #### Possible fixes #### * igt@gem_eio@in-flight-suspend: - shard-rkl: [ABORT][486] ([i915#15131]) -> [PASS][487] +1 other test pass [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-1/igt@gem_eio@in-flight-suspend.html [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-7/igt@gem_eio@in-flight-suspend.html * igt@gem_exec_big@single: - shard-tglu: [ABORT][488] ([i915#11713]) -> [PASS][489] [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-tglu-7/igt@gem_exec_big@single.html [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-4/igt@gem_exec_big@single.html * igt@i915_module_load@reload-with-fault-injection: - shard-snb: [ABORT][490] ([i915#15342]) -> [PASS][491] [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html - shard-dg1: [ABORT][492] ([i915#15342]) -> [PASS][493] [492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg1-18/igt@i915_module_load@reload-with-fault-injection.html [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-16/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-rkl: [INCOMPLETE][494] ([i915#13356]) -> [PASS][495] [494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-3/igt@i915_pm_rpm@system-suspend-execbuf.html [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [FAIL][496] ([i915#5138]) -> [PASS][497] [496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_color@deep-color: - shard-rkl: [SKIP][498] ([i915#12655] / [i915#3555]) -> [PASS][499] [498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-2/igt@kms_color@deep-color.html [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@kms_color@deep-color.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-tglu: [FAIL][500] ([i915#13566]) -> [PASS][501] +3 other tests pass [500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-128x42.html [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-64x21: - shard-rkl: [FAIL][502] ([i915#13566]) -> [PASS][503] +1 other test pass [502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-64x21.html [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-64x21.html * igt@kms_feature_discovery@display-2x: - shard-snb: [SKIP][504] -> [PASS][505] [504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-snb7/igt@kms_feature_discovery@display-2x.html [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-snb5/igt@kms_feature_discovery@display-2x.html * igt@kms_flip@dpms-vs-vblank-race: - shard-mtlp: [FAIL][506] ([i915#10826]) -> [PASS][507] [506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-mtlp-6/igt@kms_flip@dpms-vs-vblank-race.html [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-mtlp-2/igt@kms_flip@dpms-vs-vblank-race.html * igt@kms_flip@dpms-vs-vblank-race@d-edp1: - shard-mtlp: [FAIL][508] -> [PASS][509] [508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-mtlp-6/igt@kms_flip@dpms-vs-vblank-race@d-edp1.html [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-mtlp-2/igt@kms_flip@dpms-vs-vblank-race@d-edp1.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite: - shard-dg2: [FAIL][510] ([i915#6880]) -> [PASS][511] [510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: [SKIP][512] ([i915#3555] / [i915#8228]) -> [PASS][513] +2 other tests pass [512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-7/igt@kms_hdr@invalid-metadata-sizes.html [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-11/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle-suspend: - shard-rkl: [SKIP][514] ([i915#3555] / [i915#8228]) -> [PASS][515] [514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-2/igt@kms_hdr@static-toggle-suspend.html [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@kms_hdr@static-toggle-suspend.html * igt@kms_plane_scaling@invalid-num-scalers@pipe-a-hdmi-a-4-invalid-num-scalers: - shard-dg1: [DMESG-WARN][516] ([i915#4423]) -> [PASS][517] +1 other test pass [516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg1-17/igt@kms_plane_scaling@invalid-num-scalers@pipe-a-hdmi-a-4-invalid-num-scalers.html [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-17/igt@kms_plane_scaling@invalid-num-scalers@pipe-a-hdmi-a-4-invalid-num-scalers.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: [SKIP][518] ([i915#15073]) -> [PASS][519] +1 other test pass [518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-3/igt@kms_pm_rpm@dpms-lpsp.html [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-5/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: [SKIP][520] ([i915#15073]) -> [PASS][521] [520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-5/igt@kms_pm_rpm@modeset-lpsp-stress.html [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_vrr@negative-basic: - shard-dg2: [SKIP][522] ([i915#3555] / [i915#9906]) -> [PASS][523] [522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-6/igt@kms_vrr@negative-basic.html [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-11/igt@kms_vrr@negative-basic.html * igt@perf@polling@0-rcs0: - shard-tglu: [FAIL][524] ([i915#10538]) -> [PASS][525] +1 other test pass [524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-tglu-3/igt@perf@polling@0-rcs0.html [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-tglu-2/igt@perf@polling@0-rcs0.html #### Warnings #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-rkl: [SKIP][526] ([i915#14544] / [i915#8411]) -> [SKIP][527] ([i915#8411]) [526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@api_intel_bb@blit-reloc-keep-cache.html [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-2/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@gem_basic@multigpu-create-close: - shard-rkl: [SKIP][528] ([i915#7697]) -> [SKIP][529] ([i915#14544] / [i915#7697]) [528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-5/igt@gem_basic@multigpu-create-close.html [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@block-copy-compressed: - shard-rkl: [SKIP][530] ([i915#14544] / [i915#3555] / [i915#9323]) -> [SKIP][531] ([i915#3555] / [i915#9323]) [530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@gem_ccs@block-copy-compressed.html [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-3/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: [SKIP][532] ([i915#14544] / [i915#9323]) -> [SKIP][533] ([i915#9323]) [532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy-new-ctx.html [533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-1/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@large-ctrl-surf-copy: - shard-rkl: [SKIP][534] ([i915#13008] / [i915#14544]) -> [SKIP][535] ([i915#13008]) [534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@gem_ccs@large-ctrl-surf-copy.html [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-3/igt@gem_ccs@large-ctrl-surf-copy.html * igt@gem_close_race@multigpu-basic-process: - shard-rkl: [SKIP][536] ([i915#14544] / [i915#7697]) -> [SKIP][537] ([i915#7697]) [536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@gem_close_race@multigpu-basic-process.html [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-3/igt@gem_close_race@multigpu-basic-process.html * igt@gem_exec_balancer@parallel-contexts: - shard-rkl: [SKIP][538] ([i915#14544] / [i915#4525]) -> [SKIP][539] ([i915#4525]) [538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@gem_exec_balancer@parallel-contexts.html [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-4/igt@gem_exec_balancer@parallel-contexts.html * igt@gem_exec_reloc@basic-gtt-cpu-active: - shard-rkl: [SKIP][540] ([i915#14544] / [i915#3281]) -> [SKIP][541] ([i915#3281]) +4 other tests skip [540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-cpu-active.html [541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-3/igt@gem_exec_reloc@basic-gtt-cpu-active.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: [SKIP][542] ([i915#3281]) -> [SKIP][543] ([i915#14544] / [i915#3281]) +4 other tests skip [542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-8/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html [543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_lmem_swapping@parallel-multi: - shard-rkl: [SKIP][544] ([i915#4613]) -> [SKIP][545] ([i915#14544] / [i915#4613]) +1 other test skip [544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-3/igt@gem_lmem_swapping@parallel-multi.html [545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-rkl: [SKIP][546] ([i915#14544] / [i915#3282]) -> [SKIP][547] ([i915#3282]) +4 other tests skip [546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-display.html [547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-8/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_partial_pwrite_pread@writes-after-reads-snoop: - shard-rkl: [SKIP][548] ([i915#3282]) -> [SKIP][549] ([i915#14544] / [i915#3282]) +1 other test skip [548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-4/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html [549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-rkl: [SKIP][550] ([i915#13717] / [i915#14544]) -> [SKIP][551] ([i915#13717]) [550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-context.html [551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-3/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-rkl: [SKIP][552] ([i915#8411]) -> [SKIP][553] ([i915#14544] / [i915#8411]) [552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-5/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html [553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-rkl: [SKIP][554] ([i915#14544] / [i915#3297]) -> [SKIP][555] ([i915#3297]) [554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@gem_userptr_blits@create-destroy-unsync.html [555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-8/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gen9_exec_parse@bb-oversize: - shard-rkl: [SKIP][556] ([i915#14544] / [i915#2527]) -> [SKIP][557] ([i915#2527]) +2 other tests skip [556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@gen9_exec_parse@bb-oversize.html [557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-3/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@unaligned-access: - shard-rkl: [SKIP][558] ([i915#2527]) -> [SKIP][559] ([i915#14544] / [i915#2527]) +1 other test skip [558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-5/igt@gen9_exec_parse@unaligned-access.html [559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@gen9_exec_parse@unaligned-access.html * igt@intel_hwmon@hwmon-read: - shard-rkl: [SKIP][560] ([i915#7707]) -> [SKIP][561] ([i915#14544] / [i915#7707]) [560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-2/igt@intel_hwmon@hwmon-read.html [561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@intel_hwmon@hwmon-read.html * igt@kms_big_fb@4-tiled-32bpp-rotate-0: - shard-rkl: [SKIP][562] ([i915#14544] / [i915#5286]) -> [SKIP][563] ([i915#5286]) +3 other tests skip [562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html [563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-7/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - shard-rkl: [SKIP][564] ([i915#5286]) -> [SKIP][565] ([i915#14544] / [i915#5286]) +2 other tests skip [564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-1/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html [565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_big_fb@y-tiled-64bpp-rotate-270: - shard-rkl: [SKIP][566] ([i915#14544] / [i915#3638]) -> [SKIP][567] ([i915#3638]) +1 other test skip [566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html [567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-4/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-rkl: [SKIP][568] ([i915#3638]) -> [SKIP][569] ([i915#14544] / [i915#3638]) [568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-7/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html [569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-rkl: [SKIP][570] ([i915#14544]) -> [SKIP][571] +15 other tests skip [570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html [571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-rkl: [SKIP][572] -> [SKIP][573] ([i915#14544]) +9 other tests skip [572]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-7/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html [573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-rkl: [SKIP][574] ([i915#12313]) -> [SKIP][575] ([i915#12313] / [i915#14544]) [574]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html [575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2: - shard-rkl: [SKIP][576] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][577] ([i915#14098] / [i915#6095]) +14 other tests skip [576]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html [577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-7/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][578] ([i915#6095]) -> [SKIP][579] ([i915#14544] / [i915#6095]) +6 other tests skip [578]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-3/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-b-hdmi-a-2.html [579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2: - shard-rkl: [SKIP][580] ([i915#14098] / [i915#6095]) -> [SKIP][581] ([i915#14098] / [i915#14544] / [i915#6095]) +11 other tests skip [580]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html [581]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-rkl: [SKIP][582] ([i915#12805] / [i915#14544]) -> [SKIP][583] ([i915#12805]) [582]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [583]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][584] ([i915#14544] / [i915#6095]) -> [SKIP][585] ([i915#6095]) +11 other tests skip [584]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html [585]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html * igt@kms_chamelium_hpd@dp-hpd-after-suspend: - shard-rkl: [SKIP][586] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][587] ([i915#11151] / [i915#7828]) +4 other tests skip [586]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html [587]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-3/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html * igt@kms_colorop@plane-xr24-xr24-pq_inv_eotf: - shard-rkl: [SKIP][588] ([i915#15343]) -> [SKIP][589] ([i915#14544] / [i915#15343]) +3 other tests skip [588]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-8/igt@kms_colorop@plane-xr24-xr24-pq_inv_eotf.html [589]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@kms_colorop@plane-xr24-xr24-pq_inv_eotf.html * igt@kms_colorop@plane-xr24-xr24-srgb_eotf: - shard-rkl: [SKIP][590] ([i915#14544] / [i915#15343]) -> [SKIP][591] ([i915#15343]) +6 other tests skip [590]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_colorop@plane-xr24-xr24-srgb_eotf.html [591]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-3/igt@kms_colorop@plane-xr24-xr24-srgb_eotf.html * igt@kms_content_protection@dp-mst-suspend-resume: - shard-rkl: [SKIP][592] ([i915#14544] / [i915#15330]) -> [SKIP][593] ([i915#15330]) [592]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_content_protection@dp-mst-suspend-resume.html [593]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-7/igt@kms_content_protection@dp-mst-suspend-resume.html * igt@kms_content_protection@dp-mst-type-1: - shard-rkl: [SKIP][594] ([i915#14544] / [i915#3116]) -> [SKIP][595] ([i915#3116]) [594]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1.html [595]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-3/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy: - shard-dg2: [SKIP][596] ([i915#6944] / [i915#7118] / [i915#9424]) -> [FAIL][597] ([i915#7173]) +1 other test fail [596]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-3/igt@kms_content_protection@legacy.html [597]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-11/igt@kms_content_protection@legacy.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][598] ([i915#6944] / [i915#7118] / [i915#7162] / [i915#9424]) -> [SKIP][599] ([i915#6944] / [i915#7118] / [i915#9424]) [598]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-11/igt@kms_content_protection@type1.html [599]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-6/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: [SKIP][600] ([i915#14544] / [i915#3555]) -> [SKIP][601] ([i915#3555]) +3 other tests skip [600]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-32x32.html [601]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-rkl: [SKIP][602] ([i915#13049] / [i915#14544]) -> [SKIP][603] ([i915#13049]) +2 other tests skip [602]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html [603]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-rkl: [SKIP][604] ([i915#4103]) -> [SKIP][605] ([i915#14544] / [i915#4103]) [604]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html [605]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_display_modes@extended-mode-basic: - shard-rkl: [SKIP][606] ([i915#13691] / [i915#14544]) -> [SKIP][607] ([i915#13691]) [606]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_display_modes@extended-mode-basic.html [607]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-7/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dp_link_training@uhbr-mst: - shard-rkl: [SKIP][608] ([i915#13748] / [i915#14544]) -> [SKIP][609] ([i915#13748]) [608]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_dp_link_training@uhbr-mst.html [609]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-2/igt@kms_dp_link_training@uhbr-mst.html * igt@kms_dsc@dsc-fractional-bpp: - shard-rkl: [SKIP][610] ([i915#3840]) -> [SKIP][611] ([i915#14544] / [i915#3840]) [610]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-8/igt@kms_dsc@dsc-fractional-bpp.html [611]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-output-formats: - shard-rkl: [SKIP][612] ([i915#3555] / [i915#3840]) -> [SKIP][613] ([i915#14544] / [i915#3555] / [i915#3840]) [612]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-2/igt@kms_dsc@dsc-with-output-formats.html [613]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_feature_discovery@psr2: - shard-rkl: [SKIP][614] ([i915#658]) -> [SKIP][615] ([i915#14544] / [i915#658]) [614]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-5/igt@kms_feature_discovery@psr2.html [615]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-dpms-vs-vblank-race: - shard-rkl: [SKIP][616] ([i915#14544] / [i915#9934]) -> [SKIP][617] ([i915#9934]) +4 other tests skip [616]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_flip@2x-dpms-vs-vblank-race.html [617]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-4/igt@kms_flip@2x-dpms-vs-vblank-race.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-rkl: [SKIP][618] ([i915#9934]) -> [SKIP][619] ([i915#14544] / [i915#9934]) +4 other tests skip [618]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-5/igt@kms_flip@2x-flip-vs-panning-vs-hang.html [619]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@flip-vs-suspend: - shard-glk: [INCOMPLETE][620] ([i915#12314] / [i915#12745] / [i915#4839] / [i915#6113]) -> [INCOMPLETE][621] ([i915#12314] / [i915#12745] / [i915#4839]) [620]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-glk5/igt@kms_flip@flip-vs-suspend.html [621]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-glk8/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a1: - shard-glk: [INCOMPLETE][622] ([i915#12314] / [i915#12745] / [i915#6113]) -> [INCOMPLETE][623] ([i915#12314] / [i915#12745]) [622]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-glk5/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html [623]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-glk8/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-rkl: [SKIP][624] ([i915#2672] / [i915#3555]) -> [SKIP][625] ([i915#14544] / [i915#2672] / [i915#3555]) [624]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html [625]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode: - shard-rkl: [SKIP][626] ([i915#2672]) -> [SKIP][627] ([i915#14544] / [i915#2672]) [626]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html [627]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-rkl: [SKIP][628] ([i915#14544] / [i915#2672] / [i915#3555]) -> [SKIP][629] ([i915#2672] / [i915#3555]) [628]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html [629]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: [SKIP][630] ([i915#14544] / [i915#2672]) -> [SKIP][631] ([i915#2672]) [630]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html [631]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw: - shard-rkl: [SKIP][632] ([i915#1825]) -> [SKIP][633] ([i915#14544] / [i915#1825]) +12 other tests skip [632]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html [633]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt: - shard-rkl: [SKIP][634] ([i915#15102]) -> [SKIP][635] ([i915#14544] / [i915#15102]) [634]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt.html [635]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt: - shard-rkl: [SKIP][636] ([i915#14544] / [i915#15102]) -> [SKIP][637] ([i915#15102]) +1 other test skip [636]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html [637]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg1: [SKIP][638] ([i915#4423] / [i915#8708]) -> [SKIP][639] ([i915#8708]) [638]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html [639]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][640] ([i915#14544] / [i915#1825]) -> [SKIP][641] ([i915#1825]) +24 other tests skip [640]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html [641]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: [SKIP][642] ([i915#15102] / [i915#3023]) -> [SKIP][643] ([i915#14544] / [i915#15102] / [i915#3023]) +7 other tests skip [642]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html [643]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt: - shard-dg2: [SKIP][644] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][645] ([i915#15102] / [i915#3458]) [644]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html [645]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: [SKIP][646] ([i915#15102] / [i915#3458]) -> [SKIP][647] ([i915#10433] / [i915#15102] / [i915#3458]) +3 other tests skip [646]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html [647]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html - shard-rkl: [SKIP][648] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][649] ([i915#15102] / [i915#3023]) +8 other tests skip [648]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html [649]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_hdr@brightness-with-hdr: - shard-dg1: [SKIP][650] ([i915#1187] / [i915#12713]) -> [SKIP][651] ([i915#12713]) [650]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html [651]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-19/igt@kms_hdr@brightness-with-hdr.html * igt@kms_joiner@basic-force-big-joiner: - shard-rkl: [SKIP][652] ([i915#12388] / [i915#14544]) -> [SKIP][653] ([i915#12388]) [652]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_joiner@basic-force-big-joiner.html [653]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-2/igt@kms_joiner@basic-force-big-joiner.html - shard-dg1: [SKIP][654] ([i915#12388]) -> [SKIP][655] ([i915#12388] / [i915#4423]) [654]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg1-17/igt@kms_joiner@basic-force-big-joiner.html [655]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-16/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-rkl: [SKIP][656] ([i915#12339] / [i915#14544]) -> [SKIP][657] ([i915#12339]) [656]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_joiner@basic-ultra-joiner.html [657]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-1/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-dg1: [SKIP][658] ([i915#10656] / [i915#12388] / [i915#4423]) -> [SKIP][659] ([i915#10656] / [i915#12388]) [658]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-dg1-18/igt@kms_joiner@invalid-modeset-force-big-joiner.html [659]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-dg1-19/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-rkl: [SKIP][660] ([i915#14544] / [i915#6301]) -> [SKIP][661] ([i915#6301]) [660]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_panel_fitting@atomic-fastset.html [661]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-2/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane_multiple@2x-tiling-none: - shard-rkl: [SKIP][662] ([i915#13958]) -> [SKIP][663] ([i915#13958] / [i915#14544]) [662]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-4/igt@kms_plane_multiple@2x-tiling-none.html [663]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_pm_backlight@bad-brightness: - shard-rkl: [SKIP][664] ([i915#5354]) -> [SKIP][665] ([i915#14544] / [i915#5354]) [664]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-2/igt@kms_pm_backlight@bad-brightness.html [665]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_dc@dc5-psr: - shard-rkl: [SKIP][666] ([i915#14544] / [i915#9685]) -> [SKIP][667] ([i915#9685]) [666]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_pm_dc@dc5-psr.html [667]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-3/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][668] ([i915#9340]) -> [SKIP][669] ([i915#3828]) [668]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-4/igt@kms_pm_lpsp@kms-lpsp.html [669]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-2/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-rkl: [SKIP][670] ([i915#8430]) -> [SKIP][671] ([i915#14544] / [i915#8430]) [670]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-5/igt@kms_pm_lpsp@screens-disabled.html [671]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-rkl: [SKIP][672] ([i915#14544] / [i915#15073]) -> [SKIP][673] ([i915#15073]) [672]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress.html [673]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_prime@d3hot: - shard-rkl: [SKIP][674] ([i915#14544] / [i915#6524]) -> [SKIP][675] ([i915#6524]) [674]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_prime@d3hot.html [675]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-8/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-rkl: [SKIP][676] ([i915#11520] / [i915#14544]) -> [SKIP][677] ([i915#11520]) +4 other tests skip [676]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html [677]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-3/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-rkl: [SKIP][678] ([i915#11520]) -> [SKIP][679] ([i915#11520] / [i915#14544]) +5 other tests skip [678]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-4/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html [679]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-nv12: - shard-rkl: [SKIP][680] ([i915#14544] / [i915#9683]) -> [SKIP][681] ([i915#9683]) +1 other test skip [680]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_psr2_su@page_flip-nv12.html [681]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-8/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-pr-cursor-render: - shard-rkl: [SKIP][682] ([i915#1072] / [i915#9732]) -> [SKIP][683] ([i915#1072] / [i915#14544] / [i915#9732]) +7 other tests skip [682]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-2/igt@kms_psr@fbc-pr-cursor-render.html [683]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@kms_psr@fbc-pr-cursor-render.html * igt@kms_psr@psr-cursor-plane-move: - shard-rkl: [SKIP][684] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][685] ([i915#1072] / [i915#9732]) +13 other tests skip [684]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_psr@psr-cursor-plane-move.html [685]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-7/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: [SKIP][686] ([i915#14544] / [i915#5289]) -> [SKIP][687] ([i915#5289]) +1 other test skip [686]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [687]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-rkl: [SKIP][688] ([i915#5289]) -> [SKIP][689] ([i915#14544] / [i915#5289]) [688]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [689]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_setmode@basic-clone-single-crtc: - shard-rkl: [SKIP][690] ([i915#3555]) -> [SKIP][691] ([i915#14544] / [i915#3555]) +3 other tests skip [690]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-3/igt@kms_setmode@basic-clone-single-crtc.html [691]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_vrr@lobf: - shard-rkl: [SKIP][692] ([i915#11920] / [i915#14544]) -> [SKIP][693] ([i915#11920]) [692]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@kms_vrr@lobf.html [693]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-7/igt@kms_vrr@lobf.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-rkl: [SKIP][694] ([i915#2437] / [i915#9412]) -> [SKIP][695] ([i915#14544] / [i915#2437] / [i915#9412]) [694]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-3/igt@kms_writeback@writeback-fb-id-xrgb2101010.html [695]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@perf_pmu@rc6-all-gts: - shard-rkl: [SKIP][696] ([i915#8516]) -> [SKIP][697] ([i915#14544] / [i915#8516]) [696]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-2/igt@perf_pmu@rc6-all-gts.html [697]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-6/igt@perf_pmu@rc6-all-gts.html * igt@prime_vgem@basic-read: - shard-rkl: [SKIP][698] ([i915#14544] / [i915#3291] / [i915#3708]) -> [SKIP][699] ([i915#3291] / [i915#3708]) [698]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@prime_vgem@basic-read.html [699]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-5/igt@prime_vgem@basic-read.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-rkl: [SKIP][700] ([i915#14544] / [i915#9917]) -> [SKIP][701] ([i915#9917]) [700]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8658/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-off.html [701]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/shard-rkl-8/igt@sriov_basic@enable-vfs-autoprobe-off.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10393 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527 [i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713 [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358 [i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388 [i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394 [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655 [i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761 [i915#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390 [i915#13522]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13522 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717 [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13890]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13890 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118 [i915#14121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14121 [i915#14123]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14123 [i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14433 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694 [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712 [i915#14785]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14785 [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073 [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102 [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104 [i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131 [i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132 [i915#15283]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15283 [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330 [i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342 [i915#15343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15343 [i915#15351]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15351 [i915#15386]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15386 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113 [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7162 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882 [i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 [i915#9979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9979 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8658 -> IGTPW_14165 CI-20190529: 20190529 CI_DRM_17642: db6505187efb9c255df1dd6e78c00d95fadfef79 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14165: ea728fd779cd1fd9e578ebafc5364c4b1885bcfa @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8658: 5d645d459768a0e5c8e5e95b9fce16bb17319825 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14165/index.html [-- Attachment #2: Type: text/html, Size: 208755 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH i-g-t 0/2] RFC: Fix chamelium port allocation during igt_fixture
@ 2025-12-05 7:32 Moahmmed Bilal
2025-12-05 7:32 ` [PATCH i-g-t 1/2] RFC: chamelium/kms_chamelium_hpd: add helper function to select connector port Moahmmed Bilal
0 siblings, 1 reply; 12+ messages in thread
From: Moahmmed Bilal @ 2025-12-05 7:32 UTC (permalink / raw)
To: igt-dev; +Cc: jeevan.b, kunal1.joshi, Moahmmed Bilal
selecting appropriate connector and solving the igt_fixture issue.
Mohammed Bilal (2):
RFC: chamelium/kms_chamelium_hpd: add helper function to select
connector port
RFC: chamelium/kms_chamelium_hpd: use helper function for connector
lookup in DP/HDMI/VGA tests
tests/chamelium/kms_chamelium_hpd.c | 426 ++++++++++++++++++++--------
1 file changed, 303 insertions(+), 123 deletions(-)
--
2.48.1
^ permalink raw reply [flat|nested] 12+ messages in thread* [PATCH i-g-t 1/2] RFC: chamelium/kms_chamelium_hpd: add helper function to select connector port 2025-12-05 7:32 [PATCH i-g-t 0/2] RFC: Fix chamelium port allocation during igt_fixture Moahmmed Bilal @ 2025-12-05 7:32 ` Moahmmed Bilal 0 siblings, 0 replies; 12+ messages in thread From: Moahmmed Bilal @ 2025-12-05 7:32 UTC (permalink / raw) To: igt-dev; +Cc: jeevan.b, kunal1.joshi, Mohammed Bilal From: Mohammed Bilal <mohammed.bilal@intel.com> Introduce a new helper function get_port() which returns the chamelium_port matching the requested connector type. The helper iterates through the available ports and returns the first match, or NULL if no matching connector is found. Signed-off-by: Mohammed Bilal <mohammed.bilal@intel.com> --- tests/chamelium/kms_chamelium_hpd.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/tests/chamelium/kms_chamelium_hpd.c b/tests/chamelium/kms_chamelium_hpd.c index 161f494e9..3c8af63bd 100644 --- a/tests/chamelium/kms_chamelium_hpd.c +++ b/tests/chamelium/kms_chamelium_hpd.c @@ -158,6 +158,21 @@ enum test_modeset_mode { TEST_MODESET_OFF, }; +__maybe_unused +static struct chamelium_port *get_port(struct chamelium_port **ports, + int port_count, int connector_type) +{ + int i; + + for (i = 0; i < port_count; i++) { + if (chamelium_port_get_type(ports[i]) == + connector_type) + return ports[i]; + } + + return NULL; +} + static void try_suspend_resume_hpd(chamelium_data_t *data, struct chamelium_port *port, enum igt_suspend_state state, -- 2.48.1 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH i-g-t 0/2] RFC: Fix chamelium port allocation during igt_fixture
@ 2025-12-04 15:17 Moahmmed Bilal
2025-12-04 15:17 ` [PATCH i-g-t 1/2] RFC: chamelium/kms_chamelium_hpd: add helper function to select connector port Moahmmed Bilal
0 siblings, 1 reply; 12+ messages in thread
From: Moahmmed Bilal @ 2025-12-04 15:17 UTC (permalink / raw)
To: igt-dev; +Cc: jeevan.b, kunal1.joshi, Moahmmed Bilal
selecting appropriate connector and solving the igt_fixture issue.
Mohammed Bilal (2):
RFC: chamelium/kms_chamelium_hpd: add helper function to select
connector port
RFC: chamelium/kms_chamelium_hpd: use helper function for connector
lookup in DP/HDMI/VGA tests
tests/chamelium/kms_chamelium_hpd.c | 426 ++++++++++++++++++++--------
1 file changed, 303 insertions(+), 123 deletions(-)
--
2.48.1
^ permalink raw reply [flat|nested] 12+ messages in thread* [PATCH i-g-t 1/2] RFC: chamelium/kms_chamelium_hpd: add helper function to select connector port 2025-12-04 15:17 [PATCH i-g-t 0/2] RFC: Fix chamelium port allocation during igt_fixture Moahmmed Bilal @ 2025-12-04 15:17 ` Moahmmed Bilal 0 siblings, 0 replies; 12+ messages in thread From: Moahmmed Bilal @ 2025-12-04 15:17 UTC (permalink / raw) To: igt-dev; +Cc: jeevan.b, kunal1.joshi, Mohammed Bilal From: Mohammed Bilal <mohammed.bilal@intel.com> Introduce a new helper function get_port() which returns the chamelium_port matching the requested connector type. The helper iterates through the available ports and returns the first match, or NULL if no matching connector is found. Signed-off-by: Mohammed Bilal <mohammed.bilal@intel.com> --- tests/chamelium/kms_chamelium_hpd.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/tests/chamelium/kms_chamelium_hpd.c b/tests/chamelium/kms_chamelium_hpd.c index 161f494e9..3c8af63bd 100644 --- a/tests/chamelium/kms_chamelium_hpd.c +++ b/tests/chamelium/kms_chamelium_hpd.c @@ -158,6 +158,21 @@ enum test_modeset_mode { TEST_MODESET_OFF, }; +__maybe_unused +static struct chamelium_port *get_port(struct chamelium_port **ports, + int port_count, int connector_type) +{ + int i; + + for (i = 0; i < port_count; i++) { + if (chamelium_port_get_type(ports[i]) == + connector_type) + return ports[i]; + } + + return NULL; +} + static void try_suspend_resume_hpd(chamelium_data_t *data, struct chamelium_port *port, enum igt_suspend_state state, -- 2.48.1 ^ permalink raw reply related [flat|nested] 12+ messages in thread
end of thread, other threads:[~2025-12-08 5:31 UTC | newest] Thread overview: 12+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-12-05 7:46 [PATCH i-g-t 0/2] RFC: Fix chamelium port allocation during igt_fixture Moahmmed Bilal 2025-12-05 7:46 ` [PATCH i-g-t 1/2] RFC: chamelium/kms_chamelium_hpd: add helper function to select connector port Moahmmed Bilal 2025-12-05 10:15 ` Sebastian Brzezinka 2025-12-05 7:46 ` [PATCH i-g-t 2/2] RFC: chamelium/kms_chamelium_hpd: use helper function for connector lookup in DP/HDMI/VGA tests Moahmmed Bilal 2025-12-05 10:29 ` Sebastian Brzezinka 2025-12-08 5:31 ` B, Jeevan 2025-12-05 22:54 ` ✓ Xe.CI.BAT: success for RFC: Fix chamelium port allocation during igt_fixture (rev2) Patchwork 2025-12-05 23:19 ` ✓ i915.CI.BAT: " Patchwork 2025-12-06 9:30 ` ✗ Xe.CI.Full: failure " Patchwork 2025-12-07 3:34 ` ✗ i915.CI.Full: " Patchwork -- strict thread matches above, loose matches on Subject: below -- 2025-12-05 7:32 [PATCH i-g-t 0/2] RFC: Fix chamelium port allocation during igt_fixture Moahmmed Bilal 2025-12-05 7:32 ` [PATCH i-g-t 1/2] RFC: chamelium/kms_chamelium_hpd: add helper function to select connector port Moahmmed Bilal 2025-12-04 15:17 [PATCH i-g-t 0/2] RFC: Fix chamelium port allocation during igt_fixture Moahmmed Bilal 2025-12-04 15:17 ` [PATCH i-g-t 1/2] RFC: chamelium/kms_chamelium_hpd: add helper function to select connector port Moahmmed Bilal
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox