* [PATCH i-g-t] tests/kms_plane: Implement dynamic level execution across multiple planes
@ 2024-05-21 3:22 Pranay Samala
2024-05-21 4:04 ` ✓ CI.xeBAT: success for " Patchwork
` (5 more replies)
0 siblings, 6 replies; 7+ messages in thread
From: Pranay Samala @ 2024-05-21 3:22 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 current plane of that pipe.
Updating the test to execute on multiple planes on dynamic level.
Signed-off-by: Pranay Samala <pranay.samala@intel.com>
---
tests/kms_plane.c | 107 +++++++++++++++++++++++-----------------------
1 file changed, 54 insertions(+), 53 deletions(-)
diff --git a/tests/kms_plane.c b/tests/kms_plane.c
index 406aecc04..f476ed52f 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,7 +285,7 @@ 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",
+ 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);
@@ -449,59 +449,60 @@ test_plane_panning_with_output(data_t *data,
static void
test_plane_panning(data_t *data, enum pipe pipe)
{
- bool mode_found = false;
- uint64_t mem_size = 0;
- igt_output_t *output = data->output;
- igt_crc_t ref_crc;
-
- igt_info("Using (pipe %s + %s) to run the subtest.\n",
- kmstest_pipe_name(pipe), igt_output_name(output));
+ igt_dynamic_f("pipe-%s", kmstest_pipe_name(pipe)) {
+ bool mode_found = false;
+ uint64_t mem_size = 0;
+ igt_output_t *output = data->output;
+ igt_crc_t ref_crc;
- test_init(data, pipe);
+ igt_info("Using (pipe %s + %s) to run the subtest.\n",
+ kmstest_pipe_name(pipe), igt_output_name(output));
- if (is_i915_device(data->drm_fd)) {
- for_each_memory_region(r, data->drm_fd)
- if (r->ci.memory_class == I915_MEMORY_CLASS_DEVICE)
- mem_size = r->cpu_size;
+ test_init(data, pipe);
- }
+ if (is_i915_device(data->drm_fd)) {
+ 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)) {
- struct drm_xe_mem_region *memregion;
- uint64_t memreg = all_memory_regions(data->drm_fd), region;
+ if (is_xe_device(data->drm_fd)) {
+ struct drm_xe_mem_region *memregion;
+ uint64_t memreg = all_memory_regions(data->drm_fd), region;
- xe_for_each_mem_region(data->drm_fd, memreg, region) {
- memregion = xe_mem_region(data->drm_fd, region);
+ xe_for_each_mem_region(data->drm_fd, memreg, region) {
+ memregion = xe_mem_region(data->drm_fd, region);
- if (XE_IS_CLASS_VRAM(memregion))
- mem_size = memregion->total_size;
+ if (XE_IS_CLASS_VRAM(memregion))
+ mem_size = memregion->total_size;
+ }
}
- }
- for_each_connector_mode(output) {
- drmModeModeInfo *m = &output->config.connector->modes[j__];
- uint32_t fb_size = m->hdisplay * m->vdisplay * 4;
+ for_each_connector_mode(output) {
+ drmModeModeInfo *m = &output->config.connector->modes[j__];
+ uint32_t fb_size = m->hdisplay * m->vdisplay * 4;
- /* test allocates 2 double-dim fbs, add one more, to be safe */
- if (mem_size && 3 * 4 * fb_size > mem_size) {
- igt_debug("Skipping mode %s due to low memory\n", m->name);
- continue;
- }
+ /* test allocates 2 double-dim fbs, add one more, to be safe */
+ if (mem_size && 3 * 4 * fb_size > mem_size) {
+ igt_debug("Skipping mode %s due to low memory\n", m->name);
+ continue;
+ }
- igt_output_override_mode(output, m);
- mode_found = true;
- break;
- }
- igt_require(mode_found);
+ igt_output_override_mode(output, m);
+ mode_found = true;
+ break;
+ }
+ igt_require(mode_found);
- if (data->flags & TEST_PANNING_TOP_LEFT)
- test_grab_crc(data, output, pipe, &red, data->flags, &ref_crc);
- else
- test_grab_crc(data, output, pipe, &blue, data->flags, &ref_crc);
+ if (data->flags & TEST_PANNING_TOP_LEFT)
+ test_grab_crc(data, output, pipe, &red, data->flags, &ref_crc);
+ else
+ test_grab_crc(data, output, pipe, &blue, data->flags, &ref_crc);
- test_plane_panning_with_output(data, pipe, output, &ref_crc, data->flags);
+ test_plane_panning_with_output(data, pipe, output, &ref_crc, data->flags);
- test_fini(data);
+ test_fini(data);
+ }
}
static const color_t colors_extended[] = {
@@ -889,7 +890,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,7 +928,7 @@ 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_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),
@@ -1043,7 +1044,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 +1090,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 +1212,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,8 +1319,7 @@ 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;
--
2.34.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* ✓ CI.xeBAT: success for tests/kms_plane: Implement dynamic level execution across multiple planes
2024-05-21 3:22 [PATCH i-g-t] tests/kms_plane: Implement dynamic level execution across multiple planes Pranay Samala
@ 2024-05-21 4:04 ` Patchwork
2024-05-21 4:16 ` ✓ Fi.CI.BAT: " Patchwork
` (4 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-05-21 4:04 UTC (permalink / raw)
To: Pranay Samala; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 4264 bytes --]
== Series Details ==
Series: tests/kms_plane: Implement dynamic level execution across multiple planes
URL : https://patchwork.freedesktop.org/series/133839/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7864_BAT -> XEIGTPW_11166_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (5 -> 5)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_11166_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_evict@evict-beng-small-external:
- bat-pvc-2: NOTRUN -> [FAIL][1] ([Intel XE#1000]) +3 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/bat-pvc-2/igt@xe_evict@evict-beng-small-external.html
* igt@xe_evict@evict-small-external-cm:
- bat-pvc-2: NOTRUN -> [DMESG-FAIL][2] ([Intel XE#482]) +3 other tests dmesg-fail
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/bat-pvc-2/igt@xe_evict@evict-small-external-cm.html
* igt@xe_gt_freq@freq_range_idle:
- bat-pvc-2: NOTRUN -> [SKIP][3] ([Intel XE#1021]) +1 other test skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/bat-pvc-2/igt@xe_gt_freq@freq_range_idle.html
* igt@xe_huc_copy@huc_copy:
- bat-pvc-2: NOTRUN -> [SKIP][4] ([Intel XE#255])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/bat-pvc-2/igt@xe_huc_copy@huc_copy.html
* igt@xe_intel_bb@render:
- bat-pvc-2: NOTRUN -> [SKIP][5] ([Intel XE#532])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/bat-pvc-2/igt@xe_intel_bb@render.html
* igt@xe_pat@pat-index-xe2:
- bat-pvc-2: NOTRUN -> [SKIP][6] ([Intel XE#977]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/bat-pvc-2/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xehpc@render:
- bat-pvc-2: NOTRUN -> [SKIP][7] ([Intel XE#976])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/bat-pvc-2/igt@xe_pat@pat-index-xehpc@render.html
* igt@xe_pat@pat-index-xelpg:
- bat-pvc-2: NOTRUN -> [SKIP][8] ([Intel XE#979])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/bat-pvc-2/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm_residency@gt-c6-on-idle:
- bat-pvc-2: NOTRUN -> [SKIP][9] ([Intel XE#531])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/bat-pvc-2/igt@xe_pm_residency@gt-c6-on-idle.html
#### Possible fixes ####
* igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-rebind:
- bat-pvc-2: [INCOMPLETE][10] -> [PASS][11]
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/bat-pvc-2/igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-rebind.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/bat-pvc-2/igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-rebind.html
[Intel XE#1000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1000
[Intel XE#1021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1021
[Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
[Intel XE#482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/482
[Intel XE#531]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/531
[Intel XE#532]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/532
[Intel XE#976]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/976
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
Build changes
-------------
* IGT: IGT_7864 -> IGTPW_11166
* Linux: xe-1310-1ba62f8cea9c797427d45108df1d453f4b343240 -> xe-1311-3addfb8584a4fcbff8123461682e5bdfd8785bde
IGTPW_11166: 11166
IGT_7864: 8eff53c9664fa0abaa55b403c9f10f96260e44b7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1310-1ba62f8cea9c797427d45108df1d453f4b343240: 1ba62f8cea9c797427d45108df1d453f4b343240
xe-1311-3addfb8584a4fcbff8123461682e5bdfd8785bde: 3addfb8584a4fcbff8123461682e5bdfd8785bde
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/index.html
[-- Attachment #2: Type: text/html, Size: 5072 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ Fi.CI.BAT: success for tests/kms_plane: Implement dynamic level execution across multiple planes
2024-05-21 3:22 [PATCH i-g-t] tests/kms_plane: Implement dynamic level execution across multiple planes Pranay Samala
2024-05-21 4:04 ` ✓ CI.xeBAT: success for " Patchwork
@ 2024-05-21 4:16 ` Patchwork
2024-05-21 4:54 ` ✗ CI.xeFULL: failure " Patchwork
` (3 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-05-21 4:16 UTC (permalink / raw)
To: Pranay Samala; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 4044 bytes --]
== Series Details ==
Series: tests/kms_plane: Implement dynamic level execution across multiple planes
URL : https://patchwork.freedesktop.org/series/133839/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_14786 -> IGTPW_11166
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/index.html
Participating hosts (41 -> 38)
------------------------------
Additional (1): bat-jsl-1
Missing (4): fi-cfl-8109u bat-dg1-7 fi-glk-j4005 bat-atsm-1
Known issues
------------
Here are the changes found in IGTPW_11166 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-jsl-1: NOTRUN -> [SKIP][1] ([i915#9318])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/bat-jsl-1/igt@debugfs_test@basic-hwmon.html
* igt@gem_huc_copy@huc-copy:
- bat-jsl-1: NOTRUN -> [SKIP][2] ([i915#2190])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/bat-jsl-1/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@verify-random:
- bat-jsl-1: NOTRUN -> [SKIP][3] ([i915#4613]) +3 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/bat-jsl-1/igt@gem_lmem_swapping@verify-random.html
* igt@i915_selftest@live@execlists:
- fi-bsw-nick: [PASS][4] -> [ABORT][5] ([i915#10594])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14786/fi-bsw-nick/igt@i915_selftest@live@execlists.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/fi-bsw-nick/igt@i915_selftest@live@execlists.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-jsl-1: NOTRUN -> [SKIP][6] ([i915#4103]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/bat-jsl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-jsl-1: NOTRUN -> [SKIP][7] ([i915#3555] / [i915#9886])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/bat-jsl-1/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-jsl-1: NOTRUN -> [SKIP][8]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/bat-jsl-1/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-jsl-1: NOTRUN -> [SKIP][9] ([i915#3555])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/bat-jsl-1/igt@kms_setmode@basic-clone-single-crtc.html
#### Possible fixes ####
* igt@gem_lmem_swapping@basic@lmem0:
- bat-dg2-11: [FAIL][10] ([i915#10378]) -> [PASS][11]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14786/bat-dg2-11/igt@gem_lmem_swapping@basic@lmem0.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/bat-dg2-11/igt@gem_lmem_swapping@basic@lmem0.html
[i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378
[i915#10594]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10594
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
[i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7864 -> IGTPW_11166
CI-20190529: 20190529
CI_DRM_14786: 3addfb8584a4fcbff8123461682e5bdfd8785bde @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11166: 11166
IGT_7864: 8eff53c9664fa0abaa55b403c9f10f96260e44b7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/index.html
[-- Attachment #2: Type: text/html, Size: 4938 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ CI.xeFULL: failure for tests/kms_plane: Implement dynamic level execution across multiple planes
2024-05-21 3:22 [PATCH i-g-t] tests/kms_plane: Implement dynamic level execution across multiple planes Pranay Samala
2024-05-21 4:04 ` ✓ CI.xeBAT: success for " Patchwork
2024-05-21 4:16 ` ✓ Fi.CI.BAT: " Patchwork
@ 2024-05-21 4:54 ` Patchwork
2024-05-21 18:21 ` [PATCH i-g-t] " Juha-Pekka Heikkila
` (2 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-05-21 4:54 UTC (permalink / raw)
To: Pranay Samala; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 66206 bytes --]
== Series Details ==
Series: tests/kms_plane: Implement dynamic level execution across multiple planes
URL : https://patchwork.freedesktop.org/series/133839/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_7864_full -> XEIGTPW_11166_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11166_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11166_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_11166_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-436/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-432/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs.html
* igt@xe_pm_residency@idle-residency:
- shard-dg2-set2: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-432/igt@xe_pm_residency@idle-residency.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-436/igt@xe_pm_residency@idle-residency.html
#### Warnings ####
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-set2: [SKIP][5] ([Intel XE#1201]) -> [SKIP][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-432/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_content_protection@lic-type-0:
- {shard-lnl}: [SKIP][7] ([Intel XE#1446]) -> [FAIL][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-lnl-8/igt@kms_content_protection@lic-type-0.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-lnl-1/igt@kms_content_protection@lic-type-0.html
* igt@xe_exec_threads@threads-hang-fd-userptr:
- {shard-lnl}: [PASS][9] -> [ABORT][10]
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-lnl-1/igt@xe_exec_threads@threads-hang-fd-userptr.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-lnl-3/igt@xe_exec_threads@threads-hang-fd-userptr.html
New tests
---------
New tests have been introduced between XEIGT_7864_full and XEIGTPW_11166_full:
### New IGT tests (42) ###
* igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-0:
- Statuses : 2 pass(s)
- Exec time: [7.30, 8.98] s
* igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-3:
- Statuses : 2 pass(s)
- Exec time: [4.45, 4.93] s
* igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-5:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0:
- Statuses : 2 pass(s)
- Exec time: [7.33, 8.77] s
* igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-3:
- Statuses : 2 pass(s)
- Exec time: [4.30, 4.92] s
* igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-5:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_plane@pixel-format@pipe-a-plane-0:
- Statuses : 1 pass(s)
- Exec time: [8.42] s
* igt@kms_plane@pixel-format@pipe-a-plane-3:
- Statuses : 1 pass(s)
- Exec time: [4.88] s
* igt@kms_plane@pixel-format@pipe-a-plane-5:
- Statuses : 1 pass(s)
- Exec time: [0.21] s
* igt@kms_plane@pixel-format@pipe-b-plane-0:
- Statuses : 1 pass(s)
- Exec time: [8.20] s
* igt@kms_plane@pixel-format@pipe-b-plane-3:
- Statuses : 1 pass(s)
- Exec time: [4.96] s
* igt@kms_plane@pixel-format@pipe-b-plane-5:
- Statuses : 1 pass(s)
- Exec time: [0.21] s
* igt@kms_plane@plane-position-covered@pipe-a-plane-1:
- Statuses : 2 pass(s)
- Exec time: [0.35, 1.49] s
* igt@kms_plane@plane-position-covered@pipe-a-plane-2:
- Statuses : 2 pass(s)
- Exec time: [0.35, 1.53] s
* igt@kms_plane@plane-position-covered@pipe-a-plane-3:
- Statuses : 2 pass(s)
- Exec time: [0.35, 1.46] s
* igt@kms_plane@plane-position-covered@pipe-a-plane-4:
- Statuses : 2 pass(s)
- Exec time: [0.34, 1.49] s
* igt@kms_plane@plane-position-covered@pipe-a-plane-5:
- Statuses : 2 pass(s)
- Exec time: [0.01, 0.03] s
* igt@kms_plane@plane-position-covered@pipe-b-plane-1:
- Statuses : 2 pass(s)
- Exec time: [0.36, 1.49] s
* igt@kms_plane@plane-position-covered@pipe-b-plane-2:
- Statuses : 2 pass(s)
- Exec time: [0.35, 1.46] s
* igt@kms_plane@plane-position-covered@pipe-b-plane-3:
- Statuses : 2 pass(s)
- Exec time: [0.35, 1.49] s
* igt@kms_plane@plane-position-covered@pipe-b-plane-4:
- Statuses : 2 pass(s)
- Exec time: [0.36, 1.54] s
* igt@kms_plane@plane-position-covered@pipe-b-plane-5:
- Statuses : 2 pass(s)
- Exec time: [0.02] s
* igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-1:
- Statuses : 1 pass(s)
- Exec time: [0.48] s
* igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-2:
- Statuses : 1 pass(s)
- Exec time: [0.47] s
* igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-3:
- Statuses : 1 pass(s)
- Exec time: [0.47] 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.02] s
* igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-1:
- Statuses : 1 pass(s)
- Exec time: [0.49] 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.48] s
* igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-4:
- Statuses : 1 pass(s)
- Exec time: [0.51] 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 : 1 pass(s)
- Exec time: [0.37] s
* igt@kms_plane@plane-position-hole@pipe-a-plane-2:
- Statuses : 1 pass(s)
- Exec time: [0.36] s
* igt@kms_plane@plane-position-hole@pipe-a-plane-3:
- Statuses : 1 pass(s)
- Exec time: [0.35] s
* igt@kms_plane@plane-position-hole@pipe-a-plane-4:
- Statuses : 1 pass(s)
- Exec time: [0.35] s
* igt@kms_plane@plane-position-hole@pipe-a-plane-5:
- Statuses : 1 pass(s)
- Exec time: [0.01] s
* igt@kms_plane@plane-position-hole@pipe-b-plane-1:
- Statuses : 1 pass(s)
- Exec time: [0.36] s
* igt@kms_plane@plane-position-hole@pipe-b-plane-2:
- Statuses : 1 pass(s)
- Exec time: [0.36] s
* igt@kms_plane@plane-position-hole@pipe-b-plane-3:
- Statuses : 1 pass(s)
- Exec time: [0.36] s
* igt@kms_plane@plane-position-hole@pipe-b-plane-4:
- Statuses : 1 pass(s)
- Exec time: [0.36] s
* igt@kms_plane@plane-position-hole@pipe-b-plane-5:
- Statuses : 1 pass(s)
- Exec time: [0.01] s
Known issues
------------
Here are the changes found in XEIGTPW_11166_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@hotrebind:
- shard-dg2-set2: NOTRUN -> [DMESG-FAIL][11] ([Intel XE#1548])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-433/igt@core_hotunplug@hotrebind.html
* igt@kms_addfb_basic@addfb25-bad-modifier:
- shard-dg2-set2: [PASS][12] -> [SKIP][13] ([Intel XE#1201] / [i915#6077])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-432/igt@kms_addfb_basic@addfb25-bad-modifier.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-463/igt@kms_addfb_basic@addfb25-bad-modifier.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180:
- shard-dg2-set2: [PASS][14] -> [SKIP][15] ([Intel XE#1201] / [Intel XE#829]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-432/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-463/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#1201] / [Intel XE#316])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-436/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#1124] / [Intel XE#1201])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-434/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#1201] / [Intel XE#367])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-434/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#1201] / [Intel XE#787]) +6 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-a-dp-4.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#787]) +6 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#455] / [Intel XE#787])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#1201] / [Intel XE#1252])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#1201] / [Intel XE#373]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-464/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_cursor_crc@cursor-rapid-movement-256x256@pipe-d-hdmi-a-6:
- shard-dg2-set2: [PASS][25] -> [DMESG-WARN][26] ([Intel XE#1214] / [Intel XE#282]) +5 other tests dmesg-warn
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-436/igt@kms_cursor_crc@cursor-rapid-movement-256x256@pipe-d-hdmi-a-6.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-436/igt@kms_cursor_crc@cursor-rapid-movement-256x256@pipe-d-hdmi-a-6.html
* igt@kms_cursor_legacy@cursor-vs-flip-varying-size:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][27] ([Intel XE#1214] / [Intel XE#282])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-436/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
* igt@kms_feature_discovery@psr1:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#1135] / [Intel XE#1201])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-435/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@bo-too-big-interruptible:
- shard-dg2-set2: [PASS][29] -> [SKIP][30] ([Intel XE#1201]) +7 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-435/igt@kms_flip@bo-too-big-interruptible.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-463/igt@kms_flip@bo-too-big-interruptible.html
* igt@kms_frontbuffer_tracking@drrs-slowdraw:
- shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#1201] / [Intel XE#651]) +5 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-slowdraw.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt:
- shard-dg2-set2: [PASS][32] -> [SKIP][33] ([Intel XE#1201] / [Intel XE#1234])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#653])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#1201] / [Intel XE#653]) +2 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2-set2: [PASS][36] -> [SKIP][37] ([Intel XE#1201] / [Intel XE#455])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-463/igt@kms_hdr@invalid-hdr.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-435/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [FAIL][38] ([Intel XE#616])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-434/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-6.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-dg2-set2: [PASS][39] -> [DMESG-WARN][40] ([Intel XE#1162] / [Intel XE#1214]) +5 other tests dmesg-warn
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-466/igt@kms_pipe_crc_basic@suspend-read-crc.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-463/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers:
- shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#1201]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-463/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#1201] / [Intel XE#305]) +2 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-hdmi-a-6.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#1201] / [Intel XE#305] / [Intel XE#455]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-6.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#1201] / [Intel XE#870])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-463/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_prop_blob@basic:
- shard-dg2-set2: [PASS][45] -> [SKIP][46] ([Intel XE#1201] / [Intel XE#780])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-436/igt@kms_prop_blob@basic.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-463/igt@kms_prop_blob@basic.html
* igt@kms_psr@fbc-psr-primary-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#1201] / [Intel XE#929]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-463/igt@kms_psr@fbc-psr-primary-blt.html
* igt@kms_psr@fbc-psr2-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#929])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-432/igt@kms_psr@fbc-psr2-suspend.html
* igt@kms_universal_plane@cursor-fb-leak:
- shard-dg2-set2: [PASS][49] -> [FAIL][50] ([Intel XE#771] / [Intel XE#899])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-464/igt@kms_universal_plane@cursor-fb-leak.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-432/igt@kms_universal_plane@cursor-fb-leak.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][51] -> [FAIL][52] ([Intel XE#899])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-464/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-6.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-432/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-6.html
* igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01:
- shard-dg2-set2: [PASS][53] -> [DMESG-WARN][54] ([Intel XE#1214]) +3 other tests dmesg-warn
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-432/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-434/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html
* igt@xe_evict@evict-beng-threads-large:
- shard-dg2-set2: [PASS][55] -> [TIMEOUT][56] ([Intel XE#1473])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-436/igt@xe_evict@evict-beng-threads-large.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-466/igt@xe_evict@evict-beng-threads-large.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#1201] / [Intel XE#288]) +5 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-435/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind-imm.html
* igt@xe_exec_fault_mode@twice-bindexecqueue:
- shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#288])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-432/igt@xe_exec_fault_mode@twice-bindexecqueue.html
* igt@xe_live_ktest@xe_bo:
- shard-dg2-set2: [PASS][59] -> [SKIP][60] ([Intel XE#1192] / [Intel XE#1201])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-435/igt@xe_live_ktest@xe_bo.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-435/igt@xe_live_ktest@xe_bo.html
* igt@xe_pm@s3-vm-bind-prefetch:
- shard-dg2-set2: [PASS][61] -> [DMESG-WARN][62] ([Intel XE#1162] / [Intel XE#1214] / [Intel XE#1551])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-463/igt@xe_pm@s3-vm-bind-prefetch.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-433/igt@xe_pm@s3-vm-bind-prefetch.html
* igt@xe_query@multigpu-query-engines:
- shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#1201] / [Intel XE#944])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-435/igt@xe_query@multigpu-query-engines.html
#### Possible fixes ####
* igt@core_setmaster@master-drop-set-user:
- shard-dg2-set2: [DMESG-WARN][64] ([Intel XE#1162]) -> [PASS][65] +2 other tests pass
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-432/igt@core_setmaster@master-drop-set-user.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-466/igt@core_setmaster@master-drop-set-user.html
* igt@kms_addfb_basic@bo-too-small:
- shard-dg2-set2: [SKIP][66] ([Intel XE#1201] / [i915#6077]) -> [PASS][67]
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-433/igt@kms_addfb_basic@bo-too-small.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-436/igt@kms_addfb_basic@bo-too-small.html
* igt@kms_async_flips@test-cursor:
- shard-dg2-set2: [DMESG-WARN][68] ([Intel XE#1214] / [Intel XE#282]) -> [PASS][69] +3 other tests pass
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-433/igt@kms_async_flips@test-cursor.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-436/igt@kms_async_flips@test-cursor.html
* igt@kms_atomic@atomic-invalid-params:
- {shard-lnl}: [FAIL][70] -> [PASS][71]
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-lnl-5/igt@kms_atomic@atomic-invalid-params.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-lnl-7/igt@kms_atomic@atomic-invalid-params.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- {shard-lnl}: [SKIP][72] ([Intel XE#1134]) -> [PASS][73]
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-lnl-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-lnl-4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_cursor_crc@cursor-offscreen-64x64:
- shard-dg2-set2: [SKIP][74] ([Intel XE#1201] / [Intel XE#1226]) -> [PASS][75]
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-433/igt@kms_cursor_crc@cursor-offscreen-64x64.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-434/igt@kms_cursor_crc@cursor-offscreen-64x64.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-dg2-set2: [DMESG-WARN][76] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#910]) -> [PASS][77] +1 other test pass
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-464/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-463/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@single-move@pipe-a:
- shard-dg2-set2: [DMESG-WARN][78] ([Intel XE#1214] / [Intel XE#877]) -> [PASS][79] +1 other test pass
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-466/igt@kms_cursor_legacy@single-move@pipe-a.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-466/igt@kms_cursor_legacy@single-move@pipe-a.html
* igt@kms_flip@2x-flip-vs-panning@ac-hdmi-a6-dp4:
- shard-dg2-set2: [DMESG-WARN][80] ([Intel XE#1214]) -> [PASS][81]
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-433/igt@kms_flip@2x-flip-vs-panning@ac-hdmi-a6-dp4.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-436/igt@kms_flip@2x-flip-vs-panning@ac-hdmi-a6-dp4.html
* igt@kms_flip@flip-vs-suspend@d-dp4:
- shard-dg2-set2: [INCOMPLETE][82] ([Intel XE#1195]) -> [PASS][83]
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-464/igt@kms_flip@flip-vs-suspend@d-dp4.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-434/igt@kms_flip@flip-vs-suspend@d-dp4.html
* igt@kms_flip@plain-flip-ts-check@a-edp1:
- {shard-lnl}: [FAIL][84] ([Intel XE#480] / [Intel XE#886]) -> [PASS][85] +3 other tests pass
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-lnl-1/igt@kms_flip@plain-flip-ts-check@a-edp1.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-lnl-5/igt@kms_flip@plain-flip-ts-check@a-edp1.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-wc:
- {shard-lnl}: [INCOMPLETE][86] ([Intel XE#1595] / [Intel XE#1602] / [Intel XE#1760]) -> [PASS][87]
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-lnl-5/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-wc.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-lnl-3/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-wc.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12:
- shard-dg2-set2: [SKIP][88] ([Intel XE#1201] / [Intel XE#829]) -> [PASS][89] +1 other test pass
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-433/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-436/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6:
- shard-dg2-set2: [FAIL][90] ([Intel XE#361]) -> [PASS][91]
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-dg2-set2: [DMESG-WARN][92] -> [PASS][93] +1 other test pass
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-432/igt@kms_pm_rpm@system-suspend-modeset.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-433/igt@kms_pm_rpm@system-suspend-modeset.html
- {shard-lnl}: [DMESG-WARN][94] ([Intel XE#1830]) -> [PASS][95]
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-lnl-3/igt@kms_pm_rpm@system-suspend-modeset.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-lnl-1/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- {shard-lnl}: [SKIP][96] ([Intel XE#1733]) -> [PASS][97] +6 other tests pass
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-lnl-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-lnl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_vblank@query-forked-busy:
- {shard-lnl}: [INCOMPLETE][98] -> [PASS][99]
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-lnl-4/igt@kms_vblank@query-forked-busy.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-lnl-4/igt@kms_vblank@query-forked-busy.html
* igt@xe_evict@evict-mixed-threads-large:
- shard-dg2-set2: [INCOMPLETE][100] ([Intel XE#1473] / [Intel XE#392]) -> [PASS][101]
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-432/igt@xe_evict@evict-mixed-threads-large.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-434/igt@xe_evict@evict-mixed-threads-large.html
* igt@xe_evict@evict-threads-large:
- shard-dg2-set2: [TIMEOUT][102] ([Intel XE#1473] / [Intel XE#392]) -> [PASS][103]
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-434/igt@xe_evict@evict-threads-large.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-436/igt@xe_evict@evict-threads-large.html
* igt@xe_exec_compute_mode@once-userptr-invalidate-race:
- {shard-lnl}: [SKIP][104] ([Intel XE#1699]) -> [PASS][105] +5 other tests pass
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-lnl-5/igt@xe_exec_compute_mode@once-userptr-invalidate-race.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-lnl-2/igt@xe_exec_compute_mode@once-userptr-invalidate-race.html
* igt@xe_module_load@many-reload:
- shard-dg2-set2: [DMESG-WARN][106] ([Intel XE#1162] / [Intel XE#1214]) -> [PASS][107]
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-463/igt@xe_module_load@many-reload.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-466/igt@xe_module_load@many-reload.html
* igt@xe_vm@large-split-binds-536870912:
- {shard-lnl}: [SKIP][108] ([Intel XE#1130] / [Intel XE#1699]) -> [PASS][109] +4 other tests pass
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-lnl-5/igt@xe_vm@large-split-binds-536870912.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-lnl-7/igt@xe_vm@large-split-binds-536870912.html
#### Warnings ####
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-dg2-set2: [SKIP][110] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][111] ([Intel XE#1201] / [Intel XE#829])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-463/igt@kms_big_fb@linear-64bpp-rotate-90.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-463/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][112] ([Intel XE#316]) -> [SKIP][113] ([Intel XE#1201] / [Intel XE#316]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-432/igt@kms_big_fb@linear-8bpp-rotate-270.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-464/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-270:
- shard-dg2-set2: [SKIP][114] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][115] ([Intel XE#1124]) +3 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-463/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-432/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2-set2: [SKIP][116] ([Intel XE#610]) -> [SKIP][117] ([Intel XE#1201] / [Intel XE#610])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-463/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg2-set2: [SKIP][118] ([Intel XE#1124]) -> [SKIP][119] ([Intel XE#1124] / [Intel XE#1201]) +5 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-463/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_joiner@basic:
- shard-dg2-set2: [SKIP][120] ([Intel XE#1201] / [Intel XE#346]) -> [SKIP][121] ([Intel XE#346])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-466/igt@kms_big_joiner@basic.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-432/igt@kms_big_joiner@basic.html
* igt@kms_big_joiner@invalid-modeset:
- shard-dg2-set2: [SKIP][122] ([Intel XE#346]) -> [SKIP][123] ([Intel XE#1201] / [Intel XE#346])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-432/igt@kms_big_joiner@invalid-modeset.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-464/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_bw@linear-tiling-2-displays-3840x2160p:
- shard-dg2-set2: [SKIP][124] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][125] ([Intel XE#367]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-435/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-432/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-d-dp-4:
- shard-dg2-set2: [SKIP][126] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][127] ([Intel XE#455] / [Intel XE#787]) +7 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-435/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-d-dp-4.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-432/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-a-dp-4:
- shard-dg2-set2: [SKIP][128] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][129] ([Intel XE#787]) +27 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-434/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-a-dp-4.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-a-dp-4.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: [SKIP][130] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][131] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +21 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-436/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs:
- shard-dg2-set2: [SKIP][132] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][133] ([Intel XE#1201] / [Intel XE#829])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-466/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-463/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [TIMEOUT][134] ([Intel XE#1850]) -> [SKIP][135] ([Intel XE#1201] / [Intel XE#829])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-436/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/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-mtl-rc-ccs-cc:
- shard-dg2-set2: [SKIP][136] ([Intel XE#1201] / [Intel XE#829]) -> [SKIP][137] ([Intel XE#455] / [Intel XE#787])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: [SKIP][138] ([Intel XE#787]) -> [SKIP][139] ([Intel XE#1201] / [Intel XE#787]) +76 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-dg2-set2: [SKIP][140] ([Intel XE#1201] / [Intel XE#306]) -> [SKIP][141] ([Intel XE#306]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-463/igt@kms_chamelium_color@ctm-0-50.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-432/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@gamma:
- shard-dg2-set2: [SKIP][142] ([Intel XE#306]) -> [SKIP][143] ([Intel XE#1201] / [Intel XE#306])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-432/igt@kms_chamelium_color@gamma.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-435/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_hpd@hdmi-hpd:
- shard-dg2-set2: [SKIP][144] ([Intel XE#373]) -> [SKIP][145] ([Intel XE#1201] / [Intel XE#373]) +6 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-434/igt@kms_chamelium_hpd@hdmi-hpd.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-dg2-set2: [SKIP][146] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][147] ([Intel XE#1201])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-433/igt@kms_chamelium_hpd@vga-hpd-fast.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-463/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_chamelium_hpd@vga-hpd-without-ddc:
- shard-dg2-set2: [SKIP][148] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][149] ([Intel XE#373]) +3 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-435/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-432/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg2-set2: [SKIP][150] ([Intel XE#307]) -> [SKIP][151] ([Intel XE#1201] / [Intel XE#307])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-432/igt@kms_content_protection@dp-mst-type-0.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-463/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg2-set2: [SKIP][152] ([Intel XE#308]) -> [SKIP][153] ([Intel XE#1201] / [Intel XE#308]) +2 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-432/igt@kms_cursor_crc@cursor-onscreen-512x512.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-463/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-dg2-set2: [SKIP][154] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][155] ([Intel XE#1201]) +1 other test skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-464/igt@kms_cursor_crc@cursor-onscreen-max-size.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-463/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_edge_walk@256x256-left-edge@pipe-a-hdmi-a-6:
- shard-dg2-set2: [DMESG-WARN][156] ([Intel XE#282]) -> [DMESG-WARN][157] ([Intel XE#1214] / [Intel XE#282]) +4 other tests dmesg-warn
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-432/igt@kms_cursor_edge_walk@256x256-left-edge@pipe-a-hdmi-a-6.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-463/igt@kms_cursor_edge_walk@256x256-left-edge@pipe-a-hdmi-a-6.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2-set2: [SKIP][158] ([Intel XE#323]) -> [SKIP][159] ([Intel XE#1201] / [Intel XE#323])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-432/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-463/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2-set2: [SKIP][160] ([Intel XE#1201] / [Intel XE#323]) -> [SKIP][161] ([Intel XE#323]) +1 other test skip
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-464/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-432/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@single-move:
- shard-dg2-set2: [DMESG-WARN][162] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#877]) -> [DMESG-WARN][163] ([Intel XE#1214] / [Intel XE#282])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-466/igt@kms_cursor_legacy@single-move.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-466/igt@kms_cursor_legacy@single-move.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2-set2: [SKIP][164] ([Intel XE#703]) -> [SKIP][165] ([Intel XE#1201] / [Intel XE#703])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-432/igt@kms_feature_discovery@display-3x.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-436/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip@flip-vs-suspend:
- shard-dg2-set2: [INCOMPLETE][166] ([Intel XE#1195]) -> [DMESG-WARN][167] ([Intel XE#1162] / [Intel XE#1214])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-464/igt@kms_flip@flip-vs-suspend.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-434/igt@kms_flip@flip-vs-suspend.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][168] ([Intel XE#651]) -> [SKIP][169] ([Intel XE#1201] / [Intel XE#651]) +19 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: [SKIP][170] ([Intel XE#1201] / [Intel XE#1226]) -> [SKIP][171] ([Intel XE#1201] / [Intel XE#651])
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][172] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][173] ([Intel XE#1201]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-wc.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt:
- shard-dg2-set2: [SKIP][174] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][175] ([Intel XE#651]) +12 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-dg2-set2: [SKIP][176] ([Intel XE#658]) -> [SKIP][177] ([Intel XE#1201] / [Intel XE#658])
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2-set2: [SKIP][178] ([Intel XE#653]) -> [SKIP][179] ([Intel XE#1201] / [Intel XE#653]) +20 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][180] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][181] ([Intel XE#653]) +9 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render:
- shard-dg2-set2: [SKIP][182] ([Intel XE#653]) -> [SKIP][183] ([Intel XE#1201])
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt:
- shard-dg2-set2: [SKIP][184] ([Intel XE#1201] / [Intel XE#1226]) -> [SKIP][185] ([Intel XE#1201] / [Intel XE#653])
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt:
- shard-dg2-set2: [SKIP][186] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][187] ([Intel XE#1201]) +1 other test skip
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2-set2: [SKIP][188] ([Intel XE#356]) -> [SKIP][189] ([Intel XE#1201] / [Intel XE#356])
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-432/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-464/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane_lowres@tiling-y:
- shard-dg2-set2: [SKIP][190] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][191] ([Intel XE#455]) +5 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-464/igt@kms_plane_lowres@tiling-y.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-432/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2-set2: [SKIP][192] ([Intel XE#455]) -> [SKIP][193] ([Intel XE#1201] / [Intel XE#455]) +7 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-432/igt@kms_plane_multiple@tiling-y.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-466/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][194] ([Intel XE#1195] / [Intel XE#904] / [Intel XE#909]) -> [TIMEOUT][195] ([Intel XE#904] / [Intel XE#909]) +1 other test timeout
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-433/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a-hdmi-a-6.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-434/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a-hdmi-a-6.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format:
- shard-dg2-set2: [INCOMPLETE][196] ([Intel XE#1195] / [Intel XE#904] / [Intel XE#909]) -> [TIMEOUT][197] ([Intel XE#380] / [Intel XE#904] / [Intel XE#909]) +1 other test timeout
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-436/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-433/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats:
- shard-dg2-set2: [INCOMPLETE][198] ([Intel XE#909]) -> [INCOMPLETE][199] ([Intel XE#1195] / [Intel XE#909])
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-432/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-434/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][200] ([Intel XE#904] / [Intel XE#909]) -> [INCOMPLETE][201] ([Intel XE#1195] / [Intel XE#904] / [Intel XE#909])
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-432/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a-hdmi-a-6.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-434/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-a-hdmi-a-6.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2-set2: [SKIP][202] ([Intel XE#1122] / [Intel XE#1201]) -> [SKIP][203] ([Intel XE#1122]) +1 other test skip
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-433/igt@kms_psr2_su@page_flip-nv12.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-432/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2-set2: [SKIP][204] ([Intel XE#1122]) -> [SKIP][205] ([Intel XE#1122] / [Intel XE#1201])
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-432/igt@kms_psr2_su@page_flip-p010.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-436/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr2-cursor-plane-onoff:
- shard-dg2-set2: [SKIP][206] ([Intel XE#929]) -> [SKIP][207] ([Intel XE#1201] / [Intel XE#929]) +13 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-432/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-436/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html
* igt@kms_psr@fbc-psr2-primary-page-flip:
- shard-dg2-set2: [SKIP][208] ([Intel XE#1201] / [Intel XE#1226]) -> [SKIP][209] ([Intel XE#1201] / [Intel XE#929]) +1 other test skip
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-433/igt@kms_psr@fbc-psr2-primary-page-flip.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-435/igt@kms_psr@fbc-psr2-primary-page-flip.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2-set2: [SKIP][210] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][211] ([Intel XE#929]) +5 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-plane-move.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-432/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@pr-sprite-plane-onoff:
- shard-dg2-set2: [SKIP][212] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][213] ([Intel XE#1201]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-464/igt@kms_psr@pr-sprite-plane-onoff.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-463/igt@kms_psr@pr-sprite-plane-onoff.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2-set2: [SKIP][214] ([Intel XE#327]) -> [SKIP][215] ([Intel XE#1201] / [Intel XE#327]) +1 other test skip
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-463/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@xe_exec_fault_mode@once-rebind-imm:
- shard-dg2-set2: [SKIP][216] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][217] ([Intel XE#288]) +9 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-433/igt@xe_exec_fault_mode@once-rebind-imm.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-432/igt@xe_exec_fault_mode@once-rebind-imm.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-imm:
- shard-dg2-set2: [SKIP][218] ([Intel XE#288]) -> [SKIP][219] ([Intel XE#1201] / [Intel XE#288]) +17 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-432/igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-imm.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-466/igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-imm.html
* igt@xe_exec_reset@gt-reset-stress:
- shard-dg2-set2: [INCOMPLETE][220] ([Intel XE#1195]) -> [DMESG-WARN][221] ([Intel XE#1214] / [Intel XE#1638])
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-466/igt@xe_exec_reset@gt-reset-stress.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-436/igt@xe_exec_reset@gt-reset-stress.html
* igt@xe_live_ktest@xe_migrate:
- shard-dg2-set2: [SKIP][222] ([Intel XE#1192] / [Intel XE#1201]) -> [SKIP][223] ([Intel XE#1192])
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-435/igt@xe_live_ktest@xe_migrate.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-432/igt@xe_live_ktest@xe_migrate.html
* igt@xe_media_fill@media-fill:
- shard-dg2-set2: [SKIP][224] ([Intel XE#560]) -> [SKIP][225] ([Intel XE#1201] / [Intel XE#560])
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-432/igt@xe_media_fill@media-fill.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-435/igt@xe_media_fill@media-fill.html
* igt@xe_pat@pat-index-xelpg:
- shard-dg2-set2: [SKIP][226] ([Intel XE#1201] / [Intel XE#979]) -> [SKIP][227] ([Intel XE#979])
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-434/igt@xe_pat@pat-index-xelpg.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-432/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm@s3-vm-bind-userptr:
- shard-dg2-set2: [DMESG-WARN][228] ([Intel XE#1162] / [Intel XE#1214]) -> [DMESG-WARN][229] ([Intel XE#1162]) +2 other tests dmesg-warn
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-466/igt@xe_pm@s3-vm-bind-userptr.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-432/igt@xe_pm@s3-vm-bind-userptr.html
* igt@xe_pm@s4-d3cold-basic-exec:
- shard-dg2-set2: [SKIP][230] ([Intel XE#366]) -> [SKIP][231] ([Intel XE#1201] / [Intel XE#366])
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-432/igt@xe_pm@s4-d3cold-basic-exec.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-433/igt@xe_pm@s4-d3cold-basic-exec.html
* igt@xe_query@multigpu-query-config:
- shard-dg2-set2: [SKIP][232] ([Intel XE#944]) -> [SKIP][233] ([Intel XE#1201] / [Intel XE#944]) +1 other test skip
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-432/igt@xe_query@multigpu-query-config.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-464/igt@xe_query@multigpu-query-config.html
* igt@xe_query@multigpu-query-cs-cycles:
- shard-dg2-set2: [SKIP][234] ([Intel XE#1201] / [Intel XE#944]) -> [SKIP][235] ([Intel XE#944]) +1 other test skip
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7864/shard-dg2-463/igt@xe_query@multigpu-query-cs-cycles.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/shard-dg2-432/igt@xe_query@multigpu-query-cs-cycles.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1068]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1068
[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#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
[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#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
[Intel XE#1162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[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#1214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1214
[Intel XE#1226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1226
[Intel XE#1234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1234
[Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252
[Intel XE#1330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1330
[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#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#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[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#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466
[Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467
[Intel XE#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
[Intel XE#1483]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1483
[Intel XE#1491]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1491
[Intel XE#1494]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1494
[Intel XE#1504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504
[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#1602]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1602
[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#1661]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1661
[Intel XE#1667]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1667
[Intel XE#1699]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1699
[Intel XE#1717]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1717
[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#1830]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1830
[Intel XE#1850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1850
[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#294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/294
[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#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[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#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#379]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/379
[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#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480
[Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[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#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605
[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#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#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[Intel XE#736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/736
[Intel XE#771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/771
[Intel XE#780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/780
[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#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[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#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_7864 -> IGTPW_11166
* Linux: xe-1310-1ba62f8cea9c797427d45108df1d453f4b343240 -> xe-1311-3addfb8584a4fcbff8123461682e5bdfd8785bde
IGTPW_11166: 11166
IGT_7864: 8eff53c9664fa0abaa55b403c9f10f96260e44b7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1310-1ba62f8cea9c797427d45108df1d453f4b343240: 1ba62f8cea9c797427d45108df1d453f4b343240
xe-1311-3addfb8584a4fcbff8123461682e5bdfd8785bde: 3addfb8584a4fcbff8123461682e5bdfd8785bde
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11166/index.html
[-- Attachment #2: Type: text/html, Size: 84207 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH i-g-t] tests/kms_plane: Implement dynamic level execution across multiple planes
2024-05-21 3:22 [PATCH i-g-t] tests/kms_plane: Implement dynamic level execution across multiple planes Pranay Samala
` (2 preceding siblings ...)
2024-05-21 4:54 ` ✗ CI.xeFULL: failure " Patchwork
@ 2024-05-21 18:21 ` Juha-Pekka Heikkila
2024-05-22 3:27 ` ✗ Fi.CI.IGT: failure for " Patchwork
2024-05-22 17:06 ` [PATCH i-g-t] " Kamil Konieczny
5 siblings, 0 replies; 7+ messages in thread
From: Juha-Pekka Heikkila @ 2024-05-21 18:21 UTC (permalink / raw)
To: Pranay Samala, igt-dev; +Cc: karthik.b.s, jeevan.b, sameer.lattannavar
Hi Pranay,
on quick look things seem ok, just small comments below.
On 21.5.2024 6.22, Pranay Samala wrote:
> The test runs on all pipes on dynamic level to test all the supported
> pixel-formats and modifiers on current plane of that pipe.
>
> Updating the test to execute on multiple planes on dynamic level.
>
> Signed-off-by: Pranay Samala <pranay.samala@intel.com>
> ---
> tests/kms_plane.c | 107 +++++++++++++++++++++++-----------------------
> 1 file changed, 54 insertions(+), 53 deletions(-)
>
> diff --git a/tests/kms_plane.c b/tests/kms_plane.c
> index 406aecc04..f476ed52f 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,7 +285,7 @@ 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",
> + 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);
While changing these you could also fix the indentation of that
"primary->dr.." line to match parenthesis.
> 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);
^
space after comma
>
> 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);
> @@ -449,59 +449,60 @@ test_plane_panning_with_output(data_t *data,
> static void
> test_plane_panning(data_t *data, enum pipe pipe)
> {
> - bool mode_found = false;
> - uint64_t mem_size = 0;
> - igt_output_t *output = data->output;
> - igt_crc_t ref_crc;
> -
> - igt_info("Using (pipe %s + %s) to run the subtest.\n",
> - kmstest_pipe_name(pipe), igt_output_name(output));
> + igt_dynamic_f("pipe-%s", kmstest_pipe_name(pipe)) {
You could put this into small helper which will then call
test_plane_panning function. This way you would get away from making
such big change which in the end seems to be about changing indentation.
> + bool mode_found = false;
> + uint64_t mem_size = 0;
> + igt_output_t *output = data->output;
> + igt_crc_t ref_crc;
>
> - test_init(data, pipe);
> + igt_info("Using (pipe %s + %s) to run the subtest.\n",
> + kmstest_pipe_name(pipe), igt_output_name(output));
>
> - if (is_i915_device(data->drm_fd)) {
> - for_each_memory_region(r, data->drm_fd)
> - if (r->ci.memory_class == I915_MEMORY_CLASS_DEVICE)
> - mem_size = r->cpu_size;
> + test_init(data, pipe);
>
> - }
> + if (is_i915_device(data->drm_fd)) {
> + 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)) {
> - struct drm_xe_mem_region *memregion;
> - uint64_t memreg = all_memory_regions(data->drm_fd), region;
> + if (is_xe_device(data->drm_fd)) {
> + struct drm_xe_mem_region *memregion;
> + uint64_t memreg = all_memory_regions(data->drm_fd), region;
>
> - xe_for_each_mem_region(data->drm_fd, memreg, region) {
> - memregion = xe_mem_region(data->drm_fd, region);
> + xe_for_each_mem_region(data->drm_fd, memreg, region) {
> + memregion = xe_mem_region(data->drm_fd, region);
>
> - if (XE_IS_CLASS_VRAM(memregion))
> - mem_size = memregion->total_size;
> + if (XE_IS_CLASS_VRAM(memregion))
> + mem_size = memregion->total_size;
> + }
> }
> - }
>
> - for_each_connector_mode(output) {
> - drmModeModeInfo *m = &output->config.connector->modes[j__];
> - uint32_t fb_size = m->hdisplay * m->vdisplay * 4;
> + for_each_connector_mode(output) {
> + drmModeModeInfo *m = &output->config.connector->modes[j__];
> + uint32_t fb_size = m->hdisplay * m->vdisplay * 4;
>
> - /* test allocates 2 double-dim fbs, add one more, to be safe */
> - if (mem_size && 3 * 4 * fb_size > mem_size) {
> - igt_debug("Skipping mode %s due to low memory\n", m->name);
> - continue;
> - }
> + /* test allocates 2 double-dim fbs, add one more, to be safe */
> + if (mem_size && 3 * 4 * fb_size > mem_size) {
> + igt_debug("Skipping mode %s due to low memory\n", m->name);
> + continue;
> + }
>
> - igt_output_override_mode(output, m);
> - mode_found = true;
> - break;
> - }
> - igt_require(mode_found);
> + igt_output_override_mode(output, m);
> + mode_found = true;
> + break;
> + }
> + igt_require(mode_found);
>
> - if (data->flags & TEST_PANNING_TOP_LEFT)
> - test_grab_crc(data, output, pipe, &red, data->flags, &ref_crc);
> - else
> - test_grab_crc(data, output, pipe, &blue, data->flags, &ref_crc);
> + if (data->flags & TEST_PANNING_TOP_LEFT)
> + test_grab_crc(data, output, pipe, &red, data->flags, &ref_crc);
> + else
> + test_grab_crc(data, output, pipe, &blue, data->flags, &ref_crc);
>
> - test_plane_panning_with_output(data, pipe, output, &ref_crc, data->flags);
> + test_plane_panning_with_output(data, pipe, output, &ref_crc, data->flags);
>
> - test_fini(data);
> + test_fini(data);
> + }
> }
>
> static const color_t colors_extended[] = {
> @@ -889,7 +890,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,7 +928,7 @@ 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_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),
Where you change igt_info to igt_debug, these following lines
indentation also need to match to moved parenthesis.
> @@ -1043,7 +1044,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 +1090,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 +1212,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,8 +1319,7 @@ 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;
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ Fi.CI.IGT: failure for tests/kms_plane: Implement dynamic level execution across multiple planes
2024-05-21 3:22 [PATCH i-g-t] tests/kms_plane: Implement dynamic level execution across multiple planes Pranay Samala
` (3 preceding siblings ...)
2024-05-21 18:21 ` [PATCH i-g-t] " Juha-Pekka Heikkila
@ 2024-05-22 3:27 ` Patchwork
2024-05-22 17:06 ` [PATCH i-g-t] " Kamil Konieczny
5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-05-22 3:27 UTC (permalink / raw)
To: Pranay Samala; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100293 bytes --]
== Series Details ==
Series: tests/kms_plane: Implement dynamic level execution across multiple planes
URL : https://patchwork.freedesktop.org/series/133839/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_14786_full -> IGTPW_11166_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_11166_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_11166_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/index.html
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_11166_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_busy@extended-pageflip-modeset-hang-oldfb@pipe-a:
- shard-dg1: NOTRUN -> [INCOMPLETE][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-17/igt@kms_busy@extended-pageflip-modeset-hang-oldfb@pipe-a.html
New tests
---------
New tests have been introduced between CI_DRM_14786_full and IGTPW_11166_full:
### New IGT tests (118) ###
* igt@i915_pm_rpm@gem-execbuf@smem0:
- Statuses : 2 pass(s)
- Exec time: [2.38, 3.57] s
* igt@i915_pm_rpm@gem-mmap-type@fixed-lmem0:
- Statuses : 1 pass(s)
- Exec time: [2.78] s
* igt@i915_pm_rpm@gem-mmap-type@fixed-smem0:
- Statuses : 1 pass(s)
- Exec time: [2.68] s
* igt@i915_pm_rpm@gem-mmap-type@gtt-smem0:
- Statuses : 2 pass(s) 1 skip(s)
- Exec time: [0.73, 6.08] s
* igt@i915_pm_rpm@gem-mmap-type@uc-smem0:
- Statuses : 3 pass(s)
- Exec time: [0.70, 6.40] s
* igt@i915_pm_rpm@gem-mmap-type@wb-smem0:
- Statuses : 3 pass(s)
- Exec time: [0.69, 3.46] s
* igt@i915_pm_rpm@gem-mmap-type@wc-smem0:
- Statuses : 3 pass(s)
- Exec time: [0.70, 3.12] s
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
- Statuses : 1 pass(s)
- Exec time: [2.19] s
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-x:
- Statuses : 1 pass(s)
- Exec time: [2.18] s
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-linear:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.09, 2.17] s
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-x:
- Statuses : 4 pass(s)
- Exec time: [2.05, 2.15] s
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y:
- Statuses : 2 pass(s)
- Exec time: [2.09, 2.13] s
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-4-linear:
- Statuses : 1 pass(s)
- Exec time: [2.20] s
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-4-x:
- Statuses : 1 pass(s)
- Exec time: [2.21] s
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-4-y:
- Statuses : 1 pass(s)
- Exec time: [2.18] s
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-edp-1-linear:
- Statuses : 1 pass(s)
- Exec time: [2.17] s
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-edp-1-x:
- Statuses : 1 pass(s)
- Exec time: [2.17] s
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-linear:
- Statuses : 3 pass(s) 1 skip(s)
- Exec time: [0.08, 2.13] s
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-x:
- Statuses : 4 pass(s)
- Exec time: [2.03, 2.13] s
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y:
- Statuses : 2 pass(s)
- Exec time: [2.07, 2.12] s
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-linear:
- Statuses : 1 pass(s)
- Exec time: [2.17] s
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-x:
- Statuses : 1 pass(s)
- Exec time: [2.17] s
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y:
- Statuses : 1 pass(s)
- Exec time: [2.17] s
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-edp-1-linear:
- Statuses : 1 pass(s)
- Exec time: [2.17] s
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-edp-1-x:
- Statuses : 1 pass(s)
- Exec time: [2.18] s
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-linear:
- Statuses : 2 pass(s)
- Exec time: [2.03, 2.13] s
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-x:
- Statuses : 2 pass(s)
- Exec time: [2.03, 2.13] s
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-y:
- Statuses : 1 pass(s)
- Exec time: [2.07] s
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-linear:
- Statuses : 1 pass(s)
- Exec time: [2.17] s
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-x:
- Statuses : 1 pass(s)
- Exec time: [2.18] s
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y:
- Statuses : 1 pass(s)
- Exec time: [2.17] s
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-edp-1-linear:
- Statuses : 1 pass(s)
- Exec time: [2.18] s
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-edp-1-x:
- Statuses : 1 pass(s)
- Exec time: [2.15] s
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-1-linear:
- Statuses : 2 pass(s)
- Exec time: [2.02, 2.13] s
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-1-x:
- Statuses : 2 pass(s)
- Exec time: [2.03, 2.13] s
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-1-y:
- Statuses : 1 pass(s)
- Exec time: [2.07] s
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-4-linear:
- Statuses : 1 pass(s)
- Exec time: [2.17] s
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-4-x:
- Statuses : 1 pass(s)
- Exec time: [2.18] s
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-4-y:
- Statuses : 1 pass(s)
- Exec time: [2.17] s
* igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-0:
- Statuses : 4 pass(s)
- Exec time: [2.44, 8.12] s
* igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-1:
- Statuses : 1 pass(s)
- Exec time: [1.06] s
* igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-3:
- Statuses : 3 pass(s)
- Exec time: [3.08, 4.85] s
* igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-5:
- Statuses : 3 pass(s)
- Exec time: [0.0, 1.86] s
* igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-7:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0:
- Statuses : 4 pass(s)
- Exec time: [2.46, 7.40] s
* igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-1:
- Statuses : 1 pass(s)
- Exec time: [1.06] s
* igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-3:
- Statuses : 3 pass(s)
- Exec time: [3.05, 4.73] s
* igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-5:
- Statuses : 3 pass(s)
- Exec time: [0.0, 1.86] s
* igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-7:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane@pixel-format@pipe-a-plane-0:
- Statuses : 6 pass(s)
- Exec time: [2.00, 8.10] s
* igt@kms_plane@pixel-format@pipe-a-plane-1:
- Statuses : 1 pass(s)
- Exec time: [1.06] s
* igt@kms_plane@pixel-format@pipe-a-plane-2:
- Statuses : 1 pass(s)
- Exec time: [0.22] s
* igt@kms_plane@pixel-format@pipe-a-plane-3:
- Statuses : 5 pass(s)
- Exec time: [3.04, 7.08] s
* igt@kms_plane@pixel-format@pipe-a-plane-5:
- Statuses : 5 pass(s)
- Exec time: [0.18, 4.55] s
* igt@kms_plane@pixel-format@pipe-a-plane-7:
- Statuses : 2 pass(s)
- Exec time: [0.11, 0.21] s
* igt@kms_plane@pixel-format@pipe-b-plane-0:
- Statuses : 6 pass(s)
- Exec time: [2.00, 7.72] s
* igt@kms_plane@pixel-format@pipe-b-plane-1:
- Statuses : 1 pass(s)
- Exec time: [1.06] s
* igt@kms_plane@pixel-format@pipe-b-plane-2:
- Statuses : 1 pass(s)
- Exec time: [0.22] s
* igt@kms_plane@pixel-format@pipe-b-plane-3:
- Statuses : 5 pass(s)
- Exec time: [3.09, 6.68] s
* igt@kms_plane@pixel-format@pipe-b-plane-5:
- Statuses : 5 pass(s)
- Exec time: [0.20, 4.72] s
* igt@kms_plane@pixel-format@pipe-b-plane-7:
- Statuses : 2 pass(s)
- Exec time: [0.11, 0.25] s
* igt@kms_plane@plane-position-covered@pipe-a-plane-1:
- Statuses : 3 pass(s)
- Exec time: [0.20, 1.37] s
* igt@kms_plane@plane-position-covered@pipe-a-plane-2:
- Statuses : 3 pass(s)
- Exec time: [0.01, 1.34] s
* igt@kms_plane@plane-position-covered@pipe-a-plane-3:
- Statuses : 2 pass(s)
- Exec time: [0.19, 1.36] s
* igt@kms_plane@plane-position-covered@pipe-a-plane-4:
- Statuses : 2 pass(s)
- Exec time: [0.19, 1.33] s
* igt@kms_plane@plane-position-covered@pipe-a-plane-5:
- Statuses : 2 pass(s)
- Exec time: [0.02, 0.18] s
* igt@kms_plane@plane-position-covered@pipe-a-plane-6:
- Statuses : 1 pass(s)
- Exec time: [0.19] s
* igt@kms_plane@plane-position-covered@pipe-a-plane-7:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_plane@plane-position-covered@pipe-b-plane-1:
- Statuses : 3 pass(s)
- Exec time: [0.17, 1.37] s
* igt@kms_plane@plane-position-covered@pipe-b-plane-2:
- Statuses : 3 pass(s)
- Exec time: [0.01, 1.34] s
* igt@kms_plane@plane-position-covered@pipe-b-plane-3:
- Statuses : 2 pass(s)
- Exec time: [0.18, 1.34] s
* igt@kms_plane@plane-position-covered@pipe-b-plane-4:
- Statuses : 2 pass(s)
- Exec time: [0.20, 1.34] s
* igt@kms_plane@plane-position-covered@pipe-b-plane-5:
- Statuses : 2 pass(s)
- Exec time: [0.03, 0.19] s
* igt@kms_plane@plane-position-covered@pipe-b-plane-6:
- Statuses : 1 pass(s)
- Exec time: [0.18] s
* igt@kms_plane@plane-position-covered@pipe-b-plane-7:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-1:
- Statuses : 4 pass(s)
- Exec time: [0.28, 2.49] s
* igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-2:
- Statuses : 4 pass(s)
- Exec time: [0.01, 2.50] s
* igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-3:
- Statuses : 3 pass(s)
- Exec time: [0.25, 2.47] s
* igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-4:
- Statuses : 3 pass(s)
- Exec time: [0.26, 2.49] s
* igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-5:
- Statuses : 3 pass(s)
- Exec time: [0.02, 0.40] s
* igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-6:
- Statuses : 2 pass(s)
- Exec time: [0.26, 0.39] s
* igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-7:
- Statuses : 2 pass(s)
- Exec time: [0.00, 0.02] s
* igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-1:
- Statuses : 4 pass(s)
- Exec time: [0.25, 2.50] s
* igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-2:
- Statuses : 4 pass(s)
- Exec time: [0.01, 2.51] s
* igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-3:
- Statuses : 3 pass(s)
- Exec time: [0.24, 2.49] s
* igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-4:
- Statuses : 3 pass(s)
- Exec time: [0.24, 2.48] s
* igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-5:
- Statuses : 3 pass(s)
- Exec time: [0.02, 0.36] s
* igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-6:
- Statuses : 2 pass(s)
- Exec time: [0.24, 0.37] s
* igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-7:
- Statuses : 2 pass(s)
- Exec time: [0.00, 0.02] s
* igt@kms_plane@plane-position-hole@pipe-a-plane-1:
- Statuses : 5 pass(s)
- Exec time: [0.19, 1.36] s
* igt@kms_plane@plane-position-hole@pipe-a-plane-2:
- Statuses : 5 pass(s)
- Exec time: [0.01, 1.35] s
* igt@kms_plane@plane-position-hole@pipe-a-plane-3:
- Statuses : 4 pass(s)
- Exec time: [0.19, 1.34] s
* igt@kms_plane@plane-position-hole@pipe-a-plane-4:
- Statuses : 4 pass(s)
- Exec time: [0.19, 1.34] s
* igt@kms_plane@plane-position-hole@pipe-a-plane-5:
- Statuses : 4 pass(s)
- Exec time: [0.01, 0.19] s
* igt@kms_plane@plane-position-hole@pipe-a-plane-6:
- Statuses : 1 pass(s)
- Exec time: [0.19] s
* igt@kms_plane@plane-position-hole@pipe-a-plane-7:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_plane@plane-position-hole@pipe-b-plane-1:
- Statuses : 5 pass(s)
- Exec time: [0.18, 1.38] s
* igt@kms_plane@plane-position-hole@pipe-b-plane-2:
- Statuses : 5 pass(s)
- Exec time: [0.01, 1.34] s
* igt@kms_plane@plane-position-hole@pipe-b-plane-3:
- Statuses : 4 pass(s)
- Exec time: [0.18, 1.34] s
* igt@kms_plane@plane-position-hole@pipe-b-plane-4:
- Statuses : 4 pass(s)
- Exec time: [0.18, 1.35] s
* igt@kms_plane@plane-position-hole@pipe-b-plane-5:
- Statuses : 4 pass(s)
- Exec time: [0.00, 0.18] s
* igt@kms_plane@plane-position-hole@pipe-b-plane-6:
- Statuses : 1 pass(s)
- Exec time: [0.18] s
* igt@kms_plane@plane-position-hole@pipe-b-plane-7:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
- Statuses : 5 skip(s)
- Exec time: [0.0] s
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf:
- Statuses : 4 skip(s)
- Exec time: [0.0] s
* igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf:
- Statuses : 5 skip(s)
- Exec time: [0.0] s
* igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf:
- Statuses : 2 skip(s)
- Exec time: [0.0] s
* igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb:
- Statuses : 4 skip(s)
- Exec time: [0.0] s
* igt@perf@oa-exponents@1-vcs1:
- Statuses : 1 pass(s)
- Exec time: [1.83] s
* igt@perf_pmu@frequency@gt0:
- Statuses : 3 pass(s)
- Exec time: [2.08, 2.17] s
* igt@perf_pmu@frequency@idle-gt0:
- Statuses : 3 pass(s)
- Exec time: [0.50] s
* igt@perf_pmu@rc6-all-gts:
- Statuses : 1 pass(s) 4 skip(s)
- Exec time: [0.0, 6.35] s
* igt@perf_pmu@rc6@gt0:
- Statuses : 6 pass(s)
- Exec time: [6.33, 6.36] s
* igt@perf_pmu@rc6@other-idle-gt0:
- Statuses : 1 pass(s) 5 skip(s)
- Exec time: [0.0, 6.34] s
* igt@perf_pmu@rc6@runtime-pm-gt0:
- Statuses : 5 pass(s) 1 skip(s)
- Exec time: [1.23, 17.71] s
* igt@perf_pmu@rc6@runtime-pm-long-gt0:
- Statuses : 5 pass(s) 1 skip(s)
- Exec time: [1.19, 22.66] s
Known issues
------------
Here are the changes found in IGTPW_11166_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-mtlp: NOTRUN -> [SKIP][2] ([i915#8411]) +1 other test skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-1/igt@api_intel_bb@object-reloc-purge-cache.html
- shard-rkl: NOTRUN -> [SKIP][3] ([i915#8411]) +1 other test skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-2/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@api_intel_bb@render-ccs:
- shard-dg2: NOTRUN -> [FAIL][4] ([i915#10380])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-10/igt@api_intel_bb@render-ccs.html
* igt@device_reset@cold-reset-bound:
- shard-mtlp: NOTRUN -> [SKIP][5] ([i915#11078])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-3/igt@device_reset@cold-reset-bound.html
- shard-dg2: NOTRUN -> [SKIP][6] ([i915#11078])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-6/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: NOTRUN -> [SKIP][7] ([i915#11078]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-5/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_fdinfo@busy-check-all@bcs0:
- shard-dg1: NOTRUN -> [SKIP][8] ([i915#8414]) +11 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-18/igt@drm_fdinfo@busy-check-all@bcs0.html
* igt@drm_fdinfo@busy-idle-check-all@ccs0:
- shard-mtlp: NOTRUN -> [SKIP][9] ([i915#8414]) +12 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-5/igt@drm_fdinfo@busy-idle-check-all@ccs0.html
* igt@drm_fdinfo@most-busy-check-all@rcs0:
- shard-rkl: [PASS][10] -> [FAIL][11] ([i915#7742])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14786/shard-rkl-1/igt@drm_fdinfo@most-busy-check-all@rcs0.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-5/igt@drm_fdinfo@most-busy-check-all@rcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
- shard-rkl: NOTRUN -> [FAIL][12] ([i915#7742])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@vecs1:
- shard-dg2: NOTRUN -> [SKIP][13] ([i915#8414]) +14 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-6/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html
* igt@gem_caching@writes:
- shard-mtlp: NOTRUN -> [SKIP][14] ([i915#4873])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-2/igt@gem_caching@writes.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-dg1: NOTRUN -> [SKIP][15] ([i915#9323])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-18/igt@gem_ccs@block-multicopy-compressed.html
- shard-tglu: NOTRUN -> [SKIP][16] ([i915#9323])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-tglu-8/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-tglu: NOTRUN -> [SKIP][17] ([i915#3555] / [i915#9323])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-tglu-4/igt@gem_ccs@ctrl-surf-copy.html
- shard-rkl: NOTRUN -> [SKIP][18] ([i915#3555] / [i915#9323]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-5/igt@gem_ccs@ctrl-surf-copy.html
- shard-dg1: NOTRUN -> [SKIP][19] ([i915#3555] / [i915#9323])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-15/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-mtlp: NOTRUN -> [SKIP][20] ([i915#9323]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-3/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
- shard-rkl: NOTRUN -> [SKIP][21] ([i915#9323])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-4/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ctx_persistence@hang:
- shard-dg1: NOTRUN -> [SKIP][22] ([i915#8555])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-18/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-mtlp: NOTRUN -> [SKIP][23] ([i915#8555])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-5/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#8555]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_sseu@invalid-args:
- shard-dg2: NOTRUN -> [SKIP][25] ([i915#280])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-10/igt@gem_ctx_sseu@invalid-args.html
- shard-rkl: NOTRUN -> [SKIP][26] ([i915#280])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-5/igt@gem_ctx_sseu@invalid-args.html
- shard-mtlp: NOTRUN -> [SKIP][27] ([i915#280])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-7/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_eio@hibernate:
- shard-rkl: NOTRUN -> [ABORT][28] ([i915#7975] / [i915#8213])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-3/igt@gem_eio@hibernate.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg1: NOTRUN -> [SKIP][29] ([i915#4771]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-15/igt@gem_exec_balancer@bonded-sync.html
- shard-mtlp: NOTRUN -> [SKIP][30] ([i915#4771])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-7/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@parallel-out-fence:
- shard-rkl: NOTRUN -> [SKIP][31] ([i915#4525]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-4/igt@gem_exec_balancer@parallel-out-fence.html
* igt@gem_exec_balancer@sliced:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#4812]) +2 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-8/igt@gem_exec_balancer@sliced.html
- shard-mtlp: NOTRUN -> [SKIP][33] ([i915#4812])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-1/igt@gem_exec_balancer@sliced.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: NOTRUN -> [SKIP][34] ([i915#6344])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-5/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_capture@many-4k-incremental:
- shard-rkl: NOTRUN -> [FAIL][35] ([i915#9606])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-5/igt@gem_exec_capture@many-4k-incremental.html
- shard-dg1: NOTRUN -> [FAIL][36] ([i915#9606])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-18/igt@gem_exec_capture@many-4k-incremental.html
* igt@gem_exec_capture@many-4k-zero:
- shard-tglu: NOTRUN -> [FAIL][37] ([i915#9606])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-tglu-6/igt@gem_exec_capture@many-4k-zero.html
- shard-mtlp: NOTRUN -> [FAIL][38] ([i915#9606])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-1/igt@gem_exec_capture@many-4k-zero.html
* igt@gem_exec_fair@basic-none-rrul@rcs0:
- shard-glk: NOTRUN -> [FAIL][39] ([i915#2842])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-glk8/igt@gem_exec_fair@basic-none-rrul@rcs0.html
* igt@gem_exec_fair@basic-none-solo:
- shard-mtlp: NOTRUN -> [SKIP][40] ([i915#4473])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-5/igt@gem_exec_fair@basic-none-solo.html
* igt@gem_exec_fair@basic-none@vcs0:
- shard-rkl: [PASS][41] -> [FAIL][42] ([i915#2842])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14786/shard-rkl-1/igt@gem_exec_fair@basic-none@vcs0.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-6/igt@gem_exec_fair@basic-none@vcs0.html
* igt@gem_exec_fair@basic-pace-solo:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#3539])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-10/igt@gem_exec_fair@basic-pace-solo.html
* igt@gem_exec_fence@submit:
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#4812]) +7 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-14/igt@gem_exec_fence@submit.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#3539] / [i915#4852]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-3/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_flush@basic-wb-ro-before-default:
- shard-dg1: NOTRUN -> [SKIP][46] ([i915#3539] / [i915#4852]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-16/igt@gem_exec_flush@basic-wb-ro-before-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-mtlp: NOTRUN -> [SKIP][47] ([i915#5107])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-3/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-concurrent0:
- shard-dg1: NOTRUN -> [SKIP][48] ([i915#3281]) +9 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-13/igt@gem_exec_reloc@basic-concurrent0.html
* igt@gem_exec_reloc@basic-gtt-active:
- shard-rkl: NOTRUN -> [SKIP][49] ([i915#3281]) +5 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-active.html
* igt@gem_exec_reloc@basic-softpin:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#3281]) +8 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-11/igt@gem_exec_reloc@basic-softpin.html
* igt@gem_exec_reloc@basic-write-wc-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][51] ([i915#3281]) +4 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-7/igt@gem_exec_reloc@basic-write-wc-noreloc.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#4537] / [i915#4812])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-11/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg1: NOTRUN -> [SKIP][53] ([i915#4860]) +3 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-14/igt@gem_fence_thrash@bo-write-verify-x.html
- shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4860])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-7/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_fenced_exec_thrash@too-many-fences:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#4860])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-11/igt@gem_fenced_exec_thrash@too-many-fences.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][56] ([i915#2190])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-4/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- shard-rkl: NOTRUN -> [SKIP][57] ([i915#4613]) +2 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-4/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0:
- shard-dg2: NOTRUN -> [FAIL][58] ([i915#10446])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-11/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4613]) +3 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-2/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@heavy-verify-random@lmem0:
- shard-dg1: NOTRUN -> [FAIL][60] ([i915#10378])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-15/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html
* igt@gem_lmem_swapping@random-engines:
- shard-glk: NOTRUN -> [SKIP][61] ([i915#4613]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-glk3/igt@gem_lmem_swapping@random-engines.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [PASS][62] -> [TIMEOUT][63] ([i915#5493])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14786/shard-dg1-13/igt@gem_lmem_swapping@smem-oom@lmem0.html
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_lmem_swapping@verify-random:
- shard-tglu: NOTRUN -> [SKIP][64] ([i915#4613]) +3 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-tglu-2/igt@gem_lmem_swapping@verify-random.html
* igt@gem_media_fill@media-fill:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#8289])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-2/igt@gem_media_fill@media-fill.html
* igt@gem_media_vme:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#284])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-2/igt@gem_media_vme.html
- shard-rkl: NOTRUN -> [SKIP][67] ([i915#284])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-1/igt@gem_media_vme.html
* igt@gem_mmap@short-mmap:
- shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4083]) +4 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-3/igt@gem_mmap@short-mmap.html
* igt@gem_mmap_gtt@cpuset-basic-small-copy-xy:
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#4077]) +9 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-14/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html
* igt@gem_mmap_gtt@cpuset-medium-copy:
- shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4077]) +5 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-2/igt@gem_mmap_gtt@cpuset-medium-copy.html
* igt@gem_mmap_gtt@hang:
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#4077]) +11 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-8/igt@gem_mmap_gtt@hang.html
* igt@gem_mmap_wc@write-cpu-read-wc-unflushed:
- shard-dg1: NOTRUN -> [SKIP][72] ([i915#4083]) +4 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-15/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html
* igt@gem_mmap_wc@write-wc-read-gtt:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#4083]) +5 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-11/igt@gem_mmap_wc@write-wc-read-gtt.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#3282]) +2 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-2/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pread@self:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#3282]) +4 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-1/igt@gem_pread@self.html
* igt@gem_pwrite@basic-exhaustion:
- shard-rkl: NOTRUN -> [SKIP][76] ([i915#3282]) +6 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-5/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pwrite@basic-self:
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#3282]) +6 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-17/igt@gem_pwrite@basic-self.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-tglu: NOTRUN -> [SKIP][78] ([i915#4270]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-tglu-9/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_pxp@reject-modify-context-protection-off-2:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#4270]) +4 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-8/igt@gem_pxp@reject-modify-context-protection-off-2.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-dg1: NOTRUN -> [SKIP][80] ([i915#4270]) +4 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-16/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-mtlp: NOTRUN -> [SKIP][81] ([i915#4270]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-4/igt@gem_pxp@verify-pxp-stale-buf-execution.html
- shard-rkl: NOTRUN -> [SKIP][82] ([i915#4270]) +2 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-3/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#5190] / [i915#8428]) +5 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-11/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs:
- shard-mtlp: NOTRUN -> [SKIP][84] ([i915#8428]) +4 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-7/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-dg1: NOTRUN -> [SKIP][85] ([i915#4079])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-17/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-rkl: NOTRUN -> [SKIP][86] ([i915#3323])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-6/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#3282] / [i915#3297])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-6/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-mtlp: NOTRUN -> [SKIP][88] ([i915#3297]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-7/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#3297] / [i915#4880])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-8/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg1: NOTRUN -> [SKIP][90] ([i915#3297] / [i915#4880]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-16/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-dg2: NOTRUN -> [SKIP][91] ([i915#3297]) +2 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-8/igt@gem_userptr_blits@readonly-unsync.html
- shard-rkl: NOTRUN -> [SKIP][92] ([i915#3297]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-2/igt@gem_userptr_blits@readonly-unsync.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2: NOTRUN -> [SKIP][93] ([i915#3297] / [i915#4958])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-10/igt@gem_userptr_blits@sd-probe.html
- shard-dg1: NOTRUN -> [SKIP][94] ([i915#3297] / [i915#4958])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-14/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-dg1: NOTRUN -> [SKIP][95] ([i915#3297]) +2 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-16/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-rkl: NOTRUN -> [SKIP][96] ([i915#2527]) +3 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-6/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@batch-zero-length:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#2856])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-5/igt@gen9_exec_parse@batch-zero-length.html
* igt@gen9_exec_parse@bb-chained:
- shard-dg1: NOTRUN -> [SKIP][98] ([i915#2527]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-17/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-tglu: NOTRUN -> [SKIP][99] ([i915#2527] / [i915#2856]) +2 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-tglu-7/igt@gen9_exec_parse@unaligned-jump.html
- shard-mtlp: NOTRUN -> [SKIP][100] ([i915#2856]) +3 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-3/igt@gen9_exec_parse@unaligned-jump.html
* igt@i915_module_load@load:
- shard-dg1: NOTRUN -> [SKIP][101] ([i915#6227])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-15/igt@i915_module_load@load.html
- shard-glk: NOTRUN -> [SKIP][102] ([i915#6227])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-glk1/igt@i915_module_load@load.html
- shard-rkl: NOTRUN -> [SKIP][103] ([i915#6227])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-5/igt@i915_module_load@load.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: [PASS][104] -> [INCOMPLETE][105] ([i915#9849])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14786/shard-snb4/igt@i915_module_load@reload-with-fault-injection.html
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-snb5/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg2: [PASS][106] -> [ABORT][107] ([i915#9820])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14786/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-8/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-mtlp: NOTRUN -> [SKIP][108] ([i915#8436])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-6/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
- shard-dg1: [PASS][109] -> [FAIL][110] ([i915#3591])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14786/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* igt@i915_pm_rps@basic-api:
- shard-dg1: NOTRUN -> [SKIP][111] ([i915#6621]) +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-15/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#6621])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-10/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@thresholds@gt0:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#8925])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-10/igt@i915_pm_rps@thresholds@gt0.html
* igt@i915_query@test-query-geometry-subslices:
- shard-rkl: NOTRUN -> [SKIP][114] ([i915#5723])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-2/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_selftest@mock@memory_region:
- shard-dg2: NOTRUN -> [DMESG-WARN][115] ([i915#9311])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-1/igt@i915_selftest@mock@memory_region.html
- shard-rkl: NOTRUN -> [DMESG-WARN][116] ([i915#9311])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-5/igt@i915_selftest@mock@memory_region.html
- shard-mtlp: NOTRUN -> [DMESG-WARN][117] ([i915#9311])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-8/igt@i915_selftest@mock@memory_region.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-mtlp: NOTRUN -> [SKIP][118] ([i915#6645])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-6/igt@i915_suspend@basic-s3-without-i915.html
* igt@intel_hwmon@hwmon-write:
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#7707]) +1 other test skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-5/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-mtlp: NOTRUN -> [SKIP][120] ([i915#4212]) +2 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-5/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#4215])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-18/igt@kms_addfb_basic@basic-y-tiled-legacy.html
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#4215] / [i915#5190])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-1/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-rkl: NOTRUN -> [SKIP][123] ([i915#3826])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- shard-dg1: NOTRUN -> [SKIP][124] ([i915#4212])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-14/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][125] ([i915#8709]) +11 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-10/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-dg1: NOTRUN -> [SKIP][126] ([i915#9531])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-15/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-tglu: NOTRUN -> [SKIP][127] ([i915#9531])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-tglu-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-glk: NOTRUN -> [SKIP][128] ([i915#1769])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-glk8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][129] ([i915#5286]) +7 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-5/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-dg1: NOTRUN -> [SKIP][130] ([i915#5286])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-14/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-dg1: NOTRUN -> [SKIP][131] ([i915#4538] / [i915#5286]) +5 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-15/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
- shard-tglu: NOTRUN -> [SKIP][132] ([i915#5286]) +1 other test skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-tglu-9/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][133] ([i915#3638]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-4/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][134] ([i915#3638]) +2 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-16/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#4538] / [i915#5190]) +8 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-mtlp: NOTRUN -> [SKIP][136] +18 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-3/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#5190])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-8/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][138] ([i915#4538]) +3 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_joiner@basic-force-joiner:
- shard-rkl: NOTRUN -> [SKIP][139] ([i915#10656]) +1 other test skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-4/igt@kms_big_joiner@basic-force-joiner.html
* igt@kms_big_joiner@invalid-modeset:
- shard-mtlp: NOTRUN -> [SKIP][140] ([i915#10656])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-3/igt@kms_big_joiner@invalid-modeset.html
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#10656])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-6/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][142] ([i915#6095]) +39 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-4/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][143] ([i915#6095]) +63 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-1/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-10/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#10278]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-11/igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][146] ([i915#6095]) +27 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-tglu-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#10307] / [i915#6095]) +164 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs:
- shard-mtlp: NOTRUN -> [SKIP][148] ([i915#10278]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html
- shard-rkl: NOTRUN -> [SKIP][149] ([i915#10278]) +1 other test skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][150] ([i915#6095]) +75 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-3.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#7213]) +4 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-8/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][152] ([i915#4087]) +3 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-8/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-dg1: NOTRUN -> [SKIP][153] ([i915#7828]) +9 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-15/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#7828]) +7 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-11/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_hpd@dp-hpd-storm:
- shard-rkl: NOTRUN -> [SKIP][155] ([i915#7828]) +7 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-2/igt@kms_chamelium_hpd@dp-hpd-storm.html
* igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode:
- shard-mtlp: NOTRUN -> [SKIP][156] ([i915#7828]) +4 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-7/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-tglu: NOTRUN -> [SKIP][157] ([i915#7828]) +3 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-tglu-7/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_content_protection@atomic:
- shard-dg1: NOTRUN -> [SKIP][158] ([i915#7116] / [i915#9424]) +2 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-14/igt@kms_content_protection@atomic.html
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#7118] / [i915#9424])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-1/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms:
- shard-tglu: NOTRUN -> [SKIP][160] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) +1 other test skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-tglu-8/igt@kms_content_protection@atomic-dpms.html
- shard-mtlp: NOTRUN -> [SKIP][161] ([i915#6944] / [i915#9424]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-8/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-rkl: NOTRUN -> [SKIP][162] ([i915#3116])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-4/igt@kms_content_protection@dp-mst-type-0.html
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#3299])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-6/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@srm:
- shard-mtlp: NOTRUN -> [SKIP][164] ([i915#6944])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-6/igt@kms_content_protection@srm.html
* igt@kms_content_protection@srm@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][165] ([i915#7173])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-11/igt@kms_content_protection@srm@pipe-a-dp-4.html
* igt@kms_content_protection@type1:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#7118] / [i915#9424]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-2/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-tglu: NOTRUN -> [SKIP][167] ([i915#3359])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-tglu-6/igt@kms_cursor_crc@cursor-offscreen-512x170.html
- shard-mtlp: NOTRUN -> [SKIP][168] ([i915#3359])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-7/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#3359]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-1/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#3359]) +1 other test skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-dg1: NOTRUN -> [SKIP][171] ([i915#3359]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-15/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][172] ([i915#9809]) +3 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-2/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-dg1: NOTRUN -> [SKIP][173] ([i915#4103] / [i915#4213])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-13/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][174] ([i915#5354]) +36 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-2/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg1: NOTRUN -> [SKIP][175] ([i915#9067])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-17/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#4103] / [i915#4213])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-tglu: NOTRUN -> [SKIP][177] ([i915#4103])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-tglu-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-mtlp: NOTRUN -> [SKIP][178] ([i915#4213])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-rkl: NOTRUN -> [SKIP][179] ([i915#4103])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-mtlp: NOTRUN -> [SKIP][180] ([i915#9833])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][181] ([i915#9227])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-10/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#9723])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg1: NOTRUN -> [SKIP][183] ([i915#9723])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-14/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#9833])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-10/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#3555]) +5 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-2/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg1: NOTRUN -> [SKIP][186] ([i915#8588])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-18/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][187] ([i915#3804])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][188] ([i915#3555] / [i915#8812])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-2/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-basic:
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#3840]) +1 other test skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-10/igt@kms_dsc@dsc-basic.html
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#3555] / [i915#3840])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-1/igt@kms_dsc@dsc-basic.html
- shard-mtlp: NOTRUN -> [SKIP][191] ([i915#3555] / [i915#3840] / [i915#9159])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-2/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg1: NOTRUN -> [SKIP][192] ([i915#3840])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-18/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg1: NOTRUN -> [SKIP][193] ([i915#3555] / [i915#3840])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-17/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][194] ([i915#3840] / [i915#9053])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
- shard-dg1: NOTRUN -> [SKIP][195] ([i915#3840] / [i915#9053])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-13/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg1: NOTRUN -> [SKIP][196] ([i915#3469])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-14/igt@kms_fbcon_fbt@psr-suspend.html
- shard-dg2: NOTRUN -> [SKIP][197] ([i915#3469])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-10/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-2x:
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#1839])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-4/igt@kms_feature_discovery@display-2x.html
- shard-rkl: NOTRUN -> [SKIP][199] ([i915#1839])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-2/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@psr1:
- shard-tglu: NOTRUN -> [SKIP][200] ([i915#658])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-tglu-8/igt@kms_feature_discovery@psr1.html
- shard-dg1: NOTRUN -> [SKIP][201] ([i915#658])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-16/igt@kms_feature_discovery@psr1.html
* igt@kms_fence_pin_leak:
- shard-dg1: NOTRUN -> [SKIP][202] ([i915#4881])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-15/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][203] ([i915#3637] / [i915#3966])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-tglu-6/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-tglu: NOTRUN -> [SKIP][204] ([i915#3637]) +1 other test skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-tglu-7/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-vga1-hdmi-a1:
- shard-snb: [PASS][205] -> [FAIL][206] ([i915#2122])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14786/shard-snb5/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-vga1-hdmi-a1.html
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-snb7/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-vga1-hdmi-a1.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-rkl: NOTRUN -> [SKIP][207] +44 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-1/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-mtlp: NOTRUN -> [SKIP][208] ([i915#8381])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-3/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-dg2: NOTRUN -> [SKIP][209] +23 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-1/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-dg1: NOTRUN -> [SKIP][210] ([i915#9934]) +5 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-14/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
- shard-mtlp: NOTRUN -> [SKIP][211] ([i915#3637]) +2 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-7/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg1: NOTRUN -> [SKIP][212] ([i915#8381])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-15/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][213] ([i915#2587] / [i915#2672]) +6 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][214] ([i915#2672]) +2 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][215] ([i915#2672]) +5 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][216] ([i915#8810])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#8810])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][218] ([i915#2587] / [i915#2672]) +3 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-tglu-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][219] ([i915#2672] / [i915#3555])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#2672]) +1 other test skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite:
- shard-dg2: [PASS][221] -> [FAIL][222] ([i915#6880])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14786/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#8708]) +20 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][224] ([i915#1825]) +38 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-dg1: NOTRUN -> [SKIP][225] +51 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#3023]) +25 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][227] ([i915#8708]) +13 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][228] ([i915#1825]) +23 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-rkl: NOTRUN -> [SKIP][229] ([i915#9766])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-4/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
- shard-dg1: NOTRUN -> [SKIP][230] ([i915#9766])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-17/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
- shard-tglu: NOTRUN -> [SKIP][231] ([i915#9766])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-tglu-4/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt:
- shard-tglu: NOTRUN -> [SKIP][232] +41 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#3458]) +16 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][234] ([i915#3458]) +18 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][235] ([i915#8708]) +2 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html
* igt@kms_hdr@static-toggle:
- shard-dg2: NOTRUN -> [SKIP][236] ([i915#3555] / [i915#8228])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-1/igt@kms_hdr@static-toggle.html
- shard-rkl: NOTRUN -> [SKIP][237] ([i915#3555] / [i915#8228])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-5/igt@kms_hdr@static-toggle.html
- shard-dg1: NOTRUN -> [SKIP][238] ([i915#3555] / [i915#8228]) +1 other test skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-18/igt@kms_hdr@static-toggle.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: NOTRUN -> [SKIP][239] ([i915#4070] / [i915#4816])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-dg1: NOTRUN -> [SKIP][240] ([i915#1839])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-18/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: NOTRUN -> [SKIP][241] ([i915#6301])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-4/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_panel_fitting@legacy:
- shard-rkl: NOTRUN -> [SKIP][242] ([i915#6301])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-5/igt@kms_panel_fitting@legacy.html
- shard-dg1: NOTRUN -> [SKIP][243] ([i915#6301])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-18/igt@kms_panel_fitting@legacy.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][244] ([i915#7862]) +1 other test fail
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-glk3/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][245] ([i915#3555] / [i915#8821])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-6/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#9423]) +11 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-1:
- shard-glk: NOTRUN -> [SKIP][247] +196 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-glk1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][248] ([i915#9423]) +7 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-18/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][249] ([i915#9423]) +11 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-dp-4:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#5235] / [i915#9423]) +11 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-dp-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][251] ([i915#5235]) +10 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b-edp-1.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][252] ([i915#5235]) +3 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-tglu-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#5235] / [i915#9423] / [i915#9728]) +3 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][254] ([i915#5235]) +3 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][255] ([i915#5235]) +7 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-17/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][256] ([i915#3555] / [i915#5235])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-d-edp-1.html
* igt@kms_pm_backlight@bad-brightness:
- shard-tglu: NOTRUN -> [SKIP][257] ([i915#9812])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-tglu-7/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@fade:
- shard-dg1: NOTRUN -> [SKIP][258] ([i915#5354])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-18/igt@kms_pm_backlight@fade.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-rkl: NOTRUN -> [SKIP][259] ([i915#5354])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-4/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-rkl: NOTRUN -> [SKIP][260] ([i915#9685])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-5/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg1: NOTRUN -> [SKIP][261] ([i915#9685])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-15/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-psr:
- shard-mtlp: NOTRUN -> [SKIP][262] ([i915#10139])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-6/igt@kms_pm_dc@dc6-psr.html
- shard-dg2: NOTRUN -> [SKIP][263] ([i915#9685]) +2 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-11/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: NOTRUN -> [SKIP][264] ([i915#4281])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-mtlp: NOTRUN -> [SKIP][265] ([i915#8430])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-6/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2: NOTRUN -> [SKIP][266] ([i915#9519])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-10/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg1: NOTRUN -> [SKIP][267] ([i915#9519])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-17/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg2: [PASS][268] -> [SKIP][269] ([i915#9519]) +2 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14786/shard-dg2-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg2: NOTRUN -> [SKIP][270] ([i915#6524] / [i915#6805])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-1/igt@kms_prime@basic-crc-vgem.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-dg1: NOTRUN -> [SKIP][271] ([i915#6524]) +1 other test skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-17/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_prime@d3hot:
- shard-rkl: NOTRUN -> [SKIP][272] ([i915#6524])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-5/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-sf@psr2-pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][273] ([i915#9808]) +1 other test skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-5/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-sf@psr2-pipe-b-edp-1.html
* igt@kms_psr2_su@page_flip-p010:
- shard-rkl: NOTRUN -> [SKIP][274] ([i915#9683])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-5/igt@kms_psr2_su@page_flip-p010.html
- shard-dg1: NOTRUN -> [SKIP][275] ([i915#9683]) +1 other test skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-15/igt@kms_psr2_su@page_flip-p010.html
- shard-tglu: NOTRUN -> [SKIP][276] ([i915#9683])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-tglu-9/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][277] ([i915#9683])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-11/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-primary-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][278] ([i915#1072] / [i915#9732]) +18 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-1/igt@kms_psr@fbc-psr-primary-mmap-gtt.html
* igt@kms_psr@fbc-psr2-no-drrs:
- shard-tglu: NOTRUN -> [SKIP][279] ([i915#9732]) +10 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-tglu-3/igt@kms_psr@fbc-psr2-no-drrs.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-rkl: NOTRUN -> [SKIP][280] ([i915#1072] / [i915#9732]) +21 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-1/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_psr@pr-primary-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][281] ([i915#9688]) +11 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-2/igt@kms_psr@pr-primary-mmap-cpu.html
* igt@kms_psr@psr-sprite-mmap-gtt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][282] ([i915#4077] / [i915#9688])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-4/igt@kms_psr@psr-sprite-mmap-gtt@edp-1.html
* igt@kms_psr@psr2-primary-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][283] ([i915#1072] / [i915#9673] / [i915#9732]) +2 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-11/igt@kms_psr@psr2-primary-mmap-gtt.html
* igt@kms_psr@psr2-sprite-blt:
- shard-dg1: NOTRUN -> [SKIP][284] ([i915#1072] / [i915#9732]) +23 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-14/igt@kms_psr@psr2-sprite-blt.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-rkl: NOTRUN -> [SKIP][285] ([i915#5289])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-mtlp: NOTRUN -> [SKIP][286] ([i915#4235])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-4/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-tglu: NOTRUN -> [SKIP][287] ([i915#5289])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-tglu-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
- shard-mtlp: NOTRUN -> [SKIP][288] ([i915#5289])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg1: NOTRUN -> [SKIP][289] ([i915#5289]) +1 other test skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-14/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][290] ([i915#4235])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-8/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-dg1: NOTRUN -> [SKIP][291] ([i915#3555]) +5 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-17/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-rkl: NOTRUN -> [SKIP][292] ([i915#3555]) +3 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-2/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][293] ([i915#9196])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-2/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1:
- shard-mtlp: [PASS][294] -> [FAIL][295] ([i915#9196])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14786/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-1/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html
* igt@kms_vrr@flipline:
- shard-mtlp: NOTRUN -> [SKIP][296] ([i915#3555] / [i915#8808]) +1 other test skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-7/igt@kms_vrr@flipline.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-dg1: NOTRUN -> [SKIP][297] ([i915#9906])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-16/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg2: NOTRUN -> [SKIP][298] ([i915#2437])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-2/igt@kms_writeback@writeback-fb-id.html
* igt@perf@global-sseu-config-invalid:
- shard-mtlp: NOTRUN -> [SKIP][299] ([i915#7387])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-2/igt@perf@global-sseu-config-invalid.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-dg1: NOTRUN -> [SKIP][300] ([i915#2433])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-16/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: NOTRUN -> [FAIL][301] ([i915#4349]) +3 other tests fail
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-5/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@faulting-read@gtt:
- shard-mtlp: NOTRUN -> [SKIP][302] ([i915#8440])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-7/igt@perf_pmu@faulting-read@gtt.html
* igt@perf_pmu@most-busy-idle-check-all@rcs0:
- shard-rkl: [PASS][303] -> [FAIL][304] ([i915#4349])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14786/shard-rkl-2/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-4/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
* igt@perf_pmu@rc6@other-idle-gt0 (NEW):
- shard-dg2: NOTRUN -> [SKIP][305] ([i915#8516]) +1 other test skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-10/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: NOTRUN -> [INCOMPLETE][306] ([i915#5493])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-4/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
* igt@prime_vgem@basic-fence-flip:
- shard-dg2: NOTRUN -> [SKIP][307] ([i915#3708])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-11/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-write:
- shard-dg2: NOTRUN -> [SKIP][308] ([i915#3291] / [i915#3708])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-3/igt@prime_vgem@basic-write.html
- shard-rkl: NOTRUN -> [SKIP][309] ([i915#3291] / [i915#3708])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-2/igt@prime_vgem@basic-write.html
- shard-mtlp: NOTRUN -> [SKIP][310] ([i915#10216] / [i915#3708])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-1/igt@prime_vgem@basic-write.html
* igt@prime_vgem@coherency-gtt:
- shard-rkl: NOTRUN -> [SKIP][311] ([i915#3708])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-5/igt@prime_vgem@coherency-gtt.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-rkl: NOTRUN -> [SKIP][312] ([i915#9917])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-off.html
- shard-tglu: NOTRUN -> [SKIP][313] ([i915#9917])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-tglu-10/igt@sriov_basic@enable-vfs-autoprobe-off.html
- shard-mtlp: NOTRUN -> [SKIP][314] ([i915#9917])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-6/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-dg1: NOTRUN -> [SKIP][315] ([i915#9917]) +1 other test skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-18/igt@sriov_basic@enable-vfs-bind-unbind-each.html
- shard-dg2: NOTRUN -> [SKIP][316] ([i915#9917])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-1/igt@sriov_basic@enable-vfs-bind-unbind-each.html
* igt@v3d/v3d_perfmon@create-perfmon-exceed:
- shard-mtlp: NOTRUN -> [SKIP][317] ([i915#2575]) +8 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-6/igt@v3d/v3d_perfmon@create-perfmon-exceed.html
* igt@v3d/v3d_submit_cl@bad-extension:
- shard-dg1: NOTRUN -> [SKIP][318] ([i915#2575]) +13 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-15/igt@v3d/v3d_submit_cl@bad-extension.html
* igt@v3d/v3d_wait_bo@unused-bo-0ns:
- shard-dg2: NOTRUN -> [SKIP][319] ([i915#2575]) +10 other tests skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-6/igt@v3d/v3d_wait_bo@unused-bo-0ns.html
* igt@v3d/v3d_wait_bo@unused-bo-1ns:
- shard-tglu: NOTRUN -> [SKIP][320] ([i915#2575]) +9 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-tglu-6/igt@v3d/v3d_wait_bo@unused-bo-1ns.html
* igt@vc4/vc4_create_bo@create-bo-zeroed:
- shard-rkl: NOTRUN -> [SKIP][321] ([i915#7711]) +6 other tests skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-6/igt@vc4/vc4_create_bo@create-bo-zeroed.html
* igt@vc4/vc4_purgeable_bo@mark-purgeable-twice:
- shard-mtlp: NOTRUN -> [SKIP][322] ([i915#7711]) +5 other tests skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-7/igt@vc4/vc4_purgeable_bo@mark-purgeable-twice.html
* igt@vc4/vc4_wait_bo@bad-bo:
- shard-dg2: NOTRUN -> [SKIP][323] ([i915#7711]) +8 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-6/igt@vc4/vc4_wait_bo@bad-bo.html
* igt@vc4/vc4_wait_bo@used-bo-0ns:
- shard-dg1: NOTRUN -> [SKIP][324] ([i915#7711]) +8 other tests skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-15/igt@vc4/vc4_wait_bo@used-bo-0ns.html
#### Possible fixes ####
* igt@device_reset@unbind-reset-rebind:
- shard-rkl: [ABORT][325] ([i915#5507]) -> [PASS][326]
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14786/shard-rkl-3/igt@device_reset@unbind-reset-rebind.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-4/igt@device_reset@unbind-reset-rebind.html
- shard-mtlp: [ABORT][327] ([i915#5507]) -> [PASS][328]
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14786/shard-mtlp-8/igt@device_reset@unbind-reset-rebind.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-4/igt@device_reset@unbind-reset-rebind.html
* igt@drm_fdinfo@virtual-idle:
- shard-rkl: [FAIL][329] ([i915#7742]) -> [PASS][330] +1 other test pass
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14786/shard-rkl-2/igt@drm_fdinfo@virtual-idle.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-5/igt@drm_fdinfo@virtual-idle.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-rkl: [FAIL][331] ([i915#2842]) -> [PASS][332] +2 other tests pass
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14786/shard-rkl-3/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-1/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-tglu: [FAIL][333] ([i915#2842]) -> [PASS][334] +1 other test pass
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14786/shard-tglu-9/igt@gem_exec_fair@basic-pace@rcs0.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-tglu-2/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gem_lmem_swapping@basic@lmem0:
- shard-dg2: [FAIL][335] ([i915#10378]) -> [PASS][336]
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14786/shard-dg2-11/igt@gem_lmem_swapping@basic@lmem0.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-6/igt@gem_lmem_swapping@basic@lmem0.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible@bc-hdmi-a1-hdmi-a2:
- shard-glk: [INCOMPLETE][337] -> [PASS][338]
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14786/shard-glk3/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible@bc-hdmi-a1-hdmi-a2.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-glk3/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible@bc-hdmi-a1-hdmi-a2.html
* igt@kms_flip@blocking-wf_vblank@b-hdmi-a4:
- shard-dg1: [FAIL][339] ([i915#2122]) -> [PASS][340] +3 other tests pass
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14786/shard-dg1-15/igt@kms_flip@blocking-wf_vblank@b-hdmi-a4.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-17/igt@kms_flip@blocking-wf_vblank@b-hdmi-a4.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@a-vga1:
- shard-snb: [FAIL][341] ([i915#2122]) -> [PASS][342]
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14786/shard-snb7/igt@kms_flip@flip-vs-blocking-wf-vblank@a-vga1.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-snb5/igt@kms_flip@flip-vs-blocking-wf-vblank@a-vga1.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite:
- shard-dg2: [FAIL][343] ([i915#6880]) -> [PASS][344]
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14786/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
- shard-snb: [SKIP][345] -> [PASS][346] +5 other tests pass
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14786/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4:
- shard-dg1: [FAIL][347] ([i915#8292]) -> [PASS][348]
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14786/shard-dg1-15/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-18/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: [SKIP][349] ([i915#4281]) -> [PASS][350]
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14786/shard-tglu-8/igt@kms_pm_dc@dc9-dpms.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-tglu-6/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [SKIP][351] ([i915#9519]) -> [PASS][352]
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14786/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1:
- shard-snb: [FAIL][353] ([i915#9196]) -> [PASS][354]
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14786/shard-snb2/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-snb5/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
* igt@perf_pmu@busy-hang@vcs0:
- shard-dg2: [FAIL][355] ([i915#4349]) -> [PASS][356]
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14786/shard-dg2-11/igt@perf_pmu@busy-hang@vcs0.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-5/igt@perf_pmu@busy-hang@vcs0.html
* igt@perf_pmu@busy-hang@vcs1:
- shard-mtlp: [FAIL][357] ([i915#4349]) -> [PASS][358]
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14786/shard-mtlp-2/igt@perf_pmu@busy-hang@vcs1.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-mtlp-4/igt@perf_pmu@busy-hang@vcs1.html
#### Warnings ####
* igt@kms_content_protection@lic-type-0:
- shard-snb: [SKIP][359] -> [INCOMPLETE][360] ([i915#8816])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14786/shard-snb2/igt@kms_content_protection@lic-type-0.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-snb7/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][361] ([i915#9424]) -> [SKIP][362] ([i915#9433])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14786/shard-dg1-15/igt@kms_content_protection@mei-interface.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg1-15/igt@kms_content_protection@mei-interface.html
* igt@kms_pm_dc@dc6-dpms:
- shard-rkl: [SKIP][363] ([i915#3361]) -> [FAIL][364] ([i915#9295])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14786/shard-rkl-3/igt@kms_pm_dc@dc6-dpms.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-rkl-5/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_psr@fbc-psr-cursor-mmap-cpu:
- shard-dg2: [SKIP][365] ([i915#1072] / [i915#9732]) -> [SKIP][366] ([i915#1072] / [i915#9673] / [i915#9732]) +7 other tests skip
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14786/shard-dg2-1/igt@kms_psr@fbc-psr-cursor-mmap-cpu.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-11/igt@kms_psr@fbc-psr-cursor-mmap-cpu.html
* igt@kms_psr@psr2-primary-page-flip:
- shard-dg2: [SKIP][367] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][368] ([i915#1072] / [i915#9732]) +7 other tests skip
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14786/shard-dg2-11/igt@kms_psr@psr2-primary-page-flip.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/shard-dg2-3/igt@kms_psr@psr2-primary-page-flip.html
[i915#10139]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10139
[i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216
[i915#10278]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10278
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378
[i915#10380]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10380
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10446]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10446
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1065
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11166/index.html
[-- Attachment #2: Type: text/html, Size: 112565 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH i-g-t] tests/kms_plane: Implement dynamic level execution across multiple planes
2024-05-21 3:22 [PATCH i-g-t] tests/kms_plane: Implement dynamic level execution across multiple planes Pranay Samala
` (4 preceding siblings ...)
2024-05-22 3:27 ` ✗ Fi.CI.IGT: failure for " Patchwork
@ 2024-05-22 17:06 ` Kamil Konieczny
5 siblings, 0 replies; 7+ messages in thread
From: Kamil Konieczny @ 2024-05-22 17:06 UTC (permalink / raw)
To: igt-dev
Cc: Pranay Samala, karthik.b.s, jeevan.b, sameer.lattannavar,
Juha-Pekka Heikkila
Hi Pranay,
On 2024-05-21 at 08:52:38 +0530, Pranay Samala wrote:
please make subject a little shorter, instead:
[PATCH i-g-t] tests/kms_plane: Implement dynamic level execution across multiple planes
imho better:
[PATCH i-g-t] tests/kms_plane: convert to dynamic subtests
> The test runs on all pipes on dynamic level to test all the supported
> pixel-formats and modifiers on current plane of that pipe.
>
> Updating the test to execute on multiple planes on dynamic level.
>
Add Cc here:
Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
> Signed-off-by: Pranay Samala <pranay.samala@intel.com>
> ---
> tests/kms_plane.c | 107 +++++++++++++++++++++++-----------------------
> 1 file changed, 54 insertions(+), 53 deletions(-)
>
> diff --git a/tests/kms_plane.c b/tests/kms_plane.c
> index 406aecc04..f476ed52f 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",
--- ^^^^^^^^^
Do not make unrelated, non-described changes igt_info -> igt_debug
in this patch. Send this change as follow up (second patch).
> igt_output_name(output), kmstest_pipe_name(pipe), plane);
>
> igt_output_set_pipe(output, pipe);
> @@ -285,7 +285,7 @@ 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",
> + igt_debug("primary plane ID (%d) > sprite plane ID (%d), skipping plane %d\n",
--- ^^^^^^^^^
Same here.
> 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",
--- ^^^^^^^^^
Same here.
> igt_output_name(output), kmstest_pipe_name(pipe), mode->name);
>
> create_fb_for_mode_panning(data, mode, &primary_fb);
> @@ -449,59 +449,60 @@ test_plane_panning_with_output(data_t *data,
> static void
> test_plane_panning(data_t *data, enum pipe pipe)
> {
> - bool mode_found = false;
> - uint64_t mem_size = 0;
> - igt_output_t *output = data->output;
> - igt_crc_t ref_crc;
> -
> - igt_info("Using (pipe %s + %s) to run the subtest.\n",
> - kmstest_pipe_name(pipe), igt_output_name(output));
> + igt_dynamic_f("pipe-%s", kmstest_pipe_name(pipe)) {
> + bool mode_found = false;
> + uint64_t mem_size = 0;
> + igt_output_t *output = data->output;
> + igt_crc_t ref_crc;
>
> - test_init(data, pipe);
> + igt_info("Using (pipe %s + %s) to run the subtest.\n",
> + kmstest_pipe_name(pipe), igt_output_name(output));
>
> - if (is_i915_device(data->drm_fd)) {
> - for_each_memory_region(r, data->drm_fd)
> - if (r->ci.memory_class == I915_MEMORY_CLASS_DEVICE)
> - mem_size = r->cpu_size;
> + test_init(data, pipe);
>
> - }
> + if (is_i915_device(data->drm_fd)) {
> + 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)) {
> - struct drm_xe_mem_region *memregion;
> - uint64_t memreg = all_memory_regions(data->drm_fd), region;
> + if (is_xe_device(data->drm_fd)) {
> + struct drm_xe_mem_region *memregion;
> + uint64_t memreg = all_memory_regions(data->drm_fd), region;
>
> - xe_for_each_mem_region(data->drm_fd, memreg, region) {
> - memregion = xe_mem_region(data->drm_fd, region);
> + xe_for_each_mem_region(data->drm_fd, memreg, region) {
> + memregion = xe_mem_region(data->drm_fd, region);
>
> - if (XE_IS_CLASS_VRAM(memregion))
> - mem_size = memregion->total_size;
> + if (XE_IS_CLASS_VRAM(memregion))
> + mem_size = memregion->total_size;
> + }
> }
> - }
>
> - for_each_connector_mode(output) {
> - drmModeModeInfo *m = &output->config.connector->modes[j__];
> - uint32_t fb_size = m->hdisplay * m->vdisplay * 4;
> + for_each_connector_mode(output) {
> + drmModeModeInfo *m = &output->config.connector->modes[j__];
> + uint32_t fb_size = m->hdisplay * m->vdisplay * 4;
>
> - /* test allocates 2 double-dim fbs, add one more, to be safe */
> - if (mem_size && 3 * 4 * fb_size > mem_size) {
> - igt_debug("Skipping mode %s due to low memory\n", m->name);
> - continue;
> - }
> + /* test allocates 2 double-dim fbs, add one more, to be safe */
> + if (mem_size && 3 * 4 * fb_size > mem_size) {
> + igt_debug("Skipping mode %s due to low memory\n", m->name);
> + continue;
> + }
>
> - igt_output_override_mode(output, m);
> - mode_found = true;
> - break;
> - }
> - igt_require(mode_found);
> + igt_output_override_mode(output, m);
> + mode_found = true;
> + break;
> + }
> + igt_require(mode_found);
>
> - if (data->flags & TEST_PANNING_TOP_LEFT)
> - test_grab_crc(data, output, pipe, &red, data->flags, &ref_crc);
> - else
> - test_grab_crc(data, output, pipe, &blue, data->flags, &ref_crc);
> + if (data->flags & TEST_PANNING_TOP_LEFT)
> + test_grab_crc(data, output, pipe, &red, data->flags, &ref_crc);
> + else
> + test_grab_crc(data, output, pipe, &blue, data->flags, &ref_crc);
>
> - test_plane_panning_with_output(data, pipe, output, &ref_crc, data->flags);
> + test_plane_panning_with_output(data, pipe, output, &ref_crc, data->flags);
>
> - test_fini(data);
> + test_fini(data);
> + }
> }
>
> static const color_t colors_extended[] = {
> @@ -889,7 +890,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",
--- ^^^^^^^^^
Same here.
> IGT_FORMAT_ARGS(format), IGT_MODIFIER_ARGS(modifier),
> kmstest_pipe_name(pipe), plane->index);
>
> @@ -927,7 +928,7 @@ 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_debug("Testing format " IGT_FORMAT_FMT " / modifier " IGT_MODIFIER_FMT " (%s, %s) on %s.%u\n",
--- ^^^^^^^^^
Same here.
> IGT_FORMAT_ARGS(format), IGT_MODIFIER_ARGS(modifier),
> igt_color_encoding_to_str(e),
> igt_color_range_to_str(r),
> @@ -1043,7 +1044,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",
--- ^^^^^^^^^
Same here.
> IGT_FORMAT_ARGS(ref.format), IGT_MODIFIER_ARGS(ref.modifier),
> kmstest_pipe_name(pipe), plane->index);
>
> @@ -1089,7 +1090,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",
--- ^^^^^^^^^
Same here.
Regards,
Kamil
> IGT_FORMAT_ARGS(f.format), IGT_MODIFIER_ARGS(f.modifier),
> kmstest_pipe_name(pipe), plane->index);
> continue;
> @@ -1211,7 +1212,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,8 +1319,7 @@ 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;
> --
> 2.34.1
>
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-05-22 17:06 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-21 3:22 [PATCH i-g-t] tests/kms_plane: Implement dynamic level execution across multiple planes Pranay Samala
2024-05-21 4:04 ` ✓ CI.xeBAT: success for " Patchwork
2024-05-21 4:16 ` ✓ Fi.CI.BAT: " Patchwork
2024-05-21 4:54 ` ✗ CI.xeFULL: failure " Patchwork
2024-05-21 18:21 ` [PATCH i-g-t] " Juha-Pekka Heikkila
2024-05-22 3:27 ` ✗ Fi.CI.IGT: failure for " Patchwork
2024-05-22 17:06 ` [PATCH i-g-t] " Kamil Konieczny
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox