* [PATCH i-g-t v2] tests/kms_plane: Implement dynamic level execution across multiple planes
@ 2024-05-22 5:11 Pranay Samala
2024-05-22 6:01 ` ✗ Fi.CI.BAT: failure for tests/kms_plane: Implement dynamic level execution across multiple planes (rev2) Patchwork
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Pranay Samala @ 2024-05-22 5:11 UTC (permalink / raw)
To: igt-dev; +Cc: karthik.b.s, jeevan.b, sameer.lattannavar, pranay.samala
The test runs on all pipes on dynamic level to test all the supported
pixel-formats and modifiers on all plane of that pipe.
Updating the test to execute on each planes on dynamic level.
v2:
- Used an helper to avoid changes in indentation (Juha-pekka)
- Fix other indentations (Juha-pekka)
Signed-off-by: Pranay Samala <pranay.samala@intel.com>
---
tests/kms_plane.c | 49 +++++++++++++++++++++++++----------------------
1 file changed, 26 insertions(+), 23 deletions(-)
diff --git a/tests/kms_plane.c b/tests/kms_plane.c
index 406aecc04..7c29143f1 100644
--- a/tests/kms_plane.c
+++ b/tests/kms_plane.c
@@ -275,7 +275,7 @@ test_plane_position_with_output(data_t *data,
drmModeModeInfo *mode;
igt_crc_t crc, crc2;
- igt_info("Testing connector %s using pipe %s plane %d\n",
+ igt_debug("Testing connector %s using pipe %s plane %d\n",
igt_output_name(output), kmstest_pipe_name(pipe), plane);
igt_output_set_pipe(output, pipe);
@@ -285,8 +285,8 @@ test_plane_position_with_output(data_t *data,
sprite = igt_output_get_plane(output, plane);
if (primary->drm_plane->plane_id > sprite->drm_plane->plane_id) {
- igt_info("primary plane ID (%d) > sprite plane ID (%d), skipping plane %d\n",
- primary->drm_plane->plane_id, sprite->drm_plane->plane_id, plane);
+ igt_debug("primary plane ID (%d) > sprite plane ID (%d), skipping plane %d\n",
+ primary->drm_plane->plane_id, sprite->drm_plane->plane_id, plane);
return;
}
@@ -352,9 +352,9 @@ test_plane_position(data_t *data, enum pipe pipe)
test_grab_crc(data, output, pipe, &green, data->flags, &reference_crc);
for (int plane = 1; plane < n_planes; plane++)
- test_plane_position_with_output(data, pipe, plane,
- output, &reference_crc,
- data->flags);
+ igt_dynamic_f("pipe-%s-plane-%d", kmstest_pipe_name(pipe), plane)
+ test_plane_position_with_output(data, pipe, plane,
+ output, &reference_crc, data->flags);
test_fini(data);
}
@@ -415,7 +415,7 @@ test_plane_panning_with_output(data_t *data,
mode = igt_output_get_mode(output);
primary = igt_output_get_plane(output, 0);
- igt_info("Testing connector %s using pipe %s, mode %s\n",
+ igt_debug("Testing connector %s using pipe %s, mode %s\n",
igt_output_name(output), kmstest_pipe_name(pipe), mode->name);
create_fb_for_mode_panning(data, mode, &primary_fb);
@@ -455,7 +455,7 @@ test_plane_panning(data_t *data, enum pipe pipe)
igt_crc_t ref_crc;
igt_info("Using (pipe %s + %s) to run the subtest.\n",
- kmstest_pipe_name(pipe), igt_output_name(output));
+ kmstest_pipe_name(pipe), igt_output_name(output));
test_init(data, pipe);
@@ -463,7 +463,6 @@ test_plane_panning(data_t *data, enum pipe pipe)
for_each_memory_region(r, data->drm_fd)
if (r->ci.memory_class == I915_MEMORY_CLASS_DEVICE)
mem_size = r->cpu_size;
-
}
if (is_xe_device(data->drm_fd)) {
@@ -889,7 +888,7 @@ static bool test_format_plane_rgb(data_t *data, enum pipe pipe,
igt_crc_t ref_crc[],
struct igt_fb *fb)
{
- igt_info("Testing format " IGT_FORMAT_FMT " / modifier " IGT_MODIFIER_FMT " on %s.%u\n",
+ igt_debug("Testing format " IGT_FORMAT_FMT " / modifier " IGT_MODIFIER_FMT " on %s.%u\n",
IGT_FORMAT_ARGS(format), IGT_MODIFIER_ARGS(modifier),
kmstest_pipe_name(pipe), plane->index);
@@ -927,11 +926,9 @@ static bool test_format_plane_yuv(data_t *data, enum pipe pipe,
igt_color_range_to_str(r)))
continue;
- igt_info("Testing format " IGT_FORMAT_FMT " / modifier " IGT_MODIFIER_FMT " (%s, %s) on %s.%u\n",
- IGT_FORMAT_ARGS(format), IGT_MODIFIER_ARGS(modifier),
- igt_color_encoding_to_str(e),
- igt_color_range_to_str(r),
- kmstest_pipe_name(pipe), plane->index);
+ igt_debug("Testing format " IGT_FORMAT_FMT " / modifier " IGT_MODIFIER_FMT " (%s, %s) on %s.%u\n",
+ IGT_FORMAT_ARGS(format), IGT_MODIFIER_ARGS(modifier), igt_color_encoding_to_str(e),
+ igt_color_range_to_str(r), kmstest_pipe_name(pipe), plane->index);
result &= test_format_plane_colors(data, pipe, plane,
format, modifier,
@@ -1043,7 +1040,7 @@ static bool test_format_plane(data_t *data, enum pipe pipe,
igt_pipe_crc_start(data->pipe_crc);
- igt_info("Testing format " IGT_FORMAT_FMT " / modifier " IGT_MODIFIER_FMT " on %s.%u\n",
+ igt_debug("Testing format " IGT_FORMAT_FMT " / modifier " IGT_MODIFIER_FMT " on %s.%u\n",
IGT_FORMAT_ARGS(ref.format), IGT_MODIFIER_ARGS(ref.modifier),
kmstest_pipe_name(pipe), plane->index);
@@ -1089,7 +1086,7 @@ static bool test_format_plane(data_t *data, enum pipe pipe,
};
if (igt_vec_index(&tested_formats, &rf) >= 0) {
- igt_info("Skipping format " IGT_FORMAT_FMT " / modifier " IGT_MODIFIER_FMT " on %s.%u\n",
+ igt_debug("Skipping format " IGT_FORMAT_FMT " / modifier " IGT_MODIFIER_FMT " on %s.%u\n",
IGT_FORMAT_ARGS(f.format), IGT_MODIFIER_ARGS(f.modifier),
kmstest_pipe_name(pipe), plane->index);
continue;
@@ -1211,7 +1208,8 @@ test_pixel_formats(data_t *data, enum pipe pipe)
for_each_plane_on_pipe(&data->display, pipe, plane) {
if (skip_plane(data, plane))
continue;
- result &= test_format_plane(data, pipe, output, plane, &primary_fb);
+ igt_dynamic_f("pipe-%s-plane-%u", kmstest_pipe_name(pipe), plane->index)
+ result &= test_format_plane(data, pipe, output, plane, &primary_fb);
}
test_fini(data);
@@ -1317,14 +1315,19 @@ static void run_test(data_t *data, void (*test)(data_t *, enum pipe))
continue;
igt_output_set_pipe(data->output, PIPE_NONE);
- igt_dynamic_f("pipe-%s", kmstest_pipe_name(pipe))
- test(data, pipe);
+ test(data, pipe);
if (is_pipe_limit_reached(++count))
break;
}
}
+static void dynamic_test_handler(data_t *data, enum pipe pipe)
+{
+ igt_dynamic_f("pipe-%s", kmstest_pipe_name(pipe))
+ test_plane_panning(data, pipe);
+}
+
static void
run_tests_for_pipe_plane(data_t *data)
{
@@ -1361,20 +1364,20 @@ run_tests_for_pipe_plane(data_t *data)
igt_describe("verify plane panning at top-left position using primary plane");
igt_subtest_with_dynamic_f("plane-panning-top-left") {
data->flags = TEST_PANNING_TOP_LEFT;
- run_test(data, test_plane_panning);
+ run_test(data, dynamic_test_handler);
}
igt_describe("verify plane panning at bottom-right position using primary plane");
igt_subtest_with_dynamic_f("plane-panning-bottom-right") {
data->flags = TEST_PANNING_BOTTOM_RIGHT;
- run_test(data, test_plane_panning);
+ run_test(data, dynamic_test_handler);
}
igt_describe("verify plane panning at bottom-right position using primary plane and executes system"
"suspend cycles");
igt_subtest_with_dynamic_f("plane-panning-bottom-right-suspend") {
data->flags = TEST_PANNING_BOTTOM_RIGHT | TEST_SUSPEND_RESUME;
- run_test(data, test_plane_panning);
+ run_test(data, dynamic_test_handler);
}
igt_describe("verify planar settings for pixel format are accepted or rejected correctly");
--
2.34.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* ✗ Fi.CI.BAT: failure for tests/kms_plane: Implement dynamic level execution across multiple planes (rev2)
2024-05-22 5:11 [PATCH i-g-t v2] tests/kms_plane: Implement dynamic level execution across multiple planes Pranay Samala
@ 2024-05-22 6:01 ` Patchwork
2024-05-22 6:43 ` ✗ CI.xeBAT: " Patchwork
2024-05-22 9:00 ` ✗ CI.xeFULL: " Patchwork
2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2024-05-22 6:01 UTC (permalink / raw)
To: Pranay Samala; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 7935 bytes --]
== Series Details ==
Series: tests/kms_plane: Implement dynamic level execution across multiple planes (rev2)
URL : https://patchwork.freedesktop.org/series/133839/
State : failure
== Summary ==
CI Bug Log - changes from IGT_7867 -> IGTPW_11173
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_11173 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_11173, 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_11173/index.html
Participating hosts (40 -> 40)
------------------------------
Additional (2): bat-mtlp-8 fi-kbl-8809g
Missing (2): bat-jsl-1 fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_11173:
### IGT changes ###
#### Possible regressions ####
* igt@i915_pm_rpm@module-reload:
- bat-arls-1: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7867/bat-arls-1/igt@i915_pm_rpm@module-reload.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11173/bat-arls-1/igt@i915_pm_rpm@module-reload.html
Known issues
------------
Here are the changes found in IGTPW_11173 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-mtlp-8: NOTRUN -> [SKIP][3] ([i915#9318])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11173/bat-mtlp-8/igt@debugfs_test@basic-hwmon.html
* igt@gem_huc_copy@huc-copy:
- fi-kbl-8809g: NOTRUN -> [SKIP][4] ([i915#2190])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11173/fi-kbl-8809g/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- fi-kbl-8809g: NOTRUN -> [SKIP][5] ([i915#4613]) +3 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11173/fi-kbl-8809g/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@verify-random:
- bat-mtlp-8: NOTRUN -> [SKIP][6] ([i915#4613]) +3 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11173/bat-mtlp-8/igt@gem_lmem_swapping@verify-random.html
* igt@gem_mmap@basic:
- bat-mtlp-8: NOTRUN -> [SKIP][7] ([i915#4083])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11173/bat-mtlp-8/igt@gem_mmap@basic.html
* igt@gem_mmap_gtt@basic:
- bat-mtlp-8: NOTRUN -> [SKIP][8] ([i915#4077]) +2 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11173/bat-mtlp-8/igt@gem_mmap_gtt@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-mtlp-8: NOTRUN -> [SKIP][9] ([i915#4079]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11173/bat-mtlp-8/igt@gem_render_tiled_blits@basic.html
* igt@i915_pm_rps@basic-api:
- bat-mtlp-8: NOTRUN -> [SKIP][10] ([i915#6621])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11173/bat-mtlp-8/igt@i915_pm_rps@basic-api.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][11] ([i915#5190])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11173/bat-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][12] ([i915#4212]) +8 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11173/bat-mtlp-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][13] ([i915#4213]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11173/bat-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-mtlp-8: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#3840] / [i915#9159])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11173/bat-mtlp-8/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- fi-kbl-8809g: NOTRUN -> [SKIP][15] +30 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11173/fi-kbl-8809g/igt@kms_force_connector_basic@force-load-detect.html
- bat-mtlp-8: NOTRUN -> [SKIP][16]
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11173/bat-mtlp-8/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-mtlp-8: NOTRUN -> [SKIP][17] ([i915#5274])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11173/bat-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_psr@psr-primary-mmap-gtt@edp-1:
- bat-mtlp-8: NOTRUN -> [SKIP][18] ([i915#4077] / [i915#9688])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11173/bat-mtlp-8/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-mtlp-8: NOTRUN -> [SKIP][19] ([i915#3555] / [i915#8809])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11173/bat-mtlp-8/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-mmap:
- bat-mtlp-8: NOTRUN -> [SKIP][20] ([i915#3708] / [i915#4077]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11173/bat-mtlp-8/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-fence-read:
- bat-mtlp-8: NOTRUN -> [SKIP][21] ([i915#3708]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11173/bat-mtlp-8/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-write:
- bat-mtlp-8: NOTRUN -> [SKIP][22] ([i915#10216] / [i915#3708])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11173/bat-mtlp-8/igt@prime_vgem@basic-write.html
[i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#9159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9159
[i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7867 -> IGTPW_11173
CI-20190529: 20190529
CI_DRM_14798: b134db8544f8d5b8a960b368afe12820c3cbe8cd @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11173: 8aea6a45df44ef06c95401f9bc9e04c900f18980 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_7867: f3006a13799e3bc45d754aa8ad318394277d69ac @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11173/index.html
[-- Attachment #2: Type: text/html, Size: 9502 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* ✗ CI.xeBAT: failure for tests/kms_plane: Implement dynamic level execution across multiple planes (rev2)
2024-05-22 5:11 [PATCH i-g-t v2] tests/kms_plane: Implement dynamic level execution across multiple planes Pranay Samala
2024-05-22 6:01 ` ✗ Fi.CI.BAT: failure for tests/kms_plane: Implement dynamic level execution across multiple planes (rev2) Patchwork
@ 2024-05-22 6:43 ` Patchwork
2024-05-22 9:00 ` ✗ CI.xeFULL: " Patchwork
2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2024-05-22 6:43 UTC (permalink / raw)
To: Pranay Samala; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3898 bytes --]
== Series Details ==
Series: tests/kms_plane: Implement dynamic level execution across multiple planes (rev2)
URL : https://patchwork.freedesktop.org/series/133839/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_7867_BAT -> XEIGTPW_11173_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11173_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11173_BAT, 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 (5 -> 4)
------------------------------
Missing (1): bat-pvc-2
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_11173_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@xe_gt_freq@freq_basic_api:
- bat-atsm-2: NOTRUN -> [ABORT][1]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/bat-atsm-2/igt@xe_gt_freq@freq_basic_api.html
Known issues
------------
Here are the changes found in XEIGTPW_11173_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race:
- bat-adlp-7: [PASS][2] -> [INCOMPLETE][3] ([Intel XE#1169])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/bat-adlp-7/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/bat-adlp-7/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race.html
- bat-dg2-oem2: [PASS][4] -> [ABORT][5] ([Intel XE#1908])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/bat-dg2-oem2/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/bat-dg2-oem2/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race.html
#### Possible fixes ####
* igt@xe_exec_compute_mode@twice-bindexecqueue-userptr:
- bat-atsm-2: [DMESG-WARN][6] ([Intel XE#1908]) -> [PASS][7]
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/bat-atsm-2/igt@xe_exec_compute_mode@twice-bindexecqueue-userptr.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/bat-atsm-2/igt@xe_exec_compute_mode@twice-bindexecqueue-userptr.html
* igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate:
- {bat-lnl-1}: [FAIL][8] ([Intel XE#1069]) -> [PASS][9]
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/bat-lnl-1/igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/bat-lnl-1/igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1069]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1069
[Intel XE#1169]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1169
[Intel XE#1908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1908
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
Build changes
-------------
* IGT: IGT_7867 -> IGTPW_11173
IGTPW_11173: 8aea6a45df44ef06c95401f9bc9e04c900f18980 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_7867: f3006a13799e3bc45d754aa8ad318394277d69ac @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1323-b134db8544f8d5b8a960b368afe12820c3cbe8cd: b134db8544f8d5b8a960b368afe12820c3cbe8cd
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/index.html
[-- Attachment #2: Type: text/html, Size: 4569 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* ✗ CI.xeFULL: failure for tests/kms_plane: Implement dynamic level execution across multiple planes (rev2)
2024-05-22 5:11 [PATCH i-g-t v2] tests/kms_plane: Implement dynamic level execution across multiple planes Pranay Samala
2024-05-22 6:01 ` ✗ Fi.CI.BAT: failure for tests/kms_plane: Implement dynamic level execution across multiple planes (rev2) Patchwork
2024-05-22 6:43 ` ✗ CI.xeBAT: " Patchwork
@ 2024-05-22 9:00 ` Patchwork
2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2024-05-22 9:00 UTC (permalink / raw)
To: Pranay Samala; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 80389 bytes --]
== Series Details ==
Series: tests/kms_plane: Implement dynamic level execution across multiple planes (rev2)
URL : https://patchwork.freedesktop.org/series/133839/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_7867_full -> XEIGTPW_11173_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11173_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11173_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 (3 -> 2)
------------------------------
Missing (1): shard-adlp
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_11173_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff:
- shard-dg2-set2: NOTRUN -> [ABORT][1] +1 other test abort
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_lease@page-flip-implicit-plane@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][2] -> [ABORT][3] +1 other test abort
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-433/igt@kms_lease@page-flip-implicit-plane@pipe-a-hdmi-a-6.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-433/igt@kms_lease@page-flip-implicit-plane@pipe-a-hdmi-a-6.html
* {igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-3} (NEW):
- {shard-lnl}: NOTRUN -> [INCOMPLETE][4]
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-lnl-3/igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-3.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@core_auth@many-magics:
- {shard-lnl}: NOTRUN -> [ABORT][5] +3 other tests abort
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-lnl-1/igt@core_auth@many-magics.html
* igt@kms_atomic@crtc-invalid-params:
- {shard-lnl}: NOTRUN -> [FAIL][6] +2 other tests fail
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-lnl-1/igt@kms_atomic@crtc-invalid-params.html
* igt@kms_fbcon_fbt@psr-suspend:
- {shard-lnl}: [PASS][7] -> [INCOMPLETE][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-lnl-3/igt@kms_fbcon_fbt@psr-suspend.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-lnl-8/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt:
- {shard-lnl}: [PASS][9] -> [ABORT][10]
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- {shard-lnl}: NOTRUN -> [SKIP][11]
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-lnl-1/igt@kms_pm_rpm@basic-pci-d3-state.html
* igt@kms_pm_rpm@i2c:
- {shard-lnl}: [PASS][12] -> [SKIP][13]
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-lnl-1/igt@kms_pm_rpm@i2c.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-lnl-1/igt@kms_pm_rpm@i2c.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- {shard-lnl}: NOTRUN -> [INCOMPLETE][14] +1 other test incomplete
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-lnl-2/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@xe_pm@d3-mmap-vram:
- {shard-lnl}: [SKIP][15] ([Intel XE#1444]) -> [FAIL][16]
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-lnl-1/igt@xe_pm@d3-mmap-vram.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-lnl-1/igt@xe_pm@d3-mmap-vram.html
New tests
---------
New tests have been introduced between XEIGT_7867_full and XEIGTPW_11173_full:
### New IGT tests (30) ###
* igt@kms_plane@plane-position-covered@pipe-a-plane-1:
- Statuses : 2 pass(s)
- Exec time: [0.35, 1.44] s
* igt@kms_plane@plane-position-covered@pipe-a-plane-2:
- Statuses : 2 pass(s)
- Exec time: [0.35, 1.84] s
* igt@kms_plane@plane-position-covered@pipe-a-plane-3:
- Statuses : 2 pass(s)
- Exec time: [0.35, 1.51] s
* igt@kms_plane@plane-position-covered@pipe-a-plane-4:
- Statuses : 2 pass(s)
- Exec time: [0.35, 4.81] s
* igt@kms_plane@plane-position-covered@pipe-a-plane-5:
- Statuses : 2 pass(s)
- Exec time: [0.01, 0.02] s
* igt@kms_plane@plane-position-covered@pipe-b-plane-1:
- Statuses : 2 pass(s)
- Exec time: [0.36, 1.43] s
* igt@kms_plane@plane-position-covered@pipe-b-plane-2:
- Statuses : 2 pass(s)
- Exec time: [0.36, 1.52] s
* igt@kms_plane@plane-position-covered@pipe-b-plane-3:
- Statuses : 2 pass(s)
- Exec time: [0.36, 1.53] s
* igt@kms_plane@plane-position-covered@pipe-b-plane-4:
- Statuses : 2 pass(s)
- Exec time: [0.36, 1.43] s
* igt@kms_plane@plane-position-covered@pipe-b-plane-5:
- Statuses : 2 pass(s)
- Exec time: [0.01, 0.02] s
* igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-1:
- Statuses : 2 pass(s)
- Exec time: [0.48, 2.68] s
* igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-2:
- Statuses : 2 pass(s)
- Exec time: [0.48, 2.83] s
* igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-3:
- Statuses : 1 incomplete(s) 1 pass(s)
- Exec time: [0.47, 2.83] s
* igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-4:
- Statuses : 1 pass(s)
- Exec time: [0.48] s
* igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-5:
- Statuses : 1 pass(s)
- Exec time: [0.01] s
* igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-1:
- Statuses : 1 pass(s)
- Exec time: [0.50] s
* igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-2:
- Statuses : 1 pass(s)
- Exec time: [0.50] s
* igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-3:
- Statuses : 1 pass(s)
- Exec time: [0.49] s
* igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-4:
- Statuses : 1 pass(s)
- Exec time: [0.50] s
* igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-5:
- Statuses : 1 pass(s)
- Exec time: [0.01] s
* igt@kms_plane@plane-position-hole@pipe-a-plane-1:
- Statuses : 2 pass(s)
- Exec time: [0.35, 1.50] s
* igt@kms_plane@plane-position-hole@pipe-a-plane-2:
- Statuses : 2 pass(s)
- Exec time: [0.35, 1.40] s
* igt@kms_plane@plane-position-hole@pipe-a-plane-3:
- Statuses : 2 pass(s)
- Exec time: [0.35, 1.52] s
* igt@kms_plane@plane-position-hole@pipe-a-plane-4:
- Statuses : 2 pass(s)
- Exec time: [0.35, 1.52] s
* igt@kms_plane@plane-position-hole@pipe-a-plane-5:
- Statuses : 2 pass(s)
- Exec time: [0.02] s
* igt@kms_plane@plane-position-hole@pipe-b-plane-1:
- Statuses : 2 pass(s)
- Exec time: [0.36, 1.48] s
* igt@kms_plane@plane-position-hole@pipe-b-plane-2:
- Statuses : 2 pass(s)
- Exec time: [0.37, 1.49] s
* igt@kms_plane@plane-position-hole@pipe-b-plane-3:
- Statuses : 2 pass(s)
- Exec time: [0.36, 1.54] s
* igt@kms_plane@plane-position-hole@pipe-b-plane-4:
- Statuses : 2 pass(s)
- Exec time: [0.36, 1.45] s
* igt@kms_plane@plane-position-hole@pipe-b-plane-5:
- Statuses : 2 pass(s)
- Exec time: [0.01, 0.02] s
Known issues
------------
Here are the changes found in XEIGTPW_11173_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@addfb25-bad-modifier:
- shard-dg2-set2: [PASS][17] -> [SKIP][18] ([Intel XE#1201] / [i915#6077])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-433/igt@kms_addfb_basic@addfb25-bad-modifier.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-464/igt@kms_addfb_basic@addfb25-bad-modifier.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#1201] / [Intel XE#623])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-463/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#1201] / [Intel XE#829]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-464/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#316])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-432/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#1201] / [Intel XE#316]) +3 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-466/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#1201] / [Intel XE#610])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#1124] / [Intel XE#1201]) +4 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-433/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#1124]) +2 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#1201] / [Intel XE#367])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-434/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#455] / [Intel XE#787]) +8 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-432/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-dp-4.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#1201] / [Intel XE#787]) +83 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-435/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +20 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-466/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#787]) +34 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-432/igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-hdmi-a-6.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#1252])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-432/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: NOTRUN -> [TIMEOUT][32] ([Intel XE#1850])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [TIMEOUT][33] ([Intel XE#1713])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#306])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-432/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#1201] / [Intel XE#306]) +2 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-433/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate:
- shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#373])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-432/igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate.html
* igt@kms_chamelium_frames@vga-frame-dump:
- shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#1201] / [Intel XE#373]) +10 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-433/igt@kms_chamelium_frames@vga-frame-dump.html
* igt@kms_content_protection@atomic@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][38] ([Intel XE#1178]) +1 other test fail
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-463/igt@kms_content_protection@atomic@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-onscreen-64x64:
- shard-dg2-set2: [PASS][39] -> [SKIP][40] ([Intel XE#1201]) +5 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-466/igt@kms_cursor_crc@cursor-onscreen-64x64.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-464/igt@kms_cursor_crc@cursor-onscreen-64x64.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#1201] / [Intel XE#308]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-464/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_edge_walk@256x256-top-bottom:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][42] ([Intel XE#1214] / [Intel XE#282]) +10 other tests dmesg-warn
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-433/igt@kms_cursor_edge_walk@256x256-top-bottom.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][43] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#910])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-436/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@forked-move@pipe-b:
- shard-dg2-set2: [PASS][44] -> [DMESG-WARN][45] ([Intel XE#1214] / [Intel XE#282]) +7 other tests dmesg-warn
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-433/igt@kms_cursor_legacy@forked-move@pipe-b.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-435/igt@kms_cursor_legacy@forked-move@pipe-b.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#1201] / [Intel XE#323]) +3 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-433/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#455])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-432/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#1201] / [Intel XE#701])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-464/igt@kms_feature_discovery@chamelium.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#1201] / [Intel XE#651]) +26 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#651]) +2 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#1201]) +5 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#653]) +2 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#1201] / [Intel XE#653]) +24 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-suspend.html
* igt@kms_hdmi_inject@inject-audio:
- shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#1201] / [Intel XE#417])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-433/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_lease@page-flip-implicit-plane:
- shard-dg2-set2: [PASS][55] -> [ABORT][56] ([Intel XE#1205])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-433/igt@kms_lease@page-flip-implicit-plane.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-433/igt@kms_lease@page-flip-implicit-plane.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format:
- shard-dg2-set2: NOTRUN -> [TIMEOUT][57] ([Intel XE#380] / [Intel XE#904] / [Intel XE#909])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-435/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [TIMEOUT][58] ([Intel XE#904] / [Intel XE#909])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-435/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a-hdmi-a-6.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#305]) +2 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-hdmi-a-6.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#305] / [Intel XE#455])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-hdmi-a-6.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#1201] / [Intel XE#305] / [Intel XE#455])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-433/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#1201] / [Intel XE#305]) +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-433/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-6.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#1201] / [Intel XE#455]) +16 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-433/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-d-hdmi-a-6.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#1201] / [Intel XE#870])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-463/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#1129] / [Intel XE#1201])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-433/igt@kms_pm_dc@dc6-psr.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#1122] / [Intel XE#1201])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-463/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#1122])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-432/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@pr-cursor-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#1201] / [Intel XE#929]) +17 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-436/igt@kms_psr@pr-cursor-plane-onoff.html
* igt@kms_psr@psr2-basic:
- shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#929])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-432/igt@kms_psr@psr2-basic.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-top:
- shard-dg2-set2: [PASS][70] -> [SKIP][71] ([Intel XE#1201] / [Intel XE#829])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-435/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-464/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#1127] / [Intel XE#1201]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-433/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2-set2: NOTRUN -> [SKIP][73] ([Intel XE#1201] / [Intel XE#327]) +3 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-463/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#1201] / [Intel XE#756]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-463/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#1091] / [Intel XE#1201])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-464/igt@sriov_basic@enable-vfs-bind-unbind-each.html
* igt@xe_compute@ccs-mode-basic:
- shard-dg2-set2: NOTRUN -> [FAIL][76] ([Intel XE#1050])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-434/igt@xe_compute@ccs-mode-basic.html
* igt@xe_copy_basic@mem-copy-linear-0xfffe:
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#1123] / [Intel XE#1201]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
* igt@xe_evict@evict-beng-mixed-threads-large:
- shard-dg2-set2: [PASS][78] -> [INCOMPLETE][79] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-435/igt@xe_evict@evict-beng-mixed-threads-large.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-464/igt@xe_evict@evict-beng-mixed-threads-large.html
* igt@xe_evict@evict-cm-threads-large:
- shard-dg2-set2: NOTRUN -> [TIMEOUT][80] ([Intel XE#1473] / [Intel XE#392])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-434/igt@xe_evict@evict-cm-threads-large.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-dg2-set2: [PASS][81] -> [TIMEOUT][82] ([Intel XE#1473])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-466/igt@xe_evict@evict-mixed-many-threads-small.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-466/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#288])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-432/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-prefetch.html
* igt@xe_exec_fault_mode@once-userptr-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#1201] / [Intel XE#288]) +19 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-436/igt@xe_exec_fault_mode@once-userptr-imm.html
* igt@xe_pat@pat-index-xelpg:
- shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#1201] / [Intel XE#979])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-434/igt@xe_pat@pat-index-xelpg.html
* igt@xe_peer2peer@write:
- shard-dg2-set2: NOTRUN -> [FAIL][86] ([Intel XE#1173]) +1 other test fail
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-436/igt@xe_peer2peer@write.html
* igt@xe_pm@s2idle-vm-bind-userptr:
- shard-dg2-set2: [PASS][87] -> [ABORT][88] ([Intel XE#1694])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-466/igt@xe_pm@s2idle-vm-bind-userptr.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-463/igt@xe_pm@s2idle-vm-bind-userptr.html
* igt@xe_pm@s3-basic-exec:
- shard-dg2-set2: [PASS][89] -> [DMESG-WARN][90] ([Intel XE#1162] / [Intel XE#1214]) +8 other tests dmesg-warn
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-435/igt@xe_pm@s3-basic-exec.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-466/igt@xe_pm@s3-basic-exec.html
* igt@xe_query@multigpu-query-cs-cycles:
- shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#1201] / [Intel XE#944])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-434/igt@xe_query@multigpu-query-cs-cycles.html
#### Possible fixes ####
* igt@kms_addfb_basic@unused-handle:
- shard-dg2-set2: [SKIP][92] ([Intel XE#1201] / [i915#6077]) -> [PASS][93]
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-466/igt@kms_addfb_basic@unused-handle.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-466/igt@kms_addfb_basic@unused-handle.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-0:
- {shard-lnl}: [INCOMPLETE][94] ([Intel XE#1330] / [Intel XE#1351] / [Intel XE#1595] / [Intel XE#1602] / [Intel XE#1760]) -> [PASS][95]
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-lnl-4/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-lnl-4/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-dg2-set2: [SKIP][96] ([Intel XE#1201] / [Intel XE#829]) -> [PASS][97] +6 other tests pass
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-466/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-433/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180:
- {shard-lnl}: [FAIL][98] ([Intel XE#1659]) -> [PASS][99] +1 other test pass
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-lnl-3/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-lnl-3/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180.html
* igt@kms_bw@linear-tiling-1-displays-1920x1080p:
- {shard-lnl}: [SKIP][100] ([Intel XE#1733]) -> [PASS][101] +10 other tests pass
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-lnl-8/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-lnl-7/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-dg2-set2: [ABORT][102] -> [PASS][103] +8 other tests pass
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-463/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-435/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-legacy:
- shard-dg2-set2: [SKIP][104] ([Intel XE#1201] / [Intel XE#1234]) -> [PASS][105] +1 other test pass
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-466/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-legacy.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-464/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-legacy.html
- {shard-lnl}: [SKIP][106] ([Intel XE#1646] / [Intel XE#1650] / [Intel XE#1663]) -> [PASS][107]
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-lnl-6/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-legacy.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-lnl-1/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-legacy.html
* igt@kms_cursor_legacy@forked-bo@all-pipes:
- shard-dg2-set2: [DMESG-WARN][108] ([Intel XE#1214] / [Intel XE#282]) -> [PASS][109] +6 other tests pass
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-464/igt@kms_cursor_legacy@forked-bo@all-pipes.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-466/igt@kms_cursor_legacy@forked-bo@all-pipes.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-dg2-set2: [SKIP][110] ([Intel XE#1201]) -> [PASS][111] +8 other tests pass
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-466/igt@kms_flip@2x-dpms-vs-vblank-race.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-463/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip@flip-vs-suspend:
- {shard-lnl}: [DMESG-WARN][112] ([Intel XE#1830]) -> [PASS][113] +1 other test pass
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-lnl-4/igt@kms_flip@flip-vs-suspend.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-lnl-7/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-dg2-set2: [SKIP][114] ([Intel XE#1201] / [Intel XE#1235]) -> [PASS][115]
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-466/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-466/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
- {shard-lnl}: [ABORT][116] ([Intel XE#1908]) -> [PASS][117]
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-lnl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-lnl-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary:
- {shard-lnl}: [SKIP][118] ([Intel XE#1646] / [Intel XE#1650]) -> [PASS][119] +4 other tests pass
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-lnl-6/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-lnl-2/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
* igt@kms_plane@plane-position-covered:
- {shard-lnl}: [SKIP][120] ([Intel XE#829]) -> [PASS][121] +2 other tests pass
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-lnl-6/igt@kms_plane@plane-position-covered.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-lnl-8/igt@kms_plane@plane-position-covered.html
* igt@kms_pm_dc@dc5-psr:
- {shard-lnl}: [FAIL][122] ([Intel XE#718]) -> [PASS][123]
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-lnl-8/igt@kms_pm_dc@dc5-psr.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-lnl-2/igt@kms_pm_dc@dc5-psr.html
* igt@kms_psr@fbc-psr-cursor-plane-onoff:
- {shard-lnl}: [SKIP][124] ([Intel XE#1134]) -> [PASS][125] +3 other tests pass
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-lnl-8/igt@kms_psr@fbc-psr-cursor-plane-onoff.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-lnl-7/igt@kms_psr@fbc-psr-cursor-plane-onoff.html
* igt@xe_evict@evict-beng-threads-large:
- shard-dg2-set2: [TIMEOUT][126] ([Intel XE#1473]) -> [PASS][127]
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-466/igt@xe_evict@evict-beng-threads-large.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-432/igt@xe_evict@evict-beng-threads-large.html
* igt@xe_evict@evict-large-multi-vm-cm:
- shard-dg2-set2: [FAIL][128] ([Intel XE#1600]) -> [PASS][129]
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-432/igt@xe_evict@evict-large-multi-vm-cm.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-464/igt@xe_evict@evict-large-multi-vm-cm.html
* igt@xe_evict@evict-small-cm:
- shard-dg2-set2: [INCOMPLETE][130] ([Intel XE#1195] / [Intel XE#1473]) -> [PASS][131]
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-435/igt@xe_evict@evict-small-cm.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-464/igt@xe_evict@evict-small-cm.html
* igt@xe_evict@evict-threads-large:
- shard-dg2-set2: [TIMEOUT][132] ([Intel XE#1473] / [Intel XE#392]) -> [PASS][133] +1 other test pass
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-466/igt@xe_evict@evict-threads-large.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-463/igt@xe_evict@evict-threads-large.html
* igt@xe_exec_fault_mode@many-execqueues-invalid-fault:
- {shard-lnl}: [SKIP][134] ([Intel XE#1699]) -> [PASS][135] +8 other tests pass
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-lnl-8/igt@xe_exec_fault_mode@many-execqueues-invalid-fault.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-lnl-3/igt@xe_exec_fault_mode@many-execqueues-invalid-fault.html
* igt@xe_exec_threads@threads-bal-fd-userptr-rebind:
- {shard-lnl}: [INCOMPLETE][136] ([Intel XE#1169]) -> [PASS][137]
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-lnl-6/igt@xe_exec_threads@threads-bal-fd-userptr-rebind.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-lnl-5/igt@xe_exec_threads@threads-bal-fd-userptr-rebind.html
* igt@xe_exec_threads@threads-bal-shared-vm-rebind:
- shard-dg2-set2: [ABORT][138] ([Intel XE#1908]) -> [PASS][139]
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-434/igt@xe_exec_threads@threads-bal-shared-vm-rebind.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-463/igt@xe_exec_threads@threads-bal-shared-vm-rebind.html
* igt@xe_pat@prime-self-import-coh:
- {shard-lnl}: [SKIP][140] ([Intel XE#1130] / [Intel XE#1699]) -> [PASS][141] +1 other test pass
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-lnl-8/igt@xe_pat@prime-self-import-coh.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-lnl-7/igt@xe_pat@prime-self-import-coh.html
* igt@xe_pm@s3-d3hot-basic-exec:
- shard-dg2-set2: [DMESG-WARN][142] ([Intel XE#1162] / [Intel XE#1214]) -> [PASS][143]
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-463/igt@xe_pm@s3-d3hot-basic-exec.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-435/igt@xe_pm@s3-d3hot-basic-exec.html
* igt@xe_pm@s4-multiple-execs:
- shard-dg2-set2: [ABORT][144] ([Intel XE#1358]) -> [PASS][145]
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-435/igt@xe_pm@s4-multiple-execs.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-434/igt@xe_pm@s4-multiple-execs.html
* igt@xe_vm@mmap-style-bind-many-either-side-partial-hammer:
- {shard-lnl}: [FAIL][146] ([Intel XE#1081]) -> [PASS][147]
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-lnl-7/igt@xe_vm@mmap-style-bind-many-either-side-partial-hammer.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-lnl-2/igt@xe_vm@mmap-style-bind-many-either-side-partial-hammer.html
* igt@xe_wedged@wedged-mode-toggle:
- {shard-lnl}: [ABORT][148] ([Intel XE#1441] / [Intel XE#1620] / [Intel XE#1760]) -> [PASS][149]
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-lnl-2/igt@xe_wedged@wedged-mode-toggle.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-lnl-3/igt@xe_wedged@wedged-mode-toggle.html
#### Warnings ####
* igt@core_hotunplug@hotunplug-rescan:
- shard-dg2-set2: [DMESG-WARN][150] ([Intel XE#1214]) -> [DMESG-FAIL][151] ([Intel XE#1345] / [Intel XE#1548])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-433/igt@core_hotunplug@hotunplug-rescan.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-433/igt@core_hotunplug@hotunplug-rescan.html
* igt@kms_async_flips@test-cursor:
- shard-dg2-set2: [DMESG-WARN][152] ([Intel XE#1214] / [Intel XE#282]) -> [DMESG-WARN][153] ([Intel XE#282]) +3 other tests dmesg-warn
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-463/igt@kms_async_flips@test-cursor.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-432/igt@kms_async_flips@test-cursor.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-dg2-set2: [SKIP][154] ([Intel XE#316]) -> [SKIP][155] ([Intel XE#1201] / [Intel XE#316]) +1 other test skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-432/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-435/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-dg2-set2: [SKIP][156] ([Intel XE#1124]) -> [SKIP][157] ([Intel XE#1124] / [Intel XE#1201]) +5 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-432/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-434/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-dg2-set2: [SKIP][158] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][159] ([Intel XE#1201] / [Intel XE#829])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-464/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-464/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg2-set2: [SKIP][160] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][161] ([Intel XE#1124]) +3 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-432/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-dg2-set2: [SKIP][162] ([Intel XE#1201] / [Intel XE#829]) -> [SKIP][163] ([Intel XE#1124] / [Intel XE#1201])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-466/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-435/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-dg2-set2: [SKIP][164] ([Intel XE#1201] / [Intel XE#619]) -> [SKIP][165] ([Intel XE#619])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-436/igt@kms_big_fb@yf-tiled-addfb.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-432/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_joiner@invalid-modeset:
- shard-dg2-set2: [SKIP][166] ([Intel XE#1201]) -> [SKIP][167] ([Intel XE#1201] / [Intel XE#346])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-466/igt@kms_big_joiner@invalid-modeset.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-436/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_bw@linear-tiling-1-displays-3840x2160p:
- shard-dg2-set2: [SKIP][168] ([Intel XE#1201]) -> [SKIP][169] ([Intel XE#1201] / [Intel XE#367])
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-466/igt@kms_bw@linear-tiling-1-displays-3840x2160p.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-436/igt@kms_bw@linear-tiling-1-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-dg2-set2: [SKIP][170] ([Intel XE#367]) -> [SKIP][171] ([Intel XE#1201] / [Intel XE#367]) +2 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-432/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-466/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-4-displays-3840x2160p:
- shard-dg2-set2: [SKIP][172] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][173] ([Intel XE#367])
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-464/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-432/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs:
- shard-dg2-set2: [SKIP][174] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][175] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +7 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-432/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-433/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-a-dp-4:
- shard-dg2-set2: [SKIP][176] ([Intel XE#787]) -> [SKIP][177] ([Intel XE#1201] / [Intel XE#787]) +27 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-432/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-a-dp-4.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-433/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-a-dp-4.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-4:
- shard-dg2-set2: [SKIP][178] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][179] ([Intel XE#787]) +27 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-433/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-4.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-432/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-4.html
* igt@kms_ccs@bad-rotation-90-y-tiled-ccs:
- shard-dg2-set2: [SKIP][180] ([Intel XE#1201] / [Intel XE#829]) -> [SKIP][181] ([Intel XE#455] / [Intel XE#787])
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-466/igt@kms_ccs@bad-rotation-90-y-tiled-ccs.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-432/igt@kms_ccs@bad-rotation-90-y-tiled-ccs.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc:
- shard-dg2-set2: [SKIP][182] ([Intel XE#1201] / [Intel XE#829]) -> [SKIP][183] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +2 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-466/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-435/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: [SKIP][184] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][185] ([Intel XE#455] / [Intel XE#787]) +7 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-464/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-432/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg2-set2: [SKIP][186] ([Intel XE#1201] / [Intel XE#314]) -> [SKIP][187] ([Intel XE#1201])
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-463/igt@kms_cdclk@mode-transition-all-outputs.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-464/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_audio@dp-audio-edid:
- shard-dg2-set2: [SKIP][188] ([Intel XE#373]) -> [SKIP][189] ([Intel XE#1201] / [Intel XE#373]) +4 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-432/igt@kms_chamelium_audio@dp-audio-edid.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-436/igt@kms_chamelium_audio@dp-audio-edid.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-dg2-set2: [SKIP][190] ([Intel XE#1201] / [Intel XE#306]) -> [SKIP][191] ([Intel XE#306])
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-433/igt@kms_chamelium_color@ctm-green-to-red.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-432/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm:
- shard-dg2-set2: [SKIP][192] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][193] ([Intel XE#373]) +3 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-464/igt@kms_chamelium_hpd@hdmi-hpd-storm.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd-storm.html
* igt@kms_cursor_crc@cursor-onscreen-256x256@pipe-a-hdmi-a-6:
- shard-dg2-set2: [DMESG-WARN][194] ([Intel XE#282]) -> [DMESG-WARN][195] ([Intel XE#1214] / [Intel XE#282]) +2 other tests dmesg-warn
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-432/igt@kms_cursor_crc@cursor-onscreen-256x256@pipe-a-hdmi-a-6.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-256x256@pipe-a-hdmi-a-6.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg2-set2: [SKIP][196] ([Intel XE#308]) -> [SKIP][197] ([Intel XE#1201] / [Intel XE#308]) +1 other test skip
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-432/igt@kms_cursor_crc@cursor-onscreen-512x512.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-464/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg2-set2: [SKIP][198] ([Intel XE#1201]) -> [SKIP][199] ([Intel XE#1201] / [Intel XE#455]) +4 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-466/igt@kms_cursor_crc@cursor-sliding-32x10.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-466/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-dg2-set2: [SKIP][200] ([Intel XE#1201]) -> [DMESG-WARN][201] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#910])
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-466/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-464/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2-set2: [SKIP][202] ([Intel XE#323]) -> [SKIP][203] ([Intel XE#1201] / [Intel XE#323])
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-432/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-434/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2-set2: [SKIP][204] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][205] ([Intel XE#455]) +9 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-435/igt@kms_dsc@dsc-with-bpc-formats.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-432/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2-set2: [SKIP][206] ([Intel XE#1201] / [Intel XE#776]) -> [SKIP][207] ([Intel XE#776])
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-466/igt@kms_fbcon_fbt@psr-suspend.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-432/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-4x:
- shard-dg2-set2: [SKIP][208] ([Intel XE#1138]) -> [SKIP][209] ([Intel XE#1138] / [Intel XE#1201])
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-432/igt@kms_feature_discovery@display-4x.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-463/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6:
- shard-dg2-set2: [DMESG-WARN][210] ([Intel XE#1162] / [Intel XE#1214]) -> [DMESG-WARN][211] ([Intel XE#1162]) +2 other tests dmesg-warn
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-463/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-432/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move:
- shard-dg2-set2: [SKIP][212] ([Intel XE#1201] / [Intel XE#1234]) -> [SKIP][213] ([Intel XE#651])
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: [SKIP][214] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][215] ([Intel XE#651]) +14 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
- shard-dg2-set2: [SKIP][216] ([Intel XE#651]) -> [SKIP][217] ([Intel XE#1201] / [Intel XE#651]) +15 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-render:
- shard-dg2-set2: [SKIP][218] ([Intel XE#1201]) -> [SKIP][219] ([Intel XE#1201] / [Intel XE#651]) +1 other test skip
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-render.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-fullscreen:
- shard-dg2-set2: [ABORT][220] -> [SKIP][221] ([Intel XE#1201] / [Intel XE#651])
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-fullscreen.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-move:
- shard-dg2-set2: [SKIP][222] ([Intel XE#1201]) -> [SKIP][223] ([Intel XE#651])
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-move.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-blt:
- shard-dg2-set2: [SKIP][224] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][225] ([Intel XE#1201])
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-blt.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2-set2: [SKIP][226] ([Intel XE#653]) -> [SKIP][227] ([Intel XE#1201] / [Intel XE#653]) +9 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
- shard-dg2-set2: [SKIP][228] ([Intel XE#1201]) -> [SKIP][229] ([Intel XE#1201] / [Intel XE#653]) +2 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-dg2-set2: [SKIP][230] ([Intel XE#1158] / [Intel XE#1201]) -> [SKIP][231] ([Intel XE#1158])
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-433/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-432/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw:
- shard-dg2-set2: [SKIP][232] ([Intel XE#1201]) -> [SKIP][233] ([Intel XE#653])
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render:
- shard-dg2-set2: [SKIP][234] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][235] ([Intel XE#1201])
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render:
- shard-dg2-set2: [SKIP][236] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][237] ([Intel XE#653]) +10 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b:
- shard-dg2-set2: [DMESG-FAIL][238] ([Intel XE#1162]) -> [FAIL][239] ([Intel XE#616]) +1 other test fail
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-433/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-464/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers:
- shard-dg2-set2: [SKIP][240] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#498]) -> [SKIP][241] ([Intel XE#455] / [Intel XE#498]) +1 other test skip
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-434/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-6:
- shard-dg2-set2: [SKIP][242] ([Intel XE#1201] / [Intel XE#498]) -> [SKIP][243] ([Intel XE#498]) +2 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-434/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-6.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-6.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format:
- shard-dg2-set2: [TIMEOUT][244] ([Intel XE#380] / [Intel XE#904] / [Intel XE#909]) -> [INCOMPLETE][245] ([Intel XE#1195] / [Intel XE#904] / [Intel XE#909])
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-a-hdmi-a-6:
- shard-dg2-set2: [TIMEOUT][246] ([Intel XE#904] / [Intel XE#909]) -> [INCOMPLETE][247] ([Intel XE#1195] / [Intel XE#904] / [Intel XE#909])
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-a-hdmi-a-6.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-a-hdmi-a-6.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- shard-dg2-set2: [SKIP][248] ([Intel XE#1201]) -> [SKIP][249] ([Intel XE#305] / [Intel XE#455])
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-dg2-set2: [SKIP][250] ([Intel XE#305] / [Intel XE#455]) -> [SKIP][251] ([Intel XE#1201] / [Intel XE#305] / [Intel XE#455]) +1 other test skip
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-6:
- shard-dg2-set2: [SKIP][252] ([Intel XE#305]) -> [SKIP][253] ([Intel XE#1201] / [Intel XE#305]) +2 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-6.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-6.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:
- shard-dg2-set2: [SKIP][254] ([Intel XE#1201] / [Intel XE#305] / [Intel XE#455]) -> [SKIP][255] ([Intel XE#305] / [Intel XE#455])
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-466/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-432/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c-hdmi-a-6:
- shard-dg2-set2: [SKIP][256] ([Intel XE#1201] / [Intel XE#305]) -> [SKIP][257] ([Intel XE#305]) +2 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-466/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c-hdmi-a-6.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-432/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-c-hdmi-a-6.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
- shard-dg2-set2: [SKIP][258] ([Intel XE#929]) -> [SKIP][259] ([Intel XE#1201])
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-432/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-464/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
- shard-dg2-set2: [SKIP][260] ([Intel XE#1201]) -> [SKIP][261] ([Intel XE#1201] / [Intel XE#929]) +3 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-466/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-436/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
* igt@kms_psr@fbc-psr-cursor-plane-onoff:
- shard-dg2-set2: [SKIP][262] ([Intel XE#929]) -> [SKIP][263] ([Intel XE#1201] / [Intel XE#929]) +4 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-432/igt@kms_psr@fbc-psr-cursor-plane-onoff.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-463/igt@kms_psr@fbc-psr-cursor-plane-onoff.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-dg2-set2: [SKIP][264] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][265] ([Intel XE#929]) +9 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-466/igt@kms_psr@fbc-psr2-primary-blt.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-432/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_psr@psr-primary-blt:
- shard-dg2-set2: [SKIP][266] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][267] ([Intel XE#1201])
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-464/igt@kms_psr@psr-primary-blt.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-464/igt@kms_psr@psr-primary-blt.html
* igt@kms_vrr@flip-dpms:
- shard-dg2-set2: [SKIP][268] ([Intel XE#455]) -> [SKIP][269] ([Intel XE#1201] / [Intel XE#455]) +6 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-432/igt@kms_vrr@flip-dpms.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-434/igt@kms_vrr@flip-dpms.html
* igt@kms_writeback@writeback-check-output:
- shard-dg2-set2: [SKIP][270] ([Intel XE#1201] / [Intel XE#756]) -> [SKIP][271] ([Intel XE#756])
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-463/igt@kms_writeback@writeback-check-output.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-432/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg2-set2: [SKIP][272] ([Intel XE#756]) -> [SKIP][273] ([Intel XE#1201] / [Intel XE#756])
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-432/igt@kms_writeback@writeback-fb-id.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-463/igt@kms_writeback@writeback-fb-id.html
* igt@xe_compute_preempt@compute-preempt:
- shard-dg2-set2: [SKIP][274] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][275] ([Intel XE#1201] / [Intel XE#1280] / [Intel XE#455]) +1 other test skip
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-432/igt@xe_compute_preempt@compute-preempt.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-434/igt@xe_compute_preempt@compute-preempt.html
* igt@xe_copy_basic@mem-set-linear-0x3fff:
- shard-dg2-set2: [SKIP][276] ([Intel XE#1126] / [Intel XE#1201]) -> [SKIP][277] ([Intel XE#1126]) +1 other test skip
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-464/igt@xe_copy_basic@mem-set-linear-0x3fff.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0x3fff.html
* igt@xe_evict@evict-beng-mixed-many-threads-large:
- shard-dg2-set2: [TIMEOUT][278] ([Intel XE#1041] / [Intel XE#1473] / [Intel XE#392]) -> [INCOMPLETE][279] ([Intel XE#1195] / [Intel XE#1473])
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-436/igt@xe_evict@evict-beng-mixed-many-threads-large.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-466/igt@xe_evict@evict-beng-mixed-many-threads-large.html
* igt@xe_exec_fault_mode@once-rebind-prefetch:
- shard-dg2-set2: [SKIP][280] ([Intel XE#288]) -> [SKIP][281] ([Intel XE#1201] / [Intel XE#288]) +12 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-432/igt@xe_exec_fault_mode@once-rebind-prefetch.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-433/igt@xe_exec_fault_mode@once-rebind-prefetch.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-imm:
- shard-dg2-set2: [SKIP][282] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][283] ([Intel XE#288]) +14 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-435/igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-imm.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-432/igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-imm.html
* igt@xe_pat@pat-index-xehpc:
- shard-dg2-set2: [SKIP][284] ([Intel XE#979]) -> [SKIP][285] ([Intel XE#1201] / [Intel XE#979])
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-432/igt@xe_pat@pat-index-xehpc.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-435/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pm@d3cold-basic:
- shard-dg2-set2: [SKIP][286] ([Intel XE#1201] / [Intel XE#366]) -> [SKIP][287] ([Intel XE#366])
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-434/igt@xe_pm@d3cold-basic.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-432/igt@xe_pm@d3cold-basic.html
* igt@xe_pm@s3-vm-bind-prefetch:
- shard-dg2-set2: [DMESG-WARN][288] ([Intel XE#1162] / [Intel XE#1214] / [Intel XE#1551]) -> [DMESG-WARN][289] ([Intel XE#1162] / [Intel XE#1551])
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-466/igt@xe_pm@s3-vm-bind-prefetch.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-432/igt@xe_pm@s3-vm-bind-prefetch.html
* igt@xe_query@multigpu-query-gt-list:
- shard-dg2-set2: [SKIP][290] ([Intel XE#944]) -> [SKIP][291] ([Intel XE#1201] / [Intel XE#944]) +1 other test skip
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7867/shard-dg2-432/igt@xe_query@multigpu-query-gt-list.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/shard-dg2-435/igt@xe_query@multigpu-query-gt-list.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1041]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1041
[Intel XE#1045]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1045
[Intel XE#1050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1050
[Intel XE#1062]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1062
[Intel XE#1081]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1081
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1134
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158
[Intel XE#1162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162
[Intel XE#1169]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1169
[Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201
[Intel XE#1205]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1205
[Intel XE#1214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1214
[Intel XE#1234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1234
[Intel XE#1235]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1235
[Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1330
[Intel XE#1345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1345
[Intel XE#1351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1351
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1413
[Intel XE#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1441]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1441
[Intel XE#1444]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1444
[Intel XE#1446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1446
[Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
[Intel XE#1465]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1465
[Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1488
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1548
[Intel XE#1551]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1551
[Intel XE#1595]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1595
[Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600
[Intel XE#1602]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1602
[Intel XE#1620]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1620
[Intel XE#1638]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1638
[Intel XE#1646]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1646
[Intel XE#1650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1650
[Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
[Intel XE#1663]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1663
[Intel XE#1664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1664
[Intel XE#1667]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1667
[Intel XE#1694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1694
[Intel XE#1699]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1699
[Intel XE#1713]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1713
[Intel XE#1725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1725
[Intel XE#1733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1733
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1760
[Intel XE#1761]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1761
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#1830]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1830
[Intel XE#1850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1850
[Intel XE#1899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1899
[Intel XE#1908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1908
[Intel XE#282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/282
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/305
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/374
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/380
[Intel XE#392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/392
[Intel XE#417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/417
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
[Intel XE#904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/904
[Intel XE#909]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/909
[Intel XE#910]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/910
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#6077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6077
Build changes
-------------
* IGT: IGT_7867 -> IGTPW_11173
IGTPW_11173: 8aea6a45df44ef06c95401f9bc9e04c900f18980 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_7867: f3006a13799e3bc45d754aa8ad318394277d69ac @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1323-b134db8544f8d5b8a960b368afe12820c3cbe8cd: b134db8544f8d5b8a960b368afe12820c3cbe8cd
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11173/index.html
[-- Attachment #2: Type: text/html, Size: 103745 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-05-22 9:00 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-22 5:11 [PATCH i-g-t v2] tests/kms_plane: Implement dynamic level execution across multiple planes Pranay Samala
2024-05-22 6:01 ` ✗ Fi.CI.BAT: failure for tests/kms_plane: Implement dynamic level execution across multiple planes (rev2) Patchwork
2024-05-22 6:43 ` ✗ CI.xeBAT: " Patchwork
2024-05-22 9:00 ` ✗ CI.xeFULL: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox