* [PATCH i-g-t] tests/kms_color: Add multi-format coverage for pipe color tests
@ 2026-04-20 16:22 Pranay Samala
2026-04-21 20:04 ` ✓ i915.CI.BAT: success for " Patchwork
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Pranay Samala @ 2026-04-20 16:22 UTC (permalink / raw)
To: igt-dev; +Cc: karthik.b.s, sameer.lattannavar, pranay.samala
Extend kms_color tests to run across multiple pixel formats at dynamic
subtest level instead of being limited to single format for gamma/degamma
and CTM tests.
For platforms where only a single format is relevant (e.g. 10-bit
paths), limit the iteration accordingly to avoid redundant testing.
This improves coverage for format-dependent pipe color pipeline
behavior.
Signed-off-by: Pranay Samala <pranay.samala@intel.com>
---
tests/kms_color.c | 224 +++++++++++++++++++++++++++++-----------------
1 file changed, 143 insertions(+), 81 deletions(-)
diff --git a/tests/kms_color.c b/tests/kms_color.c
index 565edb2dc..7c64f2dde 100644
--- a/tests/kms_color.c
+++ b/tests/kms_color.c
@@ -78,6 +78,15 @@
IGT_TEST_DESCRIPTION("Test Color Features at Pipe level");
+static const struct {
+ const char *name;
+ uint32_t format;
+} formats[] = {
+ { "RGB", DRM_FORMAT_XRGB8888 },
+ { "YUYV", DRM_FORMAT_YUYV },
+ { "NV12", DRM_FORMAT_NV12 },
+};
+
static bool test_pipe_degamma(data_t *data,
igt_plane_t *primary)
{
@@ -104,20 +113,28 @@ static bool test_pipe_degamma(data_t *data,
igt_output_override_mode(output, mode);
/* Create a framebuffer at the size of the output. */
- fb_id = igt_create_fb(data->drm_fd,
- mode->hdisplay,
- mode->vdisplay,
- data->drm_format,
- DRM_FORMAT_MOD_LINEAR,
- &fb);
+ fb_id = igt_create_fb_with_bo_size(data->drm_fd,
+ mode->hdisplay,
+ mode->vdisplay,
+ data->drm_format,
+ DRM_FORMAT_MOD_LINEAR,
+ IGT_COLOR_YCBCR_BT709,
+ IGT_COLOR_YCBCR_FULL_RANGE,
+ &fb,
+ 0,
+ 0);
igt_assert(fb_id);
- fb_modeset_id = igt_create_fb(data->drm_fd,
- mode->hdisplay,
- mode->vdisplay,
- data->drm_format,
- DRM_FORMAT_MOD_LINEAR,
- &fb_modeset);
+ fb_modeset_id = igt_create_fb_with_bo_size(data->drm_fd,
+ mode->hdisplay,
+ mode->vdisplay,
+ data->drm_format,
+ DRM_FORMAT_MOD_LINEAR,
+ IGT_COLOR_YCBCR_BT709,
+ IGT_COLOR_YCBCR_FULL_RANGE,
+ &fb_modeset,
+ 0,
+ 0);
igt_assert(fb_modeset_id);
igt_plane_set_fb(primary, &fb_modeset);
@@ -191,20 +208,28 @@ static bool test_pipe_gamma(data_t *data,
igt_output_override_mode(output, mode);
/* Create a framebuffer at the size of the output. */
- fb_id = igt_create_fb(data->drm_fd,
- mode->hdisplay,
- mode->vdisplay,
- data->drm_format,
- DRM_FORMAT_MOD_LINEAR,
- &fb);
+ fb_id = igt_create_fb_with_bo_size(data->drm_fd,
+ mode->hdisplay,
+ mode->vdisplay,
+ data->drm_format,
+ DRM_FORMAT_MOD_LINEAR,
+ IGT_COLOR_YCBCR_BT709,
+ IGT_COLOR_YCBCR_FULL_RANGE,
+ &fb,
+ 0,
+ 0);
igt_assert(fb_id);
- fb_modeset_id = igt_create_fb(data->drm_fd,
- mode->hdisplay,
- mode->vdisplay,
- data->drm_format,
- DRM_FORMAT_MOD_LINEAR,
- &fb_modeset);
+ fb_modeset_id = igt_create_fb_with_bo_size(data->drm_fd,
+ mode->hdisplay,
+ mode->vdisplay,
+ data->drm_format,
+ DRM_FORMAT_MOD_LINEAR,
+ IGT_COLOR_YCBCR_BT709,
+ IGT_COLOR_YCBCR_FULL_RANGE,
+ &fb_modeset,
+ 0,
+ 0);
igt_assert(fb_modeset_id);
igt_plane_set_fb(primary, &fb_modeset);
@@ -285,20 +310,28 @@ static bool test_pipe_legacy_gamma(data_t *data,
igt_output_override_mode(output, mode);
/* Create a framebuffer at the size of the output. */
- fb_id = igt_create_fb(data->drm_fd,
- mode->hdisplay,
- mode->vdisplay,
- DRM_FORMAT_XRGB8888,
- DRM_FORMAT_MOD_LINEAR,
- &fb);
+ fb_id = igt_create_fb_with_bo_size(data->drm_fd,
+ mode->hdisplay,
+ mode->vdisplay,
+ DRM_FORMAT_XRGB8888,
+ DRM_FORMAT_MOD_LINEAR,
+ IGT_COLOR_YCBCR_BT709,
+ IGT_COLOR_YCBCR_FULL_RANGE,
+ &fb,
+ 0,
+ 0);
igt_assert(fb_id);
- fb_modeset_id = igt_create_fb(data->drm_fd,
- mode->hdisplay,
- mode->vdisplay,
- DRM_FORMAT_XRGB8888,
- DRM_FORMAT_MOD_LINEAR,
- &fb_modeset);
+ fb_modeset_id = igt_create_fb_with_bo_size(data->drm_fd,
+ mode->hdisplay,
+ mode->vdisplay,
+ DRM_FORMAT_XRGB8888,
+ DRM_FORMAT_MOD_LINEAR,
+ IGT_COLOR_YCBCR_BT709,
+ IGT_COLOR_YCBCR_FULL_RANGE,
+ &fb_modeset,
+ 0,
+ 0);
igt_assert(fb_modeset_id);
igt_plane_set_fb(primary, &fb_modeset);
@@ -520,20 +553,28 @@ static bool test_pipe_ctm(data_t *data,
igt_output_override_mode(output, mode);
/* Create a framebuffer at the size of the output. */
- fb_id = igt_create_fb(data->drm_fd,
- mode->hdisplay,
- mode->vdisplay,
- data->drm_format,
- DRM_FORMAT_MOD_LINEAR,
- &fb);
+ fb_id = igt_create_fb_with_bo_size(data->drm_fd,
+ mode->hdisplay,
+ mode->vdisplay,
+ data->drm_format,
+ DRM_FORMAT_MOD_LINEAR,
+ IGT_COLOR_YCBCR_BT709,
+ IGT_COLOR_YCBCR_FULL_RANGE,
+ &fb,
+ 0,
+ 0);
igt_assert(fb_id);
- fb_modeset_id = igt_create_fb(data->drm_fd,
- mode->hdisplay,
- mode->vdisplay,
- data->drm_format,
- DRM_FORMAT_MOD_LINEAR,
- &fb_modeset);
+ fb_modeset_id = igt_create_fb_with_bo_size(data->drm_fd,
+ mode->hdisplay,
+ mode->vdisplay,
+ data->drm_format,
+ DRM_FORMAT_MOD_LINEAR,
+ IGT_COLOR_YCBCR_BT709,
+ IGT_COLOR_YCBCR_FULL_RANGE,
+ &fb_modeset,
+ 0,
+ 0);
igt_assert(fb_modeset_id);
igt_plane_set_fb(primary, &fb_modeset);
@@ -759,12 +800,23 @@ run_gamma_degamma_tests_for_crtc(data_t *data, igt_crtc_t *crtc,
* for CRC checks with framebuffer references.
*/
data->color_depth = 8;
- data->drm_format = DRM_FORMAT_XRGB8888;
data->mode = igt_output_get_mode(data->output);
igt_require(crtc_output_combo_valid(data, crtc));
- igt_assert(test_t(data, data->primary));
+ for (int i = 0; i < ARRAY_SIZE(formats); i++) {
+ igt_dynamic_f("pipe-%s-%s-%s", igt_crtc_name(crtc),
+ igt_output_name(data->output),
+ formats[i].name) {
+ if (!igt_plane_has_format_mod(data->primary, formats[i].format,
+ DRM_FORMAT_MOD_LINEAR))
+ continue;
+ igt_info("Running on " IGT_FORMAT_FMT " format\n",
+ IGT_FORMAT_ARGS(formats[i].format));
+ data->drm_format = formats[i].format;
+ igt_assert(test_t(data, data->primary));
+ }
+ }
test_cleanup(data);
}
@@ -784,10 +836,10 @@ run_ctm_tests_for_crtc(data_t *data, igt_crtc_t *crtc,
const double *ctm,
int iter)
{
- bool success = false;
+ bool success;
bool depth_10bit = false;
double delta;
- int i;
+ int i, n_formats;
test_setup(data, crtc);
@@ -801,7 +853,6 @@ run_ctm_tests_for_crtc(data_t *data, igt_crtc_t *crtc,
*/
data->color_depth = depth_10bit ? 10 : 8;
delta = 1.0 / (1 << data->color_depth);
- data->drm_format = depth_10bit ? DRM_FORMAT_XRGB2101010 : DRM_FORMAT_XRGB8888;
data->mode = igt_output_get_mode(data->output);
igt_require(crtc_output_combo_valid(data, crtc));
@@ -815,24 +866,39 @@ run_ctm_tests_for_crtc(data_t *data, igt_crtc_t *crtc,
* get clamped or rounded values and we also need to account
* for odd number of items in the LUTs.
*/
- for (i = 0; i < iter; i++) {
- color_t expected_colors[3] = {
- fb_colors[0],
- fb_colors[1],
- fb_colors[2],
- };
-
- transform_color(&expected_colors[0], ctm, delta * (i - (iter / 2)));
- transform_color(&expected_colors[1], ctm, delta * (i - (iter / 2)));
- transform_color(&expected_colors[2], ctm, delta * (i - (iter / 2)));
-
- if (test_pipe_ctm(data, data->primary, fb_colors,
- expected_colors, ctm)) {
- success = true;
- break;
+ n_formats = depth_10bit ? 1 : ARRAY_SIZE(formats);
+
+ for (int fi = 0; fi < n_formats; fi++) {
+ igt_dynamic_f("pipe-%s-%s-%s", igt_crtc_name(crtc),
+ igt_output_name(data->output),
+ depth_10bit ? "XRGB2101010" : formats[fi].name) {
+ success = false;
+ data->drm_format = depth_10bit ? DRM_FORMAT_XRGB2101010 :
+ formats[fi].format;
+
+ if (!igt_plane_has_format_mod(data->primary, data->drm_format,
+ DRM_FORMAT_MOD_LINEAR))
+ continue;
+ for (i = 0; i < iter; i++) {
+ color_t expected_colors[3] = {
+ fb_colors[0],
+ fb_colors[1],
+ fb_colors[2],
+ };
+
+ transform_color(&expected_colors[0], ctm, delta * (i - (iter / 2)));
+ transform_color(&expected_colors[1], ctm, delta * (i - (iter / 2)));
+ transform_color(&expected_colors[2], ctm, delta * (i - (iter / 2)));
+
+ if (test_pipe_ctm(data, data->primary, fb_colors,
+ expected_colors, ctm)) {
+ success = true;
+ break;
+ }
+ }
+ igt_assert(success);
}
}
- igt_assert(success);
test_cleanup(data);
}
@@ -1126,11 +1192,9 @@ run_tests_for_pipe(data_t *data)
igt_describe_f("%s", gamma_degamma_tests[i].desc);
igt_subtest_with_dynamic_f("%s", gamma_degamma_tests[i].name) {
for_each_crtc_with_valid_output(&data->display, crtc, data->output) {
- igt_dynamic_f("pipe-%s-%s", igt_crtc_name(crtc),
- igt_output_name(data->output))
- run_gamma_degamma_tests_for_crtc(data,
- crtc,
- gamma_degamma_tests[i].test_t);
+ run_gamma_degamma_tests_for_crtc(data,
+ crtc,
+ gamma_degamma_tests[i].test_t);
}
}
}
@@ -1139,13 +1203,11 @@ run_tests_for_pipe(data_t *data)
igt_describe_f("%s", ctm_tests[i].desc);
igt_subtest_with_dynamic_f("%s", ctm_tests[i].name) {
for_each_crtc_with_valid_output(&data->display, crtc, data->output) {
- igt_dynamic_f("pipe-%s-%s", igt_crtc_name(crtc),
- igt_output_name(data->output))
- run_ctm_tests_for_crtc(data,
- crtc,
- ctm_tests[i].fb_colors,
- ctm_tests[i].ctm,
- ctm_tests[i].iter);
+ run_ctm_tests_for_crtc(data,
+ crtc,
+ ctm_tests[i].fb_colors,
+ ctm_tests[i].ctm,
+ ctm_tests[i].iter);
if (igt_run_in_simulation())
break;
}
--
2.34.1
^ permalink raw reply related [flat|nested] 4+ messages in thread* ✓ i915.CI.BAT: success for tests/kms_color: Add multi-format coverage for pipe color tests
2026-04-20 16:22 [PATCH i-g-t] tests/kms_color: Add multi-format coverage for pipe color tests Pranay Samala
@ 2026-04-21 20:04 ` Patchwork
2026-04-21 21:18 ` ✓ Xe.CI.BAT: " Patchwork
2026-04-22 1:27 ` ✗ Xe.CI.FULL: failure " Patchwork
2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2026-04-21 20:04 UTC (permalink / raw)
To: Pranay Samala; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 6211 bytes --]
== Series Details ==
Series: tests/kms_color: Add multi-format coverage for pipe color tests
URL : https://patchwork.freedesktop.org/series/165178/
State : success
== Summary ==
CI Bug Log - changes from IGT_8865 -> IGTPW_15023
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15023/index.html
Participating hosts (40 -> 40)
------------------------------
Additional (1): bat-adls-6
Missing (1): bat-dg2-13
Known issues
------------
Here are the changes found in IGTPW_15023 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@dmabuf@all-tests:
- bat-adls-6: NOTRUN -> [SKIP][1] ([i915#15931])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15023/bat-adls-6/igt@dmabuf@all-tests.html
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-adls-6: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15023/bat-adls-6/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_tiled_pread_basic@basic:
- bat-adls-6: NOTRUN -> [SKIP][3] ([i915#15656])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15023/bat-adls-6/igt@gem_tiled_pread_basic@basic.html
* igt@i915_selftest@live@workarounds:
- bat-dg2-14: [PASS][4] -> [DMESG-FAIL][5] ([i915#12061]) +1 other test dmesg-fail
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/bat-dg2-14/igt@i915_selftest@live@workarounds.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15023/bat-dg2-14/igt@i915_selftest@live@workarounds.html
- bat-mtlp-9: [PASS][6] -> [DMESG-FAIL][7] ([i915#12061]) +1 other test dmesg-fail
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15023/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
- bat-arls-6: [PASS][8] -> [DMESG-FAIL][9] ([i915#12061]) +1 other test dmesg-fail
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/bat-arls-6/igt@i915_selftest@live@workarounds.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15023/bat-arls-6/igt@i915_selftest@live@workarounds.html
* igt@intel_hwmon@hwmon-read:
- bat-adls-6: NOTRUN -> [SKIP][10] ([i915#7707]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15023/bat-adls-6/igt@intel_hwmon@hwmon-read.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-adls-6: NOTRUN -> [SKIP][11] ([i915#4103]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15023/bat-adls-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-adls-6: NOTRUN -> [SKIP][12] ([i915#3555] / [i915#3840])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15023/bat-adls-6/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-adls-6: NOTRUN -> [SKIP][13]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15023/bat-adls-6/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_pm_backlight@basic-brightness:
- bat-adls-6: NOTRUN -> [SKIP][14] ([i915#5354])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15023/bat-adls-6/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-primary-mmap-gtt:
- bat-adls-6: NOTRUN -> [SKIP][15] ([i915#1072] / [i915#9732]) +3 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15023/bat-adls-6/igt@kms_psr@psr-primary-mmap-gtt.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-adls-6: NOTRUN -> [SKIP][16] ([i915#3555])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15023/bat-adls-6/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-read:
- bat-adls-6: NOTRUN -> [SKIP][17] ([i915#3291]) +2 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15023/bat-adls-6/igt@prime_vgem@basic-fence-read.html
#### Possible fixes ####
* igt@i915_selftest@live:
- fi-bsw-n3050: [DMESG-FAIL][18] ([i915#14808]) -> [PASS][19] +1 other test pass
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/fi-bsw-n3050/igt@i915_selftest@live.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15023/fi-bsw-n3050/igt@i915_selftest@live.html
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#14808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14808
[i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656
[i915#15931]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8865 -> IGTPW_15023
* Linux: CI_DRM_18350 -> CI_DRM_18352
CI-20190529: 20190529
CI_DRM_18350: 898b5aa235c5b269d6c745fd84270b296aa75469 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_18352: 33d3b65ec51f2bddafa26a80249e26c78435f169 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15023: d3ebe2af896d7192b07def82e8842bd574a18d82 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8865: 1c23bc1bdf01bf0ded2344cb217d7fe88de3b726 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15023/index.html
[-- Attachment #2: Type: text/html, Size: 7374 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread* ✓ Xe.CI.BAT: success for tests/kms_color: Add multi-format coverage for pipe color tests
2026-04-20 16:22 [PATCH i-g-t] tests/kms_color: Add multi-format coverage for pipe color tests Pranay Samala
2026-04-21 20:04 ` ✓ i915.CI.BAT: success for " Patchwork
@ 2026-04-21 21:18 ` Patchwork
2026-04-22 1:27 ` ✗ Xe.CI.FULL: failure " Patchwork
2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2026-04-21 21:18 UTC (permalink / raw)
To: Pranay Samala; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3475 bytes --]
== Series Details ==
Series: tests/kms_color: Add multi-format coverage for pipe color tests
URL : https://patchwork.freedesktop.org/series/165178/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8865_BAT -> XEIGTPW_15023_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 13)
------------------------------
Additional (1): bat-ptl-vm
Known issues
------------
Here are the changes found in XEIGTPW_15023_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_evict@evict-beng-small-cm:
- bat-ptl-vm: NOTRUN -> [SKIP][1] ([Intel XE#5764]) +10 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/bat-ptl-vm/igt@xe_evict@evict-beng-small-cm.html
* igt@xe_exec_balancer@twice-parallel-basic:
- bat-ptl-vm: NOTRUN -> [SKIP][2] ([Intel XE#7482]) +17 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/bat-ptl-vm/igt@xe_exec_balancer@twice-parallel-basic.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- bat-ptl-vm: NOTRUN -> [SKIP][3] ([Intel XE#5775])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/bat-ptl-vm/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_mmap@vram:
- bat-ptl-vm: NOTRUN -> [SKIP][4] ([Intel XE#5776])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/bat-ptl-vm/igt@xe_mmap@vram.html
* igt@xe_pat@pat-index-xehpc:
- bat-ptl-vm: NOTRUN -> [SKIP][5] ([Intel XE#5777] / [Intel XE#7590])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/bat-ptl-vm/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelp:
- bat-ptl-vm: NOTRUN -> [SKIP][6] ([Intel XE#5771] / [Intel XE#7590])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/bat-ptl-vm/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- bat-ptl-vm: NOTRUN -> [SKIP][7] ([Intel XE#5780] / [Intel XE#7590])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/bat-ptl-vm/igt@xe_pat@pat-index-xelpg.html
[Intel XE#5764]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5764
[Intel XE#5771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5771
[Intel XE#5775]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5775
[Intel XE#5776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5776
[Intel XE#5777]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5777
[Intel XE#5780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5780
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
Build changes
-------------
* IGT: IGT_8865 -> IGTPW_15023
* Linux: xe-4921-898b5aa235c5b269d6c745fd84270b296aa75469 -> xe-4923-33d3b65ec51f2bddafa26a80249e26c78435f169
IGTPW_15023: d3ebe2af896d7192b07def82e8842bd574a18d82 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8865: 1c23bc1bdf01bf0ded2344cb217d7fe88de3b726 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4921-898b5aa235c5b269d6c745fd84270b296aa75469: 898b5aa235c5b269d6c745fd84270b296aa75469
xe-4923-33d3b65ec51f2bddafa26a80249e26c78435f169: 33d3b65ec51f2bddafa26a80249e26c78435f169
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/index.html
[-- Attachment #2: Type: text/html, Size: 4334 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread* ✗ Xe.CI.FULL: failure for tests/kms_color: Add multi-format coverage for pipe color tests
2026-04-20 16:22 [PATCH i-g-t] tests/kms_color: Add multi-format coverage for pipe color tests Pranay Samala
2026-04-21 20:04 ` ✓ i915.CI.BAT: success for " Patchwork
2026-04-21 21:18 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-04-22 1:27 ` Patchwork
2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2026-04-22 1:27 UTC (permalink / raw)
To: Pranay Samala; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 64710 bytes --]
== Series Details ==
Series: tests/kms_color: Add multi-format coverage for pipe color tests
URL : https://patchwork.freedesktop.org/series/165178/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8865_FULL -> XEIGTPW_15023_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_15023_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_15023_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_15023_FULL:
### IGT changes ###
#### Possible regressions ####
* {igt@kms_color@ctm-green-to-red@pipe-c-dp-2-nv12} (NEW):
- shard-bmg: NOTRUN -> [FAIL][1] +141 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-8/igt@kms_color@ctm-green-to-red@pipe-c-dp-2-nv12.html
* igt@kms_color@ctm-negative:
- shard-lnl: [PASS][2] -> [FAIL][3] +9 other tests fail
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-lnl-8/igt@kms_color@ctm-negative.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-lnl-4/igt@kms_color@ctm-negative.html
* {igt@kms_color@ctm-signed@pipe-c-edp-1-yuyv} (NEW):
- shard-lnl: NOTRUN -> [FAIL][4] +57 other tests fail
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-lnl-6/igt@kms_color@ctm-signed@pipe-c-edp-1-yuyv.html
* igt@kms_color@gamma:
- shard-bmg: [PASS][5] -> [FAIL][6] +6 other tests fail
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-1/igt@kms_color@gamma.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-9/igt@kms_color@gamma.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-bmg: NOTRUN -> [SKIP][7] +3 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-9/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
New tests
---------
New tests have been introduced between XEIGT_8865_FULL and XEIGTPW_15023_FULL:
### New IGT tests (324) ###
* igt@kms_color@ctm-0-25@pipe-a-dp-2-nv12:
- Statuses : 1 fail(s)
- Exec time: [3.68] s
* igt@kms_color@ctm-0-25@pipe-a-dp-2-rgb:
- Statuses : 1 pass(s)
- Exec time: [1.67] s
* igt@kms_color@ctm-0-25@pipe-a-dp-2-yuyv:
- Statuses : 1 fail(s)
- Exec time: [4.10] s
* igt@kms_color@ctm-0-25@pipe-a-hdmi-a-3-nv12:
- Statuses : 1 fail(s)
- Exec time: [3.49] s
* igt@kms_color@ctm-0-25@pipe-a-hdmi-a-3-rgb:
- Statuses : 1 pass(s)
- Exec time: [1.38] s
* igt@kms_color@ctm-0-25@pipe-a-hdmi-a-3-yuyv:
- Statuses : 1 fail(s)
- Exec time: [3.88] s
* igt@kms_color@ctm-0-25@pipe-b-dp-2-nv12:
- Statuses : 1 fail(s)
- Exec time: [3.71] s
* igt@kms_color@ctm-0-25@pipe-b-dp-2-rgb:
- Statuses : 1 pass(s)
- Exec time: [1.48] s
* igt@kms_color@ctm-0-25@pipe-b-dp-2-yuyv:
- Statuses : 1 fail(s)
- Exec time: [4.06] s
* igt@kms_color@ctm-0-25@pipe-b-hdmi-a-3-nv12:
- Statuses : 1 fail(s)
- Exec time: [3.51] s
* igt@kms_color@ctm-0-25@pipe-b-hdmi-a-3-rgb:
- Statuses : 1 pass(s)
- Exec time: [1.39] s
* igt@kms_color@ctm-0-25@pipe-b-hdmi-a-3-yuyv:
- Statuses : 1 fail(s)
- Exec time: [3.88] s
* igt@kms_color@ctm-0-25@pipe-c-dp-2-nv12:
- Statuses : 1 fail(s)
- Exec time: [3.68] s
* igt@kms_color@ctm-0-25@pipe-c-dp-2-rgb:
- Statuses : 1 pass(s)
- Exec time: [1.52] s
* igt@kms_color@ctm-0-25@pipe-c-dp-2-yuyv:
- Statuses : 1 fail(s)
- Exec time: [4.04] s
* igt@kms_color@ctm-0-25@pipe-c-hdmi-a-3-nv12:
- Statuses : 1 fail(s)
- Exec time: [3.56] s
* igt@kms_color@ctm-0-25@pipe-c-hdmi-a-3-rgb:
- Statuses : 1 pass(s)
- Exec time: [1.37] s
* igt@kms_color@ctm-0-25@pipe-c-hdmi-a-3-yuyv:
- Statuses : 1 fail(s)
- Exec time: [3.88] s
* igt@kms_color@ctm-0-25@pipe-d-dp-2-nv12:
- Statuses : 1 fail(s)
- Exec time: [3.71] s
* igt@kms_color@ctm-0-25@pipe-d-dp-2-rgb:
- Statuses : 1 pass(s)
- Exec time: [1.46] s
* igt@kms_color@ctm-0-25@pipe-d-dp-2-yuyv:
- Statuses : 1 fail(s)
- Exec time: [4.06] s
* igt@kms_color@ctm-0-25@pipe-d-hdmi-a-3-nv12:
- Statuses : 1 fail(s)
- Exec time: [3.50] s
* igt@kms_color@ctm-0-25@pipe-d-hdmi-a-3-rgb:
- Statuses : 1 pass(s)
- Exec time: [1.39] s
* igt@kms_color@ctm-0-25@pipe-d-hdmi-a-3-yuyv:
- Statuses : 1 fail(s)
- Exec time: [3.92] s
* igt@kms_color@ctm-0-50@pipe-a-dp-2-nv12:
- Statuses : 1 fail(s)
- Exec time: [3.68] s
* igt@kms_color@ctm-0-50@pipe-a-dp-2-rgb:
- Statuses : 1 pass(s)
- Exec time: [1.68] s
* igt@kms_color@ctm-0-50@pipe-a-dp-2-yuyv:
- Statuses : 1 fail(s)
- Exec time: [4.15] s
* igt@kms_color@ctm-0-50@pipe-a-edp-1-nv12:
- Statuses : 1 fail(s)
- Exec time: [8.10] s
* igt@kms_color@ctm-0-50@pipe-a-edp-1-rgb:
- Statuses : 1 pass(s)
- Exec time: [4.13] s
* igt@kms_color@ctm-0-50@pipe-a-edp-1-yuyv:
- Statuses : 1 fail(s)
- Exec time: [8.30] s
* igt@kms_color@ctm-0-50@pipe-a-hdmi-a-3-nv12:
- Statuses : 1 fail(s)
- Exec time: [3.53] s
* igt@kms_color@ctm-0-50@pipe-a-hdmi-a-3-rgb:
- Statuses : 1 pass(s)
- Exec time: [1.41] s
* igt@kms_color@ctm-0-50@pipe-a-hdmi-a-3-yuyv:
- Statuses : 1 fail(s)
- Exec time: [3.89] s
* igt@kms_color@ctm-0-50@pipe-b-dp-2-nv12:
- Statuses : 1 fail(s)
- Exec time: [3.69] s
* igt@kms_color@ctm-0-50@pipe-b-dp-2-rgb:
- Statuses : 1 pass(s)
- Exec time: [1.48] s
* igt@kms_color@ctm-0-50@pipe-b-dp-2-yuyv:
- Statuses : 1 fail(s)
- Exec time: [4.07] s
* igt@kms_color@ctm-0-50@pipe-b-edp-1-nv12:
- Statuses : 1 fail(s)
- Exec time: [8.26] s
* igt@kms_color@ctm-0-50@pipe-b-edp-1-rgb:
- Statuses : 1 pass(s)
- Exec time: [4.74] s
* igt@kms_color@ctm-0-50@pipe-b-edp-1-yuyv:
- Statuses : 1 fail(s)
- Exec time: [7.97] s
* igt@kms_color@ctm-0-50@pipe-b-hdmi-a-3-nv12:
- Statuses : 1 fail(s)
- Exec time: [3.58] s
* igt@kms_color@ctm-0-50@pipe-b-hdmi-a-3-rgb:
- Statuses : 1 pass(s)
- Exec time: [1.40] s
* igt@kms_color@ctm-0-50@pipe-b-hdmi-a-3-yuyv:
- Statuses : 1 fail(s)
- Exec time: [3.94] s
* igt@kms_color@ctm-0-50@pipe-c-dp-2-nv12:
- Statuses : 1 fail(s)
- Exec time: [3.67] s
* igt@kms_color@ctm-0-50@pipe-c-dp-2-rgb:
- Statuses : 1 pass(s)
- Exec time: [1.50] s
* igt@kms_color@ctm-0-50@pipe-c-dp-2-yuyv:
- Statuses : 1 fail(s)
- Exec time: [4.05] s
* igt@kms_color@ctm-0-50@pipe-c-edp-1-nv12:
- Statuses : 1 fail(s)
- Exec time: [7.95] s
* igt@kms_color@ctm-0-50@pipe-c-edp-1-rgb:
- Statuses : 1 pass(s)
- Exec time: [4.67] s
* igt@kms_color@ctm-0-50@pipe-c-edp-1-yuyv:
- Statuses : 1 fail(s)
- Exec time: [7.98] s
* igt@kms_color@ctm-0-50@pipe-c-hdmi-a-3-nv12:
- Statuses : 1 fail(s)
- Exec time: [3.55] s
* igt@kms_color@ctm-0-50@pipe-c-hdmi-a-3-rgb:
- Statuses : 1 pass(s)
- Exec time: [1.38] s
* igt@kms_color@ctm-0-50@pipe-c-hdmi-a-3-yuyv:
- Statuses : 1 fail(s)
- Exec time: [3.90] s
* igt@kms_color@ctm-0-50@pipe-d-dp-2-nv12:
- Statuses : 1 fail(s)
- Exec time: [3.69] s
* igt@kms_color@ctm-0-50@pipe-d-dp-2-rgb:
- Statuses : 1 pass(s)
- Exec time: [1.47] s
* igt@kms_color@ctm-0-50@pipe-d-dp-2-yuyv:
- Statuses : 1 fail(s)
- Exec time: [4.07] s
* igt@kms_color@ctm-0-50@pipe-d-hdmi-a-3-nv12:
- Statuses : 1 fail(s)
- Exec time: [3.50] s
* igt@kms_color@ctm-0-50@pipe-d-hdmi-a-3-rgb:
- Statuses : 1 pass(s)
- Exec time: [1.40] s
* igt@kms_color@ctm-0-50@pipe-d-hdmi-a-3-yuyv:
- Statuses : 1 fail(s)
- Exec time: [3.93] s
* igt@kms_color@ctm-0-75@pipe-a-dp-2-nv12:
- Statuses : 1 fail(s)
- Exec time: [5.16] s
* igt@kms_color@ctm-0-75@pipe-a-dp-2-rgb:
- Statuses : 1 pass(s)
- Exec time: [2.12] s
* igt@kms_color@ctm-0-75@pipe-a-dp-2-yuyv:
- Statuses : 1 fail(s)
- Exec time: [5.76] s
* igt@kms_color@ctm-0-75@pipe-a-edp-1-nv12:
- Statuses : 1 fail(s)
- Exec time: [11.30] s
* igt@kms_color@ctm-0-75@pipe-a-edp-1-rgb:
- Statuses : 1 pass(s)
- Exec time: [5.83] s
* igt@kms_color@ctm-0-75@pipe-a-edp-1-yuyv:
- Statuses : 1 fail(s)
- Exec time: [11.21] s
* igt@kms_color@ctm-0-75@pipe-a-hdmi-a-3-nv12:
- Statuses : 1 fail(s)
- Exec time: [4.97] s
* igt@kms_color@ctm-0-75@pipe-a-hdmi-a-3-rgb:
- Statuses : 1 pass(s)
- Exec time: [1.82] s
* igt@kms_color@ctm-0-75@pipe-a-hdmi-a-3-yuyv:
- Statuses : 1 fail(s)
- Exec time: [5.45] s
* igt@kms_color@ctm-0-75@pipe-b-dp-2-nv12:
- Statuses : 1 fail(s)
- Exec time: [5.17] s
* igt@kms_color@ctm-0-75@pipe-b-dp-2-rgb:
- Statuses : 1 pass(s)
- Exec time: [1.94] s
* igt@kms_color@ctm-0-75@pipe-b-dp-2-yuyv:
- Statuses : 1 fail(s)
- Exec time: [5.66] s
* igt@kms_color@ctm-0-75@pipe-b-edp-1-nv12:
- Statuses : 1 fail(s)
- Exec time: [11.19] s
* igt@kms_color@ctm-0-75@pipe-b-edp-1-rgb:
- Statuses : 1 pass(s)
- Exec time: [6.43] s
* igt@kms_color@ctm-0-75@pipe-b-edp-1-yuyv:
- Statuses : 1 fail(s)
- Exec time: [11.48] s
* igt@kms_color@ctm-0-75@pipe-b-hdmi-a-3-nv12:
- Statuses : 1 fail(s)
- Exec time: [4.96] s
* igt@kms_color@ctm-0-75@pipe-b-hdmi-a-3-rgb:
- Statuses : 1 pass(s)
- Exec time: [1.83] s
* igt@kms_color@ctm-0-75@pipe-b-hdmi-a-3-yuyv:
- Statuses : 1 fail(s)
- Exec time: [5.44] s
* igt@kms_color@ctm-0-75@pipe-c-dp-2-nv12:
- Statuses : 1 fail(s)
- Exec time: [5.14] s
* igt@kms_color@ctm-0-75@pipe-c-dp-2-rgb:
- Statuses : 1 pass(s)
- Exec time: [1.94] s
* igt@kms_color@ctm-0-75@pipe-c-dp-2-yuyv:
- Statuses : 1 fail(s)
- Exec time: [5.64] s
* igt@kms_color@ctm-0-75@pipe-c-edp-1-nv12:
- Statuses : 1 fail(s)
- Exec time: [11.16] s
* igt@kms_color@ctm-0-75@pipe-c-edp-1-rgb:
- Statuses : 1 pass(s)
- Exec time: [6.21] s
* igt@kms_color@ctm-0-75@pipe-c-edp-1-yuyv:
- Statuses : 1 fail(s)
- Exec time: [11.10] s
* igt@kms_color@ctm-0-75@pipe-c-hdmi-a-3-nv12:
- Statuses : 1 fail(s)
- Exec time: [4.97] s
* igt@kms_color@ctm-0-75@pipe-c-hdmi-a-3-rgb:
- Statuses : 1 pass(s)
- Exec time: [1.80] s
* igt@kms_color@ctm-0-75@pipe-c-hdmi-a-3-yuyv:
- Statuses : 1 fail(s)
- Exec time: [5.45] s
* igt@kms_color@ctm-0-75@pipe-d-dp-2-nv12:
- Statuses : 1 fail(s)
- Exec time: [5.15] s
* igt@kms_color@ctm-0-75@pipe-d-dp-2-rgb:
- Statuses : 1 pass(s)
- Exec time: [1.95] s
* igt@kms_color@ctm-0-75@pipe-d-dp-2-yuyv:
- Statuses : 1 fail(s)
- Exec time: [5.65] s
* igt@kms_color@ctm-0-75@pipe-d-hdmi-a-3-nv12:
- Statuses : 1 fail(s)
- Exec time: [4.97] s
* igt@kms_color@ctm-0-75@pipe-d-hdmi-a-3-rgb:
- Statuses : 1 pass(s)
- Exec time: [1.82] s
* igt@kms_color@ctm-0-75@pipe-d-hdmi-a-3-yuyv:
- Statuses : 1 fail(s)
- Exec time: [5.47] s
* igt@kms_color@ctm-blue-to-red@pipe-a-dp-2-nv12:
- Statuses : 1 fail(s)
- Exec time: [2.22] s
* igt@kms_color@ctm-blue-to-red@pipe-a-dp-2-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.71] s
* igt@kms_color@ctm-blue-to-red@pipe-a-dp-2-yuyv:
- Statuses : 1 fail(s)
- Exec time: [0.89] s
* igt@kms_color@ctm-blue-to-red@pipe-a-edp-1-nv12:
- Statuses : 1 fail(s)
- Exec time: [1.63] s
* igt@kms_color@ctm-blue-to-red@pipe-a-edp-1-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.99] s
* igt@kms_color@ctm-blue-to-red@pipe-a-edp-1-yuyv:
- Statuses : 1 fail(s)
- Exec time: [1.62] s
* igt@kms_color@ctm-blue-to-red@pipe-a-hdmi-a-3-nv12:
- Statuses : 1 fail(s)
- Exec time: [2.54] s
* igt@kms_color@ctm-blue-to-red@pipe-a-hdmi-a-3-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.51] s
* igt@kms_color@ctm-blue-to-red@pipe-a-hdmi-a-3-yuyv:
- Statuses : 1 fail(s)
- Exec time: [0.81] s
* igt@kms_color@ctm-blue-to-red@pipe-b-dp-2-nv12:
- Statuses : 1 fail(s)
- Exec time: [3.13] s
* igt@kms_color@ctm-blue-to-red@pipe-b-dp-2-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.54] s
* igt@kms_color@ctm-blue-to-red@pipe-b-dp-2-yuyv:
- Statuses : 1 fail(s)
- Exec time: [0.80] s
* igt@kms_color@ctm-blue-to-red@pipe-b-edp-1-nv12:
- Statuses : 1 fail(s)
- Exec time: [1.60] s
* igt@kms_color@ctm-blue-to-red@pipe-b-edp-1-rgb:
- Statuses : 1 pass(s)
- Exec time: [1.59] s
* igt@kms_color@ctm-blue-to-red@pipe-b-edp-1-yuyv:
- Statuses : 1 fail(s)
- Exec time: [1.62] s
* igt@kms_color@ctm-blue-to-red@pipe-b-hdmi-a-3-nv12:
- Statuses : 1 fail(s)
- Exec time: [3.06] s
* igt@kms_color@ctm-blue-to-red@pipe-b-hdmi-a-3-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.52] s
* igt@kms_color@ctm-blue-to-red@pipe-b-hdmi-a-3-yuyv:
- Statuses : 1 fail(s)
- Exec time: [0.78] s
* igt@kms_color@ctm-blue-to-red@pipe-c-dp-2-nv12:
- Statuses : 1 fail(s)
- Exec time: [3.08] s
* igt@kms_color@ctm-blue-to-red@pipe-c-dp-2-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.55] s
* igt@kms_color@ctm-blue-to-red@pipe-c-dp-2-yuyv:
- Statuses : 1 fail(s)
- Exec time: [0.82] s
* igt@kms_color@ctm-blue-to-red@pipe-c-edp-1-nv12:
- Statuses : 1 fail(s)
- Exec time: [1.63] s
* igt@kms_color@ctm-blue-to-red@pipe-c-edp-1-rgb:
- Statuses : 1 pass(s)
- Exec time: [1.48] s
* igt@kms_color@ctm-blue-to-red@pipe-c-edp-1-yuyv:
- Statuses : 1 fail(s)
- Exec time: [1.67] s
* igt@kms_color@ctm-blue-to-red@pipe-c-hdmi-a-3-nv12:
- Statuses : 1 fail(s)
- Exec time: [0.87] s
* igt@kms_color@ctm-blue-to-red@pipe-c-hdmi-a-3-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.52] s
* igt@kms_color@ctm-blue-to-red@pipe-c-hdmi-a-3-yuyv:
- Statuses : 1 fail(s)
- Exec time: [3.19] s
* igt@kms_color@ctm-blue-to-red@pipe-d-dp-2-nv12:
- Statuses : 1 fail(s)
- Exec time: [0.93] s
* igt@kms_color@ctm-blue-to-red@pipe-d-dp-2-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.53] s
* igt@kms_color@ctm-blue-to-red@pipe-d-dp-2-yuyv:
- Statuses : 1 fail(s)
- Exec time: [3.23] s
* igt@kms_color@ctm-blue-to-red@pipe-d-hdmi-a-3-nv12:
- Statuses : 1 fail(s)
- Exec time: [2.37] s
* igt@kms_color@ctm-blue-to-red@pipe-d-hdmi-a-3-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.51] s
* igt@kms_color@ctm-blue-to-red@pipe-d-hdmi-a-3-yuyv:
- Statuses : 1 fail(s)
- Exec time: [0.78] s
* igt@kms_color@ctm-green-to-red@pipe-a-dp-2-nv12:
- Statuses : 1 fail(s)
- Exec time: [3.02] s
* igt@kms_color@ctm-green-to-red@pipe-a-dp-2-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.72] s
* igt@kms_color@ctm-green-to-red@pipe-a-dp-2-yuyv:
- Statuses : 1 fail(s)
- Exec time: [0.89] s
* igt@kms_color@ctm-green-to-red@pipe-a-edp-1-nv12:
- Statuses : 1 fail(s)
- Exec time: [1.63] s
* igt@kms_color@ctm-green-to-red@pipe-a-edp-1-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.94] s
* igt@kms_color@ctm-green-to-red@pipe-a-edp-1-yuyv:
- Statuses : 1 fail(s)
- Exec time: [1.66] s
* igt@kms_color@ctm-green-to-red@pipe-a-hdmi-a-3-nv12:
- Statuses : 1 fail(s)
- Exec time: [2.27] s
* igt@kms_color@ctm-green-to-red@pipe-a-hdmi-a-3-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.51] s
* igt@kms_color@ctm-green-to-red@pipe-a-hdmi-a-3-yuyv:
- Statuses : 1 fail(s)
- Exec time: [0.80] s
* igt@kms_color@ctm-green-to-red@pipe-b-dp-2-nv12:
- Statuses : 1 fail(s)
- Exec time: [2.23] s
* igt@kms_color@ctm-green-to-red@pipe-b-dp-2-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.55] s
* igt@kms_color@ctm-green-to-red@pipe-b-dp-2-yuyv:
- Statuses : 1 fail(s)
- Exec time: [0.81] s
* igt@kms_color@ctm-green-to-red@pipe-b-edp-1-nv12:
- Statuses : 1 fail(s)
- Exec time: [1.63] s
* igt@kms_color@ctm-green-to-red@pipe-b-edp-1-rgb:
- Statuses : 1 pass(s)
- Exec time: [1.58] s
* igt@kms_color@ctm-green-to-red@pipe-b-edp-1-yuyv:
- Statuses : 1 fail(s)
- Exec time: [1.70] s
* igt@kms_color@ctm-green-to-red@pipe-b-hdmi-a-3-nv12:
- Statuses : 1 fail(s)
- Exec time: [2.12] s
* igt@kms_color@ctm-green-to-red@pipe-b-hdmi-a-3-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.52] s
* igt@kms_color@ctm-green-to-red@pipe-b-hdmi-a-3-yuyv:
- Statuses : 1 fail(s)
- Exec time: [0.78] s
* igt@kms_color@ctm-green-to-red@pipe-c-dp-2-nv12:
- Statuses : 1 fail(s)
- Exec time: [2.84] s
* igt@kms_color@ctm-green-to-red@pipe-c-dp-2-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.55] s
* igt@kms_color@ctm-green-to-red@pipe-c-dp-2-yuyv:
- Statuses : 1 fail(s)
- Exec time: [0.82] s
* igt@kms_color@ctm-green-to-red@pipe-c-edp-1-nv12:
- Statuses : 1 fail(s)
- Exec time: [1.59] s
* igt@kms_color@ctm-green-to-red@pipe-c-edp-1-rgb:
- Statuses : 1 pass(s)
- Exec time: [1.49] s
* igt@kms_color@ctm-green-to-red@pipe-c-edp-1-yuyv:
- Statuses : 1 fail(s)
- Exec time: [1.49] s
* igt@kms_color@ctm-green-to-red@pipe-c-hdmi-a-3-nv12:
- Statuses : 1 fail(s)
- Exec time: [2.30] s
* igt@kms_color@ctm-green-to-red@pipe-c-hdmi-a-3-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.52] s
* igt@kms_color@ctm-green-to-red@pipe-c-hdmi-a-3-yuyv:
- Statuses : 1 fail(s)
- Exec time: [0.78] s
* igt@kms_color@ctm-green-to-red@pipe-d-dp-2-nv12:
- Statuses : 1 fail(s)
- Exec time: [2.12] s
* igt@kms_color@ctm-green-to-red@pipe-d-dp-2-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.54] s
* igt@kms_color@ctm-green-to-red@pipe-d-dp-2-yuyv:
- Statuses : 1 fail(s)
- Exec time: [0.79] s
* igt@kms_color@ctm-green-to-red@pipe-d-hdmi-a-3-nv12:
- Statuses : 1 fail(s)
- Exec time: [2.61] s
* igt@kms_color@ctm-green-to-red@pipe-d-hdmi-a-3-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.50] s
* igt@kms_color@ctm-green-to-red@pipe-d-hdmi-a-3-yuyv:
- Statuses : 1 fail(s)
- Exec time: [0.78] s
* igt@kms_color@ctm-max@pipe-a-dp-2-nv12:
- Statuses : 1 fail(s)
- Exec time: [2.87] s
* igt@kms_color@ctm-max@pipe-a-dp-2-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.71] s
* igt@kms_color@ctm-max@pipe-a-dp-2-yuyv:
- Statuses : 1 fail(s)
- Exec time: [0.89] s
* igt@kms_color@ctm-max@pipe-a-edp-1-nv12:
- Statuses : 1 fail(s)
- Exec time: [1.66] s
* igt@kms_color@ctm-max@pipe-a-edp-1-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.99] s
* igt@kms_color@ctm-max@pipe-a-edp-1-yuyv:
- Statuses : 1 fail(s)
- Exec time: [1.70] s
* igt@kms_color@ctm-max@pipe-a-hdmi-a-3-nv12:
- Statuses : 1 fail(s)
- Exec time: [2.52] s
* igt@kms_color@ctm-max@pipe-a-hdmi-a-3-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.51] s
* igt@kms_color@ctm-max@pipe-a-hdmi-a-3-yuyv:
- Statuses : 1 fail(s)
- Exec time: [0.78] s
* igt@kms_color@ctm-max@pipe-b-dp-2-nv12:
- Statuses : 1 fail(s)
- Exec time: [3.08] s
* igt@kms_color@ctm-max@pipe-b-dp-2-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.57] s
* igt@kms_color@ctm-max@pipe-b-dp-2-yuyv:
- Statuses : 1 fail(s)
- Exec time: [0.82] s
* igt@kms_color@ctm-max@pipe-b-edp-1-nv12:
- Statuses : 1 fail(s)
- Exec time: [1.65] s
* igt@kms_color@ctm-max@pipe-b-edp-1-rgb:
- Statuses : 1 pass(s)
- Exec time: [1.61] s
* igt@kms_color@ctm-max@pipe-b-edp-1-yuyv:
- Statuses : 1 fail(s)
- Exec time: [1.62] s
* igt@kms_color@ctm-max@pipe-b-hdmi-a-3-nv12:
- Statuses : 1 fail(s)
- Exec time: [2.51] s
* igt@kms_color@ctm-max@pipe-b-hdmi-a-3-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.52] s
* igt@kms_color@ctm-max@pipe-b-hdmi-a-3-yuyv:
- Statuses : 1 fail(s)
- Exec time: [0.79] s
* igt@kms_color@ctm-max@pipe-c-dp-2-nv12:
- Statuses : 1 fail(s)
- Exec time: [2.44] s
* igt@kms_color@ctm-max@pipe-c-dp-2-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.55] s
* igt@kms_color@ctm-max@pipe-c-dp-2-yuyv:
- Statuses : 1 fail(s)
- Exec time: [0.81] s
* igt@kms_color@ctm-max@pipe-c-edp-1-nv12:
- Statuses : 1 fail(s)
- Exec time: [1.67] s
* igt@kms_color@ctm-max@pipe-c-edp-1-rgb:
- Statuses : 1 pass(s)
- Exec time: [1.51] s
* igt@kms_color@ctm-max@pipe-c-edp-1-yuyv:
- Statuses : 1 pass(s)
- Exec time: [1.55] s
* igt@kms_color@ctm-max@pipe-c-hdmi-a-3-nv12:
- Statuses : 1 fail(s)
- Exec time: [2.49] s
* igt@kms_color@ctm-max@pipe-c-hdmi-a-3-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.52] s
* igt@kms_color@ctm-max@pipe-c-hdmi-a-3-yuyv:
- Statuses : 1 fail(s)
- Exec time: [0.78] s
* igt@kms_color@ctm-max@pipe-d-dp-2-nv12:
- Statuses : 1 fail(s)
- Exec time: [0.72] s
* igt@kms_color@ctm-max@pipe-d-dp-2-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.53] s
* igt@kms_color@ctm-max@pipe-d-dp-2-yuyv:
- Statuses : 1 pass(s)
- Exec time: [0.82] s
* igt@kms_color@ctm-max@pipe-d-hdmi-a-3-nv12:
- Statuses : 1 fail(s)
- Exec time: [0.69] s
* igt@kms_color@ctm-max@pipe-d-hdmi-a-3-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.52] s
* igt@kms_color@ctm-max@pipe-d-hdmi-a-3-yuyv:
- Statuses : 1 pass(s)
- Exec time: [0.77] s
* igt@kms_color@ctm-negative@pipe-a-edp-1-nv12:
- Statuses : 1 fail(s)
- Exec time: [1.63] s
* igt@kms_color@ctm-negative@pipe-a-edp-1-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.96] s
* igt@kms_color@ctm-negative@pipe-a-edp-1-yuyv:
- Statuses : 1 fail(s)
- Exec time: [1.64] s
* igt@kms_color@ctm-negative@pipe-b-edp-1-nv12:
- Statuses : 1 fail(s)
- Exec time: [1.57] s
* igt@kms_color@ctm-negative@pipe-b-edp-1-rgb:
- Statuses : 1 pass(s)
- Exec time: [1.60] s
* igt@kms_color@ctm-negative@pipe-b-edp-1-yuyv:
- Statuses : 1 fail(s)
- Exec time: [1.64] s
* igt@kms_color@ctm-negative@pipe-c-edp-1-nv12:
- Statuses : 1 fail(s)
- Exec time: [1.55] s
* igt@kms_color@ctm-negative@pipe-c-edp-1-rgb:
- Statuses : 1 pass(s)
- Exec time: [1.54] s
* igt@kms_color@ctm-negative@pipe-c-edp-1-yuyv:
- Statuses : 1 fail(s)
- Exec time: [1.60] s
* igt@kms_color@ctm-red-to-blue@pipe-a-edp-1-nv12:
- Statuses : 1 fail(s)
- Exec time: [1.67] s
* igt@kms_color@ctm-red-to-blue@pipe-a-edp-1-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.92] s
* igt@kms_color@ctm-red-to-blue@pipe-a-edp-1-yuyv:
- Statuses : 1 fail(s)
- Exec time: [1.66] s
* igt@kms_color@ctm-red-to-blue@pipe-b-edp-1-nv12:
- Statuses : 1 fail(s)
- Exec time: [1.58] s
* igt@kms_color@ctm-red-to-blue@pipe-b-edp-1-rgb:
- Statuses : 1 pass(s)
- Exec time: [1.68] s
* igt@kms_color@ctm-red-to-blue@pipe-b-edp-1-yuyv:
- Statuses : 1 fail(s)
- Exec time: [1.63] s
* igt@kms_color@ctm-red-to-blue@pipe-c-edp-1-nv12:
- Statuses : 1 fail(s)
- Exec time: [1.57] s
* igt@kms_color@ctm-red-to-blue@pipe-c-edp-1-rgb:
- Statuses : 1 pass(s)
- Exec time: [1.50] s
* igt@kms_color@ctm-red-to-blue@pipe-c-edp-1-yuyv:
- Statuses : 1 fail(s)
- Exec time: [1.60] s
* igt@kms_color@ctm-signed@pipe-a-dp-2-nv12:
- Statuses : 1 fail(s)
- Exec time: [4.05] s
* igt@kms_color@ctm-signed@pipe-a-dp-2-rgb:
- Statuses : 1 pass(s)
- Exec time: [1.20] s
* igt@kms_color@ctm-signed@pipe-a-dp-2-yuyv:
- Statuses : 1 fail(s)
- Exec time: [2.47] s
* igt@kms_color@ctm-signed@pipe-a-edp-1-nv12:
- Statuses : 1 fail(s)
- Exec time: [4.84] s
* igt@kms_color@ctm-signed@pipe-a-edp-1-rgb:
- Statuses : 1 pass(s)
- Exec time: [2.58] s
* igt@kms_color@ctm-signed@pipe-a-edp-1-yuyv:
- Statuses : 1 fail(s)
- Exec time: [4.82] s
* igt@kms_color@ctm-signed@pipe-a-hdmi-a-3-nv12:
- Statuses : 1 fail(s)
- Exec time: [3.54] s
* igt@kms_color@ctm-signed@pipe-a-hdmi-a-3-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.97] s
* igt@kms_color@ctm-signed@pipe-a-hdmi-a-3-yuyv:
- Statuses : 1 fail(s)
- Exec time: [2.35] s
* igt@kms_color@ctm-signed@pipe-b-dp-2-nv12:
- Statuses : 1 fail(s)
- Exec time: [2.20] s
* igt@kms_color@ctm-signed@pipe-b-dp-2-rgb:
- Statuses : 1 pass(s)
- Exec time: [1.02] s
* igt@kms_color@ctm-signed@pipe-b-dp-2-yuyv:
- Statuses : 1 fail(s)
- Exec time: [2.45] s
* igt@kms_color@ctm-signed@pipe-b-edp-1-nv12:
- Statuses : 1 fail(s)
- Exec time: [4.88] s
* igt@kms_color@ctm-signed@pipe-b-edp-1-rgb:
- Statuses : 1 pass(s)
- Exec time: [3.15] s
* igt@kms_color@ctm-signed@pipe-b-edp-1-yuyv:
- Statuses : 1 fail(s)
- Exec time: [4.93] s
* igt@kms_color@ctm-signed@pipe-b-hdmi-a-3-nv12:
- Statuses : 1 fail(s)
- Exec time: [3.55] s
* igt@kms_color@ctm-signed@pipe-b-hdmi-a-3-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.96] s
* igt@kms_color@ctm-signed@pipe-b-hdmi-a-3-yuyv:
- Statuses : 1 fail(s)
- Exec time: [2.33] s
* igt@kms_color@ctm-signed@pipe-c-dp-2-nv12:
- Statuses : 1 fail(s)
- Exec time: [4.20] s
* igt@kms_color@ctm-signed@pipe-c-dp-2-rgb:
- Statuses : 1 pass(s)
- Exec time: [1.03] s
* igt@kms_color@ctm-signed@pipe-c-dp-2-yuyv:
- Statuses : 1 fail(s)
- Exec time: [2.42] s
* igt@kms_color@ctm-signed@pipe-c-edp-1-nv12:
- Statuses : 1 fail(s)
- Exec time: [4.69] s
* igt@kms_color@ctm-signed@pipe-c-edp-1-rgb:
- Statuses : 1 pass(s)
- Exec time: [3.08] s
* igt@kms_color@ctm-signed@pipe-c-edp-1-yuyv:
- Statuses : 1 fail(s)
- Exec time: [4.91] s
* igt@kms_color@ctm-signed@pipe-c-hdmi-a-3-nv12:
- Statuses : 1 fail(s)
- Exec time: [3.90] s
* igt@kms_color@ctm-signed@pipe-c-hdmi-a-3-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.96] s
* igt@kms_color@ctm-signed@pipe-c-hdmi-a-3-yuyv:
- Statuses : 1 fail(s)
- Exec time: [2.33] s
* igt@kms_color@ctm-signed@pipe-d-dp-2-nv12:
- Statuses : 1 fail(s)
- Exec time: [3.72] s
* igt@kms_color@ctm-signed@pipe-d-dp-2-rgb:
- Statuses : 1 pass(s)
- Exec time: [1.11] s
* igt@kms_color@ctm-signed@pipe-d-dp-2-yuyv:
- Statuses : 1 fail(s)
- Exec time: [2.45] s
* igt@kms_color@ctm-signed@pipe-d-hdmi-a-3-nv12:
- Statuses : 1 fail(s)
- Exec time: [3.48] s
* igt@kms_color@ctm-signed@pipe-d-hdmi-a-3-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.95] s
* igt@kms_color@ctm-signed@pipe-d-hdmi-a-3-yuyv:
- Statuses : 1 fail(s)
- Exec time: [2.33] s
* igt@kms_color@degamma@pipe-a-dp-2-nv12:
- Statuses : 1 fail(s)
- Exec time: [0.73] s
* igt@kms_color@degamma@pipe-a-dp-2-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.77] s
* igt@kms_color@degamma@pipe-a-dp-2-yuyv:
- Statuses : 1 fail(s)
- Exec time: [0.89] s
* igt@kms_color@degamma@pipe-a-edp-1-nv12:
- Statuses : 1 fail(s)
- Exec time: [1.55] s
* igt@kms_color@degamma@pipe-a-edp-1-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.94] s
* igt@kms_color@degamma@pipe-a-edp-1-yuyv:
- Statuses : 1 fail(s)
- Exec time: [1.66] s
* igt@kms_color@degamma@pipe-a-hdmi-a-3-nv12:
- Statuses : 1 fail(s)
- Exec time: [0.71] s
* igt@kms_color@degamma@pipe-a-hdmi-a-3-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.51] s
* igt@kms_color@degamma@pipe-a-hdmi-a-3-yuyv:
- Statuses : 1 fail(s)
- Exec time: [0.78] s
* igt@kms_color@degamma@pipe-b-dp-2-nv12:
- Statuses : 1 fail(s)
- Exec time: [0.73] s
* igt@kms_color@degamma@pipe-b-dp-2-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.55] s
* igt@kms_color@degamma@pipe-b-dp-2-yuyv:
- Statuses : 1 fail(s)
- Exec time: [0.81] s
* igt@kms_color@degamma@pipe-b-edp-1-nv12:
- Statuses : 1 fail(s)
- Exec time: [1.65] s
* igt@kms_color@degamma@pipe-b-edp-1-rgb:
- Statuses : 1 pass(s)
- Exec time: [1.57] s
* igt@kms_color@degamma@pipe-b-edp-1-yuyv:
- Statuses : 1 fail(s)
- Exec time: [1.63] s
* igt@kms_color@degamma@pipe-b-hdmi-a-3-nv12:
- Statuses : 1 fail(s)
- Exec time: [0.71] s
* igt@kms_color@degamma@pipe-b-hdmi-a-3-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.52] s
* igt@kms_color@degamma@pipe-b-hdmi-a-3-yuyv:
- Statuses : 1 fail(s)
- Exec time: [0.78] s
* igt@kms_color@degamma@pipe-c-dp-2-nv12:
- Statuses : 1 fail(s)
- Exec time: [0.74] s
* igt@kms_color@degamma@pipe-c-dp-2-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.53] s
* igt@kms_color@degamma@pipe-c-dp-2-yuyv:
- Statuses : 1 fail(s)
- Exec time: [0.81] s
* igt@kms_color@degamma@pipe-c-edp-1-nv12:
- Statuses : 1 fail(s)
- Exec time: [1.55] s
* igt@kms_color@degamma@pipe-c-edp-1-rgb:
- Statuses : 1 pass(s)
- Exec time: [1.50] s
* igt@kms_color@degamma@pipe-c-edp-1-yuyv:
- Statuses : 1 fail(s)
- Exec time: [1.61] s
* igt@kms_color@degamma@pipe-c-hdmi-a-3-nv12:
- Statuses : 1 fail(s)
- Exec time: [0.71] s
* igt@kms_color@degamma@pipe-c-hdmi-a-3-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.50] s
* igt@kms_color@degamma@pipe-c-hdmi-a-3-yuyv:
- Statuses : 1 fail(s)
- Exec time: [0.78] s
* igt@kms_color@degamma@pipe-d-dp-2-nv12:
- Statuses : 1 fail(s)
- Exec time: [0.73] s
* igt@kms_color@degamma@pipe-d-dp-2-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.55] s
* igt@kms_color@degamma@pipe-d-dp-2-yuyv:
- Statuses : 1 fail(s)
- Exec time: [0.80] s
* igt@kms_color@degamma@pipe-d-hdmi-a-3-nv12:
- Statuses : 1 fail(s)
- Exec time: [0.70] s
* igt@kms_color@degamma@pipe-d-hdmi-a-3-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.51] s
* igt@kms_color@degamma@pipe-d-hdmi-a-3-yuyv:
- Statuses : 1 fail(s)
- Exec time: [0.78] s
* igt@kms_color@gamma@pipe-a-dp-2-nv12:
- Statuses : 1 fail(s)
- Exec time: [0.73] s
* igt@kms_color@gamma@pipe-a-dp-2-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.72] s
* igt@kms_color@gamma@pipe-a-dp-2-yuyv:
- Statuses : 1 pass(s)
- Exec time: [0.85] s
* igt@kms_color@gamma@pipe-a-edp-1-nv12:
- Statuses : 1 fail(s)
- Exec time: [1.54] s
* igt@kms_color@gamma@pipe-a-edp-1-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.91] s
* igt@kms_color@gamma@pipe-a-edp-1-yuyv:
- Statuses : 1 pass(s)
- Exec time: [1.66] s
* igt@kms_color@gamma@pipe-a-hdmi-a-3-nv12:
- Statuses : 1 fail(s)
- Exec time: [0.68] s
* igt@kms_color@gamma@pipe-a-hdmi-a-3-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.49] s
* igt@kms_color@gamma@pipe-a-hdmi-a-3-yuyv:
- Statuses : 1 pass(s)
- Exec time: [0.78] s
* igt@kms_color@gamma@pipe-b-dp-2-nv12:
- Statuses : 1 fail(s)
- Exec time: [3.13] s
* igt@kms_color@gamma@pipe-b-dp-2-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.53] s
* igt@kms_color@gamma@pipe-b-dp-2-yuyv:
- Statuses : 1 fail(s)
- Exec time: [2.58] s
* igt@kms_color@gamma@pipe-b-edp-1-nv12:
- Statuses : 1 fail(s)
- Exec time: [1.56] s
* igt@kms_color@gamma@pipe-b-edp-1-rgb:
- Statuses : 1 pass(s)
- Exec time: [1.55] s
* igt@kms_color@gamma@pipe-b-edp-1-yuyv:
- Statuses : 1 fail(s)
- Exec time: [1.62] s
* igt@kms_color@gamma@pipe-b-hdmi-a-3-nv12:
- Statuses : 1 fail(s)
- Exec time: [2.63] s
* igt@kms_color@gamma@pipe-b-hdmi-a-3-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.50] s
* igt@kms_color@gamma@pipe-b-hdmi-a-3-yuyv:
- Statuses : 1 fail(s)
- Exec time: [0.75] s
* igt@kms_color@gamma@pipe-c-dp-2-nv12:
- Statuses : 1 fail(s)
- Exec time: [3.02] s
* igt@kms_color@gamma@pipe-c-dp-2-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.54] s
* igt@kms_color@gamma@pipe-c-dp-2-yuyv:
- Statuses : 1 fail(s)
- Exec time: [0.79] s
* igt@kms_color@gamma@pipe-c-edp-1-nv12:
- Statuses : 1 fail(s)
- Exec time: [1.49] s
* igt@kms_color@gamma@pipe-c-edp-1-rgb:
- Statuses : 1 pass(s)
- Exec time: [1.50] s
* igt@kms_color@gamma@pipe-c-edp-1-yuyv:
- Statuses : 1 fail(s)
- Exec time: [1.58] s
* igt@kms_color@gamma@pipe-c-hdmi-a-3-nv12:
- Statuses : 1 fail(s)
- Exec time: [3.03] s
* igt@kms_color@gamma@pipe-c-hdmi-a-3-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.50] s
* igt@kms_color@gamma@pipe-c-hdmi-a-3-yuyv:
- Statuses : 1 fail(s)
- Exec time: [0.76] s
* igt@kms_color@gamma@pipe-d-dp-2-nv12:
- Statuses : 1 fail(s)
- Exec time: [2.44] s
* igt@kms_color@gamma@pipe-d-dp-2-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.53] s
* igt@kms_color@gamma@pipe-d-dp-2-yuyv:
- Statuses : 1 fail(s)
- Exec time: [0.78] s
* igt@kms_color@gamma@pipe-d-hdmi-a-3-nv12:
- Statuses : 1 fail(s)
- Exec time: [3.17] s
* igt@kms_color@gamma@pipe-d-hdmi-a-3-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.50] s
* igt@kms_color@gamma@pipe-d-hdmi-a-3-yuyv:
- Statuses : 1 fail(s)
- Exec time: [0.76] s
* igt@kms_color@legacy-gamma-reset@pipe-a-edp-1-nv12:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_color@legacy-gamma-reset@pipe-a-edp-1-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.42] s
* igt@kms_color@legacy-gamma-reset@pipe-a-edp-1-yuyv:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_color@legacy-gamma-reset@pipe-b-edp-1-nv12:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_color@legacy-gamma-reset@pipe-b-edp-1-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.01] s
* igt@kms_color@legacy-gamma-reset@pipe-b-edp-1-yuyv:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_color@legacy-gamma-reset@pipe-c-edp-1-nv12:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_color@legacy-gamma-reset@pipe-c-edp-1-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.01] s
* igt@kms_color@legacy-gamma-reset@pipe-c-edp-1-yuyv:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_color@legacy-gamma@pipe-a-edp-1-nv12:
- Statuses : 1 pass(s)
- Exec time: [1.68] s
* igt@kms_color@legacy-gamma@pipe-a-edp-1-rgb:
- Statuses : 1 pass(s)
- Exec time: [0.92] s
* igt@kms_color@legacy-gamma@pipe-a-edp-1-yuyv:
- Statuses : 1 pass(s)
- Exec time: [1.56] s
* igt@kms_color@legacy-gamma@pipe-b-edp-1-nv12:
- Statuses : 1 pass(s)
- Exec time: [1.59] s
* igt@kms_color@legacy-gamma@pipe-b-edp-1-rgb:
- Statuses : 1 pass(s)
- Exec time: [1.65] s
* igt@kms_color@legacy-gamma@pipe-b-edp-1-yuyv:
- Statuses : 1 pass(s)
- Exec time: [1.62] s
* igt@kms_color@legacy-gamma@pipe-c-edp-1-nv12:
- Statuses : 1 pass(s)
- Exec time: [1.47] s
* igt@kms_color@legacy-gamma@pipe-c-edp-1-rgb:
- Statuses : 1 pass(s)
- Exec time: [1.52] s
* igt@kms_color@legacy-gamma@pipe-c-edp-1-yuyv:
- Statuses : 1 pass(s)
- Exec time: [1.53] s
Known issues
------------
Here are the changes found in XEIGTPW_15023_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2327]) +5 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-5/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#607] / [Intel XE#7361])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-10/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#610] / [Intel XE#7387])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-7/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#1124]) +6 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-10/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#367] / [Intel XE#7354])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-10/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2887]) +11 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-2/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2252]) +6 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-8/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][15] ([Intel XE#3304] / [Intel XE#7374]) +1 other test fail
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-8/igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2.html
* igt@kms_content_protection@dp-mst-type-1-suspend-resume:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#6974])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-1/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
* igt@kms_content_protection@suspend-resume@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][17] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +3 other tests fail
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-5/igt@kms_content_protection@suspend-resume@pipe-a-dp-2.html
* igt@kms_content_protection@uevent:
- shard-bmg: NOTRUN -> [FAIL][18] ([Intel XE#6707] / [Intel XE#7439]) +1 other test fail
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-9/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-random-64x21:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2320]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-2/igt@kms_cursor_crc@cursor-random-64x21.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2321] / [Intel XE#7355])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-5/igt@kms_cursor_crc@cursor-rapid-movement-512x512.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_15023/shard-bmg-9/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#4331] / [Intel XE#7227])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-8/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2244]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-10/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_feature_discovery@chamelium:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2372] / [Intel XE#7359])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-9/igt@kms_feature_discovery@chamelium.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [PASS][25] -> [FAIL][26] ([Intel XE#301]) +1 other test fail
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@plain-flip-fb-recreate@d-hdmi-a3:
- shard-bmg: [PASS][27] -> [ABORT][28] ([Intel XE#5545] / [Intel XE#6652]) +1 other test abort
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-10/igt@kms_flip@plain-flip-fb-recreate@d-hdmi-a3.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-2/igt@kms_flip@plain-flip-fb-recreate@d-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#7178] / [Intel XE#7351]) +3 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-9/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#7178] / [Intel XE#7349])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2311]) +22 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-10/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#4141]) +15 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-render:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#7061] / [Intel XE#7356]) +3 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2313]) +19 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#6911] / [Intel XE#7466])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#4090] / [Intel XE#7443])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-9/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#7283])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-10/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html
* igt@kms_plane_multiple@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#5020] / [Intel XE#7348])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-2/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2938] / [Intel XE#7376])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-9/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-10/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#1489]) +7 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-8/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2387] / [Intel XE#7429])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-10/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-primary-page-flip:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2234] / [Intel XE#2850]) +8 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-5/igt@kms_psr@fbc-pr-primary-page-flip.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#3904] / [Intel XE#7342]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#1435])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-8/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_sharpness_filter@filter-tap:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#6503]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-2/igt@kms_sharpness_filter@filter-tap.html
* igt@kms_vrr@flip-suspend:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#1499]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-8/igt@kms_vrr@flip-suspend.html
* igt@xe_eudebug@vma-ufence:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#7636]) +14 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-2/igt@xe_eudebug@vma-ufence.html
* igt@xe_evict@evict-small-multi-queue:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#7140])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-1/igt@xe_evict@evict-small-multi-queue.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2322] / [Intel XE#7372]) +5 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html
* igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-prefetch:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#7136]) +11 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-9/igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-prefetch.html
* igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-priority:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#6874]) +24 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-5/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-priority.html
* igt@xe_exec_threads@threads-multi-queue-cm-rebind:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#7138]) +5 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-9/igt@xe_exec_threads@threads-multi-queue-cm-rebind.html
* igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#6281] / [Intel XE#7426])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-8/igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add.html
* igt@xe_module_load@load:
- shard-bmg: ([PASS][55], [PASS][56], [PASS][57], [PASS][58], [PASS][59], [PASS][60], [PASS][61], [PASS][62], [PASS][63], [PASS][64], [PASS][65], [PASS][66], [PASS][67], [PASS][68], [PASS][69], [PASS][70], [PASS][71], [PASS][72], [PASS][73], [PASS][74], [PASS][75]) -> ([PASS][76], [PASS][77], [DMESG-WARN][78], [PASS][79], [PASS][80], [PASS][81], [PASS][82], [PASS][83], [PASS][84], [PASS][85], [PASS][86], [PASS][87], [PASS][88], [DMESG-WARN][89], [PASS][90], [PASS][91], [PASS][92], [SKIP][93], [PASS][94], [PASS][95], [PASS][96], [PASS][97]) ([Intel XE#2457] / [Intel XE#7405] / [Intel XE#7725])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-9/igt@xe_module_load@load.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-8/igt@xe_module_load@load.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-3/igt@xe_module_load@load.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-1/igt@xe_module_load@load.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-3/igt@xe_module_load@load.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-1/igt@xe_module_load@load.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-1/igt@xe_module_load@load.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-5/igt@xe_module_load@load.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-10/igt@xe_module_load@load.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-10/igt@xe_module_load@load.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-10/igt@xe_module_load@load.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-2/igt@xe_module_load@load.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-8/igt@xe_module_load@load.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-7/igt@xe_module_load@load.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-2/igt@xe_module_load@load.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-5/igt@xe_module_load@load.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-5/igt@xe_module_load@load.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-6/igt@xe_module_load@load.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-6/igt@xe_module_load@load.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-7/igt@xe_module_load@load.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-9/igt@xe_module_load@load.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-10/igt@xe_module_load@load.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-8/igt@xe_module_load@load.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-6/igt@xe_module_load@load.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-9/igt@xe_module_load@load.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-5/igt@xe_module_load@load.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-1/igt@xe_module_load@load.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-10/igt@xe_module_load@load.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-10/igt@xe_module_load@load.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-5/igt@xe_module_load@load.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-7/igt@xe_module_load@load.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-8/igt@xe_module_load@load.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-1/igt@xe_module_load@load.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-8/igt@xe_module_load@load.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-6/igt@xe_module_load@load.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-2/igt@xe_module_load@load.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-2/igt@xe_module_load@load.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-2/igt@xe_module_load@load.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-5/igt@xe_module_load@load.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-9/igt@xe_module_load@load.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-7/igt@xe_module_load@load.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-7/igt@xe_module_load@load.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-9/igt@xe_module_load@load.html
* igt@xe_multigpu_svm@mgpu-pagefault-basic:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#6964]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-7/igt@xe_multigpu_svm@mgpu-pagefault-basic.html
* igt@xe_non_msix@walker-interrupt-notification-non-msix:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#7622])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-10/igt@xe_non_msix@walker-interrupt-notification-non-msix.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2284] / [Intel XE#7370])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-8/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_prefetch_fault@prefetch-fault-svm:
- shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#7599])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-7/igt@xe_prefetch_fault@prefetch-fault-svm.html
* igt@xe_pxp@pxp-termination-key-update-post-suspend:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#4733] / [Intel XE#7417]) +2 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-9/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
* igt@xe_query@multigpu-query-uc-fw-version-guc:
- shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#944])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-10/igt@xe_query@multigpu-query-uc-fw-version-guc.html
* igt@xe_sriov_flr@flr-twice:
- shard-bmg: [PASS][104] -> [FAIL][105] ([Intel XE#6569])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-8/igt@xe_sriov_flr@flr-twice.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-5/igt@xe_sriov_flr@flr-twice.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-bmg: NOTRUN -> [DMESG-WARN][106] ([Intel XE#5545])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-5/igt@xe_wedged@wedged-at-any-timeout.html
#### Possible fixes ####
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [FAIL][107] ([Intel XE#7571]) -> [PASS][108]
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-9/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@xe_prime_self_import@export-vs-gem_close-race:
- shard-bmg: [DMESG-WARN][109] ([Intel XE#7725]) -> [PASS][110]
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-6/igt@xe_prime_self_import@export-vs-gem_close-race.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-10/igt@xe_prime_self_import@export-vs-gem_close-race.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-bmg: [FAIL][111] ([Intel XE#6569]) -> [PASS][112]
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-10/igt@xe_sriov_flr@flr-vfs-parallel.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-1/igt@xe_sriov_flr@flr-vfs-parallel.html
#### Warnings ####
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-bmg: [INCOMPLETE][113] ([Intel XE#2594] / [Intel XE#5643]) -> [SKIP][114] ([Intel XE#1124])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][115] ([Intel XE#3544]) -> [SKIP][116] ([Intel XE#3374] / [Intel XE#3544])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/shard-bmg-7/igt@kms_hdr@brightness-with-hdr.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#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[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#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#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594
[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#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[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#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[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#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5643]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5643
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#6281]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6281
[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#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
[Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
[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#7227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7227
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348
[Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354
[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#7359]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7359
[Intel XE#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361
[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#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
[Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
[Intel XE#7387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7387
[Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7426
[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#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439
[Intel XE#7443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7443
[Intel XE#7466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7466
[Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
[Intel XE#7599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7599
[Intel XE#7622]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7622
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7725
[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_8865 -> IGTPW_15023
* Linux: xe-4921-898b5aa235c5b269d6c745fd84270b296aa75469 -> xe-4923-33d3b65ec51f2bddafa26a80249e26c78435f169
IGTPW_15023: d3ebe2af896d7192b07def82e8842bd574a18d82 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8865: 1c23bc1bdf01bf0ded2344cb217d7fe88de3b726 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4921-898b5aa235c5b269d6c745fd84270b296aa75469: 898b5aa235c5b269d6c745fd84270b296aa75469
xe-4923-33d3b65ec51f2bddafa26a80249e26c78435f169: 33d3b65ec51f2bddafa26a80249e26c78435f169
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15023/index.html
[-- Attachment #2: Type: text/html, Size: 79506 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2026-04-22 1:28 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-20 16:22 [PATCH i-g-t] tests/kms_color: Add multi-format coverage for pipe color tests Pranay Samala
2026-04-21 20:04 ` ✓ i915.CI.BAT: success for " Patchwork
2026-04-21 21:18 ` ✓ Xe.CI.BAT: " Patchwork
2026-04-22 1:27 ` ✗ Xe.CI.FULL: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox