* [PATCH i-g-t] tests/kms_hdr: Move capability checks inside dynamic subtests
@ 2026-04-27 14:49 Pranay Samala
2026-04-28 0:18 ` ✗ i915.CI.BAT: failure for " Patchwork
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Pranay Samala @ 2026-04-27 14:49 UTC (permalink / raw)
To: igt-dev; +Cc: karthik.b.s, sameer.lattannavar, pranay.samala
Earlier, output capability checks were done in the outer loops
using continue/break. This caused a problem where if an earlier
output (e.g., eDP) passed but a later output (e.g., DP) failed
a check (such as reading bpc), the entire subtest would be skipped,
discarding the earlier valid result and reporting a false skip/failure.
Fix this by moving all output capability checks inside dynamic
block. Each pipe-output-format combination is now an independent
dynamic subtest that passes or skips on its own merit, without
affecting other combinations.
Closes: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4879
Signed-off-by: Pranay Samala <pranay.samala@intel.com>
---
tests/kms_hdr.c | 211 ++++++++++++++++++++++--------------------------
1 file changed, 96 insertions(+), 115 deletions(-)
diff --git a/tests/kms_hdr.c b/tests/kms_hdr.c
index b215b0e6c..20838469b 100644
--- a/tests/kms_hdr.c
+++ b/tests/kms_hdr.c
@@ -325,48 +325,41 @@ static void test_bpc_switch(data_t *data, uint32_t flags)
for_each_connected_output(display, output) {
igt_crtc_t *crtc;
- if (!has_max_bpc(output)) {
- igt_info("%s: Doesn't support IGT_CONNECTOR_MAX_BPC.\n",
- igt_output_name(output));
- continue;
- }
-
- if (igt_get_output_max_bpc(output) < 10) {
- igt_info("%s: Doesn't support 10 bpc.\n", igt_output_name(output));
- continue;
- }
-
for_each_crtc(display, crtc) {
- igt_output_set_crtc(output,
- crtc);
- if (!intel_pipe_output_combo_valid(display)) {
- igt_output_set_crtc(output, NULL);
- continue;
- }
-
for (int i = 0; i < ARRAY_SIZE(hdr_test_formats); i++) {
- prepare_test(data, output,
- crtc);
-
- if (is_intel_device(data->fd) &&
- !igt_max_bpc_constraint(display, crtc, output, 10)) {
- igt_info("%s: No suitable mode found to use 10 bpc.\n",
- igt_output_name(output));
-
- test_fini(data);
- break;
- }
-
- data->mode = igt_output_get_mode(output);
- data->w = data->mode->hdisplay;
- data->h = data->mode->vdisplay;
-
igt_dynamic_f("pipe-%s-%s-%s",
igt_crtc_name(crtc), output->name,
- igt_format_str(hdr_test_formats[i]))
- test_bpc_switch_on_output(data,
- crtc,
- output, hdr_test_formats[i], flags);
+ igt_format_str(hdr_test_formats[i])) {
+ igt_require_f(has_max_bpc(output),
+ "%s: Doesn't support IGT_CONNECTOR_MAX_BPC.\n",
+ igt_output_name(output));
+
+ igt_require_f(igt_get_output_max_bpc(output) >= 10,
+ "%s: Doesn't support 10 bpc.\n",
+ igt_output_name(output));
+
+ prepare_test(data, output, crtc);
+
+ igt_require_f(intel_pipe_output_combo_valid(display),
+ "pipe-%s-%s: combo invalid.\n",
+ igt_crtc_name(crtc), output->name);
+
+ if (is_intel_device(data->fd))
+ igt_require_f(igt_max_bpc_constraint(display,
+ crtc,
+ output,
+ 10),
+ "%s: No suitable mode found to "
+ "use 10 bpc.\n",
+ igt_output_name(output));
+
+ data->mode = igt_output_get_mode(output);
+ data->w = data->mode->hdisplay;
+ data->h = data->mode->vdisplay;
+
+ test_bpc_switch_on_output(data, crtc, output,
+ hdr_test_formats[i], flags);
+ }
}
/* One pipe is enough */
@@ -725,88 +718,76 @@ static void test_hdr(data_t *data, uint32_t flags)
for_each_connected_output(display, output) {
igt_crtc_t *crtc;
- /* To test HDR, 10 bpc is required, so we need to
- * set MAX_BPC property to 10bpc prior to setting
- * HDR metadata property. Therefore, checking.
- */
- if (!has_max_bpc(output) || !has_hdr(output)) {
- igt_info("%s: Doesn't support IGT_CONNECTOR_MAX_BPC or IGT_CONNECTOR_HDR_OUTPUT_METADATA.\n",
- igt_output_name(output));
- continue;
- }
-
- /* For negative test, panel should be non-hdr. */
- if ((flags & TEST_INVALID_HDR) && is_panel_hdr(data, output)) {
- igt_info("%s: Can't run negative test on HDR panel.\n",
- igt_output_name(output));
- continue;
- }
-
- if ((flags & ~TEST_INVALID_HDR) && !is_panel_hdr(data, output)) {
- igt_info("%s: Can't run HDR tests on non-HDR panel.\n",
- igt_output_name(output));
- continue;
- }
-
- if (igt_get_output_max_bpc(output) < 10) {
- igt_info("%s: Doesn't support 10 bpc.\n", igt_output_name(output));
- continue;
- }
-
- if ((flags & TEST_BRIGHTNESS) && !output_is_internal_panel(output)) {
- igt_info("%s: Can't run brightness test on non-internal panel.\n",
- igt_output_name(output));
- continue;
- }
-
for_each_crtc(display, crtc) {
- igt_output_set_crtc(output,
- crtc);
- if (!intel_pipe_output_combo_valid(display)) {
- igt_output_set_crtc(output, NULL);
- continue;
- }
-
for (int i = 0; i < ARRAY_SIZE(hdr_test_formats); i++) {
- prepare_test(data, output,
- crtc);
-
- /* Signal HDR requirement via metadata */
- fill_hdr_output_metadata_st2084(&hdr);
- set_hdr_output_metadata(data, &hdr);
- if (igt_display_try_commit2(display, display->is_atomic ?
- COMMIT_ATOMIC : COMMIT_LEGACY)) {
- igt_info("%s: Couldn't set HDR metadata\n",
- igt_output_name(output));
- test_fini(data);
- break;
- }
-
- if (is_intel_device(data->fd) &&
- !igt_max_bpc_constraint(display, crtc, output, 10)) {
- igt_info("%s: No suitable mode found to use 10 bpc.\n",
- igt_output_name(output));
-
- test_fini(data);
- break;
- }
-
- if (igt_is_dsc_enabled(data->fd, output->name))
- flags |= TEST_NEEDS_DSC;
- else
- flags &= ~TEST_NEEDS_DSC;
-
- set_hdr_output_metadata(data, NULL);
- igt_display_commit2(display, display->is_atomic ?
- COMMIT_ATOMIC : COMMIT_LEGACY);
-
- data->mode = igt_output_get_mode(output);
- data->w = data->mode->hdisplay;
- data->h = data->mode->vdisplay;
-
igt_dynamic_f("pipe-%s-%s-%s",
igt_crtc_name(crtc), output->name,
igt_format_str(hdr_test_formats[i])) {
+ igt_require_f(has_max_bpc(output) && has_hdr(output),
+ "%s: Doesn't support IGT_CONNECTOR_MAX_BPC "
+ "or IGT_CONNECTOR_HDR_OUTPUT_METADATA.\n",
+ igt_output_name(output));
+
+ if (flags & TEST_INVALID_HDR)
+ igt_require_f(!is_panel_hdr(data, output),
+ "%s: Can't run negative test on "
+ "HDR panel.\n",
+ igt_output_name(output));
+
+ if (!(flags & TEST_INVALID_HDR))
+ igt_require_f(is_panel_hdr(data, output),
+ "%s: Can't run HDR tests on "
+ "non-HDR panel.\n",
+ igt_output_name(output));
+
+ igt_require_f(igt_get_output_max_bpc(output) >= 10,
+ "%s: Doesn't support 10 bpc.\n",
+ igt_output_name(output));
+
+ if (flags & TEST_BRIGHTNESS)
+ igt_require_f(output_is_internal_panel(output),
+ "%s: Can't run brightness test on "
+ "non-internal panel.\n",
+ igt_output_name(output));
+
+ prepare_test(data, output, crtc);
+
+ igt_require_f(intel_pipe_output_combo_valid(display),
+ "pipe-%s-%s: combo invalid.\n",
+ igt_crtc_name(crtc), output->name);
+
+ /* Signal HDR requirement via metadata */
+ fill_hdr_output_metadata_st2084(&hdr);
+ set_hdr_output_metadata(data, &hdr);
+ igt_require_f(!igt_display_try_commit2(display,
+ display->is_atomic ?
+ COMMIT_ATOMIC :
+ COMMIT_LEGACY),
+ "%s: Couldn't set HDR metadata\n",
+ igt_output_name(output));
+
+ if (is_intel_device(data->fd))
+ igt_require_f(igt_max_bpc_constraint(display,
+ crtc,
+ output,
+ 10),
+ "%s: No suitable mode found to "
+ "use 10 bpc.\n",
+ igt_output_name(output));
+
+ if (igt_is_dsc_enabled(data->fd, output->name))
+ flags |= TEST_NEEDS_DSC;
+ else
+ flags &= ~TEST_NEEDS_DSC;
+
+ set_hdr_output_metadata(data, NULL);
+ igt_display_commit2(display, display->is_atomic ?
+ COMMIT_ATOMIC : COMMIT_LEGACY);
+
+ data->mode = igt_output_get_mode(output);
+ data->w = data->mode->hdisplay;
+ data->h = data->mode->vdisplay;
+
if (flags & (TEST_NONE | TEST_DPMS | TEST_SUSPEND |
TEST_INVALID_HDR | TEST_BRIGHTNESS))
test_static_toggle(data,
--
2.34.1
^ permalink raw reply related [flat|nested] 5+ messages in thread* ✗ i915.CI.BAT: failure for tests/kms_hdr: Move capability checks inside dynamic subtests 2026-04-27 14:49 [PATCH i-g-t] tests/kms_hdr: Move capability checks inside dynamic subtests Pranay Samala @ 2026-04-28 0:18 ` Patchwork 2026-04-28 1:31 ` ✓ Xe.CI.BAT: success " Patchwork ` (2 subsequent siblings) 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2026-04-28 0:18 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3654 bytes --] == Series Details == Series: tests/kms_hdr: Move capability checks inside dynamic subtests URL : https://patchwork.freedesktop.org/series/165538/ State : failure == Summary == CI Bug Log - changes from IGT_8874 -> IGTPW_15064 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_15064 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_15064, 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_15064/index.html Participating hosts (42 -> 40) ------------------------------ Missing (2): bat-dg2-13 fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_15064: ### IGT changes ### #### Possible regressions #### * igt@i915_module_load@reload: - bat-arlh-2: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/bat-arlh-2/igt@i915_module_load@reload.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15064/bat-arlh-2/igt@i915_module_load@reload.html Known issues ------------ Here are the changes found in IGTPW_15064 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_debugfs@read-all-entries: - bat-adlp-6: [PASS][3] -> [DMESG-WARN][4] ([i915#15673]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/bat-adlp-6/igt@core_debugfs@read-all-entries.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15064/bat-adlp-6/igt@core_debugfs@read-all-entries.html * igt@i915_selftest@live: - bat-mtlp-8: [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/bat-mtlp-8/igt@i915_selftest@live.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15064/bat-mtlp-8/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-arlh-3: [PASS][7] -> [DMESG-FAIL][8] ([i915#12061]) +1 other test dmesg-fail [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/bat-arlh-3/igt@i915_selftest@live@workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15064/bat-arlh-3/igt@i915_selftest@live@workarounds.html #### Possible fixes #### * igt@core_auth@basic-auth: - bat-adlp-6: [DMESG-WARN][9] ([i915#15673]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8874/bat-adlp-6/igt@core_auth@basic-auth.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15064/bat-adlp-6/igt@core_auth@basic-auth.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#15673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15673 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8874 -> IGTPW_15064 * Linux: CI_DRM_18369 -> CI_DRM_18373 CI-20190529: 20190529 CI_DRM_18369: b6f6b69b2dffa9ad1c43b2149786b4630d41acbf @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_18373: aea2c496abcf55b647c14fe720bfc4ea555aac6a @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15064: e83573bdb103ac3187bf22ecb2d3e16b46341912 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8874: 4568b2c141ab630c34f8eb2b9afab8cbf8f3ce9e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15064/index.html [-- Attachment #2: Type: text/html, Size: 4539 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* ✓ Xe.CI.BAT: success for tests/kms_hdr: Move capability checks inside dynamic subtests 2026-04-27 14:49 [PATCH i-g-t] tests/kms_hdr: Move capability checks inside dynamic subtests Pranay Samala 2026-04-28 0:18 ` ✗ i915.CI.BAT: failure for " Patchwork @ 2026-04-28 1:31 ` Patchwork 2026-04-28 9:10 ` ✗ Xe.CI.FULL: failure " Patchwork 2026-04-29 4:17 ` [PATCH i-g-t] " Karthik B S 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2026-04-28 1:31 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1177 bytes --] == Series Details == Series: tests/kms_hdr: Move capability checks inside dynamic subtests URL : https://patchwork.freedesktop.org/series/165538/ State : success == Summary == CI Bug Log - changes from XEIGT_8874_BAT -> XEIGTPW_15064_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (13 -> 13) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8874 -> IGTPW_15064 * Linux: xe-4940-b6f6b69b2dffa9ad1c43b2149786b4630d41acbf -> xe-4944-aea2c496abcf55b647c14fe720bfc4ea555aac6a IGTPW_15064: e83573bdb103ac3187bf22ecb2d3e16b46341912 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8874: 4568b2c141ab630c34f8eb2b9afab8cbf8f3ce9e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-4940-b6f6b69b2dffa9ad1c43b2149786b4630d41acbf: b6f6b69b2dffa9ad1c43b2149786b4630d41acbf xe-4944-aea2c496abcf55b647c14fe720bfc4ea555aac6a: aea2c496abcf55b647c14fe720bfc4ea555aac6a == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/index.html [-- Attachment #2: Type: text/html, Size: 1736 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* ✗ Xe.CI.FULL: failure for tests/kms_hdr: Move capability checks inside dynamic subtests 2026-04-27 14:49 [PATCH i-g-t] tests/kms_hdr: Move capability checks inside dynamic subtests Pranay Samala 2026-04-28 0:18 ` ✗ i915.CI.BAT: failure for " Patchwork 2026-04-28 1:31 ` ✓ Xe.CI.BAT: success " Patchwork @ 2026-04-28 9:10 ` Patchwork 2026-04-29 4:17 ` [PATCH i-g-t] " Karthik B S 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2026-04-28 9:10 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 32511 bytes --] == Series Details == Series: tests/kms_hdr: Move capability checks inside dynamic subtests URL : https://patchwork.freedesktop.org/series/165538/ State : failure == Summary == CI Bug Log - changes from XEIGT_8874_FULL -> XEIGTPW_15064_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_15064_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_15064_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 (2 -> 2) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_15064_FULL: ### IGT changes ### #### Possible regressions #### * igt@kms_flip@dpms-off-confusion-interruptible@d-hdmi-a3: - shard-bmg: [PASS][1] -> [DMESG-WARN][2] +1 other test dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8874/shard-bmg-2/igt@kms_flip@dpms-off-confusion-interruptible@d-hdmi-a3.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-2/igt@kms_flip@dpms-off-confusion-interruptible@d-hdmi-a3.html * {igt@kms_hdr@brightness-with-hdr@pipe-a-dp-2-xrgb2101010} (NEW): - shard-bmg: NOTRUN -> [SKIP][3] +7 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-6/igt@kms_hdr@brightness-with-hdr@pipe-a-dp-2-xrgb2101010.html * igt@kms_hdr@brightness-with-hdr@pipe-a-edp-1-xrgb2101010: - shard-lnl: NOTRUN -> [SKIP][4] +11 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-lnl-1/igt@kms_hdr@brightness-with-hdr@pipe-a-edp-1-xrgb2101010.html New tests --------- New tests have been introduced between XEIGT_8874_FULL and XEIGTPW_15064_FULL: ### New IGT tests (4) ### * igt@kms_hdr@brightness-with-hdr@pipe-a-dp-2-xrgb16161616f: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_hdr@brightness-with-hdr@pipe-a-dp-2-xrgb2101010: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-3-xrgb16161616f: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-3-xrgb2101010: - Statuses : 1 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in XEIGTPW_15064_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2370]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#2327]) +3 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-7/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#607] / [Intel XE#7361]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-6/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#1124]) +9 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2887]) +11 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-7/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#3432]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-10/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2652]) +8 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2724] / [Intel XE#7449]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-1/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_hpd@hdmi-hpd-after-suspend: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2252]) +8 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-10/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2390] / [Intel XE#6974]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-3/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-0-hdcp14: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#6974]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-3/igt@kms_content_protection@dp-mst-type-0-hdcp14.html * igt@kms_content_protection@srm@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][16] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-10/igt@kms_content_protection@srm@pipe-a-dp-2.html * igt@kms_content_protection@type1: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#7642]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-7/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2321] / [Intel XE#7355]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-3/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2320]) +5 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-6/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#1508]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-8/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#1340] / [Intel XE#7435]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html * igt@kms_dsc@dsc-with-formats: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2244]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-1/igt@kms_dsc@dsc-with-formats.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests: - shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#4422] / [Intel XE#7442]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-10/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html * igt@kms_fbcon_fbt@psr-suspend: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#6126] / [Intel XE#776]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-8/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-3x: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2373] / [Intel XE#7448]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-7/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@psr2: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2374] / [Intel XE#6128]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-10/igt@kms_feature_discovery@psr2.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#7178] / [Intel XE#7351]) +2 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#7179]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-1/igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#4141]) +12 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2311]) +37 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#7061] / [Intel XE#7356]) +4 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2352] / [Intel XE#7399]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2350] / [Intel XE#7503]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-7/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2313]) +24 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_hdmi_inject@inject-audio: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#7308]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-1/igt@kms_hdmi_inject@inject-audio.html * igt@kms_joiner@basic-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#6911] / [Intel XE#7378]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-7/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#6911] / [Intel XE#7466]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-10/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#4090] / [Intel XE#7443]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2486]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-8/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#6912] / [Intel XE#7375]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-6/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_pipe_stress@stress-xrgb8888-ytiled: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#4329] / [Intel XE#6912] / [Intel XE#7375]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-6/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#7283]) +6 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-10/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-8/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2938] / [Intel XE#7376]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-3/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_dc@dc5-retention-flops: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#3309] / [Intel XE#7368]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-3/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_rpm@dpms-lpsp: - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-1/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#1489]) +3 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-10/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html * igt@kms_psr2_su@page_flip-p010: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2387] / [Intel XE#7429]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-8/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr-dpms: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2234] / [Intel XE#2850]) +11 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-3/igt@kms_psr@fbc-psr-dpms.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#7795]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-3/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#3904] / [Intel XE#7342]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-10/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_scaling_modes@scaling-mode-full: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2413]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-7/igt@kms_scaling_modes@scaling-mode-full.html * igt@kms_sharpness_filter@filter-tap: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#6503]) +2 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-3/igt@kms_sharpness_filter@filter-tap.html * igt@kms_vrr@max-min: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#1499]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-10/igt@kms_vrr@max-min.html * igt@xe_eudebug@basic-vm-bind-metadata-discovery: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#7636]) +12 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-3/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: [PASS][56] -> [INCOMPLETE][57] ([Intel XE#6321]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8874/shard-bmg-1/igt@xe_evict@evict-mixed-many-threads-small.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_evict@evict-small-multi-queue-priority-cm: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#7140]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-10/igt@xe_evict@evict-small-multi-queue-priority-cm.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2322] / [Intel XE#7372]) +8 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-7/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html * igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#7136]) +12 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-7/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr.html * igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-priority: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#6874]) +32 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-7/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-priority.html * igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#7138]) +7 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-7/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr.html * igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#6964]) +5 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-7/igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch.html * igt@xe_page_reclaim@prl-max-entries: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#7793]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-1/igt@xe_page_reclaim@prl-max-entries.html * igt@xe_pat@pat-index-xehpc: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#1420] / [Intel XE#7590]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-6/igt@xe_pat@pat-index-xehpc.html * igt@xe_pat@xa-app-transient-media-on: - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#7590]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-6/igt@xe_pat@xa-app-transient-media-on.html * igt@xe_peer2peer@read: - shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2427] / [Intel XE#6953] / [Intel XE#7326] / [Intel XE#7353]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-1/igt@xe_peer2peer@read.html * igt@xe_pm@d3cold-i2c: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#5694] / [Intel XE#7370]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-8/igt@xe_pm@d3cold-i2c.html * igt@xe_pm@s4-d3cold-basic-exec: - shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2284] / [Intel XE#7370]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-7/igt@xe_pm@s4-d3cold-basic-exec.html * igt@xe_pxp@pxp-optout: - shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#4733] / [Intel XE#7417]) +2 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-3/igt@xe_pxp@pxp-optout.html * igt@xe_query@multigpu-query-invalid-query: - shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#944]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-10/igt@xe_query@multigpu-query-invalid-query.html * igt@xe_sriov_flr@flr-vfs-parallel: - shard-bmg: [PASS][72] -> [FAIL][73] ([Intel XE#6569]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8874/shard-bmg-2/igt@xe_sriov_flr@flr-vfs-parallel.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-8/igt@xe_sriov_flr@flr-vfs-parallel.html * igt@xe_sriov_vram@vf-access-after-resize-up: - shard-bmg: [PASS][74] -> [FAIL][75] ([Intel XE#5937]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8874/shard-bmg-1/igt@xe_sriov_vram@vf-access-after-resize-up.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-10/igt@xe_sriov_vram@vf-access-after-resize-up.html #### Possible fixes #### * igt@kms_pm_dc@dc5-psr: - shard-lnl: [FAIL][76] ([Intel XE#7340]) -> [PASS][77] [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8874/shard-lnl-6/igt@kms_pm_dc@dc5-psr.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-lnl-6/igt@kms_pm_dc@dc5-psr.html * igt@xe_pmu@fn-engine-activity-load: - shard-bmg: [FAIL][78] ([Intel XE#5937]) -> [PASS][79] [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8874/shard-bmg-10/igt@xe_pmu@fn-engine-activity-load.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-1/igt@xe_pmu@fn-engine-activity-load.html * igt@xe_survivability@runtime-survivability: - shard-bmg: [DMESG-WARN][80] ([Intel XE#6627] / [Intel XE#7419]) -> [PASS][81] [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8874/shard-bmg-8/igt@xe_survivability@runtime-survivability.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-7/igt@xe_survivability@runtime-survivability.html #### Warnings #### * igt@kms_hdr@brightness-with-hdr: - shard-lnl: [SKIP][82] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][83] ([Intel XE#3544]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8874/shard-lnl-6/igt@kms_hdr@brightness-with-hdr.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-lnl-1/igt@kms_hdr@brightness-with-hdr.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: [SKIP][84] ([Intel XE#2426] / [Intel XE#5848]) -> [FAIL][85] ([Intel XE#1729] / [Intel XE#7424]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8874/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][86] ([Intel XE#2426] / [Intel XE#5848]) -> [SKIP][87] ([Intel XE#2509] / [Intel XE#7437]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8874/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/shard-bmg-10/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#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [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#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [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#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [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#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [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#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [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#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4090]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329 [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694 [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848 [Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#6126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6126 [Intel XE#6128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6128 [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569 [Intel XE#6627]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6627 [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874 [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886 [Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911 [Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912 [Intel XE#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136 [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138 [Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308 [Intel XE#7326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7326 [Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340 [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342 [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351 [Intel XE#7353]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7353 [Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355 [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356 [Intel XE#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361 [Intel XE#7368]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7368 [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370 [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372 [Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374 [Intel XE#7375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7375 [Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376 [Intel XE#7378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7378 [Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383 [Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399 [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417 [Intel XE#7419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7419 [Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424 [Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429 [Intel XE#7435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7435 [Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437 [Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442 [Intel XE#7443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7443 [Intel XE#7448]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7448 [Intel XE#7449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7449 [Intel XE#7466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7466 [Intel XE#7503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7503 [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590 [Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636 [Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642 [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793 [Intel XE#7795]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7795 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_8874 -> IGTPW_15064 * Linux: xe-4940-b6f6b69b2dffa9ad1c43b2149786b4630d41acbf -> xe-4944-aea2c496abcf55b647c14fe720bfc4ea555aac6a IGTPW_15064: e83573bdb103ac3187bf22ecb2d3e16b46341912 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8874: 4568b2c141ab630c34f8eb2b9afab8cbf8f3ce9e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-4940-b6f6b69b2dffa9ad1c43b2149786b4630d41acbf: b6f6b69b2dffa9ad1c43b2149786b4630d41acbf xe-4944-aea2c496abcf55b647c14fe720bfc4ea555aac6a: aea2c496abcf55b647c14fe720bfc4ea555aac6a == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15064/index.html [-- Attachment #2: Type: text/html, Size: 35248 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH i-g-t] tests/kms_hdr: Move capability checks inside dynamic subtests 2026-04-27 14:49 [PATCH i-g-t] tests/kms_hdr: Move capability checks inside dynamic subtests Pranay Samala ` (2 preceding siblings ...) 2026-04-28 9:10 ` ✗ Xe.CI.FULL: failure " Patchwork @ 2026-04-29 4:17 ` Karthik B S 3 siblings, 0 replies; 5+ messages in thread From: Karthik B S @ 2026-04-29 4:17 UTC (permalink / raw) To: Pranay Samala, igt-dev; +Cc: sameer.lattannavar Hi Pranay, On 4/27/2026 8:19 PM, Pranay Samala wrote: > Earlier, output capability checks were done in the outer loops Mention here "outside the dynamic subtest scope", as that was the reason the skip affecting other subtests. > using continue/break. This caused a problem where if an earlier > output (e.g., eDP) passed but a later output (e.g., DP) failed > a check (such as reading bpc), the entire subtest would be skipped, > discarding the earlier valid result and reporting a false skip/failure. > > Fix this by moving all output capability checks inside dynamic > block. Each pipe-output-format combination is now an independent > dynamic subtest that passes or skips on its own merit, without > affecting other combinations. > > Closes: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4879 > Signed-off-by: Pranay Samala <pranay.samala@intel.com> > --- > tests/kms_hdr.c | 211 ++++++++++++++++++++++-------------------------- > 1 file changed, 96 insertions(+), 115 deletions(-) > > diff --git a/tests/kms_hdr.c b/tests/kms_hdr.c > index b215b0e6c..20838469b 100644 > --- a/tests/kms_hdr.c > +++ b/tests/kms_hdr.c > @@ -325,48 +325,41 @@ static void test_bpc_switch(data_t *data, uint32_t flags) > for_each_connected_output(display, output) { > igt_crtc_t *crtc; > > - if (!has_max_bpc(output)) { > - igt_info("%s: Doesn't support IGT_CONNECTOR_MAX_BPC.\n", > - igt_output_name(output)); > - continue; > - } > - > - if (igt_get_output_max_bpc(output) < 10) { > - igt_info("%s: Doesn't support 10 bpc.\n", igt_output_name(output)); > - continue; > - } > - > for_each_crtc(display, crtc) { > - igt_output_set_crtc(output, > - crtc); > - if (!intel_pipe_output_combo_valid(display)) { > - igt_output_set_crtc(output, NULL); > - continue; > - } > - > for (int i = 0; i < ARRAY_SIZE(hdr_test_formats); i++) { > - prepare_test(data, output, > - crtc); > - > - if (is_intel_device(data->fd) && > - !igt_max_bpc_constraint(display, crtc, output, 10)) { > - igt_info("%s: No suitable mode found to use 10 bpc.\n", > - igt_output_name(output)); > - > - test_fini(data); > - break; > - } > - > - data->mode = igt_output_get_mode(output); > - data->w = data->mode->hdisplay; > - data->h = data->mode->vdisplay; > - > igt_dynamic_f("pipe-%s-%s-%s", > igt_crtc_name(crtc), output->name, > - igt_format_str(hdr_test_formats[i])) > - test_bpc_switch_on_output(data, > - crtc, > - output, hdr_test_formats[i], flags); > + igt_format_str(hdr_test_formats[i])) { > + igt_require_f(has_max_bpc(output), > + "%s: Doesn't support IGT_CONNECTOR_MAX_BPC.\n", > + igt_output_name(output)); > + > + igt_require_f(igt_get_output_max_bpc(output) >= 10, > + "%s: Doesn't support 10 bpc.\n", > + igt_output_name(output)); > + > + prepare_test(data, output, crtc); > + > + igt_require_f(intel_pipe_output_combo_valid(display), > + "pipe-%s-%s: combo invalid.\n", > + igt_crtc_name(crtc), output->name); This needs to loop again if it fails rather than completely skipping here if the first combo turns out to be invalid. > + > + if (is_intel_device(data->fd)) > + igt_require_f(igt_max_bpc_constraint(display, > + crtc, > + output, > + 10), > + "%s: No suitable mode found to " > + "use 10 bpc.\n", > + igt_output_name(output)); > + > + data->mode = igt_output_get_mode(output); > + data->w = data->mode->hdisplay; > + data->h = data->mode->vdisplay; > + > + test_bpc_switch_on_output(data, crtc, output, > + hdr_test_formats[i], flags); > + } Please add 'test_fini' some place after the test is done(outside the dynamic subtest scope), so that in case of dynamic test failure display reset is handled gracefully. > } > > /* One pipe is enough */ > @@ -725,88 +718,76 @@ static void test_hdr(data_t *data, uint32_t flags) > for_each_connected_output(display, output) { > igt_crtc_t *crtc; > > - /* To test HDR, 10 bpc is required, so we need to > - * set MAX_BPC property to 10bpc prior to setting > - * HDR metadata property. Therefore, checking. > - */ > - if (!has_max_bpc(output) || !has_hdr(output)) { > - igt_info("%s: Doesn't support IGT_CONNECTOR_MAX_BPC or IGT_CONNECTOR_HDR_OUTPUT_METADATA.\n", > - igt_output_name(output)); > - continue; > - } > - > - /* For negative test, panel should be non-hdr. */ > - if ((flags & TEST_INVALID_HDR) && is_panel_hdr(data, output)) { > - igt_info("%s: Can't run negative test on HDR panel.\n", > - igt_output_name(output)); > - continue; > - } > - > - if ((flags & ~TEST_INVALID_HDR) && !is_panel_hdr(data, output)) { > - igt_info("%s: Can't run HDR tests on non-HDR panel.\n", > - igt_output_name(output)); > - continue; > - } > - > - if (igt_get_output_max_bpc(output) < 10) { > - igt_info("%s: Doesn't support 10 bpc.\n", igt_output_name(output)); > - continue; > - } > - > - if ((flags & TEST_BRIGHTNESS) && !output_is_internal_panel(output)) { > - igt_info("%s: Can't run brightness test on non-internal panel.\n", > - igt_output_name(output)); > - continue; > - } > - > for_each_crtc(display, crtc) { > - igt_output_set_crtc(output, > - crtc); > - if (!intel_pipe_output_combo_valid(display)) { > - igt_output_set_crtc(output, NULL); > - continue; > - } > - > for (int i = 0; i < ARRAY_SIZE(hdr_test_formats); i++) { > - prepare_test(data, output, > - crtc); > - > - /* Signal HDR requirement via metadata */ > - fill_hdr_output_metadata_st2084(&hdr); > - set_hdr_output_metadata(data, &hdr); > - if (igt_display_try_commit2(display, display->is_atomic ? > - COMMIT_ATOMIC : COMMIT_LEGACY)) { > - igt_info("%s: Couldn't set HDR metadata\n", > - igt_output_name(output)); > - test_fini(data); > - break; > - } > - > - if (is_intel_device(data->fd) && > - !igt_max_bpc_constraint(display, crtc, output, 10)) { > - igt_info("%s: No suitable mode found to use 10 bpc.\n", > - igt_output_name(output)); > - > - test_fini(data); > - break; > - } > - > - if (igt_is_dsc_enabled(data->fd, output->name)) > - flags |= TEST_NEEDS_DSC; > - else > - flags &= ~TEST_NEEDS_DSC; > - > - set_hdr_output_metadata(data, NULL); > - igt_display_commit2(display, display->is_atomic ? > - COMMIT_ATOMIC : COMMIT_LEGACY); > - > - data->mode = igt_output_get_mode(output); > - data->w = data->mode->hdisplay; > - data->h = data->mode->vdisplay; > - > igt_dynamic_f("pipe-%s-%s-%s", > igt_crtc_name(crtc), output->name, > igt_format_str(hdr_test_formats[i])) { > + igt_require_f(has_max_bpc(output) && has_hdr(output), > + "%s: Doesn't support IGT_CONNECTOR_MAX_BPC " > + "or IGT_CONNECTOR_HDR_OUTPUT_METADATA.\n", > + igt_output_name(output)); > + > + if (flags & TEST_INVALID_HDR) > + igt_require_f(!is_panel_hdr(data, output), > + "%s: Can't run negative test on " > + "HDR panel.\n", > + igt_output_name(output)); > + > + if (!(flags & TEST_INVALID_HDR)) > + igt_require_f(is_panel_hdr(data, output), > + "%s: Can't run HDR tests on " > + "non-HDR panel.\n", > + igt_output_name(output)); > + > + igt_require_f(igt_get_output_max_bpc(output) >= 10, > + "%s: Doesn't support 10 bpc.\n", > + igt_output_name(output)); > + > + if (flags & TEST_BRIGHTNESS) > + igt_require_f(output_is_internal_panel(output), > + "%s: Can't run brightness test on " > + "non-internal panel.\n", > + igt_output_name(output)); > + > + prepare_test(data, output, crtc); > + > + igt_require_f(intel_pipe_output_combo_valid(display), > + "pipe-%s-%s: combo invalid.\n", > + igt_crtc_name(crtc), output->name); Same as above here. Regards, Karthik.B.S > + > + /* Signal HDR requirement via metadata */ > + fill_hdr_output_metadata_st2084(&hdr); > + set_hdr_output_metadata(data, &hdr); > + igt_require_f(!igt_display_try_commit2(display, > + display->is_atomic ? > + COMMIT_ATOMIC : > + COMMIT_LEGACY), > + "%s: Couldn't set HDR metadata\n", > + igt_output_name(output)); > + > + if (is_intel_device(data->fd)) > + igt_require_f(igt_max_bpc_constraint(display, > + crtc, > + output, > + 10), > + "%s: No suitable mode found to " > + "use 10 bpc.\n", > + igt_output_name(output)); > + > + if (igt_is_dsc_enabled(data->fd, output->name)) > + flags |= TEST_NEEDS_DSC; > + else > + flags &= ~TEST_NEEDS_DSC; > + > + set_hdr_output_metadata(data, NULL); > + igt_display_commit2(display, display->is_atomic ? > + COMMIT_ATOMIC : COMMIT_LEGACY); > + > + data->mode = igt_output_get_mode(output); > + data->w = data->mode->hdisplay; > + data->h = data->mode->vdisplay; > + > if (flags & (TEST_NONE | TEST_DPMS | TEST_SUSPEND | > TEST_INVALID_HDR | TEST_BRIGHTNESS)) > test_static_toggle(data, ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2026-04-29 4:18 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-04-27 14:49 [PATCH i-g-t] tests/kms_hdr: Move capability checks inside dynamic subtests Pranay Samala 2026-04-28 0:18 ` ✗ i915.CI.BAT: failure for " Patchwork 2026-04-28 1:31 ` ✓ Xe.CI.BAT: success " Patchwork 2026-04-28 9:10 ` ✗ Xe.CI.FULL: failure " Patchwork 2026-04-29 4:17 ` [PATCH i-g-t] " Karthik B S
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox