* [PATCH i-g-t 0/3] Add tests for kms_plane and kms_rotation
@ 2024-02-01 16:35 Louis Chauvet
2024-02-01 16:35 ` [PATCH i-g-t 1/3] tests/kms/plane: Rename test_planar_settings to test_odd_size_with_yuv Louis Chauvet
` (5 more replies)
0 siblings, 6 replies; 8+ messages in thread
From: Louis Chauvet @ 2024-02-01 16:35 UTC (permalink / raw)
To: igt-dev; +Cc: Louis Chauvet, thomas.petazzoni, miquel.raynal
This patchset mainly remove intel guards on kms tests to allow more tests
to be run with vkms.
Patch 1/3: Rename a test to reflect what is really done and remove intel
guards.
Patch 2/3: Add a more complex color test because "plain colors" and
"lines" did not detect some issue in [1]
Patch 3/3: Remove some intel guards to allow more test to be run in the
general case.
Signed-off-by: Louis Chauvet <louis.chauvet@bootlin.com>
---
Louis Chauvet (3):
tests/kms/plane: Rename test_planar_settings to test_odd_size_with_yuv
tests/kms/plane: Use a complex pattern to test plane color conversion.
tests/kms_rotation_crc: Remove intel guards
tests/kms_plane.c | 133 +++++++++++++++++++++++++----------------------
tests/kms_rotation_crc.c | 23 ++++----
2 files changed, 86 insertions(+), 70 deletions(-)
---
base-commit: bfa3db0cd9e9a11c0eeaf40a2743c5e2e0f24d2c
change-id: 20240201-kms_tests-a7e10f4f5899
Best regards,
--
Louis Chauvet <louis.chauvet@bootlin.com>
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH i-g-t 1/3] tests/kms/plane: Rename test_planar_settings to test_odd_size_with_yuv
2024-02-01 16:35 [PATCH i-g-t 0/3] Add tests for kms_plane and kms_rotation Louis Chauvet
@ 2024-02-01 16:35 ` Louis Chauvet
2024-02-01 16:35 ` [PATCH i-g-t 2/3] tests/kms/plane: Use a complex pattern to test plane color conversion Louis Chauvet
` (4 subsequent siblings)
5 siblings, 0 replies; 8+ messages in thread
From: Louis Chauvet @ 2024-02-01 16:35 UTC (permalink / raw)
To: igt-dev; +Cc: Louis Chauvet, thomas.petazzoni, miquel.raynal
Rename the test test_planar_settings to test_odd_size_with_yuv, remove the
intel guard on this test.
Signed-off-by: Louis Chauvet <louis.chauvet@bootlin.com>
---
tests/kms_plane.c | 91 ++++++++++++++++++++++++++-----------------------------
1 file changed, 43 insertions(+), 48 deletions(-)
diff --git a/tests/kms_plane.c b/tests/kms_plane.c
index 406aecc04297..0bca96692b14 100644
--- a/tests/kms_plane.c
+++ b/tests/kms_plane.c
@@ -42,8 +42,8 @@
#include "xe/xe_query.h"
/**
- * SUBTEST: planar-pixel-format-settings
- * Description: verify planar settings for pixel format are handled correctly
+ * SUBTEST: test-odd-size-with-yuv
+ * Description: verify that yuv odd size are handled correctly by the driver
* Functionality: pixel_formats, plane
*
* SUBTEST: plane-position-%s
@@ -1226,8 +1226,7 @@ test_pixel_formats(data_t *data, enum pipe pipe)
igt_assert_f(result, "At least one CRC mismatch happened\n");
}
-
-static void test_planar_settings(data_t *data)
+static void test_odd_size_with_yuv(data_t *data)
{
enum pipe pipe = PIPE_A;
igt_output_t *output;
@@ -1236,14 +1235,18 @@ static void test_planar_settings(data_t *data)
int devid;
int rval;
- /*
- * If here is added non-intel tests below require will need to be
- * changed to if(..)
- */
+ bool should_fail = false;
igt_require(data->display.is_atomic);
- igt_require_intel(data->drm_fd);
- devid = intel_get_drm_devid(data->drm_fd);
- igt_require(intel_display_ver(devid) >= 9);
+
+ /* Add more devices here if they are expected to fail */
+ if(is_intel_device(data->drm_fd)) {
+ /* This was required in the original test */
+ igt_require(intel_display_ver(devid) >= 9);
+ /* Intel display version below 20 are expected to fail */
+ if (intel_display_ver(devid) < 20) {
+ should_fail = true;
+ }
+ }
output = igt_get_single_output_for_pipe(&data->display, pipe);
igt_require(output);
@@ -1255,44 +1258,37 @@ static void test_planar_settings(data_t *data)
DRM_MODE_ATOMIC_ALLOW_MODESET,
NULL);
- /* test against intel_plane_check_src_coordinates() in i915 */
- if (igt_plane_has_format_mod(primary, DRM_FORMAT_NV12,
- DRM_FORMAT_MOD_LINEAR)) {
- int expected_rval = -EINVAL;
-
- if (intel_display_ver(devid) >= 20)
- expected_rval = 0;
-
- igt_create_fb(data->drm_fd, 257, 256,
- DRM_FORMAT_NV12, DRM_FORMAT_MOD_LINEAR, &fb);
- igt_plane_set_fb(primary, &fb);
- rval = igt_display_try_commit_atomic(&data->display,
- DRM_MODE_ATOMIC_ALLOW_MODESET,
- NULL);
- igt_remove_fb(data->drm_fd, &fb);
- igt_assert_f(rval == expected_rval, "Odd width NV12 framebuffer\n");
+ igt_require(igt_plane_has_format_mod(primary, DRM_FORMAT_NV12,
+ DRM_FORMAT_MOD_LINEAR));
+
+
+ igt_create_fb(data->drm_fd, 257, 256,
+ DRM_FORMAT_NV12, DRM_FORMAT_MOD_LINEAR, &fb);
+ igt_plane_set_fb(primary, &fb);
+ rval = igt_display_try_commit_atomic(&data->display,
+ DRM_MODE_ATOMIC_ALLOW_MODESET,
+ NULL);
+ igt_remove_fb(data->drm_fd, &fb);
+
+ if(should_fail) {
+ igt_assert_f(rval == -EINVAL, "Odd width NV12 framebuffer correctly failed\n");
} else {
- igt_debug("Odd width NV12 framebuffer test skipped\n");
+ igt_assert_f(rval == 0, "Odd width NV12 framebuffer correctly succeed\n");
}
- /* test against intel_plane_check_src_coordinates() in i915 */
- if (igt_plane_has_format_mod(primary, DRM_FORMAT_NV12,
- DRM_FORMAT_MOD_LINEAR)) {
- int expected_rval = -EINVAL;
-
- if (intel_display_ver(devid) >= 20)
- expected_rval = 0;
-
- igt_create_fb(data->drm_fd, 256, 257,
- DRM_FORMAT_NV12, DRM_FORMAT_MOD_LINEAR, &fb);
- igt_plane_set_fb(primary, &fb);
- rval = igt_display_try_commit_atomic(&data->display,
- DRM_MODE_ATOMIC_ALLOW_MODESET,
- NULL);
- igt_remove_fb(data->drm_fd, &fb);
- igt_assert_f(rval == expected_rval, "Odd height NV12 framebuffer\n");
+
+ igt_create_fb(data->drm_fd, 256, 257,
+ DRM_FORMAT_NV12, DRM_FORMAT_MOD_LINEAR, &fb);
+ igt_plane_set_fb(primary, &fb);
+ rval = igt_display_try_commit_atomic(&data->display,
+ DRM_MODE_ATOMIC_ALLOW_MODESET,
+ NULL);
+ igt_remove_fb(data->drm_fd, &fb);
+
+ if(should_fail) {
+ igt_assert_f(rval == -EINVAL, "Odd height NV12 framebuffer correctly failed\n");
} else {
- igt_debug("Odd height NV12 framebuffer test skipped\n");
+ igt_assert_f(rval == 0, "Odd height NV12 framebuffer correctly succeed\n");
}
}
@@ -1377,9 +1373,8 @@ run_tests_for_pipe_plane(data_t *data)
run_test(data, test_plane_panning);
}
- igt_describe("verify planar settings for pixel format are accepted or rejected correctly");
- igt_subtest_f("planar-pixel-format-settings")
- test_planar_settings(data);
+ igt_describe("verify that odd sizes for yuv format are accepted or rejected correctly");
+ igt_subtest_f("test-odd-size-with-yuv") test_odd_size_with_yuv(data);
}
static int opt_handler(int opt, int opt_index, void *_data)
--
2.43.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH i-g-t 2/3] tests/kms/plane: Use a complex pattern to test plane color conversion.
2024-02-01 16:35 [PATCH i-g-t 0/3] Add tests for kms_plane and kms_rotation Louis Chauvet
2024-02-01 16:35 ` [PATCH i-g-t 1/3] tests/kms/plane: Rename test_planar_settings to test_odd_size_with_yuv Louis Chauvet
@ 2024-02-01 16:35 ` Louis Chauvet
2024-02-01 16:35 ` [PATCH i-g-t 3/3] tests/kms_rotation_crc: Remove intel guards Louis Chauvet
` (3 subsequent siblings)
5 siblings, 0 replies; 8+ messages in thread
From: Louis Chauvet @ 2024-02-01 16:35 UTC (permalink / raw)
To: igt-dev; +Cc: Louis Chauvet, thomas.petazzoni, miquel.raynal
Replace the simple "lines pattern" by a "square pattern" to detect if the
drm device correctly render the picture.
It's useful for example for the series [1] where the tests are "SUCCESS",
but in fact it works only because the content of a line is the same. The
"square pattern" will detect this kind of issues on the x axis.
It also allows this "square pattern" to be tested in the
"capture_format_crcs_multiple" tests, otherwise it is not executed for yuv
formats.
[1]: https://lore.kernel.org/dri-devel/20240110-vkms-yuv-v2-0-952fcaa5a193@riseup.net/
Signed-off-by: Louis Chauvet <louis.chauvet@bootlin.com>
---
tests/kms_plane.c | 42 +++++++++++++++++++++++++++++-------------
1 file changed, 29 insertions(+), 13 deletions(-)
diff --git a/tests/kms_plane.c b/tests/kms_plane.c
index 0bca96692b14..296d5af3eb91 100644
--- a/tests/kms_plane.c
+++ b/tests/kms_plane.c
@@ -587,7 +587,10 @@ static void draw_entire_color_array(data_t *data, cairo_t *cr, uint32_t format,
struct igt_fb *fb)
{
const int color_amount = ARRAY_SIZE(colors_extended);
- const int x = format == DRM_FORMAT_XRGB8888 ? 0 : data->crop;
+ const int margin = format == DRM_FORMAT_XRGB8888 ? 0 : data->crop;
+ const int step_x = (fb->width - margin * 2) / color_amount;
+ const int step_y = (fb->height - margin * 2) / color_amount;
+ int color_index;
if (format != DRM_FORMAT_XRGB8888) {
cairo_rectangle(cr, data->crop, data->crop,
@@ -595,16 +598,18 @@ static void draw_entire_color_array(data_t *data, cairo_t *cr, uint32_t format,
fb->height - data->crop * 2);
}
-
for (int n = 0; n < color_amount; n++) {
- int y = (fb->height - x * 2) * n / color_amount + x;
-
- igt_paint_color(cr, x, y,
- fb->width - x * 2,
- (fb->height - x * 2) / color_amount + 1,
- colors_extended[n].red,
- colors_extended[n].green,
- colors_extended[n].blue);
+ for (int m = 0; m < color_amount; m++) {
+ color_index = (n + m) % color_amount;
+ igt_paint_color(cr,
+ margin + n * step_x,
+ margin + m * step_y,
+ step_x,
+ step_y,
+ colors_extended[color_index].red,
+ colors_extended[color_index].green,
+ colors_extended[color_index].blue);
+ }
}
}
@@ -712,6 +717,11 @@ static void capture_format_crcs_single(data_t *data, enum pipe pipe,
igt_pipe_crc_get_current(data->drm_fd, data->pipe_crc, &crc[0]);
}
+/*
+ * capture_format_crcs_multiple() - Capture CRC for multiples colors
+ *
+ * @crc: list to store generated CRC. It must be at least data.num_colors + 1
+ */
static void capture_format_crcs_multiple(data_t *data, enum pipe pipe,
igt_plane_t *plane,
uint32_t format, uint64_t modifier,
@@ -724,6 +734,12 @@ static void capture_format_crcs_multiple(data_t *data, enum pipe pipe,
struct drm_event_vblank ev;
int i;
+ /* Also run single colors to capture more failures */
+ capture_format_crcs_single(data, pipe, plane, format, modifier, width, height, encoding, range, crc, fb);
+
+ /* Skip the first crc as it's taken by "capture_format_crcs_single" */
+ crc = crc + 1;
+
restart_round:
for (i = 0; i < data->num_colors; i++) {
const color_t *c = &data->colors[i];
@@ -849,7 +865,7 @@ static bool test_format_plane_colors(data_t *data, enum pipe pipe,
igt_crc_t ref_crc[],
struct igt_fb *fb)
{
- igt_crc_t crc[ARRAY_SIZE(colors_extended)];
+ igt_crc_t crc[ARRAY_SIZE(colors_extended) + 1];
unsigned int crc_mismatch_mask = 0;
int crc_mismatch_count = 0;
bool result = true;
@@ -859,7 +875,7 @@ static bool test_format_plane_colors(data_t *data, enum pipe pipe,
capture_format_crcs_multiple(data, pipe, plane, format, modifier,
width, height, encoding, range, crc,
fb);
- total_crcs = data->num_colors;
+ total_crcs = data->num_colors + 1;
} else {
capture_format_crcs_single(data, pipe, plane, format, modifier,
width, height, encoding, range, crc,
@@ -1006,7 +1022,7 @@ static bool test_format_plane(data_t *data, enum pipe pipe,
struct igt_fb *clear_fb = plane->type == DRM_PLANE_TYPE_PRIMARY ? primary_fb : NULL;
drmModeModeInfo *mode;
uint64_t width, height;
- igt_crc_t ref_crc[MAX_CRC_SET][ARRAY_SIZE(colors_extended)];
+ igt_crc_t ref_crc[MAX_CRC_SET][ARRAY_SIZE(colors_extended) + 1];
struct igt_vec tested_formats;
struct format_mod ref = {};
igt_crc_t* crcset;
--
2.43.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH i-g-t 3/3] tests/kms_rotation_crc: Remove intel guards
2024-02-01 16:35 [PATCH i-g-t 0/3] Add tests for kms_plane and kms_rotation Louis Chauvet
2024-02-01 16:35 ` [PATCH i-g-t 1/3] tests/kms/plane: Rename test_planar_settings to test_odd_size_with_yuv Louis Chauvet
2024-02-01 16:35 ` [PATCH i-g-t 2/3] tests/kms/plane: Use a complex pattern to test plane color conversion Louis Chauvet
@ 2024-02-01 16:35 ` Louis Chauvet
2024-02-01 17:16 ` Louis Chauvet
2024-02-01 18:08 ` ✓ CI.xeBAT: success for Add tests for kms_plane and kms_rotation Patchwork
` (2 subsequent siblings)
5 siblings, 1 reply; 8+ messages in thread
From: Louis Chauvet @ 2024-02-01 16:35 UTC (permalink / raw)
To: igt-dev; +Cc: Louis Chauvet, thomas.petazzoni, miquel.raynal
Remove a lot of intel guards on multiple tests.
The only guard keep is bad-pixel-format because it seems very
intel-specific.
Signed-off-by: Louis Chauvet <louis.chauvet@bootlin.com>
---
tests/kms_rotation_crc.c | 23 ++++++++++++++---------
1 file changed, 14 insertions(+), 9 deletions(-)
diff --git a/tests/kms_rotation_crc.c b/tests/kms_rotation_crc.c
index 8d8c53b5ff84..1ab2dc68663b 100644
--- a/tests/kms_rotation_crc.c
+++ b/tests/kms_rotation_crc.c
@@ -634,7 +634,8 @@ static void test_plane_rotation(data_t *data, int plane_type, bool test_bad_form
plane = igt_output_get_plane_type(output, plane_type);
igt_require(igt_plane_has_prop(plane, IGT_PLANE_ROTATION));
igt_require(igt_plane_has_rotation(plane, data->rotation));
- /* CHV can't rotate and reflect simultaneously */
+ /* When using CHERRYVIEW intel device, simultaneous rotation and reflection are not supported at the
+ * same time, so skip this test */
igt_require(!is_intel_device(data->gfx_fd) ||
!IS_CHERRYVIEW(data->devid) ||
data->rotation != (IGT_ROTATION_180 | IGT_REFLECT_X));
@@ -1250,12 +1251,13 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
data.pos_x = 0,
data.pos_y = 0;
- igt_describe("Checking unsupported pixel format for gen9+ with 90 degree of rotation");
+ igt_describe("Checking unsupported pixel format for Intel gen9+ with 90 degree of rotation");
igt_subtest_f("bad-pixel-format") {
/* gen11 enables RGB565 rotation for 90/270 degrees.
* so apart from this, any other gen11+ pixel format
* can be used which doesn't support 90/270 degree
* rotation */
+ igt_require(is_intel_device(data.gfx_fd));
data.rotation = IGT_ROTATION_90;
data.override_fmt = gen < 11 ? DRM_FORMAT_RGB565 : DRM_FORMAT_Y212;
test_plane_rotation(&data, DRM_PLANE_TYPE_PRIMARY, true);
@@ -1270,11 +1272,8 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
}
data.override_modifier = 0;
- igt_describe("Tiling and Rotation test for gen 10+ for primary plane");
+ igt_describe("Tiling and Rotation test for primary plane");
for (reflect_x = reflect_x_subtests; reflect_x->modifier; reflect_x++) {
- igt_fixture
- igt_require_intel(data.gfx_fd);
-
igt_subtest_f("primary-%s-tiled-reflect-x-%s",
igt_fb_modifier_name(reflect_x->modifier),
igt_plane_rotation_name(reflect_x->rot)) {
@@ -1286,7 +1285,9 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
igt_describe("Rotation test on both planes by making them fully visible");
igt_subtest_f("multiplane-rotation") {
- igt_require(gen >= 9);
+ /* This feature is only supported for Intel device >= 9 */
+ if (is_intel_device(data.gfx_fd))
+ igt_require(gen > 9);
cleanup_crtc(&data);
data.planepos[0].origo = p_top | p_left;
data.planepos[0].x = .2f;
@@ -1300,7 +1301,9 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
igt_describe("Rotation test on both planes by cropping left/top corner of primary plane and"
"right/top corner of sprite plane");
igt_subtest_f("multiplane-rotation-cropping-top") {
- igt_require(gen >= 9);
+/* This feature is only supported for Intel device >= 9 */
+ if (is_intel_device(data.gfx_fd))
+ igt_require(gen > 9);
cleanup_crtc(&data);
data.planepos[0].origo = p_top | p_left;
data.planepos[0].x = -.05f;
@@ -1314,7 +1317,9 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
igt_describe("Rotation test on both planes by cropping left/bottom corner of primary plane"
"and right/bottom corner of sprite plane");
igt_subtest_f("multiplane-rotation-cropping-bottom") {
- igt_require(gen >= 9);
+/* This feature is only supported for Intel device >= 9 */
+ if (is_intel_device(data.gfx_fd))
+ igt_require(gen > 9);
cleanup_crtc(&data);
data.planepos[0].origo = p_bottom | p_left;
data.planepos[0].x = -.05f;
--
2.43.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t 3/3] tests/kms_rotation_crc: Remove intel guards
2024-02-01 16:35 ` [PATCH i-g-t 3/3] tests/kms_rotation_crc: Remove intel guards Louis Chauvet
@ 2024-02-01 17:16 ` Louis Chauvet
0 siblings, 0 replies; 8+ messages in thread
From: Louis Chauvet @ 2024-02-01 17:16 UTC (permalink / raw)
To: igt-dev; +Cc: thomas.petazzoni, miquel.raynal
In this patch I forgot to remove this modifier if the device is not an
intel GPU:
modifier = data->override_modifier ?: I915_FORMAT_MOD_Y_TILED;
line 389 in tests/kms_rotation_crc.c
I will add it in my v2 when the rest of the series is reviewed:
if (is_intel_device(data->gfx_fd)) {
modifier = data->override_modifier ?: I915_FORMAT_MOD_Y_TILED;
}
This way the rotation tests can be run for vkms too.
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ CI.xeBAT: success for Add tests for kms_plane and kms_rotation
2024-02-01 16:35 [PATCH i-g-t 0/3] Add tests for kms_plane and kms_rotation Louis Chauvet
` (2 preceding siblings ...)
2024-02-01 16:35 ` [PATCH i-g-t 3/3] tests/kms_rotation_crc: Remove intel guards Louis Chauvet
@ 2024-02-01 18:08 ` Patchwork
2024-02-01 18:22 ` ✓ Fi.CI.BAT: " Patchwork
2024-02-01 20:07 ` ✗ Fi.CI.IGT: failure " Patchwork
5 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2024-02-01 18:08 UTC (permalink / raw)
To: Louis Chauvet; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 969 bytes --]
== Series Details ==
Series: Add tests for kms_plane and kms_rotation
URL : https://patchwork.freedesktop.org/series/129426/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7700_BAT -> XEIGTPW_10627_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_7700 -> IGTPW_10627
* Linux: xe-712-cba66c6a2af4df1b9b420fbad0a9ac1e68f14030 -> xe-715-3e58a4940c44430f20cad20ead5e1b77ed209cde
IGTPW_10627: 10627
IGT_7700: 7700
xe-712-cba66c6a2af4df1b9b420fbad0a9ac1e68f14030: cba66c6a2af4df1b9b420fbad0a9ac1e68f14030
xe-715-3e58a4940c44430f20cad20ead5e1b77ed209cde: 3e58a4940c44430f20cad20ead5e1b77ed209cde
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10627/index.html
[-- Attachment #2: Type: text/html, Size: 1528 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ Fi.CI.BAT: success for Add tests for kms_plane and kms_rotation
2024-02-01 16:35 [PATCH i-g-t 0/3] Add tests for kms_plane and kms_rotation Louis Chauvet
` (3 preceding siblings ...)
2024-02-01 18:08 ` ✓ CI.xeBAT: success for Add tests for kms_plane and kms_rotation Patchwork
@ 2024-02-01 18:22 ` Patchwork
2024-02-01 20:07 ` ✗ Fi.CI.IGT: failure " Patchwork
5 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2024-02-01 18:22 UTC (permalink / raw)
To: Louis Chauvet; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 9100 bytes --]
== Series Details ==
Series: Add tests for kms_plane and kms_rotation
URL : https://patchwork.freedesktop.org/series/129426/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_14209 -> IGTPW_10627
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/index.html
Participating hosts (39 -> 38)
------------------------------
Additional (1): fi-pnv-d510
Missing (2): bat-mtlp-8 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_10627 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_lmem_swapping@basic:
- fi-pnv-d510: NOTRUN -> [SKIP][1] ([fdo#109271]) +31 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/fi-pnv-d510/igt@gem_lmem_swapping@basic.html
* igt@i915_selftest@live@workarounds:
- bat-adlp-9: [PASS][2] -> [INCOMPLETE][3] ([i915#10137] / [i915#9413])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/bat-adlp-9/igt@i915_selftest@live@workarounds.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/bat-adlp-9/igt@i915_selftest@live@workarounds.html
* igt@kms_flip@basic-flip-vs-wf_vblank@c-hdmi-a2:
- fi-bsw-nick: [PASS][4] -> [DMESG-WARN][5] ([i915#1982])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/fi-bsw-nick/igt@kms_flip@basic-flip-vs-wf_vblank@c-hdmi-a2.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/fi-bsw-nick/igt@kms_flip@basic-flip-vs-wf_vblank@c-hdmi-a2.html
* igt@kms_force_connector_basic@force-connector-state:
- fi-kbl-guc: [PASS][6] -> [ABORT][7] ([i915#9991])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/fi-kbl-guc/igt@kms_force_connector_basic@force-connector-state.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/fi-kbl-guc/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-dg2-11: NOTRUN -> [SKIP][8] ([i915#9197]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
#### Possible fixes ####
* igt@i915_module_load@reload:
- fi-apl-guc: [DMESG-WARN][9] ([i915#180] / [i915#1982] / [i915#8585]) -> [PASS][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/fi-apl-guc/igt@i915_module_load@reload.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/fi-apl-guc/igt@i915_module_load@reload.html
* igt@i915_selftest@live@reset:
- fi-apl-guc: [DMESG-WARN][11] ([i915#9730]) -> [PASS][12] +36 other tests pass
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/fi-apl-guc/igt@i915_selftest@live@reset.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/fi-apl-guc/igt@i915_selftest@live@reset.html
* igt@kms_addfb_basic@addfb25-4-tiled:
- fi-apl-guc: [DMESG-WARN][13] -> [PASS][14] +40 other tests pass
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/fi-apl-guc/igt@kms_addfb_basic@addfb25-4-tiled.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/fi-apl-guc/igt@kms_addfb_basic@addfb25-4-tiled.html
* igt@kms_flip@basic-flip-vs-dpms@c-dp1:
- fi-apl-guc: [DMESG-WARN][15] ([i915#180]) -> [PASS][16] +27 other tests pass
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/fi-apl-guc/igt@kms_flip@basic-flip-vs-dpms@c-dp1.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/fi-apl-guc/igt@kms_flip@basic-flip-vs-dpms@c-dp1.html
* igt@kms_flip@basic-flip-vs-wf_vblank@a-dp1:
- fi-apl-guc: [DMESG-WARN][17] ([i915#180] / [i915#1982]) -> [PASS][18]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/fi-apl-guc/igt@kms_flip@basic-flip-vs-wf_vblank@a-dp1.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/fi-apl-guc/igt@kms_flip@basic-flip-vs-wf_vblank@a-dp1.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-1:
- fi-apl-guc: [DMESG-WARN][19] ([i915#180] / [i915#8585]) -> [PASS][20] +8 other tests pass
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/fi-apl-guc/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-1.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/fi-apl-guc/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-1.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[i915#10137]: https://gitlab.freedesktop.org/drm/intel/issues/10137
[i915#10197]: https://gitlab.freedesktop.org/drm/intel/issues/10197
[i915#10211]: https://gitlab.freedesktop.org/drm/intel/issues/10211
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#8585]: https://gitlab.freedesktop.org/drm/intel/issues/8585
[i915#9197]: https://gitlab.freedesktop.org/drm/intel/issues/9197
[i915#9413]: https://gitlab.freedesktop.org/drm/intel/issues/9413
[i915#9730]: https://gitlab.freedesktop.org/drm/intel/issues/9730
[i915#9991]: https://gitlab.freedesktop.org/drm/intel/issues/9991
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7700 -> IGTPW_10627
CI-20190529: 20190529
CI_DRM_14209: 3e58a4940c44430f20cad20ead5e1b77ed209cde @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10627: 10627
IGT_7700: 7700
Testlist changes
----------------
+igt@kms_plane@test-odd-size-with-yuv
-igt@gem_mmap@multigpu-basic
-igt@kms_plane@planar-pixel-format-settings
-igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic
-igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind
-igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap
-igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue
-igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind
-igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr
-igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate
-igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race
-igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind
-igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null
-igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind
-igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap
-igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind
-igt@xe_exec_basic@multigpu-many-execqueues-many-vm-rebind
-igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr
-igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate
-igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race
-igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind
-igt@xe_exec_basic@multigpu-no-exec-basic
-igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind
-igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap
-igt@xe_exec_basic@multigpu-no-exec-bindexecqueue
-igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind
-igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr
-igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate
-igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate-race
-igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind
-igt@xe_exec_basic@multigpu-no-exec-null
-igt@xe_exec_basic@multigpu-no-exec-null-defer-bind
-igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap
-igt@xe_exec_basic@multigpu-no-exec-null-rebind
-igt@xe_exec_basic@multigpu-no-exec-rebind
-igt@xe_exec_basic@multigpu-no-exec-userptr
-igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate
-igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race
-igt@xe_exec_basic@multigpu-no-exec-userptr-rebind
-igt@xe_exec_basic@multigpu-once-basic
-igt@xe_exec_basic@multigpu-once-basic-defer-bind
-igt@xe_exec_basic@multigpu-once-basic-defer-mmap
-igt@xe_exec_basic@multigpu-once-bindexecqueue
-igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind
-igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr
-igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate
-igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race
-igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind
-igt@xe_exec_basic@multigpu-once-null
-igt@xe_exec_basic@multigpu-once-null-defer-bind
-igt@xe_exec_basic@multigpu-once-null-defer-mmap
-igt@xe_exec_basic@multigpu-once-null-rebind
-igt@xe_exec_basic@multigpu-once-rebind
-igt@xe_exec_basic@multigpu-once-userptr
-igt@xe_exec_basic@multigpu-once-userptr-invalidate
-igt@xe_exec_basic@multigpu-once-userptr-invalidate-race
-igt@xe_exec_basic@multigpu-once-userptr-rebind
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/index.html
[-- Attachment #2: Type: text/html, Size: 10568 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Fi.CI.IGT: failure for Add tests for kms_plane and kms_rotation
2024-02-01 16:35 [PATCH i-g-t 0/3] Add tests for kms_plane and kms_rotation Louis Chauvet
` (4 preceding siblings ...)
2024-02-01 18:22 ` ✓ Fi.CI.BAT: " Patchwork
@ 2024-02-01 20:07 ` Patchwork
5 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2024-02-01 20:07 UTC (permalink / raw)
To: Louis Chauvet; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100260 bytes --]
== Series Details ==
Series: Add tests for kms_plane and kms_rotation
URL : https://patchwork.freedesktop.org/series/129426/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_14209_full -> IGTPW_10627_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_10627_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_10627_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_10627/index.html
Participating hosts (8 -> 8)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_10627_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_plane@pixel-format-source-clamping@pipe-a:
- shard-dg1: [PASS][1] -> [FAIL][2] +3 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-dg1-12/igt@kms_plane@pixel-format-source-clamping@pipe-a.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg1-18/igt@kms_plane@pixel-format-source-clamping@pipe-a.html
* igt@kms_plane@pixel-format-source-clamping@pipe-b:
- shard-rkl: [PASS][3] -> [FAIL][4] +3 other tests fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-rkl-2/igt@kms_plane@pixel-format-source-clamping@pipe-b.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-6/igt@kms_plane@pixel-format-source-clamping@pipe-b.html
* igt@kms_plane@pixel-format@pipe-a:
- shard-tglu: [PASS][5] -> [FAIL][6] +3 other tests fail
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-tglu-2/igt@kms_plane@pixel-format@pipe-a.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-tglu-9/igt@kms_plane@pixel-format@pipe-a.html
* igt@kms_plane@pixel-format@pipe-b:
- shard-glk: [PASS][7] -> [FAIL][8] +1 other test fail
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-glk7/igt@kms_plane@pixel-format@pipe-b.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-glk9/igt@kms_plane@pixel-format@pipe-b.html
- shard-mtlp: [PASS][9] -> [FAIL][10] +3 other tests fail
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-mtlp-6/igt@kms_plane@pixel-format@pipe-b.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-4/igt@kms_plane@pixel-format@pipe-b.html
* {igt@kms_plane@test-odd-size-with-yuv} (NEW):
- shard-glk: NOTRUN -> [FAIL][11] +2 other tests fail
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-glk2/igt@kms_plane@test-odd-size-with-yuv.html
- shard-dg2: NOTRUN -> [FAIL][12] +2 other tests fail
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-7/igt@kms_plane@test-odd-size-with-yuv.html
- shard-rkl: NOTRUN -> [FAIL][13]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-6/igt@kms_plane@test-odd-size-with-yuv.html
- shard-dg1: NOTRUN -> [FAIL][14]
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg1-12/igt@kms_plane@test-odd-size-with-yuv.html
- shard-tglu: NOTRUN -> [FAIL][15]
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-tglu-8/igt@kms_plane@test-odd-size-with-yuv.html
New tests
---------
New tests have been introduced between CI_DRM_14209_full and IGTPW_10627_full:
### New IGT tests (1) ###
* igt@kms_plane@test-odd-size-with-yuv:
- Statuses : 5 fail(s) 1 skip(s)
- Exec time: [0.02, 0.42] s
Known issues
------------
Here are the changes found in IGTPW_10627_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@crc32:
- shard-rkl: NOTRUN -> [SKIP][16] ([i915#6230])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-5/igt@api_intel_bb@crc32.html
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-dg2: NOTRUN -> [SKIP][17] ([i915#8411])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-3/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-dg2: NOTRUN -> [SKIP][18] ([i915#7701])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-7/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_limit:
- shard-mtlp: NOTRUN -> [DMESG-WARN][19] ([i915#10140])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-8/igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_limit.html
* igt@drm_fdinfo@busy-check-all@ccs3:
- shard-dg2: NOTRUN -> [SKIP][20] ([i915#8414]) +20 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-10/igt@drm_fdinfo@busy-check-all@ccs3.html
* igt@drm_fdinfo@busy-idle@vcs1:
- shard-dg1: NOTRUN -> [SKIP][21] ([i915#8414]) +4 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg1-16/igt@drm_fdinfo@busy-idle@vcs1.html
* igt@drm_fdinfo@busy-idle@vecs0:
- shard-mtlp: NOTRUN -> [SKIP][22] ([i915#8414]) +5 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-2/igt@drm_fdinfo@busy-idle@vecs0.html
* igt@drm_fdinfo@idle@rcs0:
- shard-rkl: NOTRUN -> [FAIL][23] ([i915#7742])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-6/igt@drm_fdinfo@idle@rcs0.html
* igt@drm_fdinfo@most-busy-check-all@rcs0:
- shard-rkl: [PASS][24] -> [FAIL][25] ([i915#7742])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-rkl-1/igt@drm_fdinfo@most-busy-check-all@rcs0.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-6/igt@drm_fdinfo@most-busy-check-all@rcs0.html
* igt@gem_bad_reloc@negative-reloc-bltcopy:
- shard-dg1: NOTRUN -> [SKIP][26] ([i915#3281])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg1-12/igt@gem_bad_reloc@negative-reloc-bltcopy.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-dg1: NOTRUN -> [SKIP][27] ([i915#9323])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg1-19/igt@gem_ccs@block-multicopy-compressed.html
- shard-tglu: NOTRUN -> [SKIP][28] ([i915#9323])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-tglu-7/igt@gem_ccs@block-multicopy-compressed.html
- shard-mtlp: NOTRUN -> [SKIP][29] ([i915#9323])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-2/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
- shard-dg2: [PASS][30] -> [INCOMPLETE][31] ([i915#7297])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-dg2-6/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-10/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-rkl: NOTRUN -> [SKIP][32] ([i915#7697])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-5/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-tglu: NOTRUN -> [SKIP][33] ([i915#6335])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-tglu-8/igt@gem_create@create-ext-cpu-access-big.html
- shard-dg2: NOTRUN -> [ABORT][34] ([i915#10183])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-3/igt@gem_create@create-ext-cpu-access-big.html
- shard-rkl: NOTRUN -> [SKIP][35] ([i915#6335])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-2/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-mtlp: NOTRUN -> [SKIP][36] ([i915#6335])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-8/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_param@set-priority-not-supported:
- shard-mtlp: NOTRUN -> [SKIP][37] ([fdo#109314])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-5/igt@gem_ctx_param@set-priority-not-supported.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-mtlp: NOTRUN -> [SKIP][38] ([i915#8555]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-6/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_ctx_persistence@legacy-engines-hostile-preempt:
- shard-snb: NOTRUN -> [SKIP][39] ([fdo#109271] / [i915#1099])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-snb2/igt@gem_ctx_persistence@legacy-engines-hostile-preempt.html
* igt@gem_ctx_sseu@engines:
- shard-mtlp: NOTRUN -> [SKIP][40] ([i915#280])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-8/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#280])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-6/igt@gem_ctx_sseu@invalid-sseu.html
- shard-rkl: NOTRUN -> [SKIP][42] ([i915#280])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-5/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@hibernate:
- shard-rkl: NOTRUN -> [ABORT][43] ([i915#7975] / [i915#8213])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-6/igt@gem_eio@hibernate.html
* igt@gem_eio@kms:
- shard-dg2: NOTRUN -> [FAIL][44] ([i915#5784])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-5/igt@gem_eio@kms.html
- shard-dg1: NOTRUN -> [FAIL][45] ([i915#5784])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg1-12/igt@gem_eio@kms.html
* igt@gem_eio@reset-stress:
- shard-dg1: [PASS][46] -> [FAIL][47] ([i915#5784])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-dg1-19/igt@gem_eio@reset-stress.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg1-15/igt@gem_eio@reset-stress.html
* igt@gem_eio@suspend:
- shard-tglu: [PASS][48] -> [ABORT][49] ([i915#10030])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-tglu-8/igt@gem_eio@suspend.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-tglu-9/igt@gem_eio@suspend.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#4036])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-10/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-rkl: NOTRUN -> [SKIP][51] ([i915#4525]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-4/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_balancer@sliced:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#4812])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-5/igt@gem_exec_balancer@sliced.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#6334])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-3/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: NOTRUN -> [SKIP][54] ([i915#6344])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-3/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_capture@many-4k-zero:
- shard-mtlp: NOTRUN -> [FAIL][55] ([i915#9606])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-3/igt@gem_exec_capture@many-4k-zero.html
* igt@gem_exec_fair@basic-pace-solo:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#3539]) +2 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-10/igt@gem_exec_fair@basic-pace-solo.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-rkl: [PASS][57] -> [FAIL][58] ([i915#2842])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-rkl-7/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-5/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_fence@concurrent:
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4812]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-7/igt@gem_exec_fence@concurrent.html
* igt@gem_exec_flush@basic-uc-rw-default:
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#3539] / [i915#4852])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg1-12/igt@gem_exec_flush@basic-uc-rw-default.html
* igt@gem_exec_flush@basic-wb-prw-default:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#3539] / [i915#4852]) +3 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-3/igt@gem_exec_flush@basic-wb-prw-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-dg2: NOTRUN -> [SKIP][62] ([fdo#109283] / [i915#5107])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-2/igt@gem_exec_params@rsvd2-dirt.html
- shard-rkl: NOTRUN -> [SKIP][63] ([fdo#109283])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-6/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_params@secure-non-root:
- shard-dg2: NOTRUN -> [SKIP][64] ([fdo#112283]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-5/igt@gem_exec_params@secure-non-root.html
- shard-rkl: NOTRUN -> [SKIP][65] ([fdo#112283])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-6/igt@gem_exec_params@secure-non-root.html
* igt@gem_exec_reloc@basic-gtt:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#3281]) +12 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-6/igt@gem_exec_reloc@basic-gtt.html
* igt@gem_exec_reloc@basic-gtt-wc-noreloc:
- shard-rkl: NOTRUN -> [SKIP][67] ([i915#3281]) +10 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
* igt@gem_exec_reloc@basic-write-cpu-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][68] ([i915#3281]) +4 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-4/igt@gem_exec_reloc@basic-write-cpu-noreloc.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#4537] / [i915#4812])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-2/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4860])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-8/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][71] ([i915#2190])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-2/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4613]) +2 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-5/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-rkl: NOTRUN -> [SKIP][73] ([i915#4613]) +3 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-4/igt@gem_lmem_swapping@parallel-random-verify.html
- shard-glk: NOTRUN -> [SKIP][74] ([fdo#109271] / [i915#4613]) +2 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-glk9/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [PASS][75] -> [TIMEOUT][76] ([i915#5493])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-dg2-6/igt@gem_lmem_swapping@smem-oom@lmem0.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-2/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_mmap_gtt@coherency:
- shard-rkl: NOTRUN -> [SKIP][77] ([fdo#111656])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-7/igt@gem_mmap_gtt@coherency.html
* igt@gem_mmap_gtt@cpuset-basic-small-copy-odd:
- shard-mtlp: NOTRUN -> [SKIP][78] ([i915#4077]) +4 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-7/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html
* igt@gem_mmap_gtt@fault-concurrent-x:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#4077]) +19 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-6/igt@gem_mmap_gtt@fault-concurrent-x.html
* igt@gem_mmap_offset@clear@smem0:
- shard-mtlp: [PASS][80] -> [ABORT][81] ([i915#10029])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-mtlp-8/igt@gem_mmap_offset@clear@smem0.html
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-2/igt@gem_mmap_offset@clear@smem0.html
* igt@gem_mmap_offset@close-race:
- shard-glk: [PASS][82] -> [INCOMPLETE][83] ([i915#10137])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-glk3/igt@gem_mmap_offset@close-race.html
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-glk5/igt@gem_mmap_offset@close-race.html
* igt@gem_mmap_wc@invalid-flags:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#4083]) +3 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-5/igt@gem_mmap_wc@invalid-flags.html
- shard-dg1: NOTRUN -> [SKIP][85] ([i915#4083])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg1-15/igt@gem_mmap_wc@invalid-flags.html
* igt@gem_mmap_wc@read-write:
- shard-mtlp: NOTRUN -> [SKIP][86] ([i915#4083]) +5 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-6/igt@gem_mmap_wc@read-write.html
* igt@gem_partial_pwrite_pread@reads-snoop:
- shard-mtlp: NOTRUN -> [SKIP][87] ([i915#3282])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-2/igt@gem_partial_pwrite_pread@reads-snoop.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#3282]) +3 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-10/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-dg1: NOTRUN -> [SKIP][89] ([i915#3282])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg1-15/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_pwrite@basic-self:
- shard-rkl: NOTRUN -> [SKIP][90] ([i915#3282]) +7 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-2/igt@gem_pwrite@basic-self.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-dg2: NOTRUN -> [SKIP][91] ([i915#4270])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-6/igt@gem_pxp@reject-modify-context-protection-off-1.html
- shard-rkl: NOTRUN -> [SKIP][92] ([i915#4270]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-2/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
- shard-mtlp: NOTRUN -> [SKIP][93] ([i915#4270]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-6/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][94] ([i915#8428]) +4 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-3/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gem_softpin@evict-snoop:
- shard-mtlp: NOTRUN -> [SKIP][95] ([i915#4885])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-6/igt@gem_softpin@evict-snoop.html
* igt@gem_spin_batch@spin-all-new:
- shard-dg2: NOTRUN -> [FAIL][96] ([i915#5889])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-6/igt@gem_spin_batch@spin-all-new.html
* igt@gem_tiled_pread_pwrite:
- shard-mtlp: NOTRUN -> [SKIP][97] ([i915#4079]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-4/igt@gem_tiled_pread_pwrite.html
* igt@gem_userptr_blits@coherency-sync:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#3297]) +3 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-6/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-tglu: NOTRUN -> [SKIP][99] ([i915#3323])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-tglu-4/igt@gem_userptr_blits@dmabuf-sync.html
- shard-mtlp: NOTRUN -> [SKIP][100] ([i915#3297])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-7/igt@gem_userptr_blits@dmabuf-sync.html
- shard-dg1: NOTRUN -> [SKIP][101] ([i915#3297])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg1-15/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-rkl: NOTRUN -> [SKIP][102] ([i915#3297]) +2 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-7/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gem_vm_create@invalid-create:
- shard-snb: NOTRUN -> [SKIP][103] ([fdo#109271]) +63 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-snb5/igt@gem_vm_create@invalid-create.html
* igt@gen9_exec_parse@allowed-all:
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#2856]) +4 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-5/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@bb-start-out:
- shard-mtlp: NOTRUN -> [SKIP][105] ([i915#2856])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-2/igt@gen9_exec_parse@bb-start-out.html
* igt@gen9_exec_parse@bb-start-param:
- shard-rkl: NOTRUN -> [SKIP][106] ([i915#2527]) +4 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-7/igt@gen9_exec_parse@bb-start-param.html
* igt@i915_fb_tiling:
- shard-mtlp: NOTRUN -> [SKIP][107] ([i915#4881]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-5/igt@i915_fb_tiling.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: [PASS][108] -> [INCOMPLETE][109] ([i915#10137] / [i915#9820] / [i915#9849])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-rkl-1/igt@i915_module_load@reload-with-fault-injection.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-4/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_module_load@resize-bar:
- shard-mtlp: NOTRUN -> [SKIP][110] ([i915#6412])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-5/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-reset:
- shard-rkl: NOTRUN -> [SKIP][111] ([i915#8399])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-6/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- shard-rkl: NOTRUN -> [SKIP][112] ([fdo#109289])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-6/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- shard-dg1: [PASS][113] -> [FAIL][114] ([i915#3591])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@i915_pm_rpm@gem-execbuf-stress-pc8:
- shard-dg2: NOTRUN -> [SKIP][115] ([fdo#109293] / [fdo#109506])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-7/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
* igt@i915_pm_rps@reset:
- shard-mtlp: NOTRUN -> [FAIL][116] ([i915#8346])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-4/igt@i915_pm_rps@reset.html
* igt@i915_pm_rps@thresholds-park@gt0:
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#8925])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg1-19/igt@i915_pm_rps@thresholds-park@gt0.html
* igt@i915_pm_rps@thresholds@gt0:
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#8925]) +1 other test skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-6/igt@i915_pm_rps@thresholds@gt0.html
* igt@i915_pm_sseu@full-enable:
- shard-mtlp: NOTRUN -> [SKIP][119] ([i915#8437])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-2/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-dg2: NOTRUN -> [SKIP][120] ([i915#6188])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-3/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-rkl: NOTRUN -> [SKIP][121] ([fdo#109303])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-5/igt@i915_query@query-topology-known-pci-ids.html
* igt@i915_selftest@mock@memory_region:
- shard-mtlp: NOTRUN -> [DMESG-WARN][122] ([i915#9311])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-8/igt@i915_selftest@mock@memory_region.html
* igt@intel_hwmon@hwmon-write:
- shard-rkl: NOTRUN -> [SKIP][123] ([i915#7707])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-4/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][124] ([i915#4212]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-6/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2: NOTRUN -> [SKIP][125] ([i915#5190]) +6 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-mtlp: NOTRUN -> [SKIP][126] ([i915#4212])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-4/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][127] ([i915#8709]) +11 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#1769] / [i915#3555])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-10/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][129] ([i915#5286]) +6 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-4/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][130] ([i915#4538] / [i915#5286]) +1 other test skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-tglu: NOTRUN -> [SKIP][131] ([fdo#111615] / [i915#5286]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-tglu-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][132] ([fdo#111614]) +1 other test skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-8/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@linear-32bpp-rotate-0:
- shard-mtlp: [PASS][133] -> [FAIL][134] ([i915#5138])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-mtlp-6/igt@kms_big_fb@linear-32bpp-rotate-0.html
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-6/igt@kms_big_fb@linear-32bpp-rotate-0.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][135] ([fdo#111614] / [i915#3638]) +4 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-4/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][136] ([fdo#111614]) +3 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-10/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#4538] / [i915#5190]) +11 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-6/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-tglu: [PASS][138] -> [FAIL][139] ([i915#3743]) +1 other test fail
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-tglu-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-tglu-9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-mtlp: NOTRUN -> [SKIP][140] ([fdo#111615]) +5 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-5/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-tglu: NOTRUN -> [SKIP][141] ([fdo#111615])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-tglu-5/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-dg1: NOTRUN -> [SKIP][142] ([fdo#111615])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg1-12/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-rkl: NOTRUN -> [SKIP][143] ([fdo#110723]) +2 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_joiner@2x-modeset:
- shard-mtlp: NOTRUN -> [SKIP][144] ([i915#2705])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-8/igt@kms_big_joiner@2x-modeset.html
* igt@kms_ccs@pipe-b-bad-rotation-90-4-tiled-mtl-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][145] ([i915#5354] / [i915#6095]) +23 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-7/igt@kms_ccs@pipe-b-bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@pipe-b-missing-ccs-buffer-yf-tiled-ccs:
- shard-tglu: NOTRUN -> [SKIP][146] ([i915#5354] / [i915#6095]) +10 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-tglu-5/igt@kms_ccs@pipe-b-missing-ccs-buffer-yf-tiled-ccs.html
* igt@kms_ccs@pipe-c-missing-ccs-buffer-4-tiled-mtl-rc-ccs:
- shard-dg1: NOTRUN -> [SKIP][147] ([i915#5354] / [i915#6095]) +7 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg1-13/igt@kms_ccs@pipe-c-missing-ccs-buffer-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@pipe-d-bad-aux-stride-y-tiled-gen12-mc-ccs:
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#5354]) +29 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-2/igt@kms_ccs@pipe-d-bad-aux-stride-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@pipe-d-ccs-on-another-bo-yf-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][149] ([i915#5354] / [i915#6095]) +28 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-8/igt@kms_ccs@pipe-d-ccs-on-another-bo-yf-tiled-ccs.html
* igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#5354]) +93 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-5/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#4087] / [i915#7213]) +4 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-5/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: NOTRUN -> [SKIP][152] ([i915#3742]) +1 other test skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-4/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#4087]) +3 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-5/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html
* igt@kms_chamelium_audio@dp-audio-edid:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#7828]) +9 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-5/igt@kms_chamelium_audio@dp-audio-edid.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-mtlp: NOTRUN -> [SKIP][155] ([fdo#111827]) +2 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-5/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_color@degamma:
- shard-dg2: NOTRUN -> [SKIP][156] ([fdo#111827])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-7/igt@kms_chamelium_color@degamma.html
- shard-rkl: NOTRUN -> [SKIP][157] ([fdo#111827])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-5/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_hpd@hdmi-hpd:
- shard-mtlp: NOTRUN -> [SKIP][158] ([i915#7828]) +6 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-2/igt@kms_chamelium_hpd@hdmi-hpd.html
- shard-dg1: NOTRUN -> [SKIP][159] ([i915#7828])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg1-16/igt@kms_chamelium_hpd@hdmi-hpd.html
- shard-tglu: NOTRUN -> [SKIP][160] ([i915#7828])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-tglu-10/igt@kms_chamelium_hpd@hdmi-hpd.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][161] ([i915#7828]) +9 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#7118]) +1 other test skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-6/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#3116]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0.html
- shard-dg2: NOTRUN -> [SKIP][164] ([i915#3299])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-6/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-mtlp: NOTRUN -> [SKIP][165] ([i915#3555] / [i915#8814]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-6/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-rkl: NOTRUN -> [SKIP][166] ([fdo#109279] / [i915#3359])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-7/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-dg1: NOTRUN -> [SKIP][167] ([i915#3555]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg1-15/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-mtlp: NOTRUN -> [SKIP][168] ([i915#3359])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-3/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#3359]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-5/igt@kms_cursor_crc@cursor-random-512x512.html
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#3359])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-3/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-128x42:
- shard-mtlp: NOTRUN -> [SKIP][171] ([i915#8814]) +3 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-7/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#3555]) +4 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-6/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-dg1: NOTRUN -> [SKIP][173] ([i915#3359])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg1-16/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-snb: [PASS][174] -> [SKIP][175] ([fdo#109271] / [fdo#111767])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-snb7/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-snb6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][176] ([fdo#109274] / [i915#5354]) +3 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-6/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-rkl: NOTRUN -> [SKIP][177] ([i915#4103])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-mtlp: NOTRUN -> [SKIP][178] ([i915#9809]) +1 other test skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-5/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-rkl: NOTRUN -> [SKIP][179] ([fdo#111767] / [fdo#111825])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [PASS][180] -> [FAIL][181] ([i915#2346]) +1 other test fail
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-mtlp: NOTRUN -> [SKIP][182] ([i915#4213])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][183] ([fdo#110189] / [i915#9723])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-4/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][184] ([fdo#110189] / [i915#9227])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-vga-1:
- shard-snb: NOTRUN -> [SKIP][185] ([fdo#109271] / [fdo#110189])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-snb7/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-vga-1.html
* igt@kms_display_modes@extended-mode-basic:
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#3555]) +3 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-4/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#8588])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-6/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dp_aux_dev:
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#1257])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-6/igt@kms_dp_aux_dev.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#8812])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-7/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-basic:
- shard-mtlp: NOTRUN -> [SKIP][190] ([i915#3555] / [i915#3840] / [i915#9159])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-4/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#3555] / [i915#3840])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-5/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#3840])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-7/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-formats:
- shard-mtlp: NOTRUN -> [SKIP][193] ([i915#3555] / [i915#3840])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-4/igt@kms_dsc@dsc-with-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#3469])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-6/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-2x:
- shard-dg2: NOTRUN -> [SKIP][195] ([i915#1839])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-5/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@psr2:
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#658])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-5/igt@kms_feature_discovery@psr2.html
- shard-rkl: NOTRUN -> [SKIP][197] ([i915#658])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-6/igt@kms_feature_discovery@psr2.html
* igt@kms_fence_pin_leak:
- shard-dg1: NOTRUN -> [SKIP][198] ([i915#4881])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg1-17/igt@kms_fence_pin_leak.html
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#4881])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-2/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-dg2: NOTRUN -> [SKIP][200] ([fdo#109274] / [fdo#111767])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-dg2: NOTRUN -> [SKIP][201] ([fdo#109274]) +4 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-10/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-mtlp: NOTRUN -> [SKIP][202] ([i915#3637]) +6 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-7/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-tglu: NOTRUN -> [SKIP][203] ([fdo#109274] / [i915#3637])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-tglu-6/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-rkl: NOTRUN -> [SKIP][204] ([fdo#111825]) +9 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-6/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@flip-vs-suspend@d-hdmi-a4:
- shard-dg1: NOTRUN -> [DMESG-WARN][205] ([i915#4423])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg1-15/igt@kms_flip@flip-vs-suspend@d-hdmi-a4.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][206] ([i915#2672]) +4 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][207] ([i915#2672] / [i915#3555])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][208] ([i915#2672]) +1 other test skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-rkl: NOTRUN -> [SKIP][209] ([fdo#109285])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-4/igt@kms_force_connector_basic@force-load-detect.html
- shard-dg2: NOTRUN -> [SKIP][210] ([fdo#109285])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-10/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-cpu:
- shard-dg2: [PASS][211] -> [FAIL][212] ([i915#6880])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-cpu.html
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][213] ([fdo#111767] / [fdo#111825] / [i915#1825])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-snb: [PASS][214] -> [SKIP][215] ([fdo#109271]) +9 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][216] ([i915#8708]) +2 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-dg1: NOTRUN -> [SKIP][217] ([i915#5439])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
- shard-tglu: NOTRUN -> [SKIP][218] ([i915#5439])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][219] ([i915#10055]) +1 other test skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#10055])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][221] ([i915#3458]) +2 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html
- shard-tglu: NOTRUN -> [SKIP][222] ([fdo#110189]) +4 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-tglu-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#8708]) +23 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][224] ([fdo#111825]) +3 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][225] ([i915#1825]) +15 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][226] ([i915#3458]) +20 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][227] ([i915#3023]) +19 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-mtlp: NOTRUN -> [SKIP][228] ([fdo#111767] / [i915#1825]) +2 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite:
- shard-tglu: NOTRUN -> [SKIP][229] ([fdo#109280]) +3 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][230] ([fdo#111767] / [i915#5354]) +2 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html
- shard-dg1: NOTRUN -> [SKIP][231] ([fdo#111767] / [fdo#111825])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html
- shard-tglu: NOTRUN -> [SKIP][232] ([fdo#109280] / [fdo#111767])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][233] ([fdo#111825] / [i915#1825]) +37 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][234] ([i915#8708]) +9 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#6118])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-7/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-rkl: NOTRUN -> [SKIP][236] ([i915#3555] / [i915#8228]) +2 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-5/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: NOTRUN -> [SKIP][237] ([i915#3555] / [i915#8228])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-2/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: NOTRUN -> [SKIP][238] ([i915#4070] / [i915#4816])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: NOTRUN -> [SKIP][239] ([i915#6301])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-5/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c:
- shard-dg2: NOTRUN -> [SKIP][240] ([fdo#109289]) +3 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-10/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html
* igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c:
- shard-mtlp: NOTRUN -> [SKIP][241] ([fdo#109289]) +3 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-5/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][242] ([i915#7862]) +1 other test fail
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-glk4/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#8821])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-10/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-dg2: NOTRUN -> [SKIP][244] ([fdo#109274] / [i915#5354] / [i915#9423])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][245] ([i915#5176]) +3 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-edp-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-1:
- shard-glk: NOTRUN -> [SKIP][246] ([fdo#109271]) +198 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-glk8/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-25-with-rotation@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][247] ([i915#9423]) +3 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][248] ([i915#9423]) +5 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-3/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][249] ([i915#9423]) +7 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg1-13/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-3.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][250] ([i915#5176] / [i915#9423]) +1 other test skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][251] ([i915#5176] / [i915#9423]) +3 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg1-19/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][252] ([i915#5235]) +7 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#5235] / [i915#9423]) +7 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][254] ([i915#5235]) +7 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg1-12/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-3.html
* igt@kms_pm_backlight@basic-brightness:
- shard-tglu: NOTRUN -> [SKIP][255] ([i915#9812])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-tglu-7/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_dc@dc6-psr:
- shard-mtlp: NOTRUN -> [SKIP][256] ([i915#10139]) +1 other test skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-3/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: NOTRUN -> [SKIP][257] ([i915#3361])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-7/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg1: NOTRUN -> [SKIP][258] ([i915#9340])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg1-16/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [FAIL][259] ([i915#9301])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-tglu-10/igt@kms_pm_lpsp@kms-lpsp@pipe-a-hdmi-a-1.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: [PASS][260] -> [SKIP][261] ([i915#9519]) +2 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-rkl-5/igt@kms_pm_rpm@dpms-lpsp.html
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@i2c:
- shard-dg2: [PASS][262] -> [FAIL][263] ([i915#8717])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-dg2-1/igt@kms_pm_rpm@i2c.html
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-2/igt@kms_pm_rpm@i2c.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: NOTRUN -> [SKIP][264] ([i915#9519])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
- shard-dg2: NOTRUN -> [SKIP][265] ([i915#9519])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@pc8-residency:
- shard-mtlp: NOTRUN -> [SKIP][266] ([fdo#109293])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-6/igt@kms_pm_rpm@pc8-residency.html
* igt@kms_prime@basic-crc-hybrid:
- shard-rkl: NOTRUN -> [SKIP][267] ([i915#6524])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-5/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg2: NOTRUN -> [SKIP][268] ([i915#6524] / [i915#6805])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-2/igt@kms_prime@basic-crc-vgem.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf:
- shard-rkl: NOTRUN -> [SKIP][269] ([i915#9683]) +1 other test skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-1/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][270] ([i915#9683]) +1 other test skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-10/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-rkl: NOTRUN -> [SKIP][271] ([fdo#111068] / [i915#9683])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-4/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-rkl: NOTRUN -> [SKIP][272] ([i915#9685])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
- shard-dg2: NOTRUN -> [SKIP][273] ([i915#9685])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-10/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-dg2: NOTRUN -> [SKIP][274] ([i915#4235])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-1/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-mtlp: NOTRUN -> [SKIP][275] ([i915#4235]) +2 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-6/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-top:
- shard-glk: [PASS][276] -> [SKIP][277] ([fdo#109271]) +2 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-glk7/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-glk2/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][278] ([i915#4235] / [i915#5190])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][279] ([fdo#111615] / [i915#5289]) +2 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-tglu: NOTRUN -> [SKIP][280] ([i915#3555]) +3 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-tglu-8/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab:
- shard-dg2: [PASS][281] -> [DMESG-WARN][282] ([i915#10143]) +1 other test dmesg-warn
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-dg2-1/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab.html
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab.html
* igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888:
- shard-mtlp: [PASS][283] -> [DMESG-WARN][284] ([i915#10143]) +1 other test dmesg-warn
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-mtlp-2/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888.html
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-8/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888.html
- shard-snb: [PASS][285] -> [DMESG-WARN][286] ([i915#10143]) +1 other test dmesg-warn
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-snb1/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888.html
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-snb5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888.html
* igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_argb2101010:
- shard-dg1: [PASS][287] -> [DMESG-WARN][288] ([i915#10143]) +1 other test dmesg-warn
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-dg1-18/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_argb2101010.html
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg1-12/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_argb2101010.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: NOTRUN -> [FAIL][289] ([IGT#2])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-7/igt@kms_sysfs_edid_timing.html
- shard-dg1: NOTRUN -> [FAIL][290] ([IGT#2] / [i915#6493])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg1-16/igt@kms_sysfs_edid_timing.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2: NOTRUN -> [SKIP][291] ([i915#8623])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-2/igt@kms_tiled_display@basic-test-pattern.html
- shard-rkl: NOTRUN -> [SKIP][292] ([i915#8623])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-4/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-tglu: NOTRUN -> [SKIP][293] ([i915#8623])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-tglu-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][294] ([i915#9196])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg1-16/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-4.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1:
- shard-snb: [PASS][295] -> [FAIL][296] ([i915#9196])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-snb6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-snb1/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
* igt@kms_vrr@flip-basic:
- shard-mtlp: NOTRUN -> [SKIP][297] ([i915#3555] / [i915#8808])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-5/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@flip-basic-fastset:
- shard-dg2: NOTRUN -> [SKIP][298] ([i915#9906])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-6/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_writeback@writeback-check-output:
- shard-dg2: NOTRUN -> [SKIP][299] ([i915#2437])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-5/igt@kms_writeback@writeback-check-output.html
- shard-rkl: NOTRUN -> [SKIP][300] ([i915#2437])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-6/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-glk: NOTRUN -> [SKIP][301] ([fdo#109271] / [i915#2437]) +1 other test skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-glk7/igt@kms_writeback@writeback-invalid-parameters.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-mtlp: NOTRUN -> [SKIP][302] ([i915#2437])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-3/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@mi-rpc:
- shard-mtlp: NOTRUN -> [SKIP][303] ([i915#2434])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-7/igt@perf@mi-rpc.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: NOTRUN -> [SKIP][304] ([i915#2435])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-4/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@busy-double-start@ccs0:
- shard-mtlp: NOTRUN -> [FAIL][305] ([i915#4349])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-7/igt@perf_pmu@busy-double-start@ccs0.html
* igt@perf_pmu@rc6-all-gts:
- shard-dg2: NOTRUN -> [SKIP][306] ([i915#8516])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-7/igt@perf_pmu@rc6-all-gts.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-rkl: NOTRUN -> [SKIP][307] ([i915#8516]) +1 other test skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-5/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_vgem@basic-read:
- shard-dg2: NOTRUN -> [SKIP][308] ([i915#3291] / [i915#3708])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-7/igt@prime_vgem@basic-read.html
* igt@prime_vgem@coherency-gtt:
- shard-mtlp: NOTRUN -> [SKIP][309] ([i915#3708] / [i915#4077])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-4/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-read-hang:
- shard-mtlp: NOTRUN -> [SKIP][310] ([i915#3708])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-7/igt@prime_vgem@fence-read-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-dg2: NOTRUN -> [SKIP][311] ([i915#9917])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-10/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-mtlp: NOTRUN -> [SKIP][312] ([i915#9917])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-2/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-rkl: NOTRUN -> [SKIP][313] ([i915#9917])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-7/igt@sriov_basic@enable-vfs-bind-unbind-each.html
* igt@syncobj_wait@invalid-wait-zero-handles:
- shard-dg2: NOTRUN -> [FAIL][314] ([i915#9779])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-2/igt@syncobj_wait@invalid-wait-zero-handles.html
* igt@v3d/v3d_perfmon@create-perfmon-invalid-counters:
- shard-mtlp: NOTRUN -> [SKIP][315] ([i915#2575]) +6 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-5/igt@v3d/v3d_perfmon@create-perfmon-invalid-counters.html
* igt@v3d/v3d_perfmon@destroy-invalid-perfmon:
- shard-tglu: NOTRUN -> [SKIP][316] ([fdo#109315] / [i915#2575]) +2 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-tglu-10/igt@v3d/v3d_perfmon@destroy-invalid-perfmon.html
* igt@v3d/v3d_submit_cl@bad-pad:
- shard-rkl: NOTRUN -> [SKIP][317] ([fdo#109315]) +9 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-7/igt@v3d/v3d_submit_cl@bad-pad.html
* igt@v3d/v3d_submit_cl@simple-flush-cache:
- shard-dg2: NOTRUN -> [SKIP][318] ([i915#2575]) +12 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-5/igt@v3d/v3d_submit_cl@simple-flush-cache.html
* igt@v3d/v3d_submit_cl@valid-multisync-submission:
- shard-dg1: NOTRUN -> [SKIP][319] ([i915#2575]) +1 other test skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg1-12/igt@v3d/v3d_submit_cl@valid-multisync-submission.html
* igt@vc4/vc4_create_bo@create-bo-0:
- shard-mtlp: NOTRUN -> [SKIP][320] ([i915#7711]) +5 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-8/igt@vc4/vc4_create_bo@create-bo-0.html
* igt@vc4/vc4_mmap@mmap-bad-handle:
- shard-dg1: NOTRUN -> [SKIP][321] ([i915#7711]) +2 other tests skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg1-12/igt@vc4/vc4_mmap@mmap-bad-handle.html
* igt@vc4/vc4_perfmon@create-single-perfmon:
- shard-tglu: NOTRUN -> [SKIP][322] ([i915#2575]) +1 other test skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-tglu-7/igt@vc4/vc4_perfmon@create-single-perfmon.html
* igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained:
- shard-rkl: NOTRUN -> [SKIP][323] ([i915#7711]) +9 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-1/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained.html
* igt@vc4/vc4_tiling@get-bad-modifier:
- shard-dg2: NOTRUN -> [SKIP][324] ([i915#7711]) +5 other tests skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-7/igt@vc4/vc4_tiling@get-bad-modifier.html
#### Possible fixes ####
* igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_pathological:
- shard-snb: [ABORT][325] -> [PASS][326]
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-snb7/igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_pathological.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-snb4/igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_pathological.html
* igt@fbdev@pan:
- shard-snb: [FAIL][327] ([i915#4435]) -> [PASS][328]
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-snb7/igt@fbdev@pan.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-snb2/igt@fbdev@pan.html
* igt@gem_exec_fair@basic-none-vip@rcs0:
- shard-rkl: [FAIL][329] ([i915#2842]) -> [PASS][330] +3 other tests pass
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-rkl-5/igt@gem_exec_fair@basic-none-vip@rcs0.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-4/igt@gem_exec_fair@basic-none-vip@rcs0.html
- shard-glk: [FAIL][331] ([i915#2842]) -> [PASS][332]
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-glk3/igt@gem_exec_fair@basic-none-vip@rcs0.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-glk5/igt@gem_exec_fair@basic-none-vip@rcs0.html
* igt@gem_exec_fair@basic-throttle@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_14209/shard-tglu-10/igt@gem_exec_fair@basic-throttle@rcs0.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-tglu-7/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [FAIL][335] ([i915#5138]) -> [PASS][336]
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: [FAIL][337] ([i915#3743]) -> [PASS][338] +1 other test pass
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-tglu-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-tglu-4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_cursor_crc@cursor-sliding-64x64@pipe-a-edp-1:
- shard-mtlp: [DMESG-WARN][339] ([i915#10210]) -> [PASS][340]
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-mtlp-2/igt@kms_cursor_crc@cursor-sliding-64x64@pipe-a-edp-1.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-mtlp-2/igt@kms_cursor_crc@cursor-sliding-64x64@pipe-a-edp-1.html
* igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-1:
- shard-tglu: [ABORT][341] ([i915#10159]) -> [PASS][342]
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-tglu-9/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-1.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-tglu-10/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-1.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-snb: [SKIP][343] ([fdo#109271]) -> [PASS][344] +7 other tests pass
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4:
- shard-dg1: [FAIL][345] ([i915#8292]) -> [PASS][346]
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-dg1-18/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg1-15/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: [SKIP][347] ([i915#9519]) -> [PASS][348]
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-rkl-1/igt@kms_pm_rpm@modeset-lpsp-stress.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset:
- shard-dg2: [DMESG-WARN][349] ([i915#10143]) -> [PASS][350]
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-dg2-1/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html
- shard-dg1: [DMESG-WARN][351] ([i915#10143]) -> [PASS][352]
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-dg1-18/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg1-12/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html
- shard-snb: [DMESG-WARN][353] ([i915#10143]) -> [PASS][354]
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-snb1/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-snb5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][355] ([i915#9196]) -> [PASS][356]
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
#### Warnings ####
* igt@gem_pread@exhaustion:
- shard-glk: [INCOMPLETE][357] ([i915#10042] / [i915#10137]) -> [WARN][358] ([i915#2658]) +1 other test warn
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-glk4/igt@gem_pread@exhaustion.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-glk6/igt@gem_pread@exhaustion.html
* igt@gem_pwrite@basic-exhaustion:
- shard-tglu: [INCOMPLETE][359] ([i915#10042] / [i915#10137]) -> [WARN][360] ([i915#2658])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-tglu-8/igt@gem_pwrite@basic-exhaustion.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-tglu-5/igt@gem_pwrite@basic-exhaustion.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg2: [INCOMPLETE][361] ([i915#10137] / [i915#9820] / [i915#9849]) -> [WARN][362] ([i915#7356])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-6/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_content_protection@atomic-dpms:
- shard-snb: [SKIP][363] ([fdo#109271]) -> [INCOMPLETE][364] ([i915#8816]) +1 other test incomplete
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-snb6/igt@kms_content_protection@atomic-dpms.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-snb7/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][365] ([i915#9424]) -> [SKIP][366] ([i915#9433])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-dg1-19/igt@kms_content_protection@mei-interface.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg1-13/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@uevent:
- shard-snb: [INCOMPLETE][367] ([i915#8816]) -> [SKIP][368] ([fdo#109271])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-snb7/igt@kms_content_protection@uevent.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-snb5/igt@kms_content_protection@uevent.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: [SKIP][369] ([i915#3955]) -> [SKIP][370] ([fdo#110189] / [i915#3955])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-rkl-6/igt@kms_fbcon_fbt@psr.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-rkl-5/igt@kms_fbcon_fbt@psr.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render:
- shard-snb: [SKIP][371] ([fdo#109271] / [fdo#111767]) -> [SKIP][372] ([fdo#109271])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-snb1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-snb7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list:
- shard-dg1: [DMESG-FAIL][373] ([i915#10143]) -> [FAIL][374] ([i915#10136])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-dg1-18/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg1-12/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html
- shard-snb: [DMESG-FAIL][375] ([i915#10143]) -> [FAIL][376] ([i915#10136])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-snb1/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-snb5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html
- shard-dg2: [DMESG-FAIL][377] ([i915#10143]) -> [FAIL][378] ([i915#10136])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14209/shard-dg2-1/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/shard-dg2-5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
[fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
[fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#10029]: https://gitlab.freedesktop.org/drm/intel/issues/10029
[i915#10030]: https://gitlab.freedesktop.org/drm/intel/issues/10030
[i915#10042]: https://gitlab.freedesktop.org/drm/intel/issues/10042
[i915#10055]: https://gitlab.freedesktop.org/drm/intel/issues/10055
[i915#10105]: https://gitlab.freedesktop.org/drm/intel/issues/10105
[i915#10136]: https://gitlab.freedesktop.org/drm/intel/issues/10136
[i915#10137]: https://gitlab.freedesktop.org/drm/intel/issues/10137
[i915#10139]: https://gitlab.freedesktop.org/drm/intel/issues/10139
[i915#10140]: https://gitlab.freedesktop.org/drm/intel/issues/10140
[i915#10143]: https://gitlab.freedesktop.org/drm/intel/issues/10143
[i915#10159]: https://gitlab.freedesktop.org/drm/intel/issues/10159
[i915#10183]: https://gitlab.freedesktop.org/drm/intel/issues/10183
[i915#10210]: https://gitlab.freedesktop.org/drm/intel/issues/10210
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434
[i915#2435]: https://gitlab.freedesktop.org/drm/intel/issues/2435
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423
[i915#4435]: https://gitlab.freedesktop.org/drm/intel/issues/4435
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#5889]: https://gitlab.freedesktop.org/drm/intel/issues/5889
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6118]: https://gitlab.freedesktop.org/drm/intel/issues/6118
[i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188
[i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335
[i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344
[i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412
[i915#6493]: https://gitlab.freedesktop.org/drm/intel/issues/6493
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
[i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297
[i915#7356]: https://gitlab.freedesktop.org/drm/intel/issues/7356
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7862]: https://gitlab.freedesktop.org/drm/intel/issues/7862
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
[i915#8346]: https://gitlab.freedesktop.org/drm/intel/issues/8346
[i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
[i915#8437]: https://gitlab.freedesktop.org/drm/intel/issues/8437
[i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588
[i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
[i915#8717]: https://gitlab.freedesktop.org/drm/intel/issues/8717
[i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808
[i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8816]: https://gitlab.freedesktop.org/drm/intel/issues/8816
[i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821
[i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925
[i915#9159]: https://gitlab.freedesktop.org/drm/intel/issues/9159
[i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
[i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227
[i915#9301]: https://gitlab.freedesktop.org/drm/intel/issues/9301
[i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311
[i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323
[i915#9340]: https://gitlab.freedesktop.org/drm/intel/issues/9340
[i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424
[i915#9433]: https://gitlab.freedesktop.org/drm/intel/issues/9433
[i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519
[i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606
[i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732
[i915#9779]: https://gitlab.freedesktop.org/drm/intel/issues/9779
[i915#9808]: https://gitlab.freedesktop.org/drm/intel/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/intel/issues/9812
[i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820
[i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849
[i915#9906]: https://gitlab.freedesktop.org/drm/intel/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7700 -> IGTPW_10627
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_14209: 3e58a4940c44430f20cad20ead5e1b77ed209c
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10627/index.html
[-- Attachment #2: Type: text/html, Size: 121247 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-02-01 20:07 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-01 16:35 [PATCH i-g-t 0/3] Add tests for kms_plane and kms_rotation Louis Chauvet
2024-02-01 16:35 ` [PATCH i-g-t 1/3] tests/kms/plane: Rename test_planar_settings to test_odd_size_with_yuv Louis Chauvet
2024-02-01 16:35 ` [PATCH i-g-t 2/3] tests/kms/plane: Use a complex pattern to test plane color conversion Louis Chauvet
2024-02-01 16:35 ` [PATCH i-g-t 3/3] tests/kms_rotation_crc: Remove intel guards Louis Chauvet
2024-02-01 17:16 ` Louis Chauvet
2024-02-01 18:08 ` ✓ CI.xeBAT: success for Add tests for kms_plane and kms_rotation Patchwork
2024-02-01 18:22 ` ✓ Fi.CI.BAT: " Patchwork
2024-02-01 20:07 ` ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox