* [igt-dev] [i-g-t 00/16] Add tiling support for display tests
@ 2023-08-24 5:41 Bhanuprakash Modem
2023-08-24 5:41 ` [igt-dev] [i-g-t 01/16] lib: Add tiling support for XE Bhanuprakash Modem
` (19 more replies)
0 siblings, 20 replies; 21+ messages in thread
From: Bhanuprakash Modem @ 2023-08-24 5:41 UTC (permalink / raw)
To: igt-dev
Add tiling support for display tests.
Bhanuprakash Modem (16):
lib: Add tiling support for XE
tests/kms_cursor_edge_walk: Fix intel specific checks
tests/kms_getfb: Extended ccs tests to support XE
tests/kms_addfb_basic: Add tiling support for XE
tests/kms_plane: Add tiling support for XE
tests/kms_plane_lowres: Add tiling support for XE
tests/kms_plane_scaling: Add tiling support for XE
tests/kms_rotation_crc: Add tiling support for XE
tests/i915/kms_big_fb: Add tiling support for XE
tests/i915/kms_draw_crc: Add tiling support for XE
tests/i915/kms_flip_scaled_crc: Add tiling support for XE
tests/i915/kms_flip_tiling: Add tiling support for XE
tests/intel-ci: Drop tiling tests from xe blocklist
tests/intel-ci: Update Xe BAT & blocklist for kms FBT
tests/intel-ci: Add tiling tests to XE BAT
HAX: Run tiling tests in XE fast-feedback
lib/igt_draw.c | 5 +-
lib/igt_fb.c | 8 +-
lib/intel_bufops.c | 13 +-
tests/i915/kms_big_fb.c | 23 +-
tests/i915/kms_draw_crc.c | 4 -
tests/i915/kms_flip_scaled_crc.c | 6 -
tests/i915/kms_flip_tiling.c | 6 -
tests/intel-ci/xe-fast-feedback.testlist | 525 ++++++++++++++---------
tests/intel-ci/xe.blocklist.txt | 12 +-
tests/kms_addfb_basic.c | 17 +-
tests/kms_cursor_edge_walk.c | 2 +-
tests/kms_getfb.c | 10 +-
tests/kms_plane.c | 4 -
tests/kms_plane_lowres.c | 3 -
tests/kms_plane_scaling.c | 4 -
tests/kms_rotation_crc.c | 8 +-
16 files changed, 371 insertions(+), 279 deletions(-)
--
2.40.0
^ permalink raw reply [flat|nested] 21+ messages in thread
* [igt-dev] [i-g-t 01/16] lib: Add tiling support for XE
2023-08-24 5:41 [igt-dev] [i-g-t 00/16] Add tiling support for display tests Bhanuprakash Modem
@ 2023-08-24 5:41 ` Bhanuprakash Modem
2023-08-24 5:41 ` [igt-dev] [i-g-t 02/16] tests/kms_cursor_edge_walk: Fix intel specific checks Bhanuprakash Modem
` (18 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Bhanuprakash Modem @ 2023-08-24 5:41 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
Remove the tiling restrictions in all libraries those used by
the Xe driver.
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com>
---
lib/igt_draw.c | 5 +----
lib/igt_fb.c | 8 ++++----
lib/intel_bufops.c | 13 +++++++++----
3 files changed, 14 insertions(+), 12 deletions(-)
diff --git a/lib/igt_draw.c b/lib/igt_draw.c
index 13b90702c..476778a13 100644
--- a/lib/igt_draw.c
+++ b/lib/igt_draw.c
@@ -677,14 +677,11 @@ static void draw_rect_blt(int fd, struct cmd_data *cmd_data,
int ver = intel_display_ver(devid);
int pitch;
- if (tiling)
- igt_require_i915(fd);
-
dst = create_buf(fd, cmd_data->bops, buf, tiling);
ibb = intel_bb_create(fd, PAGE_SIZE);
intel_bb_add_intel_buf(ibb, dst, true);
- if (is_i915_device(fd) && HAS_4TILE(intel_get_drm_devid(fd))) {
+ if (HAS_4TILE(intel_get_drm_devid(fd))) {
int buf_height = buf->size / buf->stride;
switch (buf->bpp) {
diff --git a/lib/igt_fb.c b/lib/igt_fb.c
index 140711075..4b592825d 100644
--- a/lib/igt_fb.c
+++ b/lib/igt_fb.c
@@ -494,7 +494,7 @@ void igt_get_fb_tile_size(int fd, uint64_t modifier, int fb_bpp,
break;
case I915_FORMAT_MOD_Yf_TILED:
case I915_FORMAT_MOD_Yf_TILED_CCS:
- igt_require_i915(fd);
+ igt_require_intel(fd);
switch (fb_bpp) {
case 8:
*width_ret = 64;
@@ -767,7 +767,7 @@ static uint32_t calc_plane_stride(struct igt_fb *fb, int plane)
(fb->plane_bpp[plane] / 8);
if (fb->modifier != DRM_FORMAT_MOD_LINEAR &&
- is_i915_device(fb->fd) &&
+ is_intel_device(fb->fd) &&
intel_display_ver(intel_get_drm_devid(fb->fd)) <= 3) {
uint32_t stride;
@@ -836,7 +836,7 @@ static uint32_t calc_plane_stride(struct igt_fb *fb, int plane)
static uint64_t calc_plane_size(struct igt_fb *fb, int plane)
{
if (fb->modifier != DRM_FORMAT_MOD_LINEAR &&
- is_i915_device(fb->fd) &&
+ is_intel_device(fb->fd) &&
intel_display_ver(intel_get_drm_devid(fb->fd)) <= 3) {
uint64_t size = (uint64_t) fb->strides[plane] *
fb->plane_height[plane];
@@ -913,7 +913,7 @@ static unsigned int get_plane_alignment(struct igt_fb *fb, int color_plane)
unsigned int tile_row_size;
unsigned int alignment;
- if (!(is_i915_device(fb->fd) &&
+ if (!(is_intel_device(fb->fd) &&
is_gen12_ccs_modifier(fb->modifier) &&
is_yuv_semiplanar_plane(fb, color_plane)))
return 0;
diff --git a/lib/intel_bufops.c b/lib/intel_bufops.c
index 524757933..2c91adb88 100644
--- a/lib/intel_bufops.c
+++ b/lib/intel_bufops.c
@@ -927,7 +927,8 @@ static void __intel_buf_init(struct buf_ops *bops,
/* Store gem bo size */
buf->bo_size = size;
- set_hw_tiled(bops, buf);
+ if (bops->driver == INTEL_DRIVER_I915)
+ set_hw_tiled(bops, buf);
}
/**
@@ -1502,14 +1503,18 @@ static struct buf_ops *__buf_ops_create(int fd, bool check_idempotency)
bops->intel_gen, bops->supported_tiles,
bops->driver == INTEL_DRIVER_I915 ? "i915" : "xe");
- /* No tiling support in XE. */
if (bops->driver == INTEL_DRIVER_XE) {
- bops->supported_hw_tiles = TILE_NONE;
-
bops->linear_to_x = copy_linear_to_x;
bops->x_to_linear = copy_x_to_linear;
bops->linear_to_y = copy_linear_to_y;
bops->y_to_linear = copy_y_to_linear;
+ bops->linear_to_tile4 = copy_linear_to_tile4;
+ bops->tile4_to_linear = copy_tile4_to_linear;
+
+ bops->linear_to_yf = NULL;
+ bops->yf_to_linear = NULL;
+ bops->linear_to_ys = NULL;
+ bops->ys_to_linear = NULL;
return bops;
}
--
2.40.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [igt-dev] [i-g-t 02/16] tests/kms_cursor_edge_walk: Fix intel specific checks
2023-08-24 5:41 [igt-dev] [i-g-t 00/16] Add tiling support for display tests Bhanuprakash Modem
2023-08-24 5:41 ` [igt-dev] [i-g-t 01/16] lib: Add tiling support for XE Bhanuprakash Modem
@ 2023-08-24 5:41 ` Bhanuprakash Modem
2023-08-24 5:41 ` [igt-dev] [i-g-t 03/16] tests/kms_getfb: Extended ccs tests to support XE Bhanuprakash Modem
` (17 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Bhanuprakash Modem @ 2023-08-24 5:41 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
Use the correct helper to check for the intel hardware.
s/is_i915_device/is_intel_device/
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com>
---
tests/kms_cursor_edge_walk.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/kms_cursor_edge_walk.c b/tests/kms_cursor_edge_walk.c
index 8cc986fc8..2b4b43282 100644
--- a/tests/kms_cursor_edge_walk.c
+++ b/tests/kms_cursor_edge_walk.c
@@ -362,7 +362,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
data.drm_fd = drm_open_driver_master(DRIVER_ANY);
- if (is_i915_device(data.drm_fd))
+ if (is_intel_device(data.drm_fd))
data.devid = intel_get_drm_devid(data.drm_fd);
ret = drmGetCap(data.drm_fd, DRM_CAP_CURSOR_WIDTH, &max_curw);
--
2.40.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [igt-dev] [i-g-t 03/16] tests/kms_getfb: Extended ccs tests to support XE
2023-08-24 5:41 [igt-dev] [i-g-t 00/16] Add tiling support for display tests Bhanuprakash Modem
2023-08-24 5:41 ` [igt-dev] [i-g-t 01/16] lib: Add tiling support for XE Bhanuprakash Modem
2023-08-24 5:41 ` [igt-dev] [i-g-t 02/16] tests/kms_cursor_edge_walk: Fix intel specific checks Bhanuprakash Modem
@ 2023-08-24 5:41 ` Bhanuprakash Modem
2023-08-24 5:41 ` [igt-dev] [i-g-t 04/16] tests/kms_addfb_basic: Add tiling support for XE Bhanuprakash Modem
` (16 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Bhanuprakash Modem @ 2023-08-24 5:41 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
Add support for ccs tests work on XE driver.
V2: - Update XE blocklist
V3: - New patch for blocklist changes
Fixes: 5fd20e72a (tests/kms_getfb: Add XE support)
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com>
---
tests/kms_getfb.c | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/tests/kms_getfb.c b/tests/kms_getfb.c
index f90e51d64..6ee58caab 100644
--- a/tests/kms_getfb.c
+++ b/tests/kms_getfb.c
@@ -48,6 +48,7 @@
#include "i915/gem_create.h"
#include "igt_device.h"
#include "xe/xe_query.h"
+#include "xe/xe_ioctl.h"
IGT_TEST_DESCRIPTION("Tests GETFB and GETFB2 ioctls.");
@@ -145,7 +146,10 @@ static void get_ccs_fb(int fd, struct drm_mode_fb_cmd2 *ret)
size += add.pitches[1] * ALIGN(ALIGN(add.height, 16) / 16, 32);
}
- add.handles[0] = gem_buffer_create_fb_obj(fd, size);
+ if (is_i915_device(fd))
+ add.handles[0] = gem_buffer_create_fb_obj(fd, size);
+ else
+ add.handles[0] = xe_bo_create_flags(fd, 0, size, vram_if_possible(fd, 0));
igt_require(add.handles[0] != 0);
if (!HAS_FLATCCS(devid))
@@ -315,7 +319,7 @@ static void test_duplicate_handles(int fd)
struct drm_mode_fb_cmd2 add_ccs = { };
struct drm_mode_fb_cmd get = { };
- igt_require_i915(fd);
+ igt_require_intel(fd);
igt_require_f(!HAS_FLATCCS(intel_get_drm_devid(fd)),
"skip because flat ccs has only one buffer.\n");
@@ -421,7 +425,7 @@ static void test_getfb2(int fd)
struct drm_mode_fb_cmd2 get = { };
int i;
- igt_require_i915(fd);
+ igt_require_intel(fd);
get_ccs_fb(fd, &add_ccs);
igt_require(add_ccs.fb_id != 0);
get.fb_id = add_ccs.fb_id;
--
2.40.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [igt-dev] [i-g-t 04/16] tests/kms_addfb_basic: Add tiling support for XE
2023-08-24 5:41 [igt-dev] [i-g-t 00/16] Add tiling support for display tests Bhanuprakash Modem
` (2 preceding siblings ...)
2023-08-24 5:41 ` [igt-dev] [i-g-t 03/16] tests/kms_getfb: Extended ccs tests to support XE Bhanuprakash Modem
@ 2023-08-24 5:41 ` Bhanuprakash Modem
2023-08-24 5:41 ` [igt-dev] [i-g-t 05/16] tests/kms_plane: " Bhanuprakash Modem
` (15 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Bhanuprakash Modem @ 2023-08-24 5:41 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
Remove the tiling restrictions in Xe specific tests
V2: - Update Xe fast-feedback testlist & blocklist
V3: - New patch for blocklist & BAT testlist changes
Fixes: 8c3b02be3 (tests/kms_addfb_basic: Add XE support)
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com>
---
tests/kms_addfb_basic.c | 17 ++++++++++++-----
1 file changed, 12 insertions(+), 5 deletions(-)
diff --git a/tests/kms_addfb_basic.c b/tests/kms_addfb_basic.c
index f415300b6..f6c27a3d3 100644
--- a/tests/kms_addfb_basic.c
+++ b/tests/kms_addfb_basic.c
@@ -444,7 +444,7 @@ static void tiling_tests(int fd)
igt_subtest_group {
igt_fixture {
- igt_require_i915(fd);
+ igt_require_intel(fd);
tiled_x_bo = igt_create_bo_with_dimensions(fd, 1024, 1024,
DRM_FORMAT_XRGB8888, I915_FORMAT_MOD_X_TILED,
1024*4, NULL, NULL, NULL);
@@ -463,7 +463,8 @@ static void tiling_tests(int fd)
f.pitches[0] = 1024*4;
igt_describe("Check if addfb2 and rmfb call works for basic x-tiling test");
igt_subtest("basic-x-tiled-legacy") {
- igt_require(gem_available_fences(fd) > 0);
+ if (is_i915_device(fd))
+ igt_require(gem_available_fences(fd) > 0);
f.handles[0] = tiled_x_bo;
do_ioctl(fd, DRM_IOCTL_MODE_ADDFB2, &f);
@@ -473,6 +474,7 @@ static void tiling_tests(int fd)
igt_describe("Check if addfb2 call works for x and y tiling");
igt_subtest("framebuffer-vs-set-tiling") {
+ igt_require_i915(fd);
igt_require(gem_available_fences(fd) > 0);
f.handles[0] = gem_bo;
@@ -487,6 +489,7 @@ static void tiling_tests(int fd)
igt_describe("Test that addfb2 call fails correctly for pitches mismatch");
f.pitches[0] = 512*4;
igt_subtest("tile-pitch-mismatch") {
+ igt_require_i915(fd);
igt_require(gem_available_fences(fd) > 0);
f.handles[0] = tiled_x_bo;
@@ -496,8 +499,12 @@ static void tiling_tests(int fd)
igt_describe("Test that addfb2 call fails correctly for basic y-tiling test");
f.pitches[0] = 1024*4;
igt_subtest("basic-y-tiled-legacy") {
- igt_require(!gem_has_lmem(fd));
- igt_require(gem_available_fences(fd) > 0);
+ if (is_i915_device(fd)) {
+ igt_require(!gem_has_lmem(fd));
+ igt_require(gem_available_fences(fd) > 0);
+ } else {
+ igt_require(!xe_has_vram(fd));
+ }
f.handles[0] = tiled_y_bo;
do_ioctl_err(fd, DRM_IOCTL_MODE_ADDFB2, &f, EINVAL);
@@ -1118,7 +1125,7 @@ igt_main
size_tests(fd);
igt_fixture
- igt_require_i915(fd);
+ igt_require_intel(fd);
addfb25_ytile(fd);
--
2.40.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [igt-dev] [i-g-t 05/16] tests/kms_plane: Add tiling support for XE
2023-08-24 5:41 [igt-dev] [i-g-t 00/16] Add tiling support for display tests Bhanuprakash Modem
` (3 preceding siblings ...)
2023-08-24 5:41 ` [igt-dev] [i-g-t 04/16] tests/kms_addfb_basic: Add tiling support for XE Bhanuprakash Modem
@ 2023-08-24 5:41 ` Bhanuprakash Modem
2023-08-24 5:41 ` [igt-dev] [i-g-t 06/16] tests/kms_plane_lowres: " Bhanuprakash Modem
` (14 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Bhanuprakash Modem @ 2023-08-24 5:41 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
Remove the tiling restrictions in Xe specific tests
V2: - Rebase
Fixes: 2b9637086 (tests/kms_plane: Add XE support)
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com>
---
tests/kms_plane.c | 4 ----
1 file changed, 4 deletions(-)
diff --git a/tests/kms_plane.c b/tests/kms_plane.c
index 721d3b533..d8b5dca9c 100644
--- a/tests/kms_plane.c
+++ b/tests/kms_plane.c
@@ -1064,10 +1064,6 @@ static bool test_format_plane(data_t *data, enum pipe pipe,
.modifier = plane->modifiers[i],
};
- if (is_xe_device(data->drm_fd) &&
- f.modifier != DRM_FORMAT_MOD_LINEAR)
- continue;
-
/* igt doesn't know how to sw generate UBWC: */
if (is_msm_device(data->drm_fd) &&
f.modifier == DRM_FORMAT_MOD_QCOM_COMPRESSED)
--
2.40.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [igt-dev] [i-g-t 06/16] tests/kms_plane_lowres: Add tiling support for XE
2023-08-24 5:41 [igt-dev] [i-g-t 00/16] Add tiling support for display tests Bhanuprakash Modem
` (4 preceding siblings ...)
2023-08-24 5:41 ` [igt-dev] [i-g-t 05/16] tests/kms_plane: " Bhanuprakash Modem
@ 2023-08-24 5:41 ` Bhanuprakash Modem
2023-08-24 5:41 ` [igt-dev] [i-g-t 07/16] tests/kms_plane_scaling: " Bhanuprakash Modem
` (13 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Bhanuprakash Modem @ 2023-08-24 5:41 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
Remove the tiling restrictions in Xe specific tests
V2: - Update XE blocklist
V3: - New patch for blocklist changes
Fixes: 129983d07 (tests/kms_plane_lowers: Add XE support)
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com>
---
tests/kms_plane_lowres.c | 3 ---
1 file changed, 3 deletions(-)
diff --git a/tests/kms_plane_lowres.c b/tests/kms_plane_lowres.c
index 5ff06c417..ea6c08200 100644
--- a/tests/kms_plane_lowres.c
+++ b/tests/kms_plane_lowres.c
@@ -301,9 +301,6 @@ static void run_test(data_t *data, uint64_t modifier)
if(!igt_display_has_format_mod(&data->display, DRM_FORMAT_XRGB8888, modifier))
return;
- if (is_xe_device(data->drm_fd) && modifier != DRM_FORMAT_MOD_LINEAR)
- return;
-
for_each_pipe(&data->display, pipe) {
for_each_valid_output_on_pipe(&data->display, pipe, output) {
data->pipe = pipe;
--
2.40.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [igt-dev] [i-g-t 07/16] tests/kms_plane_scaling: Add tiling support for XE
2023-08-24 5:41 [igt-dev] [i-g-t 00/16] Add tiling support for display tests Bhanuprakash Modem
` (5 preceding siblings ...)
2023-08-24 5:41 ` [igt-dev] [i-g-t 06/16] tests/kms_plane_lowres: " Bhanuprakash Modem
@ 2023-08-24 5:41 ` Bhanuprakash Modem
2023-08-24 5:41 ` [igt-dev] [i-g-t 08/16] tests/kms_rotation_crc: " Bhanuprakash Modem
` (12 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Bhanuprakash Modem @ 2023-08-24 5:41 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
Remove the tiling restrictions in Xe specific tests
Fixes: 28bc56a8b (tests/kms_plane_scaling: Add XE support)
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com>
---
tests/kms_plane_scaling.c | 4 ----
1 file changed, 4 deletions(-)
diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
index 89e5e6d3d..a7d60d6fc 100644
--- a/tests/kms_plane_scaling.c
+++ b/tests/kms_plane_scaling.c
@@ -596,10 +596,6 @@ static void test_scaler_with_modifier_pipe(data_t *d,
for (int i = 0; i < ARRAY_SIZE(modifiers); i++) {
uint64_t modifier = modifiers[i];
- if (is_xe_device(d->drm_fd) &&
- modifier != DRM_FORMAT_MOD_LINEAR)
- continue;
-
if (igt_plane_has_format_mod(plane, format, modifier))
check_scaling_pipe_plane_rot(d, plane,
format, modifier,
--
2.40.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [igt-dev] [i-g-t 08/16] tests/kms_rotation_crc: Add tiling support for XE
2023-08-24 5:41 [igt-dev] [i-g-t 00/16] Add tiling support for display tests Bhanuprakash Modem
` (6 preceding siblings ...)
2023-08-24 5:41 ` [igt-dev] [i-g-t 07/16] tests/kms_plane_scaling: " Bhanuprakash Modem
@ 2023-08-24 5:41 ` Bhanuprakash Modem
2023-08-24 5:41 ` [igt-dev] [i-g-t 09/16] tests/i915/kms_big_fb: " Bhanuprakash Modem
` (11 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Bhanuprakash Modem @ 2023-08-24 5:41 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
Remove the tiling restrictions in Xe specific tests
V2: - Update XE blocklist
V3: - New patch for blocklist changes
Fixes: e1d5b831e (tests/kms_rotation_crc: Add XE support)
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com>
---
tests/kms_rotation_crc.c | 8 ++------
1 file changed, 2 insertions(+), 6 deletions(-)
diff --git a/tests/kms_rotation_crc.c b/tests/kms_rotation_crc.c
index b80cf695e..f08d31e37 100644
--- a/tests/kms_rotation_crc.c
+++ b/tests/kms_rotation_crc.c
@@ -977,10 +977,6 @@ static void test_multi_plane_rotation(data_t *data, enum pipe pipe)
igt_pipe_crc_start(data->pipe_crc);
for (i = 0; i < ARRAY_SIZE(planeconfigs); i++) {
- if (is_xe_device(data->gfx_fd) &&
- planeconfigs[i].modifier != DRM_FORMAT_MOD_LINEAR)
- continue;
-
p[0].fbinfo = &planeconfigs[i];
pointlocation(data, p, mode, 0);
@@ -1351,7 +1347,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
igt_describe("Tiling and Rotation test for gen 10+ for primary plane");
for (reflect_x = reflect_x_subtests; reflect_x->modifier; reflect_x++) {
igt_fixture
- igt_require_i915(data.gfx_fd);
+ igt_require_intel(data.gfx_fd);
igt_subtest_f("primary-%s-reflect-x-%s",
modifier_test_str(reflect_x->modifier),
@@ -1412,7 +1408,7 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
enum pipe pipe;
igt_output_t *output;
- igt_require_i915(data.gfx_fd);
+ igt_require_intel(data.gfx_fd);
igt_display_require_output(&data.display);
for_each_pipe_with_valid_output(&data.display, pipe, output) {
--
2.40.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [igt-dev] [i-g-t 09/16] tests/i915/kms_big_fb: Add tiling support for XE
2023-08-24 5:41 [igt-dev] [i-g-t 00/16] Add tiling support for display tests Bhanuprakash Modem
` (7 preceding siblings ...)
2023-08-24 5:41 ` [igt-dev] [i-g-t 08/16] tests/kms_rotation_crc: " Bhanuprakash Modem
@ 2023-08-24 5:41 ` Bhanuprakash Modem
2023-08-24 5:41 ` [igt-dev] [i-g-t 10/16] tests/i915/kms_draw_crc: " Bhanuprakash Modem
` (10 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Bhanuprakash Modem @ 2023-08-24 5:41 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
Remove the tiling restrictions in Xe specific tests
V2: - Update XE blocklist
V3: - New patch for blocklist changes
Fixes: 34168d915 (tests/i915/kms_big_fb: Add XE support)
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com>
---
tests/i915/kms_big_fb.c | 23 +----------------------
1 file changed, 1 insertion(+), 22 deletions(-)
diff --git a/tests/i915/kms_big_fb.c b/tests/i915/kms_big_fb.c
index 33008c40a..4f39a65f4 100644
--- a/tests/i915/kms_big_fb.c
+++ b/tests/i915/kms_big_fb.c
@@ -1111,10 +1111,6 @@ igt_main
for (int i = 1; i < ARRAY_SIZE(modifiers); i++) {
igt_subtest_f("%s-addfb-size-overflow",
modifiers[i].name) {
- /* No tiling support in XE. */
- igt_skip_on(is_xe_device(data.drm_fd) &&
- modifiers[i].modifier != DRM_FORMAT_MOD_LINEAR);
-
data.modifier = modifiers[i].modifier;
test_size_overflow(&data);
}
@@ -1124,10 +1120,6 @@ igt_main
for (int i = 1; i < ARRAY_SIZE(modifiers); i++) {
igt_subtest_f("%s-addfb-size-offset-overflow",
modifiers[i].name) {
- /* No tiling support in XE. */
- igt_skip_on(is_xe_device(data.drm_fd) &&
- modifiers[i].modifier != DRM_FORMAT_MOD_LINEAR);
-
data.modifier = modifiers[i].modifier;
test_size_offset_overflow(&data);
}
@@ -1136,10 +1128,6 @@ igt_main
igt_describe("Sanity check if addfb ioctl works correctly for given size and strides of fb");
for (int i = 0; i < ARRAY_SIZE(modifiers); i++) {
igt_subtest_f("%s-addfb", modifiers[i].name) {
- /* No tiling support in XE. */
- igt_skip_on(is_xe_device(data.drm_fd) &&
- modifiers[i].modifier != DRM_FORMAT_MOD_LINEAR);
-
data.modifier = modifiers[i].modifier;
test_addfb(&data);
}
@@ -1157,13 +1145,8 @@ igt_main
igt_describe("Sanity check if addfb ioctl works correctly for given "
"combination of modifier formats and rotation");
igt_subtest_f("%s-%dbpp-rotate-%d", modifiers[i].name,
- formats[j].bpp, rotations[k].angle) {
- /* No tiling support in XE. */
- igt_skip_on(is_xe_device(data.drm_fd) &&
- data.modifier != DRM_FORMAT_MOD_LINEAR);
-
+ formats[j].bpp, rotations[k].angle)
test_scanout(&data);
- }
}
igt_fixture
@@ -1205,10 +1188,6 @@ igt_main
igt_require(intel_display_ver(intel_get_drm_devid(data.drm_fd)) >= 5);
data.max_hw_fb_width = min(data.hw_stride / (formats[j].bpp >> 3), data.max_fb_width);
- /* No tiling support in XE. */
- igt_skip_on(is_xe_device(data.drm_fd) &&
- modifiers[i].modifier != DRM_FORMAT_MOD_LINEAR);
-
test_scanout(&data);
}
--
2.40.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [igt-dev] [i-g-t 10/16] tests/i915/kms_draw_crc: Add tiling support for XE
2023-08-24 5:41 [igt-dev] [i-g-t 00/16] Add tiling support for display tests Bhanuprakash Modem
` (8 preceding siblings ...)
2023-08-24 5:41 ` [igt-dev] [i-g-t 09/16] tests/i915/kms_big_fb: " Bhanuprakash Modem
@ 2023-08-24 5:41 ` Bhanuprakash Modem
2023-08-24 5:41 ` [igt-dev] [i-g-t 11/16] tests/i915/kms_flip_scaled_crc: " Bhanuprakash Modem
` (9 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Bhanuprakash Modem @ 2023-08-24 5:41 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
Remove the tiling restrictions in Xe specific tests
V2: - Update XE blocklist
V3: - New patch for blocklist changes
Fixes: f6d0bacc0 (tests/i915/kms_draw_crc: Add XE support)
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com>
---
tests/i915/kms_draw_crc.c | 4 ----
1 file changed, 4 deletions(-)
diff --git a/tests/i915/kms_draw_crc.c b/tests/i915/kms_draw_crc.c
index ddd025455..ee1980552 100644
--- a/tests/i915/kms_draw_crc.c
+++ b/tests/i915/kms_draw_crc.c
@@ -340,10 +340,6 @@ igt_main
for (modifier_idx = 0; modifier_idx < ARRAY_SIZE(modifiers); modifier_idx++) {
modifier = modifiers[modifier_idx];
- /* No tiling support in XE. */
- if (is_xe_device(drm_fd) && modifier != DRM_FORMAT_MOD_LINEAR)
- continue;
-
for (format_idx = 0; format_idx < ARRAY_SIZE(formats); format_idx++) {
if (!igt_display_has_format_mod(&display, formats[format_idx], modifier))
continue;
--
2.40.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [igt-dev] [i-g-t 11/16] tests/i915/kms_flip_scaled_crc: Add tiling support for XE
2023-08-24 5:41 [igt-dev] [i-g-t 00/16] Add tiling support for display tests Bhanuprakash Modem
` (9 preceding siblings ...)
2023-08-24 5:41 ` [igt-dev] [i-g-t 10/16] tests/i915/kms_draw_crc: " Bhanuprakash Modem
@ 2023-08-24 5:41 ` Bhanuprakash Modem
2023-08-24 5:41 ` [igt-dev] [i-g-t 12/16] tests/i915/kms_flip_tiling: " Bhanuprakash Modem
` (8 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Bhanuprakash Modem @ 2023-08-24 5:41 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
Remove the tiling restrictions in Xe specific tests
V2: - Update XE blocklist
V3: - New patch for blocklist changes
Fixes: 113fc78d0 (tests/i915/kms_flip_scaled_crc: Add XE support)
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com>
---
tests/i915/kms_flip_scaled_crc.c | 6 ------
1 file changed, 6 deletions(-)
diff --git a/tests/i915/kms_flip_scaled_crc.c b/tests/i915/kms_flip_scaled_crc.c
index ad68f2474..3d7991890 100644
--- a/tests/i915/kms_flip_scaled_crc.c
+++ b/tests/i915/kms_flip_scaled_crc.c
@@ -835,12 +835,6 @@ igt_main
for (int index = 0; index < ARRAY_SIZE(flip_scenario_test); index++) {
igt_describe(flip_scenario_test[index].describe);
igt_subtest_with_dynamic(flip_scenario_test[index].name) {
- /* No tiling support in XE. */
- if (is_xe_device(data.drm_fd) &&
- (flip_scenario_test[index].firstmodifier != DRM_FORMAT_MOD_LINEAR ||
- flip_scenario_test[index].secondmodifier != DRM_FORMAT_MOD_LINEAR))
- continue;
-
free_fbs(&data);
for_each_pipe(&data.display, pipe) {
bool found = false;
--
2.40.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [igt-dev] [i-g-t 12/16] tests/i915/kms_flip_tiling: Add tiling support for XE
2023-08-24 5:41 [igt-dev] [i-g-t 00/16] Add tiling support for display tests Bhanuprakash Modem
` (10 preceding siblings ...)
2023-08-24 5:41 ` [igt-dev] [i-g-t 11/16] tests/i915/kms_flip_scaled_crc: " Bhanuprakash Modem
@ 2023-08-24 5:41 ` Bhanuprakash Modem
2023-08-24 5:41 ` [igt-dev] [i-g-t 13/16] tests/intel-ci: Drop tiling tests from xe blocklist Bhanuprakash Modem
` (7 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Bhanuprakash Modem @ 2023-08-24 5:41 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
Remove the tiling restrictions in Xe specific tests
Fixes: 77e9c217f (tests/i915/kms_flip_tiling: Add XE support)
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com>
---
tests/i915/kms_flip_tiling.c | 6 ------
1 file changed, 6 deletions(-)
diff --git a/tests/i915/kms_flip_tiling.c b/tests/i915/kms_flip_tiling.c
index ada4f5e0d..d30f73a7f 100644
--- a/tests/i915/kms_flip_tiling.c
+++ b/tests/i915/kms_flip_tiling.c
@@ -230,12 +230,6 @@ igt_main
if (plane->formats[j] != data.testformat)
continue;
- /* No tiling support in XE. */
- if (is_xe_device(data.drm_fd) &&
- (plane->modifiers[i] != DRM_FORMAT_MOD_LINEAR ||
- plane->modifiers[j] != DRM_FORMAT_MOD_LINEAR))
- continue;
-
igt_dynamic_f("%s-pipe-%s-%s-to-%s",
igt_output_name(output),
kmstest_pipe_name(pipe),
--
2.40.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [igt-dev] [i-g-t 13/16] tests/intel-ci: Drop tiling tests from xe blocklist
2023-08-24 5:41 [igt-dev] [i-g-t 00/16] Add tiling support for display tests Bhanuprakash Modem
` (11 preceding siblings ...)
2023-08-24 5:41 ` [igt-dev] [i-g-t 12/16] tests/i915/kms_flip_tiling: " Bhanuprakash Modem
@ 2023-08-24 5:41 ` Bhanuprakash Modem
2023-08-24 5:41 ` [igt-dev] [i-g-t 14/16] tests/intel-ci: Update Xe BAT & blocklist for kms FBT Bhanuprakash Modem
` (6 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Bhanuprakash Modem @ 2023-08-24 5:41 UTC (permalink / raw)
To: igt-dev
Drop tiling tests from the xe blocklist, since those are
no more invalid for XE.
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
tests/intel-ci/xe.blocklist.txt | 10 ----------
1 file changed, 10 deletions(-)
diff --git a/tests/intel-ci/xe.blocklist.txt b/tests/intel-ci/xe.blocklist.txt
index 1778e91f1..ef48edf4c 100644
--- a/tests/intel-ci/xe.blocklist.txt
+++ b/tests/intel-ci/xe.blocklist.txt
@@ -54,7 +54,6 @@ igt@.*@.*pipe-(e|f|g|h).*
igt@kms_bw@.*-(5|6|7|8)-displays-.*
##################################################################
igt@kms_draw_crc@draw-method-(mmap-cpu|mmap-gtt|pwrite)
-igt@kms_draw_crc@fill-fb
igt@kms_pipe_b_c_ivb@.*
igt@kms_pwrite_crc
igt@kms_ccs@.*
@@ -65,20 +64,11 @@ igt@kms_busy@.*
igt@kms_psr@.*_mmap_(cpu|gtt)
igt@kms_legacy_colorkey@basic
igt@kms_legacy_colorkey@invalid-plane
-igt@kms_flip_scaled_crc@flip-(32|64)bpp-(4|x|y|yf|tileccs)tile-.*
-igt@kms_big_fb@(4|x|y|yf)-tiled-.*
igt@kms_flip@2x-flip-vs-fences
igt@kms_flip@flip-vs-fences(-interruptible)
igt@kms_addfb_basic@clobberred-modifier
-igt@kms_addfb_basic@.*-tiling
-igt@kms_addfb_basic@.*-(4|x|y|yf)-.*
-igt@kms_async_flips@.*
-igt@kms_plane_multiple@tiling-(4|x|y|yf)
igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-(atomic|legacy)
-igt@kms_rotation_crc@primary-(4|x|y|yf)-tiled-.*
igt@kms_rotation_crc@exhaust-fences
igt@kms_force_connector_basic@force-load-detect
-igt@kms_getfb@.*-ccs
-igt@kms_plane_lowres@tiling-(4|x|y|yf)
igt@kms_.*@.*hang.*
##################################################################
--
2.40.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [igt-dev] [i-g-t 14/16] tests/intel-ci: Update Xe BAT & blocklist for kms FBT
2023-08-24 5:41 [igt-dev] [i-g-t 00/16] Add tiling support for display tests Bhanuprakash Modem
` (12 preceding siblings ...)
2023-08-24 5:41 ` [igt-dev] [i-g-t 13/16] tests/intel-ci: Drop tiling tests from xe blocklist Bhanuprakash Modem
@ 2023-08-24 5:41 ` Bhanuprakash Modem
2023-08-24 5:41 ` [igt-dev] [i-g-t 15/16] tests/intel-ci: Add tiling tests to XE BAT Bhanuprakash Modem
` (5 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Bhanuprakash Modem @ 2023-08-24 5:41 UTC (permalink / raw)
To: igt-dev
Add kms_frontbuffer_tracking tests back to xe fast-feedback testlist and
drop them from xe blocklist.
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
tests/intel-ci/xe-fast-feedback.testlist | 1 +
tests/intel-ci/xe.blocklist.txt | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist
index 311f90c79..026e06ab5 100644
--- a/tests/intel-ci/xe-fast-feedback.testlist
+++ b/tests/intel-ci/xe-fast-feedback.testlist
@@ -220,6 +220,7 @@ igt@kms_flip@basic-plain-flip
igt@kms_force_connector_basic@force-connector-state
igt@kms_force_connector_basic@force-edid
igt@kms_force_connector_basic@prune-stale-modes
+igt@kms_frontbuffer_tracking@basic
igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24
igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12
igt@kms_pipe_crc_basic@hang-read-crc
diff --git a/tests/intel-ci/xe.blocklist.txt b/tests/intel-ci/xe.blocklist.txt
index ef48edf4c..2df3810af 100644
--- a/tests/intel-ci/xe.blocklist.txt
+++ b/tests/intel-ci/xe.blocklist.txt
@@ -57,7 +57,7 @@ igt@kms_draw_crc@draw-method-(mmap-cpu|mmap-gtt|pwrite)
igt@kms_pipe_b_c_ivb@.*
igt@kms_pwrite_crc
igt@kms_ccs@.*
-igt@kms_frontbuffer_tracking@.*
+igt@kms_frontbuffer_tracking@.*-(cpu|gtt|pwrite)
igt@kms_fbcon_fbt@(fbc|psr)(-suspend)
igt@kms_fence_pin_leak
igt@kms_busy@.*
--
2.40.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [igt-dev] [i-g-t 15/16] tests/intel-ci: Add tiling tests to XE BAT
2023-08-24 5:41 [igt-dev] [i-g-t 00/16] Add tiling support for display tests Bhanuprakash Modem
` (13 preceding siblings ...)
2023-08-24 5:41 ` [igt-dev] [i-g-t 14/16] tests/intel-ci: Update Xe BAT & blocklist for kms FBT Bhanuprakash Modem
@ 2023-08-24 5:41 ` Bhanuprakash Modem
2023-08-24 5:41 ` [igt-dev] [i-g-t 16/16] HAX: Run tiling tests in XE fast-feedback Bhanuprakash Modem
` (4 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Bhanuprakash Modem @ 2023-08-24 5:41 UTC (permalink / raw)
To: igt-dev
Add basic tiling tests to XE fast feedback testlist.
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
tests/intel-ci/xe-fast-feedback.testlist | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist
index 026e06ab5..4f4991fba 100644
--- a/tests/intel-ci/xe-fast-feedback.testlist
+++ b/tests/intel-ci/xe-fast-feedback.testlist
@@ -183,7 +183,13 @@ igt@xe_vm@munmap-style-unbind-userptr-inval-front
igt@xe_waitfence@abstime
igt@xe_waitfence@reltime
igt@kms_addfb_basic@addfb25-bad-modifier
+igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling
igt@kms_addfb_basic@addfb25-modifier-no-flag
+igt@kms_addfb_basic@addfb25-x-tiled-legacy
+igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy
+igt@kms_addfb_basic@addfb25-yf-tiled-legacy
+igt@kms_addfb_basic@addfb25-y-tiled-legacy
+igt@kms_addfb_basic@addfb25-y-tiled-small-legacy
igt@kms_addfb_basic@bad-pitch-0
igt@kms_addfb_basic@bad-pitch-1024
igt@kms_addfb_basic@bad-pitch-128
@@ -193,7 +199,11 @@ igt@kms_addfb_basic@bad-pitch-63
igt@kms_addfb_basic@bad-pitch-65536
igt@kms_addfb_basic@bad-pitch-999
igt@kms_addfb_basic@basic
+igt@kms_addfb_basic@basic-x-tiled-legacy
+igt@kms_addfb_basic@basic-y-tiled-legacy
igt@kms_addfb_basic@bo-too-small
+igt@kms_addfb_basic@bo-too-small-due-to-tiling
+igt@kms_addfb_basic@framebuffer-vs-set-tiling
igt@kms_addfb_basic@invalid-get-prop
igt@kms_addfb_basic@invalid-get-prop-any
igt@kms_addfb_basic@invalid-set-prop
@@ -201,6 +211,7 @@ igt@kms_addfb_basic@invalid-set-prop-any
igt@kms_addfb_basic@no-handle
igt@kms_addfb_basic@size-max
igt@kms_addfb_basic@small-bo
+igt@kms_addfb_basic@tile-pitch-mismatch
igt@kms_addfb_basic@too-high
igt@kms_addfb_basic@too-wide
igt@kms_addfb_basic@unused-handle
--
2.40.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [igt-dev] [i-g-t 16/16] HAX: Run tiling tests in XE fast-feedback
2023-08-24 5:41 [igt-dev] [i-g-t 00/16] Add tiling support for display tests Bhanuprakash Modem
` (14 preceding siblings ...)
2023-08-24 5:41 ` [igt-dev] [i-g-t 15/16] tests/intel-ci: Add tiling tests to XE BAT Bhanuprakash Modem
@ 2023-08-24 5:41 ` Bhanuprakash Modem
2023-08-24 6:03 ` [igt-dev] ✗ GitLab.Pipeline: warning for Add tiling support for display tests Patchwork
` (3 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Bhanuprakash Modem @ 2023-08-24 5:41 UTC (permalink / raw)
To: igt-dev
Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
tests/intel-ci/xe-fast-feedback.testlist | 513 ++++++++++++++---------
1 file changed, 321 insertions(+), 192 deletions(-)
diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist
index 4f4991fba..b7b45332a 100644
--- a/tests/intel-ci/xe-fast-feedback.testlist
+++ b/tests/intel-ci/xe-fast-feedback.testlist
@@ -1,187 +1,6 @@
# Should be the first test
igt@xe_module_load@load
-igt@xe_compute@compute-square
-igt@xe_create@create-execqueues-noleak
-igt@xe_create@create-execqueues-leak
-igt@xe_create@create-massive-size
-igt@xe_debugfs@base
-igt@xe_debugfs@gt
-igt@xe_debugfs@forcewake
-igt@xe_dma_buf_sync@export-dma-buf-once
-igt@xe_dma_buf_sync@export-dma-buf-once-read-sync
-igt@xe_evict@evict-beng-mixed-threads-small-multi-vm
-igt@xe_evict@evict-beng-small
-igt@xe_evict@evict-beng-small-cm
-igt@xe_evict@evict-beng-small-external
-igt@xe_evict@evict-beng-small-external-cm
-igt@xe_evict@evict-beng-small-multi-vm
-igt@xe_evict@evict-cm-threads-small
-igt@xe_evict@evict-mixed-threads-small
-igt@xe_evict@evict-mixed-threads-small-multi-vm
-igt@xe_evict@evict-small
-igt@xe_evict@evict-small-cm
-igt@xe_evict@evict-small-external
-igt@xe_evict@evict-small-external-cm
-igt@xe_evict@evict-small-multi-vm
-igt@xe_evict@evict-small-multi-vm-cm
-igt@xe_evict@evict-threads-small
-igt@xe_exec_balancer@twice-virtual-basic
-igt@xe_exec_balancer@no-exec-virtual-basic
-igt@xe_exec_balancer@twice-cm-virtual-basic
-igt@xe_exec_balancer@no-exec-cm-virtual-basic
-igt@xe_exec_balancer@twice-virtual-userptr
-igt@xe_exec_balancer@twice-cm-virtual-userptr
-igt@xe_exec_balancer@twice-virtual-rebind
-igt@xe_exec_balancer@twice-cm-virtual-rebind
-igt@xe_exec_balancer@twice-virtual-userptr-rebind
-igt@xe_exec_balancer@twice-cm-virtual-userptr-rebind
-igt@xe_exec_balancer@twice-virtual-userptr-invalidate
-igt@xe_exec_balancer@twice-cm-virtual-userptr-invalidate
-igt@xe_exec_balancer@twice-parallel-basic
-igt@xe_exec_balancer@no-exec-parallel-basic
-igt@xe_exec_balancer@twice-parallel-userptr
-igt@xe_exec_balancer@twice-parallel-rebind
-igt@xe_exec_balancer@twice-parallel-userptr-rebind
-igt@xe_exec_balancer@twice-parallel-userptr-invalidate
-igt@xe_exec_basic@twice-basic
-igt@xe_exec_basic@no-exec-basic
-igt@xe_exec_basic@twice-basic-defer-mmap
-igt@xe_exec_basic@twice-basic-defer-bind
-igt@xe_exec_basic@twice-userptr
-igt@xe_exec_basic@twice-rebind
-igt@xe_exec_basic@twice-userptr-rebind
-igt@xe_exec_basic@twice-userptr-invalidate
-igt@xe_exec_basic@no-exec-userptr-invalidate
-igt@xe_exec_basic@twice-bindexecqueue
-igt@xe_exec_basic@no-exec-bindexecqueue
-igt@xe_exec_basic@twice-bindexecqueue-userptr
-igt@xe_exec_basic@twice-bindexecqueue-rebind
-igt@xe_exec_basic@twice-bindexecqueue-userptr-rebind
-igt@xe_exec_basic@twice-bindexecqueue-userptr-invalidate
-igt@xe_exec_compute_mode@twice-basic
-igt@xe_exec_compute_mode@twice-preempt-fence-early
-igt@xe_exec_compute_mode@twice-userptr
-igt@xe_exec_compute_mode@twice-rebind
-igt@xe_exec_compute_mode@twice-userptr-rebind
-igt@xe_exec_compute_mode@twice-userptr-invalidate
-igt@xe_exec_compute_mode@twice-bindexecqueue
-igt@xe_exec_compute_mode@twice-bindexecqueue-userptr
-igt@xe_exec_compute_mode@twice-bindexecqueue-rebind
-igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-rebind
-igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate
-igt@xe_exec_fault_mode@twice-basic
-igt@xe_exec_fault_mode@many-basic
-igt@xe_exec_fault_mode@twice-userptr
-igt@xe_exec_fault_mode@twice-rebind
-igt@xe_exec_fault_mode@twice-userptr-rebind
-igt@xe_exec_fault_mode@twice-userptr-invalidate
-igt@xe_exec_fault_mode@twice-bindexecqueue
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr
-igt@xe_exec_fault_mode@twice-bindexecqueue-rebind
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate
-igt@xe_exec_fault_mode@twice-basic-imm
-igt@xe_exec_fault_mode@twice-userptr-imm
-igt@xe_exec_fault_mode@twice-rebind-imm
-igt@xe_exec_fault_mode@twice-userptr-rebind-imm
-igt@xe_exec_fault_mode@twice-userptr-invalidate-imm
-igt@xe_exec_fault_mode@twice-bindexecqueue-imm
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-imm
-igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-imm
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-imm
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-imm
-igt@xe_exec_fault_mode@twice-basic-prefetch
-igt@xe_exec_fault_mode@twice-userptr-prefetch
-igt@xe_exec_fault_mode@twice-rebind-prefetch
-igt@xe_exec_fault_mode@twice-userptr-rebind-prefetch
-igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch
-igt@xe_exec_fault_mode@twice-bindexecqueue-prefetch
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-prefetch
-igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-prefetch
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch
-igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-invalidate-prefetch
-igt@xe_exec_fault_mode@twice-invalid-fault
-igt@xe_exec_fault_mode@twice-invalid-userptr-fault
-igt@xe_exec_reset@close-fd-no-exec
-igt@xe_exec_reset@cm-close-fd-no-exec
-igt@xe_exec_reset@virtual-close-fd-no-exec
-igt@xe_exec_store@basic-store
-igt@xe_exec_threads@threads-basic
-igt@xe_exec_threads@threads-mixed-basic
-igt@xe_exec_threads@threads-mixed-shared-vm-basic
-igt@xe_exec_threads@threads-mixed-fd-basic
-igt@xe_exec_threads@threads-mixed-userptr-invalidate
-igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race
-igt@xe_gpgpu_fill@basic
-igt@xe_guc_pc@freq_basic_api
-igt@xe_guc_pc@freq_fixed_idle
-igt@xe_guc_pc@freq_range_idle
-igt@xe_huc_copy@huc_copy
-igt@xe_intel_bb@add-remove-objects
-igt@xe_intel_bb@bb-with-allocator
-igt@xe_intel_bb@blit-reloc
-igt@xe_intel_bb@blit-simple
-igt@xe_intel_bb@create-in-region
-igt@xe_intel_bb@delta-check
-igt@xe_intel_bb@destroy-bb
-igt@xe_intel_bb@intel-bb-blit-none
-igt@xe_intel_bb@intel-bb-blit-x
-igt@xe_intel_bb@intel-bb-blit-y
-igt@xe_intel_bb@lot-of-buffers
-igt@xe_intel_bb@offset-control
-igt@xe_intel_bb@purge-bb
-igt@xe_intel_bb@render
-igt@xe_intel_bb@reset-bb
-igt@xe_intel_bb@simple-bb
-igt@xe_intel_bb@simple-bb-ctx
-igt@xe_mmap@bad-extensions
-igt@xe_mmap@bad-flags
-igt@xe_mmap@bad-object
-igt@xe_mmap@system
-igt@xe_mmap@vram
-igt@xe_mmap@vram-system
-igt@xe_mmio@mmio-timestamp
-igt@xe_mmio@mmio-invalid
-igt@xe_pm_residency@gt-c6-on-idle
-igt@xe_prime_self_import@basic-with_one_bo
-igt@xe_prime_self_import@basic-with_fd_dup
-#igt@xe_prime_self_import@basic-llseek-size
-igt@xe_query@query-engines
-igt@xe_query@query-mem-usage
-igt@xe_query@query-gts
-igt@xe_query@query-config
-igt@xe_query@query-hwconfig
-igt@xe_query@query-topology
-igt@xe_query@query-invalid-extension
-igt@xe_query@query-invalid-query
-igt@xe_query@query-invalid-size
-igt@xe_spin_batch@spin-basic
-igt@xe_spin_batch@spin-batch
-igt@xe_sysfs_defaults@engine-defaults
-igt@xe_sysfs_scheduler@preempt_timeout_us-invalid
-igt@xe_sysfs_scheduler@preempt_timeout_us-min-max
-igt@xe_sysfs_scheduler@timeslice_duration_us-invalid
-igt@xe_sysfs_scheduler@timeslice_duration_us-min-max
-igt@xe_sysfs_scheduler@job_timeout_ms-invalid
-igt@xe_sysfs_scheduler@job_timeout_ms-min-max
-#igt@xe_vm@bind-once
-#igt@xe_vm@scratch
-igt@xe_vm@shared-pte-page
-igt@xe_vm@shared-pde-page
-igt@xe_vm@shared-pde2-page
-igt@xe_vm@shared-pde3-page
-igt@xe_vm@bind-execqueues-independent
-igt@xe_vm@munmap-style-unbind-one-partial
-igt@xe_vm@munmap-style-unbind-end
-igt@xe_vm@munmap-style-unbind-front
-igt@xe_vm@munmap-style-unbind-userptr-one-partial
-igt@xe_vm@munmap-style-unbind-userptr-end
-igt@xe_vm@munmap-style-unbind-userptr-front
-igt@xe_vm@munmap-style-unbind-userptr-inval-end
-igt@xe_vm@munmap-style-unbind-userptr-inval-front
-igt@xe_waitfence@abstime
-igt@xe_waitfence@reltime
igt@kms_addfb_basic@addfb25-bad-modifier
igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling
igt@kms_addfb_basic@addfb25-modifier-no-flag
@@ -239,18 +58,328 @@ igt@kms_pipe_crc_basic@nonblocking-crc
igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence
igt@kms_pipe_crc_basic@read-crc
igt@kms_pipe_crc_basic@read-crc-frame-sequence
-igt@kms_pipe_crc_basic@suspend-read-crc
igt@kms_prop_blob@basic
igt@kms_psr@primary_page_flip
igt@kms_psr@cursor_plane_move
igt@kms_psr@sprite_plane_onoff
-
-# All tests that do module unloading and reloading are executed last.
-# They will sometimes reveal issues of earlier tests leaving the
-# driver in a broken state that is not otherwise noticed in that test.
-igt@core_hotunplug@unbind-rebind
-
-# Run KUnit tests at the end
-igt@xe_live_ktest@bo
-igt@xe_live_ktest@dmabuf
-igt@xe_live_ktest@migrate
+igt@kms_cursor_edge_walk@64x64-left-edge
+igt@kms_cursor_edge_walk@128x128-left-edge
+igt@kms_cursor_edge_walk@256x256-left-edge
+igt@kms_cursor_edge_walk@64x64-right-edge
+igt@kms_cursor_edge_walk@128x128-right-edge
+igt@kms_cursor_edge_walk@256x256-right-edge
+igt@kms_cursor_edge_walk@64x64-top-edge
+igt@kms_cursor_edge_walk@128x128-top-edge
+igt@kms_cursor_edge_walk@256x256-top-edge
+igt@kms_cursor_edge_walk@64x64-top-bottom
+igt@kms_cursor_edge_walk@128x128-top-bottom
+igt@kms_cursor_edge_walk@256x256-top-bottom
+igt@kms_getfb@getfb-reject-ccs
+igt@kms_getfb@getfb-accept-ccs
+igt@kms_plane@pixel-format
+igt@kms_plane@pixel-format-source-clamping
+igt@kms_plane@plane-position-covered
+igt@kms_plane@plane-position-hole
+igt@kms_plane@plane-position-hole-dpms
+igt@kms_plane@plane-panning-top-left
+igt@kms_plane@plane-panning-bottom-right
+igt@kms_plane@invalid-pixel-format-settings
+igt@kms_plane_lowres@tiling-none
+igt@kms_plane_lowres@tiling-x
+igt@kms_plane_lowres@tiling-y
+igt@kms_plane_lowres@tiling-yf
+igt@kms_plane_lowres@tiling-4
+igt@kms_plane_scaling@plane-upscale-with-pixel-format-20x20
+igt@kms_plane_scaling@plane-upscale-with-pixel-format-factor-0-25
+igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25
+igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5
+igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-75
+igt@kms_plane_scaling@plane-scaler-with-pixel-format-unity-scaling
+igt@kms_plane_scaling@plane-upscale-with-rotation-20x20
+igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25
+igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25
+igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5
+igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75
+igt@kms_plane_scaling@plane-scaler-with-rotation-unity-scaling
+igt@kms_plane_scaling@plane-upscale-with-modifiers-20x20
+igt@kms_plane_scaling@plane-upscale-with-modifiers-factor-0-25
+igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25
+igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-5
+igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-75
+igt@kms_plane_scaling@plane-scaler-with-modifiers-unity-scaling
+igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats
+igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation
+igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers
+igt@kms_plane_scaling@planes-upscale-20x20
+igt@kms_plane_scaling@planes-upscale-factor-0-25
+igt@kms_plane_scaling@planes-scaler-unity-scaling
+igt@kms_plane_scaling@planes-downscale-factor-0-25
+igt@kms_plane_scaling@planes-downscale-factor-0-5
+igt@kms_plane_scaling@planes-downscale-factor-0-75
+igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25
+igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5
+igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75
+igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25
+igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5
+igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75
+igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25
+igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5
+igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75
+igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20
+igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25
+igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling
+igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20
+igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25
+igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling
+igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20
+igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25
+igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling
+igt@kms_plane_scaling@intel-max-src-size
+igt@kms_plane_scaling@invalid-num-scalers
+igt@kms_plane_scaling@invalid-parameters
+igt@kms_rotation_crc@primary-rotation-90
+igt@kms_rotation_crc@primary-rotation-180
+igt@kms_rotation_crc@primary-rotation-270
+igt@kms_rotation_crc@sprite-rotation-90
+igt@kms_rotation_crc@sprite-rotation-180
+igt@kms_rotation_crc@sprite-rotation-270
+igt@kms_rotation_crc@cursor-rotation-180
+igt@kms_rotation_crc@sprite-rotation-90-pos-100-0
+igt@kms_rotation_crc@bad-pixel-format
+igt@kms_rotation_crc@bad-tiling
+igt@kms_rotation_crc@primary-x-tiled-reflect-x-0
+igt@kms_rotation_crc@primary-x-tiled-reflect-x-180
+igt@kms_rotation_crc@primary-y-tiled-reflect-x-0
+igt@kms_rotation_crc@primary-y-tiled-reflect-x-90
+igt@kms_rotation_crc@primary-y-tiled-reflect-x-180
+igt@kms_rotation_crc@primary-y-tiled-reflect-x-270
+igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0
+igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90
+igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180
+igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270
+igt@kms_rotation_crc@primary-4-tiled-reflect-x-0
+igt@kms_rotation_crc@primary-4-tiled-reflect-x-180
+igt@kms_rotation_crc@multiplane-rotation
+igt@kms_rotation_crc@multiplane-rotation-cropping-top
+igt@kms_rotation_crc@multiplane-rotation-cropping-bottom
+igt@kms_rotation_crc@exhaust-fences
+igt@kms_big_fb@x-tiled-addfb-size-overflow
+igt@kms_big_fb@y-tiled-addfb-size-overflow
+igt@kms_big_fb@yf-tiled-addfb-size-overflow
+igt@kms_big_fb@4-tiled-addfb-size-overflow
+igt@kms_big_fb@x-tiled-addfb-size-offset-overflow
+igt@kms_big_fb@y-tiled-addfb-size-offset-overflow
+igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow
+igt@kms_big_fb@4-tiled-addfb-size-offset-overflow
+igt@kms_big_fb@linear-addfb
+igt@kms_big_fb@x-tiled-addfb
+igt@kms_big_fb@y-tiled-addfb
+igt@kms_big_fb@yf-tiled-addfb
+igt@kms_big_fb@4-tiled-addfb
+igt@kms_big_fb@linear-8bpp-rotate-0
+igt@kms_big_fb@linear-8bpp-rotate-90
+igt@kms_big_fb@linear-8bpp-rotate-180
+igt@kms_big_fb@linear-8bpp-rotate-270
+igt@kms_big_fb@linear-16bpp-rotate-0
+igt@kms_big_fb@linear-16bpp-rotate-90
+igt@kms_big_fb@linear-16bpp-rotate-180
+igt@kms_big_fb@linear-16bpp-rotate-270
+igt@kms_big_fb@linear-32bpp-rotate-0
+igt@kms_big_fb@linear-32bpp-rotate-90
+igt@kms_big_fb@linear-32bpp-rotate-180
+igt@kms_big_fb@linear-32bpp-rotate-270
+igt@kms_big_fb@linear-64bpp-rotate-0
+igt@kms_big_fb@linear-64bpp-rotate-90
+igt@kms_big_fb@linear-64bpp-rotate-180
+igt@kms_big_fb@linear-64bpp-rotate-270
+igt@kms_big_fb@x-tiled-8bpp-rotate-0
+igt@kms_big_fb@x-tiled-8bpp-rotate-90
+igt@kms_big_fb@x-tiled-8bpp-rotate-180
+igt@kms_big_fb@x-tiled-8bpp-rotate-270
+igt@kms_big_fb@x-tiled-16bpp-rotate-0
+igt@kms_big_fb@x-tiled-16bpp-rotate-90
+igt@kms_big_fb@x-tiled-16bpp-rotate-180
+igt@kms_big_fb@x-tiled-16bpp-rotate-270
+igt@kms_big_fb@x-tiled-32bpp-rotate-0
+igt@kms_big_fb@x-tiled-32bpp-rotate-90
+igt@kms_big_fb@x-tiled-32bpp-rotate-180
+igt@kms_big_fb@x-tiled-32bpp-rotate-270
+igt@kms_big_fb@x-tiled-64bpp-rotate-0
+igt@kms_big_fb@x-tiled-64bpp-rotate-90
+igt@kms_big_fb@x-tiled-64bpp-rotate-180
+igt@kms_big_fb@x-tiled-64bpp-rotate-270
+igt@kms_big_fb@y-tiled-8bpp-rotate-0
+igt@kms_big_fb@y-tiled-8bpp-rotate-90
+igt@kms_big_fb@y-tiled-8bpp-rotate-180
+igt@kms_big_fb@y-tiled-8bpp-rotate-270
+igt@kms_big_fb@y-tiled-16bpp-rotate-0
+igt@kms_big_fb@y-tiled-16bpp-rotate-90
+igt@kms_big_fb@y-tiled-16bpp-rotate-180
+igt@kms_big_fb@y-tiled-16bpp-rotate-270
+igt@kms_big_fb@y-tiled-32bpp-rotate-0
+igt@kms_big_fb@y-tiled-32bpp-rotate-90
+igt@kms_big_fb@y-tiled-32bpp-rotate-180
+igt@kms_big_fb@y-tiled-32bpp-rotate-270
+igt@kms_big_fb@y-tiled-64bpp-rotate-0
+igt@kms_big_fb@y-tiled-64bpp-rotate-90
+igt@kms_big_fb@y-tiled-64bpp-rotate-180
+igt@kms_big_fb@y-tiled-64bpp-rotate-270
+igt@kms_big_fb@yf-tiled-8bpp-rotate-0
+igt@kms_big_fb@yf-tiled-8bpp-rotate-90
+igt@kms_big_fb@yf-tiled-8bpp-rotate-180
+igt@kms_big_fb@yf-tiled-8bpp-rotate-270
+igt@kms_big_fb@yf-tiled-16bpp-rotate-0
+igt@kms_big_fb@yf-tiled-16bpp-rotate-90
+igt@kms_big_fb@yf-tiled-16bpp-rotate-180
+igt@kms_big_fb@yf-tiled-16bpp-rotate-270
+igt@kms_big_fb@yf-tiled-32bpp-rotate-0
+igt@kms_big_fb@yf-tiled-32bpp-rotate-90
+igt@kms_big_fb@yf-tiled-32bpp-rotate-180
+igt@kms_big_fb@yf-tiled-32bpp-rotate-270
+igt@kms_big_fb@yf-tiled-64bpp-rotate-0
+igt@kms_big_fb@yf-tiled-64bpp-rotate-90
+igt@kms_big_fb@yf-tiled-64bpp-rotate-180
+igt@kms_big_fb@yf-tiled-64bpp-rotate-270
+igt@kms_big_fb@4-tiled-8bpp-rotate-0
+igt@kms_big_fb@4-tiled-8bpp-rotate-90
+igt@kms_big_fb@4-tiled-8bpp-rotate-180
+igt@kms_big_fb@4-tiled-8bpp-rotate-270
+igt@kms_big_fb@4-tiled-16bpp-rotate-0
+igt@kms_big_fb@4-tiled-16bpp-rotate-90
+igt@kms_big_fb@4-tiled-16bpp-rotate-180
+igt@kms_big_fb@4-tiled-16bpp-rotate-270
+igt@kms_big_fb@4-tiled-32bpp-rotate-0
+igt@kms_big_fb@4-tiled-32bpp-rotate-90
+igt@kms_big_fb@4-tiled-32bpp-rotate-180
+igt@kms_big_fb@4-tiled-32bpp-rotate-270
+igt@kms_big_fb@4-tiled-64bpp-rotate-0
+igt@kms_big_fb@4-tiled-64bpp-rotate-90
+igt@kms_big_fb@4-tiled-64bpp-rotate-180
+igt@kms_big_fb@4-tiled-64bpp-rotate-270
+igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0
+igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180
+igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0
+igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180
+igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0
+igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip
+igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180
+igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip
+igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0
+igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip
+igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180
+igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip
+igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip
+igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip
+igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip
+igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip
+igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip
+igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip
+igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip
+igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip
+igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0
+igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip
+igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180
+igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip
+igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0
+igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip
+igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180
+igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip
+igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip
+igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip
+igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip
+igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip
+igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip
+igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip
+igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip
+igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip
+igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0
+igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip
+igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180
+igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip
+igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0
+igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip
+igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180
+igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip
+igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip
+igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip
+igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip
+igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip
+igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip
+igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip
+igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip
+igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip
+igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0
+igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip
+igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180
+igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip
+igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0
+igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip
+igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180
+igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip
+igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip
+igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip
+igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip
+igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip
+igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip
+igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip
+igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip
+igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip
+igt@kms_draw_crc@draw-method-mmap-wc
+igt@kms_draw_crc@draw-method-blt
+igt@kms_draw_crc@draw-method-render
+igt@kms_draw_crc@fill-fb
+igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling
+igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling
+igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling
+igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling
+igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling
+igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling
+igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling
+igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling
+igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling
+igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling
+igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling
+igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling
+igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling
+igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling
+igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling
+igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling
+igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling
+igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling
+igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling
+igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling
+igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling
+igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling
+igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling
+igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling
+igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling
+igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling
+igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling
+igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling
+igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling
+igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling
+igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-upscaling
+igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling
+igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling
+igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling
+igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling
+igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling
+igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling
+igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-upscaling
+igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling
+igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling
+igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling
+igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling
+igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling
+igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling
+igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling
+igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling
+igt@kms_flip_tiling@flip-change-tiling
+igt@kms_plane_multiple@tiling-none
+igt@kms_plane_multiple@tiling-x
+igt@kms_plane_multiple@tiling-y
+igt@kms_plane_multiple@tiling-yf
+igt@kms_plane_multiple@tiling-4
+igt@kms_psr@primary_blt
+igt@kms_psr@sprite_blt
+igt@kms_psr@cursor_blt
--
2.40.0
^ permalink raw reply related [flat|nested] 21+ messages in thread
* [igt-dev] ✗ GitLab.Pipeline: warning for Add tiling support for display tests
2023-08-24 5:41 [igt-dev] [i-g-t 00/16] Add tiling support for display tests Bhanuprakash Modem
` (15 preceding siblings ...)
2023-08-24 5:41 ` [igt-dev] [i-g-t 16/16] HAX: Run tiling tests in XE fast-feedback Bhanuprakash Modem
@ 2023-08-24 6:03 ` Patchwork
2023-08-24 6:22 ` [igt-dev] ✗ CI.xeBAT: failure " Patchwork
` (2 subsequent siblings)
19 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2023-08-24 6:03 UTC (permalink / raw)
To: Bhanuprakash Modem; +Cc: igt-dev
== Series Details ==
Series: Add tiling support for display tests
URL : https://patchwork.freedesktop.org/series/122822/
State : warning
== Summary ==
Pipeline status: FAILED.
see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/969270 for the overview.
containers:igt has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/47956627):
17d063f830c2d2b4eb76f3cea3e8bbf662792c19c044f512c79736327d4a1c45
STEP 4: ENV PATH="/opt/igt/bin:${PATH}"
cdc08b5751bc7b91598e8238c1cd37462328e3aee6c04cdbb73abfebbb2b74b5
STEP 5: ENV LD_LIBRARY_PATH="/opt/igt/lib:/opt/igt/lib64:${LD_LIBRARY_PATH}"
599c3baf1d7882ef1b6050f3743a680c8b355e47828ffec02f2cd5893f70d5b8
STEP 6: ENV IGT_TEST_ROOT="/opt/igt/libexec/igt-gpu-tools"
53f724065228079fc8e95b20812a9e02813a9fa150da72e099732a5c076f83a9
STEP 7: CMD docker-help.sh
STEP 8: COMMIT registry.freedesktop.org/gfx-ci/igt-ci-tags/igt:commit-32d9efd0741f42b395885aadaa213e8a9127a565
580f87c02348e52b26af3ac512531e9b2c2b85870a912ab747587d763a3b17a3
Getting image source signatures
Copying blob sha256:c8d8d092bb1a4bc1049bbeb98845cc6dfbcdcb9ba4683a396407e78972af6dca
Copying blob sha256:9821ca7cfcf7c2c0ebdb1f3c8b2516d2954750f2b87faaf88eb25bf87ec70ea8
Error: Error copying image to the remote destination: Error trying to reuse blob sha256:3504a8337d3b7eaabfd338d6a971d02441d28ebef8bd81f730d87f936ed58079 at destination: Get https://gitlab.freedesktop.org/jwt/auth?account=gitlab-ci-token&scope=repository%3Agfx-ci%2Figt-ci-tags%2Figt%3Apull%2Cpush&service=container_registry: dial tcp 147.75.198.156:443: i/o timeout
section_end:1692856872:step_script
section_start:1692856872:cleanup_file_variables
Cleaning up project directory and file based variables
section_end:1692856873:cleanup_file_variables
ERROR: Job failed: exit code 1
== Logs ==
For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/969270
^ permalink raw reply [flat|nested] 21+ messages in thread
* [igt-dev] ✗ CI.xeBAT: failure for Add tiling support for display tests
2023-08-24 5:41 [igt-dev] [i-g-t 00/16] Add tiling support for display tests Bhanuprakash Modem
` (16 preceding siblings ...)
2023-08-24 6:03 ` [igt-dev] ✗ GitLab.Pipeline: warning for Add tiling support for display tests Patchwork
@ 2023-08-24 6:22 ` Patchwork
2023-08-24 6:30 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2023-08-24 14:15 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
19 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2023-08-24 6:22 UTC (permalink / raw)
To: Bhanuprakash Modem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 9506 bytes --]
== Series Details ==
Series: Add tiling support for display tests
URL : https://patchwork.freedesktop.org/series/122822/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_7451_BAT -> XEIGTPW_9645_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_9645_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_9645_BAT, please notify your bug team to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (3 -> 3)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_9645_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- bat-dg2-oem2: NOTRUN -> [SKIP][1] +7 similar issues
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9645/bat-dg2-oem2/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_cursor_edge_walk@256x256-left-edge:
- bat-atsm-2: NOTRUN -> [FAIL][2] +11 similar issues
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9645/bat-atsm-2/igt@kms_cursor_edge_walk@256x256-left-edge.html
* igt@kms_plane@pixel-format-source-clamping:
- bat-adlp-7: NOTRUN -> [FAIL][3] +6 similar issues
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9645/bat-adlp-7/igt@kms_plane@pixel-format-source-clamping.html
* igt@kms_plane_lowres@tiling-x@pipe-d-dp-3:
- bat-dg2-oem2: NOTRUN -> [FAIL][4] +3 similar issues
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9645/bat-dg2-oem2/igt@kms_plane_lowres@tiling-x@pipe-d-dp-3.html
* igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-75@pipe-d-edp-1:
- bat-adlp-7: NOTRUN -> [DMESG-FAIL][5] +37 similar issues
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9645/bat-adlp-7/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-75@pipe-d-edp-1.html
* igt@kms_plane_scaling@plane-upscale-with-pixel-format-factor-0-25:
- bat-atsm-2: NOTRUN -> [SKIP][6] +302 similar issues
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9645/bat-atsm-2/igt@kms_plane_scaling@plane-upscale-with-pixel-format-factor-0-25.html
* igt@kms_plane_scaling@plane-upscale-with-pixel-format-factor-0-25@pipe-b-dp-3:
- bat-dg2-oem2: NOTRUN -> [INCOMPLETE][7] +1 similar issue
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9645/bat-dg2-oem2/igt@kms_plane_scaling@plane-upscale-with-pixel-format-factor-0-25@pipe-b-dp-3.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- bat-adlp-7: NOTRUN -> [SKIP][8] +22 similar issues
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9645/bat-adlp-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@kms_getfb@getfb-accept-ccs}:
- bat-adlp-7: NOTRUN -> [SKIP][9]
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9645/bat-adlp-7/igt@kms_getfb@getfb-accept-ccs.html
- bat-dg2-oem2: NOTRUN -> [SKIP][10]
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9645/bat-dg2-oem2/igt@kms_getfb@getfb-accept-ccs.html
- bat-atsm-2: NOTRUN -> [SKIP][11]
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9645/bat-atsm-2/igt@kms_getfb@getfb-accept-ccs.html
Known issues
------------
Here are the changes found in XEIGTPW_9645_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- bat-atsm-2: NOTRUN -> [SKIP][12] ([i915#6077]) +10 similar issues
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9645/bat-atsm-2/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- bat-dg2-oem2: NOTRUN -> [SKIP][13] ([Intel XE#388])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9645/bat-dg2-oem2/igt@kms_addfb_basic@tile-pitch-mismatch.html
- bat-adlp-7: NOTRUN -> [SKIP][14] ([Intel XE#388])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9645/bat-adlp-7/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_cursor_edge_walk@256x256-left-edge@pipe-a-dp-3:
- bat-dg2-oem2: NOTRUN -> [DMESG-WARN][15] ([Intel XE#282]) +10 similar issues
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9645/bat-dg2-oem2/igt@kms_cursor_edge_walk@256x256-left-edge@pipe-a-dp-3.html
* igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1:
- bat-adlp-7: [PASS][16] -> [FAIL][17] ([Intel XE#480]) +1 similar issue
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7451/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9645/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1.html
* igt@kms_plane@invalid-pixel-format-settings:
- bat-atsm-2: NOTRUN -> [SKIP][18] ([i915#1836])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9645/bat-atsm-2/igt@kms_plane@invalid-pixel-format-settings.html
* igt@kms_plane@pixel-format:
- bat-dg2-oem2: NOTRUN -> [FAIL][19] ([Intel XE#338]) +5 similar issues
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9645/bat-dg2-oem2/igt@kms_plane@pixel-format.html
* igt@kms_plane_lowres@tiling-none@pipe-a-dp-3:
- bat-dg2-oem2: NOTRUN -> [DMESG-FAIL][20] ([Intel XE#324]) +5 similar issues
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9645/bat-dg2-oem2/igt@kms_plane_lowres@tiling-none@pipe-a-dp-3.html
* igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
- bat-adlp-7: NOTRUN -> [SKIP][21] ([Intel XE#319]) +2 similar issues
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9645/bat-adlp-7/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html
* igt@kms_plane_lowres@tiling-none@pipe-d-edp-1:
- bat-adlp-7: NOTRUN -> [SKIP][22] ([Intel XE#319] / [Intel XE#455])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9645/bat-adlp-7/igt@kms_plane_lowres@tiling-none@pipe-d-edp-1.html
* igt@kms_plane_lowres@tiling-y:
- bat-dg2-oem2: NOTRUN -> [SKIP][23] ([Intel XE#455]) +1 similar issue
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9645/bat-dg2-oem2/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_lowres@tiling-y@pipe-d-edp-1:
- bat-adlp-7: NOTRUN -> [SKIP][24] ([Intel XE#455]) +27 similar issues
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9645/bat-adlp-7/igt@kms_plane_lowres@tiling-y@pipe-d-edp-1.html
* igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-edp-1:
- bat-adlp-7: NOTRUN -> [SKIP][25] ([Intel XE#498]) +8 similar issues
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9645/bat-adlp-7/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-edp-1:
- bat-adlp-7: NOTRUN -> [SKIP][26] ([Intel XE#305]) +20 similar issues
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9645/bat-adlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-edp-1.html
* igt@kms_psr@sprite_blt:
- bat-atsm-2: NOTRUN -> [SKIP][27] ([i915#1072]) +2 similar issues
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9645/bat-atsm-2/igt@kms_psr@sprite_blt.html
* igt@kms_rotation_crc@sprite-rotation-90:
- bat-adlp-7: NOTRUN -> [SKIP][28] ([Intel XE#327]) +6 similar issues
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9645/bat-adlp-7/igt@kms_rotation_crc@sprite-rotation-90.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/282
[Intel XE#305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/305
[Intel XE#319]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/319
[Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
[Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
[Intel XE#338]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/338
[Intel XE#388]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/388
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480
[Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836
[i915#6077]: https://gitlab.freedesktop.org/drm/intel/issues/6077
Build changes
-------------
* IGT: IGT_7451 -> IGTPW_9645
* Linux: xe-330-3a964d06598874329aab6f8db7fd52840135d568 -> xe-332-24894376b6f6c1cf08ed5a7eb2760a9b0b43c3ef
IGTPW_9645: 9645
IGT_7451: 5d48d1fb231f449fe2f80cda14ea7a1ecfda59fa @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-330-3a964d06598874329aab6f8db7fd52840135d568: 3a964d06598874329aab6f8db7fd52840135d568
xe-332-24894376b6f6c1cf08ed5a7eb2760a9b0b43c3ef: 24894376b6f6c1cf08ed5a7eb2760a9b0b43c3ef
[-- Attachment #2: Type: text/html, Size: 10993 bytes --]
^ permalink raw reply [flat|nested] 21+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Add tiling support for display tests
2023-08-24 5:41 [igt-dev] [i-g-t 00/16] Add tiling support for display tests Bhanuprakash Modem
` (17 preceding siblings ...)
2023-08-24 6:22 ` [igt-dev] ✗ CI.xeBAT: failure " Patchwork
@ 2023-08-24 6:30 ` Patchwork
2023-08-24 14:15 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
19 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2023-08-24 6:30 UTC (permalink / raw)
To: Bhanuprakash Modem; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 7816 bytes --]
== Series Details ==
Series: Add tiling support for display tests
URL : https://patchwork.freedesktop.org/series/122822/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13558 -> IGTPW_9645
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/index.html
Participating hosts (39 -> 39)
------------------------------
Additional (1): bat-dg2-9
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_9645 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-rplp-1: NOTRUN -> [SKIP][1] ([i915#7456])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/bat-rplp-1/igt@debugfs_test@basic-hwmon.html
* igt@gem_mmap@basic:
- bat-dg2-9: NOTRUN -> [SKIP][2] ([i915#4083])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/bat-dg2-9/igt@gem_mmap@basic.html
* igt@gem_mmap_gtt@basic:
- bat-dg2-9: NOTRUN -> [SKIP][3] ([i915#4077]) +2 similar issues
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/bat-dg2-9/igt@gem_mmap_gtt@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-dg2-9: NOTRUN -> [SKIP][4] ([i915#4079]) +1 similar issue
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/bat-dg2-9/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-rplp-1: NOTRUN -> [SKIP][5] ([i915#3282])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/bat-rplp-1/igt@gem_tiled_pread_basic.html
* igt@i915_pm_backlight@basic-brightness:
- bat-dg2-9: NOTRUN -> [SKIP][6] ([i915#5354] / [i915#7561])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/bat-dg2-9/igt@i915_pm_backlight@basic-brightness.html
* igt@i915_pm_rps@basic-api:
- bat-dg2-9: NOTRUN -> [SKIP][7] ([i915#6621])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/bat-dg2-9/igt@i915_pm_rps@basic-api.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-dg2-9: NOTRUN -> [SKIP][8] ([i915#5190])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/bat-dg2-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg2-9: NOTRUN -> [SKIP][9] ([i915#4215] / [i915#5190])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/bat-dg2-9/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- bat-dg2-9: NOTRUN -> [SKIP][10] ([i915#4212]) +7 similar issues
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/bat-dg2-9/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-rplp-1: NOTRUN -> [SKIP][11] ([i915#4103] / [i915#4213]) +1 similar issue
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/bat-rplp-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- bat-dg2-9: NOTRUN -> [SKIP][12] ([i915#4103] / [i915#4213]) +1 similar issue
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/bat-dg2-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-rplp-1: NOTRUN -> [SKIP][13] ([fdo#109285])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/bat-rplp-1/igt@kms_force_connector_basic@force-load-detect.html
- bat-dg2-9: NOTRUN -> [SKIP][14] ([fdo#109285])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/bat-dg2-9/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-dg2-9: NOTRUN -> [SKIP][15] ([i915#5274])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/bat-dg2-9/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-dg2-11: NOTRUN -> [SKIP][16] ([i915#1845]) +3 similar issues
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
* igt@kms_psr@primary_page_flip:
- bat-rplp-1: NOTRUN -> [SKIP][17] ([i915#1072]) +1 similar issue
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/bat-rplp-1/igt@kms_psr@primary_page_flip.html
* igt@kms_psr@sprite_plane_onoff:
- bat-dg2-9: NOTRUN -> [SKIP][18] ([i915#1072]) +3 similar issues
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/bat-dg2-9/igt@kms_psr@sprite_plane_onoff.html
- bat-rplp-1: NOTRUN -> [ABORT][19] ([i915#8442] / [i915#8712])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/bat-rplp-1/igt@kms_psr@sprite_plane_onoff.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-dg2-9: NOTRUN -> [SKIP][20] ([i915#3555])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/bat-dg2-9/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-dg2-9: NOTRUN -> [SKIP][21] ([i915#3708])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/bat-dg2-9/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-dg2-9: NOTRUN -> [SKIP][22] ([i915#3708] / [i915#4077]) +1 similar issue
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/bat-dg2-9/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-write:
- bat-dg2-9: NOTRUN -> [SKIP][23] ([i915#3291] / [i915#3708]) +2 similar issues
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/bat-dg2-9/igt@prime_vgem@basic-write.html
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[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#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#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456
[i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
[i915#8442]: https://gitlab.freedesktop.org/drm/intel/issues/8442
[i915#8712]: https://gitlab.freedesktop.org/drm/intel/issues/8712
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7451 -> IGTPW_9645
CI-20190529: 20190529
CI_DRM_13558: 2d5f57f6436263ecb456228603356d81173b1ceb @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9645: 9645
IGT_7451: 5d48d1fb231f449fe2f80cda14ea7a1ecfda59fa @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Testlist changes
----------------
-igt@cpu_gpu_time@cpu-gpu-time
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/index.html
[-- Attachment #2: Type: text/html, Size: 9503 bytes --]
^ permalink raw reply [flat|nested] 21+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for Add tiling support for display tests
2023-08-24 5:41 [igt-dev] [i-g-t 00/16] Add tiling support for display tests Bhanuprakash Modem
` (18 preceding siblings ...)
2023-08-24 6:30 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
@ 2023-08-24 14:15 ` Patchwork
19 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2023-08-24 14:15 UTC (permalink / raw)
To: Modem, Bhanuprakash; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 97247 bytes --]
== Series Details ==
Series: Add tiling support for display tests
URL : https://patchwork.freedesktop.org/series/122822/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13558_full -> IGTPW_9645_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_9645_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_9645_full, please notify your bug team 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_9645/index.html
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_9645_full:
### IGT changes ###
#### Possible regressions ####
* igt@perf_pmu@multi-client@ccs0:
- shard-mtlp: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-mtlp-3/igt@perf_pmu@multi-client@ccs0.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-3/igt@perf_pmu@multi-client@ccs0.html
#### Warnings ####
* igt@kms_content_protection@lic@pipe-a-dp-1:
- shard-apl: [TIMEOUT][3] ([i915#7173]) -> [DMESG-FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-apl4/igt@kms_content_protection@lic@pipe-a-dp-1.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-apl1/igt@kms_content_protection@lic@pipe-a-dp-1.html
Known issues
------------
Here are the changes found in IGTPW_9645_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-dg2: NOTRUN -> [SKIP][5] ([i915#8411])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-5/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-mtlp: NOTRUN -> [SKIP][6] ([i915#8411])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-8/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@crc32:
- shard-rkl: NOTRUN -> [SKIP][7] ([i915#6230])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-7/igt@api_intel_bb@crc32.html
* igt@device_reset@cold-reset-bound:
- shard-dg2: NOTRUN -> [SKIP][8] ([i915#7701]) +1 similar issue
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-11/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: NOTRUN -> [SKIP][9] ([i915#7701])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-3/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_fdinfo@busy@vcs1:
- shard-dg1: NOTRUN -> [SKIP][10] ([i915#8414]) +4 similar issues
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg1-14/igt@drm_fdinfo@busy@vcs1.html
* igt@drm_fdinfo@most-busy-check-all@bcs0:
- shard-dg2: NOTRUN -> [SKIP][11] ([i915#8414]) +22 similar issues
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-6/igt@drm_fdinfo@most-busy-check-all@bcs0.html
* igt@feature_discovery@display-3x:
- shard-dg2: NOTRUN -> [SKIP][12] ([i915#1839])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-12/igt@feature_discovery@display-3x.html
* igt@feature_discovery@display-4x:
- shard-mtlp: NOTRUN -> [SKIP][13] ([i915#1839])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-2/igt@feature_discovery@display-4x.html
* igt@gem_busy@semaphore:
- shard-dg2: NOTRUN -> [SKIP][14] ([i915#3936])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-6/igt@gem_busy@semaphore.html
* igt@gem_caching@read-writes:
- shard-mtlp: NOTRUN -> [SKIP][15] ([i915#4873])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-6/igt@gem_caching@read-writes.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-mtlp: NOTRUN -> [SKIP][16] ([i915#5325])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-5/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-tglu: [PASS][17] -> [FAIL][18] ([i915#6268])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-tglu-9/igt@gem_ctx_exec@basic-nohangcheck.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-tglu-3/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_persistence@hang:
- shard-mtlp: NOTRUN -> [SKIP][19] ([i915#8555]) +1 similar issue
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-4/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg2: NOTRUN -> [SKIP][20] ([i915#8555])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-stop.html
- shard-dg1: NOTRUN -> [SKIP][21] ([i915#8555])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg1-16/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_persistence@legacy-engines-hang:
- shard-snb: NOTRUN -> [SKIP][22] ([fdo#109271] / [i915#1099])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-snb5/igt@gem_ctx_persistence@legacy-engines-hang.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1:
- shard-mtlp: NOTRUN -> [SKIP][23] ([i915#5882]) +5 similar issues
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-2/igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1.html
* igt@gem_ctx_sseu@invalid-args:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#280])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-11/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_eio@in-flight-suspend:
- shard-snb: NOTRUN -> [DMESG-WARN][25] ([i915#8841]) +2 similar issues
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-snb2/igt@gem_eio@in-flight-suspend.html
* igt@gem_eio@kms:
- shard-dg2: [PASS][26] -> [INCOMPLETE][27] ([i915#7892])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-dg2-12/igt@gem_eio@kms.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-2/igt@gem_eio@kms.html
* igt@gem_eio@reset-stress:
- shard-dg1: NOTRUN -> [FAIL][28] ([i915#5784])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg1-19/igt@gem_eio@reset-stress.html
* igt@gem_exec_balancer@bonded-dual:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#4771])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-3/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#4812]) +2 similar issues
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-6/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-rkl: NOTRUN -> [SKIP][31] ([i915#4525])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-1/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_balancer@sliced:
- shard-dg1: NOTRUN -> [SKIP][32] ([i915#4812])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg1-13/igt@gem_exec_balancer@sliced.html
* igt@gem_exec_capture@pi@ccs0:
- shard-mtlp: [PASS][33] -> [FAIL][34] ([i915#7765])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-mtlp-4/igt@gem_exec_capture@pi@ccs0.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-3/igt@gem_exec_capture@pi@ccs0.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: NOTRUN -> [FAIL][35] ([i915#2846])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [PASS][36] -> [FAIL][37] ([i915#2842])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-apl: [PASS][38] -> [FAIL][39] ([i915#2842])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-apl1/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-apl2/igt@gem_exec_fair@basic-pace-solo@rcs0.html
- shard-glk: NOTRUN -> [FAIL][40] ([i915#2842])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-glk7/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-rkl: [PASS][41] -> [FAIL][42] ([i915#2842])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-rkl-1/igt@gem_exec_fair@basic-pace@rcs0.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-3/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gem_exec_fair@basic-sync:
- shard-dg1: NOTRUN -> [SKIP][43] ([i915#3539])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg1-13/igt@gem_exec_fair@basic-sync.html
- shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4473] / [i915#4771]) +1 similar issue
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-8/igt@gem_exec_fair@basic-sync.html
* igt@gem_exec_fence@parallel@vcs0:
- shard-mtlp: [PASS][45] -> [DMESG-FAIL][46] ([i915#9121])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-mtlp-5/igt@gem_exec_fence@parallel@vcs0.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-4/igt@gem_exec_fence@parallel@vcs0.html
* igt@gem_exec_fence@parallel@vecs0:
- shard-mtlp: [PASS][47] -> [FAIL][48] ([i915#8957]) +2 similar issues
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-mtlp-5/igt@gem_exec_fence@parallel@vecs0.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-4/igt@gem_exec_fence@parallel@vecs0.html
* igt@gem_exec_flush@basic-batch-kernel-default-wb:
- shard-mtlp: NOTRUN -> [DMESG-FAIL][49] ([i915#9121])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-4/igt@gem_exec_flush@basic-batch-kernel-default-wb.html
* igt@gem_exec_flush@basic-wb-rw-before-default:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#3539] / [i915#4852]) +3 similar issues
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-6/igt@gem_exec_flush@basic-wb-rw-before-default.html
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#3539] / [i915#4852]) +1 similar issue
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg1-16/igt@gem_exec_flush@basic-wb-rw-before-default.html
* igt@gem_exec_gttfill@multigpu-basic:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#7697])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-11/igt@gem_exec_gttfill@multigpu-basic.html
* igt@gem_exec_params@secure-non-root:
- shard-dg2: NOTRUN -> [SKIP][53] ([fdo#112283])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-11/igt@gem_exec_params@secure-non-root.html
* igt@gem_exec_reloc@basic-wc:
- shard-rkl: NOTRUN -> [SKIP][54] ([i915#3281]) +4 similar issues
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-1/igt@gem_exec_reloc@basic-wc.html
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#3281]) +2 similar issues
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg1-18/igt@gem_exec_reloc@basic-wc.html
* igt@gem_exec_reloc@basic-wc-cpu-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#3281]) +5 similar issues
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-1/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html
* igt@gem_exec_reloc@basic-write-wc-noreloc:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#3281]) +14 similar issues
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-6/igt@gem_exec_reloc@basic-write-wc-noreloc.html
* igt@gem_exec_schedule@reorder-wide:
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4812])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-7/igt@gem_exec_schedule@reorder-wide.html
* igt@gem_exec_suspend@basic-s0@smem:
- shard-dg2: NOTRUN -> [INCOMPLETE][59] ([i915#6311])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-2/igt@gem_exec_suspend@basic-s0@smem.html
* igt@gem_exec_suspend@basic-s4-devices@smem:
- shard-tglu: [PASS][60] -> [ABORT][61] ([i915#7975] / [i915#8213])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-tglu-4/igt@gem_exec_suspend@basic-s4-devices@smem.html
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#4860]) +1 similar issue
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-8/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_lmem_swapping@heavy-multi:
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4613])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-4/igt@gem_lmem_swapping@heavy-multi.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-rkl: NOTRUN -> [SKIP][64] ([i915#4613])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-2/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@massive:
- shard-glk: NOTRUN -> [SKIP][65] ([fdo#109271] / [i915#4613])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-glk4/igt@gem_lmem_swapping@massive.html
* igt@gem_media_fill@media-fill:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#8289])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-5/igt@gem_media_fill@media-fill.html
* igt@gem_mmap_gtt@basic-read-write-distinct:
- shard-dg1: NOTRUN -> [SKIP][67] ([i915#4077]) +4 similar issues
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg1-14/igt@gem_mmap_gtt@basic-read-write-distinct.html
* igt@gem_mmap_gtt@basic-write-read:
- shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4077]) +4 similar issues
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-6/igt@gem_mmap_gtt@basic-write-read.html
* igt@gem_mmap_gtt@cpuset-medium-copy-xy:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#4077]) +15 similar issues
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-2/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html
* igt@gem_mmap_wc@copy:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#4083]) +6 similar issues
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-6/igt@gem_mmap_wc@copy.html
* igt@gem_mmap_wc@read-write-distinct:
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#4083]) +1 similar issue
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg1-19/igt@gem_mmap_wc@read-write-distinct.html
* igt@gem_mmap_wc@write-cpu-read-wc:
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4083])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-1/igt@gem_mmap_wc@write-cpu-read-wc.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#3282]) +7 similar issues
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-8/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_pread@bench:
- shard-rkl: NOTRUN -> [SKIP][74] ([i915#3282]) +1 similar issue
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-4/igt@gem_pread@bench.html
* igt@gem_pread@snoop:
- shard-dg1: NOTRUN -> [SKIP][75] ([i915#3282]) +1 similar issue
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg1-14/igt@gem_pread@snoop.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#4270]) +3 similar issues
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-11/igt@gem_pxp@regular-baseline-src-copy-readible.html
- shard-rkl: NOTRUN -> [SKIP][77] ([i915#4270])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-6/igt@gem_pxp@regular-baseline-src-copy-readible.html
- shard-dg1: NOTRUN -> [SKIP][78] ([i915#4270]) +1 similar issue
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg1-14/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#4270])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-7/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
* igt@gem_readwrite@write-bad-handle:
- shard-mtlp: NOTRUN -> [SKIP][80] ([i915#3282])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-1/igt@gem_readwrite@write-bad-handle.html
* igt@gem_render_copy@y-tiled-to-vebox-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][81] ([i915#8428])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-3/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#4079]) +1 similar issue
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-12/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#4885]) +1 similar issue
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-5/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_spin_batch@user-each:
- shard-mtlp: [PASS][84] -> [DMESG-FAIL][85] ([i915#8962] / [i915#9121]) +2 similar issues
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-mtlp-5/igt@gem_spin_batch@user-each.html
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-4/igt@gem_spin_batch@user-each.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-mtlp: NOTRUN -> [SKIP][86] ([i915#3297])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-7/igt@gem_userptr_blits@dmabuf-sync.html
- shard-apl: NOTRUN -> [SKIP][87] ([fdo#109271] / [i915#3323])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-apl4/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#3297]) +2 similar issues
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-6/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#3297] / [i915#4880]) +1 similar issue
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-12/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@nohangcheck:
- shard-mtlp: [PASS][90] -> [FAIL][91] ([i915#6268])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-mtlp-2/igt@gem_userptr_blits@nohangcheck.html
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-1/igt@gem_userptr_blits@nohangcheck.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-rkl: NOTRUN -> [SKIP][92] ([i915#3297])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-3/igt@gem_userptr_blits@unsync-overlap.html
- shard-dg1: NOTRUN -> [SKIP][93] ([i915#3297]) +1 similar issue
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg1-16/igt@gem_userptr_blits@unsync-overlap.html
* igt@gem_userptr_blits@vma-merge:
- shard-dg2: NOTRUN -> [FAIL][94] ([i915#3318])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-12/igt@gem_userptr_blits@vma-merge.html
* igt@gem_workarounds@suspend-resume-fd:
- shard-tglu: [PASS][95] -> [ABORT][96] ([i915#5122] / [i915#5251])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-tglu-2/igt@gem_workarounds@suspend-resume-fd.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-tglu-2/igt@gem_workarounds@suspend-resume-fd.html
* igt@gen3_render_mixed_blits:
- shard-dg1: NOTRUN -> [SKIP][97] ([fdo#109289])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg1-15/igt@gen3_render_mixed_blits.html
- shard-mtlp: NOTRUN -> [SKIP][98] ([fdo#109289])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-5/igt@gen3_render_mixed_blits.html
* igt@gen3_render_tiledy_blits:
- shard-rkl: NOTRUN -> [SKIP][99] ([fdo#109289])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-6/igt@gen3_render_tiledy_blits.html
* igt@gen7_exec_parse@chained-batch:
- shard-dg2: NOTRUN -> [SKIP][100] ([fdo#109289]) +6 similar issues
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-12/igt@gen7_exec_parse@chained-batch.html
* igt@gen9_exec_parse@allowed-single:
- shard-tglu: NOTRUN -> [SKIP][101] ([i915#2527] / [i915#2856])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-tglu-6/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@bb-start-far:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#2856]) +5 similar issues
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-2/igt@gen9_exec_parse@bb-start-far.html
- shard-rkl: NOTRUN -> [SKIP][103] ([i915#2527]) +2 similar issues
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-7/igt@gen9_exec_parse@bb-start-far.html
* igt@gen9_exec_parse@secure-batches:
- shard-dg1: NOTRUN -> [SKIP][104] ([i915#2527])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg1-13/igt@gen9_exec_parse@secure-batches.html
* igt@gen9_exec_parse@valid-registers:
- shard-mtlp: NOTRUN -> [SKIP][105] ([i915#2856])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-5/igt@gen9_exec_parse@valid-registers.html
* igt@i915_fb_tiling:
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#4881])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-12/igt@i915_fb_tiling.html
* igt@i915_hangman@engine-engine-error@vcs0:
- shard-mtlp: [PASS][107] -> [FAIL][108] ([i915#7069])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-mtlp-5/igt@i915_hangman@engine-engine-error@vcs0.html
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-6/igt@i915_hangman@engine-engine-error@vcs0.html
* igt@i915_module_load@resize-bar:
- shard-rkl: NOTRUN -> [SKIP][109] ([i915#6412])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-6/igt@i915_module_load@resize-bar.html
- shard-tglu: NOTRUN -> [SKIP][110] ([i915#6412])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-tglu-7/igt@i915_module_load@resize-bar.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2: NOTRUN -> [SKIP][111] ([i915#7091])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-12/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_pm_backlight@bad-brightness:
- shard-rkl: NOTRUN -> [SKIP][112] ([i915#7561])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-2/igt@i915_pm_backlight@bad-brightness.html
* igt@i915_pm_backlight@fade-with-dpms:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#5354] / [i915#7561]) +1 similar issue
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-11/igt@i915_pm_backlight@fade-with-dpms.html
* igt@i915_pm_dc@dc9-dpms:
- shard-rkl: NOTRUN -> [SKIP][114] ([i915#3361])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-3/igt@i915_pm_dc@dc9-dpms.html
- shard-apl: [PASS][115] -> [SKIP][116] ([fdo#109271])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-apl7/igt@i915_pm_dc@dc9-dpms.html
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-apl4/igt@i915_pm_dc@dc9-dpms.html
* igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a:
- shard-rkl: [PASS][117] -> [SKIP][118] ([i915#1937])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-rkl-7/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-6/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
- shard-dg1: NOTRUN -> [SKIP][119] ([i915#1937])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg1-14/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
* igt@i915_pm_rc6_residency@rc6-idle@rcs0:
- shard-dg1: [PASS][120] -> [FAIL][121] ([i915#3591])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
* igt@i915_pm_rpm@dpms-non-lpsp:
- shard-mtlp: NOTRUN -> [SKIP][122] ([i915#1397])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-5/igt@i915_pm_rpm@dpms-non-lpsp.html
* igt@i915_pm_rpm@modeset-lpsp-stress:
- shard-rkl: [PASS][123] -> [SKIP][124] ([i915#1397])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-rkl-7/igt@i915_pm_rpm@modeset-lpsp-stress.html
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-3/igt@i915_pm_rpm@modeset-lpsp-stress.html
* igt@i915_pm_rps@thresholds-idle@gt0:
- shard-dg2: NOTRUN -> [SKIP][125] ([i915#8925])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-12/igt@i915_pm_rps@thresholds-idle@gt0.html
* igt@i915_pm_sseu@full-enable:
- shard-rkl: NOTRUN -> [SKIP][126] ([i915#4387])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-3/igt@i915_pm_sseu@full-enable.html
- shard-dg1: NOTRUN -> [SKIP][127] ([i915#4387])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg1-13/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#6188])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-12/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-dg2: NOTRUN -> [SKIP][129] ([fdo#109303])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-6/igt@i915_query@query-topology-known-pci-ids.html
- shard-rkl: NOTRUN -> [SKIP][130] ([fdo#109303])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-6/igt@i915_query@query-topology-known-pci-ids.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#4212]) +1 similar issue
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-12/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-2:
- shard-glk: [PASS][132] -> [FAIL][133] ([i915#2521])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-glk6/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-2.html
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-glk9/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-2.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-dp-2-4-mc_ccs:
- shard-dg2: NOTRUN -> [SKIP][134] ([i915#8502] / [i915#8709]) +11 similar issues
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-12/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-dp-2-4-mc_ccs.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#404])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-12/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-mtlp: NOTRUN -> [SKIP][136] ([i915#1769]) +1 similar issue
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][137] ([i915#4538] / [i915#5286]) +3 similar issues
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg1-16/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
- shard-tglu: NOTRUN -> [SKIP][138] ([fdo#111615] / [i915#5286])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-tglu-9/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-rkl: NOTRUN -> [SKIP][139] ([i915#5286]) +2 similar issues
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][140] ([i915#3638])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg1-14/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][141] ([fdo#111614] / [i915#3638]) +1 similar issue
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-7/igt@kms_big_fb@linear-8bpp-rotate-270.html
- shard-tglu: NOTRUN -> [SKIP][142] ([fdo#111614])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-tglu-6/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][143] ([fdo#111614]) +4 similar issues
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-2/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][144] ([fdo#111614]) +1 similar issue
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-4/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-mtlp: NOTRUN -> [DMESG-WARN][145] ([i915#1982])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#5190]) +21 similar issues
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-8/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#4538] / [i915#5190]) +7 similar issues
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-5/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][148] ([i915#4538]) +1 similar issue
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg1-16/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-rkl: NOTRUN -> [SKIP][149] ([fdo#111615])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-3/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
- shard-dg1: NOTRUN -> [SKIP][150] ([fdo#111615])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg1-13/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-rkl: NOTRUN -> [SKIP][151] ([fdo#110723]) +1 similar issue
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-mtlp: NOTRUN -> [SKIP][152] ([fdo#111615]) +6 similar issues
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_joiner@2x-modeset:
- shard-mtlp: NOTRUN -> [SKIP][153] ([i915#2705])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-2/igt@kms_big_joiner@2x-modeset.html
* igt@kms_big_joiner@basic:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#2705])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-2/igt@kms_big_joiner@basic.html
* igt@kms_ccs@pipe-a-bad-aux-stride-yf_tiled_ccs:
- shard-dg1: NOTRUN -> [SKIP][155] ([i915#3689] / [i915#5354] / [i915#6095]) +9 similar issues
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg1-16/igt@kms_ccs@pipe-a-bad-aux-stride-yf_tiled_ccs.html
* igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs:
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#3886] / [i915#5354] / [i915#6095])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-7/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html
- shard-dg1: NOTRUN -> [SKIP][157] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg1-15/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_rc_ccs_cc:
- shard-mtlp: NOTRUN -> [SKIP][158] ([i915#3886] / [i915#6095]) +4 similar issues
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-2/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_ccs:
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#3689] / [i915#5354]) +22 similar issues
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-3/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_ccs.html
* igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc:
- shard-apl: NOTRUN -> [SKIP][160] ([fdo#109271] / [i915#3886]) +3 similar issues
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-apl7/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_dg2_rc_ccs:
- shard-rkl: NOTRUN -> [SKIP][161] ([i915#5354] / [i915#6095]) +9 similar issues
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-1/igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_dg2_rc_ccs.html
* igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs:
- shard-glk: NOTRUN -> [SKIP][162] ([fdo#109271] / [i915#3886])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-glk6/igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_ccs:
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#3734] / [i915#5354] / [i915#6095])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-3/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_ccs.html
* igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs:
- shard-mtlp: NOTRUN -> [SKIP][164] ([i915#6095]) +8 similar issues
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-4/igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs.html
* igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc:
- shard-dg2: NOTRUN -> [SKIP][165] ([i915#3689] / [i915#3886] / [i915#5354]) +10 similar issues
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-2/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_mtl_rc_ccs:
- shard-tglu: NOTRUN -> [SKIP][166] ([i915#5354] / [i915#6095]) +4 similar issues
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-tglu-9/igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_mtl_rc_ccs.html
* igt@kms_ccs@pipe-c-missing-ccs-buffer-4_tiled_mtl_rc_ccs:
- shard-mtlp: [PASS][167] -> [DMESG-WARN][168] ([i915#1982])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-mtlp-4/igt@kms_ccs@pipe-c-missing-ccs-buffer-4_tiled_mtl_rc_ccs.html
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-3/igt@kms_ccs@pipe-c-missing-ccs-buffer-4_tiled_mtl_rc_ccs.html
* igt@kms_ccs@pipe-c-missing-ccs-buffer-4_tiled_mtl_rc_ccs_cc:
- shard-dg1: NOTRUN -> [SKIP][169] ([i915#5354] / [i915#6095]) +10 similar issues
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg1-17/igt@kms_ccs@pipe-c-missing-ccs-buffer-4_tiled_mtl_rc_ccs_cc.html
* igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_mc_ccs:
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#5354]) +13 similar issues
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-6/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_mc_ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#4087] / [i915#7213])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-2/igt@kms_cdclk@mode-transition-all-outputs.html
- shard-rkl: NOTRUN -> [SKIP][172] ([i915#3742])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-3/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2: NOTRUN -> [SKIP][173] ([i915#4087]) +3 similar issues
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-dg2: NOTRUN -> [SKIP][174] ([fdo#111827]) +2 similar issues
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-11/igt@kms_chamelium_color@ctm-0-25.html
- shard-rkl: NOTRUN -> [SKIP][175] ([fdo#111827])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-4/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_color@ctm-max:
- shard-dg1: NOTRUN -> [SKIP][176] ([fdo#111827]) +1 similar issue
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg1-18/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-dg1: NOTRUN -> [SKIP][177] ([i915#7828]) +2 similar issues
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg1-13/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-dg2: NOTRUN -> [SKIP][178] ([i915#7828]) +11 similar issues
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-2/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_chamelium_hpd@dp-hpd-storm:
- shard-rkl: NOTRUN -> [SKIP][179] ([i915#7828]) +3 similar issues
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-storm.html
- shard-tglu: NOTRUN -> [SKIP][180] ([i915#7828]) +1 similar issue
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-tglu-3/igt@kms_chamelium_hpd@dp-hpd-storm.html
* igt@kms_chamelium_hpd@hdmi-hpd:
- shard-mtlp: NOTRUN -> [SKIP][181] ([i915#7828]) +4 similar issues
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-8/igt@kms_chamelium_hpd@hdmi-hpd.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][182] ([i915#7173])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-11/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg2: NOTRUN -> [SKIP][183] ([i915#3299]) +1 similar issue
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-12/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@srm:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#7118]) +1 similar issue
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-5/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#7118] / [i915#7162])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-11/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-tglu: NOTRUN -> [SKIP][186] ([fdo#109279] / [i915#3359])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-tglu-3/igt@kms_cursor_crc@cursor-offscreen-512x170.html
- shard-rkl: NOTRUN -> [SKIP][187] ([fdo#109279] / [i915#3359])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-rkl: NOTRUN -> [SKIP][188] ([i915#3359])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#3359])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-12/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-glk: NOTRUN -> [SKIP][190] ([fdo#109271]) +56 similar issues
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-glk5/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-mtlp: NOTRUN -> [SKIP][191] ([i915#8814])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-5/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-dg1: NOTRUN -> [SKIP][192] ([i915#3359])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg1-17/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-rkl: NOTRUN -> [SKIP][193] ([fdo#111767] / [fdo#111825]) +1 similar issue
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
- shard-tglu: NOTRUN -> [SKIP][194] ([fdo#109274] / [fdo#111767])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-tglu-9/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][195] ([i915#3546]) +1 similar issue
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-3/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-dg1: NOTRUN -> [SKIP][196] ([i915#4103] / [i915#4213]) +1 similar issue
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg1-13/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
- shard-rkl: NOTRUN -> [SKIP][197] ([fdo#111825]) +3 similar issues
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
- shard-tglu: NOTRUN -> [SKIP][198] ([fdo#109274])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-tglu-3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-dg2: NOTRUN -> [SKIP][199] ([fdo#109274] / [i915#5354]) +3 similar issues
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: [PASS][200] -> [FAIL][201] ([i915#2346])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-rkl: NOTRUN -> [SKIP][202] ([i915#4103])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-tglu: NOTRUN -> [SKIP][203] ([i915#4103])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-tglu-10/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#4103] / [i915#4213]) +2 similar issues
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][205] ([i915#3804])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
- shard-dg2: NOTRUN -> [SKIP][206] ([i915#3555]) +10 similar issues
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-2/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
* igt@kms_dsc@dsc-basic:
- shard-dg2: NOTRUN -> [SKIP][207] ([i915#3555] / [i915#3840]) +1 similar issue
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-3/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#3555] / [i915#3840])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-2/igt@kms_dsc@dsc-with-output-formats.html
- shard-tglu: NOTRUN -> [SKIP][209] ([i915#3555] / [i915#3840])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-tglu-3/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: NOTRUN -> [SKIP][210] ([i915#3955])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html
- shard-tglu: NOTRUN -> [SKIP][211] ([i915#3469])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-tglu-4/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-snb: NOTRUN -> [SKIP][212] ([fdo#109271] / [fdo#111767])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-snb2/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][213] ([i915#8381])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-3/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-tglu: NOTRUN -> [SKIP][214] ([fdo#109274] / [fdo#111767] / [i915#3637])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-tglu-2/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-dg2: NOTRUN -> [SKIP][215] ([fdo#109274]) +5 similar issues
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-11/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@2x-plain-flip:
- shard-mtlp: NOTRUN -> [SKIP][216] ([i915#3637]) +3 similar issues
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-8/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a2:
- shard-glk: [PASS][217] -> [FAIL][218] ([i915#79])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-glk9/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a2.html
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-glk6/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a2.html
* igt@kms_flip@flip-vs-fences:
- shard-mtlp: NOTRUN -> [SKIP][219] ([i915#8381])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-1/igt@kms_flip@flip-vs-fences.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][220] ([i915#8810]) +1 similar issue
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#2672]) +5 similar issues
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#2672]) +2 similar issues
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html
- shard-dg1: NOTRUN -> [SKIP][223] ([i915#2587] / [i915#2672]) +1 similar issue
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][224] ([i915#2672]) +1 similar issue
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-mtlp: NOTRUN -> [SKIP][225] ([fdo#109285])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-1/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite:
- shard-dg2: NOTRUN -> [FAIL][226] ([i915#6880]) +1 similar issue
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][227] ([fdo#111825] / [i915#1825]) +17 similar issues
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][228] ([i915#1825]) +9 similar issues
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-rte:
- shard-rkl: NOTRUN -> [SKIP][229] ([i915#3023]) +15 similar issues
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite:
- shard-apl: NOTRUN -> [SKIP][230] ([fdo#109271]) +40 similar issues
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-apl7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#8708]) +33 similar issues
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move:
- shard-tglu: NOTRUN -> [SKIP][232] ([fdo#109280]) +4 similar issues
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-tglu-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#5354]) +64 similar issues
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][234] ([fdo#110189]) +4 similar issues
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-tglu-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render:
- shard-dg1: NOTRUN -> [SKIP][235] ([i915#3458]) +7 similar issues
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][236] ([i915#5460])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][237] ([i915#8708]) +3 similar issues
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][238] ([fdo#111825]) +16 similar issues
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][239] ([i915#8708]) +3 similar issues
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#3458]) +23 similar issues
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg2: NOTRUN -> [SKIP][241] ([i915#3555] / [i915#8228]) +3 similar issues
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-2/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle-suspend:
- shard-rkl: NOTRUN -> [SKIP][242] ([i915#3555] / [i915#8228])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-2/igt@kms_hdr@static-toggle-suspend.html
- shard-tglu: NOTRUN -> [SKIP][243] ([i915#3555] / [i915#8228])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-tglu-4/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-mtlp: NOTRUN -> [SKIP][244] ([i915#4816])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane_lowres@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][245] ([i915#8821])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-3/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_lowres@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#3555] / [i915#8821])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-6/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: NOTRUN -> [SKIP][247] ([i915#6953])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-8/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-dp-4:
- shard-dg2: NOTRUN -> [SKIP][248] ([i915#5176]) +11 similar issues
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-dp-4.html
* igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][249] ([i915#5176]) +1 similar issue
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-1:
- shard-dg1: NOTRUN -> [SKIP][250] ([i915#5176]) +11 similar issues
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg1-19/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1:
- shard-dg1: NOTRUN -> [SKIP][251] ([i915#5235]) +15 similar issues
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-dp-4:
- shard-dg2: NOTRUN -> [SKIP][252] ([i915#5235]) +27 similar issues
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-11/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-dp-4.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][253] ([i915#5235]) +5 similar issues
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_prime@basic-crc-hybrid:
- shard-dg2: NOTRUN -> [SKIP][254] ([i915#6524] / [i915#6805])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-3/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg1: NOTRUN -> [SKIP][255] ([i915#6524])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg1-17/igt@kms_prime@basic-crc-vgem.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf:
- shard-apl: NOTRUN -> [SKIP][256] ([fdo#109271] / [i915#658])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-apl4/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb:
- shard-dg2: NOTRUN -> [SKIP][257] ([i915#658]) +3 similar issues
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html
- shard-rkl: NOTRUN -> [SKIP][258] ([i915#658])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-7/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr@psr2_dpms:
- shard-dg2: NOTRUN -> [SKIP][259] ([i915#1072]) +9 similar issues
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-3/igt@kms_psr@psr2_dpms.html
* igt@kms_psr@psr2_primary_page_flip:
- shard-dg1: NOTRUN -> [SKIP][260] ([i915#1072]) +2 similar issues
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg1-14/igt@kms_psr@psr2_primary_page_flip.html
* igt@kms_psr@sprite_blt:
- shard-rkl: NOTRUN -> [SKIP][261] ([i915#1072]) +2 similar issues
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-4/igt@kms_psr@sprite_blt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg2: NOTRUN -> [SKIP][262] ([i915#5461] / [i915#658])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-mtlp: NOTRUN -> [SKIP][263] ([i915#5289])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-dg2: NOTRUN -> [SKIP][264] ([i915#4235]) +1 similar issue
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-5/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-rkl: NOTRUN -> [SKIP][265] ([i915#3555]) +1 similar issue
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-6/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_selftest@drm_format_helper:
- shard-glk: NOTRUN -> [SKIP][266] ([fdo#109271] / [i915#8661])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-glk3/igt@kms_selftest@drm_format_helper.html
* igt@kms_selftest@framebuffer:
- shard-dg2: NOTRUN -> [SKIP][267] ([i915#8661])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-12/igt@kms_selftest@framebuffer.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2: NOTRUN -> [SKIP][268] ([i915#8623])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-5/igt@kms_tiled_display@basic-test-pattern.html
- shard-rkl: NOTRUN -> [SKIP][269] ([i915#8623])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-2/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tv_load_detect@load-detect:
- shard-snb: NOTRUN -> [SKIP][270] ([fdo#109271]) +95 similar issues
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-snb7/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vblank@pipe-c-wait-idle-hang:
- shard-rkl: NOTRUN -> [SKIP][271] ([i915#4070] / [i915#6768]) +1 similar issue
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-6/igt@kms_vblank@pipe-c-wait-idle-hang.html
* igt@kms_vblank@pipe-d-ts-continuation-idle:
- shard-rkl: NOTRUN -> [SKIP][272] ([i915#4070] / [i915#533] / [i915#6768]) +3 similar issues
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-1/igt@kms_vblank@pipe-d-ts-continuation-idle.html
* igt@kms_vrr@flip-dpms:
- shard-dg1: NOTRUN -> [SKIP][273] ([i915#3555]) +1 similar issue
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg1-17/igt@kms_vrr@flip-dpms.html
- shard-mtlp: NOTRUN -> [SKIP][274] ([i915#8808])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-1/igt@kms_vrr@flip-dpms.html
* igt@kms_writeback@writeback-check-output:
- shard-glk: NOTRUN -> [SKIP][275] ([fdo#109271] / [i915#2437])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-glk7/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-mtlp: NOTRUN -> [SKIP][276] ([i915#2437])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-4/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@enable-disable@0-rcs0:
- shard-dg2: NOTRUN -> [FAIL][277] ([i915#8724])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-11/igt@perf@enable-disable@0-rcs0.html
* igt@perf@global-sseu-config:
- shard-mtlp: NOTRUN -> [SKIP][278] ([i915#7387])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-3/igt@perf@global-sseu-config.html
* igt@perf@global-sseu-config-invalid:
- shard-dg2: NOTRUN -> [SKIP][279] ([i915#7387])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-12/igt@perf@global-sseu-config-invalid.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][280] ([i915#2433])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-3/igt@perf@unprivileged-single-ctx-counters.html
- shard-dg1: NOTRUN -> [SKIP][281] ([fdo#109289] / [i915#2433])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg1-15/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@busy-double-start@ccs3:
- shard-dg2: NOTRUN -> [FAIL][282] ([i915#4349]) +5 similar issues
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-12/igt@perf_pmu@busy-double-start@ccs3.html
* igt@perf_pmu@busy-double-start@vcs1:
- shard-dg1: [PASS][283] -> [FAIL][284] ([i915#4349]) +1 similar issue
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-dg1-16/igt@perf_pmu@busy-double-start@vcs1.html
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg1-16/igt@perf_pmu@busy-double-start@vcs1.html
* igt@perf_pmu@frequency@gt0:
- shard-dg2: NOTRUN -> [FAIL][285] ([i915#6806])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-3/igt@perf_pmu@frequency@gt0.html
* igt@perf_pmu@rc6-all-gts:
- shard-dg2: NOTRUN -> [SKIP][286] ([i915#8516])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-1/igt@perf_pmu@rc6-all-gts.html
* igt@perf_pmu@semaphore-busy@ccs0:
- shard-mtlp: NOTRUN -> [FAIL][287] ([i915#4349])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-2/igt@perf_pmu@semaphore-busy@ccs0.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: NOTRUN -> [INCOMPLETE][288] ([i915#5493])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-8/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
* igt@prime_vgem@basic-write:
- shard-dg2: NOTRUN -> [SKIP][289] ([i915#3291] / [i915#3708]) +1 similar issue
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-8/igt@prime_vgem@basic-write.html
* igt@prime_vgem@coherency-gtt:
- shard-dg2: NOTRUN -> [SKIP][290] ([i915#3708] / [i915#4077])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-12/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-read-hang:
- shard-dg2: NOTRUN -> [SKIP][291] ([i915#3708])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-6/igt@prime_vgem@fence-read-hang.html
* igt@prime_vgem@fence-write-hang:
- shard-mtlp: NOTRUN -> [SKIP][292] ([i915#3708])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-5/igt@prime_vgem@fence-write-hang.html
* igt@sysfs_heartbeat_interval@mixed@ccs0:
- shard-mtlp: [PASS][293] -> [ABORT][294] ([i915#8552])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-mtlp-4/igt@sysfs_heartbeat_interval@mixed@ccs0.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-8/igt@sysfs_heartbeat_interval@mixed@ccs0.html
* igt@sysfs_heartbeat_interval@mixed@vecs0:
- shard-mtlp: [PASS][295] -> [FAIL][296] ([i915#1731])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-mtlp-4/igt@sysfs_heartbeat_interval@mixed@vecs0.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-8/igt@sysfs_heartbeat_interval@mixed@vecs0.html
* igt@sysfs_heartbeat_interval@precise@vecs0:
- shard-mtlp: [PASS][297] -> [FAIL][298] ([i915#8332])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-mtlp-1/igt@sysfs_heartbeat_interval@precise@vecs0.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-3/igt@sysfs_heartbeat_interval@precise@vecs0.html
* igt@sysfs_preempt_timeout@timeout@vecs0:
- shard-mtlp: [PASS][299] -> [ABORT][300] ([i915#8521] / [i915#8865])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-mtlp-5/igt@sysfs_preempt_timeout@timeout@vecs0.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-5/igt@sysfs_preempt_timeout@timeout@vecs0.html
* igt@tools_test@sysfs_l3_parity:
- shard-rkl: NOTRUN -> [SKIP][301] ([fdo#109307])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-3/igt@tools_test@sysfs_l3_parity.html
* igt@v3d/v3d_create_bo@create-bo-zeroed:
- shard-tglu: NOTRUN -> [SKIP][302] ([fdo#109315] / [i915#2575])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-tglu-3/igt@v3d/v3d_create_bo@create-bo-zeroed.html
* igt@v3d/v3d_submit_csd@bad-bo:
- shard-mtlp: NOTRUN -> [SKIP][303] ([i915#2575]) +3 similar issues
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-1/igt@v3d/v3d_submit_csd@bad-bo.html
* igt@v3d/v3d_submit_csd@job-perfmon:
- shard-dg2: NOTRUN -> [SKIP][304] ([i915#2575]) +16 similar issues
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-11/igt@v3d/v3d_submit_csd@job-perfmon.html
* igt@v3d/v3d_submit_csd@valid-multisync-submission:
- shard-rkl: NOTRUN -> [SKIP][305] ([fdo#109315]) +6 similar issues
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-2/igt@v3d/v3d_submit_csd@valid-multisync-submission.html
- shard-dg1: NOTRUN -> [SKIP][306] ([i915#2575]) +5 similar issues
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg1-18/igt@v3d/v3d_submit_csd@valid-multisync-submission.html
* igt@vc4/vc4_mmap@mmap-bad-handle:
- shard-tglu: NOTRUN -> [SKIP][307] ([i915#2575])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-tglu-3/igt@vc4/vc4_mmap@mmap-bad-handle.html
* igt@vc4/vc4_perfmon@get-values-invalid-pointer:
- shard-mtlp: NOTRUN -> [SKIP][308] ([i915#7711]) +2 similar issues
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-8/igt@vc4/vc4_perfmon@get-values-invalid-pointer.html
* igt@vc4/vc4_tiling@set-get:
- shard-dg2: NOTRUN -> [SKIP][309] ([i915#7711]) +8 similar issues
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-1/igt@vc4/vc4_tiling@set-get.html
- shard-rkl: NOTRUN -> [SKIP][310] ([i915#7711]) +4 similar issues
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-1/igt@vc4/vc4_tiling@set-get.html
- shard-dg1: NOTRUN -> [SKIP][311] ([i915#7711]) +3 similar issues
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg1-17/igt@vc4/vc4_tiling@set-get.html
#### Possible fixes ####
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: [ABORT][312] ([i915#7461]) -> [PASS][313]
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-dg2-2/igt@gem_create@create-ext-cpu-access-big.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-8/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_eio@hibernate:
- shard-dg2: [ABORT][314] ([i915#7975] / [i915#8213]) -> [PASS][315]
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-dg2-6/igt@gem_eio@hibernate.html
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-11/igt@gem_eio@hibernate.html
* igt@gem_exec_capture@pi@bcs0:
- shard-mtlp: [FAIL][316] ([i915#4475] / [i915#7765]) -> [PASS][317]
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-mtlp-4/igt@gem_exec_capture@pi@bcs0.html
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-3/igt@gem_exec_capture@pi@bcs0.html
* igt@gem_exec_capture@pi@vcs0:
- shard-mtlp: [FAIL][318] ([i915#4475]) -> [PASS][319]
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-mtlp-4/igt@gem_exec_capture@pi@vcs0.html
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-3/igt@gem_exec_capture@pi@vcs0.html
* igt@gem_exec_fair@basic-deadline:
- shard-glk: [FAIL][320] ([i915#2846]) -> [PASS][321]
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-glk2/igt@gem_exec_fair@basic-deadline.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-glk3/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none@vecs0:
- shard-rkl: [FAIL][322] ([i915#2842]) -> [PASS][323]
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-rkl-6/igt@gem_exec_fair@basic-none@vecs0.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-7/igt@gem_exec_fair@basic-none@vecs0.html
* igt@gem_exec_suspend@basic-s4-devices@lmem0:
- shard-dg1: [ABORT][324] ([i915#7975] / [i915#8213]) -> [PASS][325]
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-dg1-14/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg1-15/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [TIMEOUT][326] ([i915#5493]) -> [PASS][327]
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_spin_batch@legacy@render:
- shard-apl: [FAIL][328] ([i915#2898]) -> [PASS][329]
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-apl2/igt@gem_spin_batch@legacy@render.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-apl3/igt@gem_spin_batch@legacy@render.html
* igt@gem_spin_batch@spin-each:
- shard-mtlp: [DMESG-FAIL][330] ([i915#8962] / [i915#9121]) -> [PASS][331]
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-mtlp-4/igt@gem_spin_batch@spin-each.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-2/igt@gem_spin_batch@spin-each.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: [ABORT][332] ([i915#8489] / [i915#8668]) -> [PASS][333]
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-3/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-idle@vcs0:
- shard-dg1: [FAIL][334] ([i915#3591]) -> [PASS][335]
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
* igt@i915_pm_rpm@dpms-non-lpsp:
- shard-rkl: [SKIP][336] ([i915#1397]) -> [PASS][337] +1 similar issue
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-rkl-7/igt@i915_pm_rpm@dpms-non-lpsp.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-rkl-4/igt@i915_pm_rpm@dpms-non-lpsp.html
* igt@i915_pm_rpm@modeset-lpsp-stress:
- shard-dg1: [SKIP][338] ([i915#1397]) -> [PASS][339]
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-dg1-13/igt@i915_pm_rpm@modeset-lpsp-stress.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg1-19/igt@i915_pm_rpm@modeset-lpsp-stress.html
* igt@i915_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2: [SKIP][340] ([i915#1397]) -> [PASS][341] +1 similar issue
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-dg2-3/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-12/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@i915_pm_rps@reset:
- shard-dg2: [FAIL][342] ([i915#8229]) -> [PASS][343]
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-dg2-5/igt@i915_pm_rps@reset.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-11/igt@i915_pm_rps@reset.html
- shard-dg1: [FAIL][344] ([i915#8229]) -> [PASS][345]
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-dg1-16/igt@i915_pm_rps@reset.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg1-15/igt@i915_pm_rps@reset.html
* igt@i915_suspend@sysfs-reader:
- shard-mtlp: [ABORT][346] ([i915#6311] / [i915#8466]) -> [PASS][347]
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-mtlp-5/igt@i915_suspend@sysfs-reader.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-4/igt@i915_suspend@sysfs-reader.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1:
- shard-mtlp: [FAIL][348] ([i915#2521]) -> [PASS][349]
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-mtlp-2/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-2/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-0:
- shard-mtlp: [DMESG-WARN][350] ([i915#2017]) -> [PASS][351]
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-mtlp-5/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-7/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-mtlp: [DMESG-WARN][352] ([i915#1982]) -> [PASS][353]
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-mtlp: [FAIL][354] ([i915#3743]) -> [PASS][355] +2 similar issues
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-mtlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2:
- shard-glk: [FAIL][356] ([i915#2122]) -> [PASS][357]
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-glk4/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-glk6/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1:
- shard-apl: [ABORT][358] ([i915#180]) -> [PASS][359]
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-apl1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-apl2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html
* igt@kms_plane@pixel-format-source-clamping@pipe-b-planes:
- shard-mtlp: [FAIL][360] ([i915#1623]) -> [PASS][361]
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-mtlp-7/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-3/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html
* igt@perf_pmu@busy-idle@bcs0:
- shard-mtlp: [FAIL][362] ([i915#4349]) -> [PASS][363] +5 similar issues
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-mtlp-4/igt@perf_pmu@busy-idle@bcs0.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-8/igt@perf_pmu@busy-idle@bcs0.html
* igt@perf_pmu@busy-idle@ccs0:
- shard-dg2: [FAIL][364] ([i915#4349]) -> [PASS][365] +3 similar issues
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-dg2-3/igt@perf_pmu@busy-idle@ccs0.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-2/igt@perf_pmu@busy-idle@ccs0.html
* igt@syncobj_timeline@invalid-wait-illegal-handle:
- shard-mtlp: [DMESG-WARN][366] ([i915#2017] / [i915#9157]) -> [PASS][367]
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-mtlp-5/igt@syncobj_timeline@invalid-wait-illegal-handle.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-3/igt@syncobj_timeline@invalid-wait-illegal-handle.html
#### Warnings ####
* igt@gem_exec_suspend@basic-s3@smem:
- shard-snb: [DMESG-WARN][368] ([i915#8841]) -> [DMESG-FAIL][369] ([fdo#103375])
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-snb1/igt@gem_exec_suspend@basic-s3@smem.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-snb7/igt@gem_exec_suspend@basic-s3@smem.html
* igt@i915_pm_rc6_residency@rc6-idle@vcs0:
- shard-tglu: [FAIL][370] ([i915#2681] / [i915#3591]) -> [WARN][371] ([i915#2681])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-tglu-3/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
* igt@kms_content_protection@content_type_change:
- shard-dg2: [SKIP][372] ([i915#7118] / [i915#7162]) -> [SKIP][373] ([i915#7118])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-dg2-11/igt@kms_content_protection@content_type_change.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg2-6/igt@kms_content_protection@content_type_change.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-mtlp: [DMESG-FAIL][374] ([i915#1982] / [i915#2017] / [i915#5954]) -> [DMESG-FAIL][375] ([i915#2017] / [i915#5954])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-mtlp-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-mtlp-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_psr@sprite_plane_onoff:
- shard-dg1: [SKIP][376] ([i915#1072] / [i915#4078]) -> [SKIP][377] ([i915#1072]) +1 similar issue
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13558/shard-dg1-13/igt@kms_psr@sprite_plane_onoff.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/shard-dg1-15/igt@kms_psr@sprite_plane_onoff.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[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#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
[fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[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#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1623]: https://gitlab.freedesktop.org/drm/intel/issues/1623
[i915#1731]: https://gitlab.freedesktop.org/drm/intel/issues/1731
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017
[i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[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#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#2898]: https://gitlab.freedesktop.org/drm/intel/issues/2898
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[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#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
[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#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[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#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
[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#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
[i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473
[i915#4475]: https://gitlab.freedesktop.org/drm/intel/issues/4475
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[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#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122
[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#5251]: https://gitlab.freedesktop.org/drm/intel/issues/5251
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460
[i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882
[i915#5954]: https://gitlab.freedesktop.org/drm/intel/issues/5954
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188
[i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6311]: https://gitlab.freedesktop.org/drm/intel/issues/6311
[i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
[i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805
[i915#6806]: https://gitlab.freedesktop.org/drm/intel/issues/6806
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
[i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069
[i915#7091]: https://gitlab.freedesktop.org/drm/intel/issues/7091
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162
[i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
[i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
[i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387
[i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461
[i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7765]: https://gitlab.freedesktop.org/drm/intel/issues/7765
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7892]: https://gitlab.freedesktop.org/drm/intel/issues/7892
[i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
[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#8229]: https://gitlab.freedesktop.org/drm/intel/issues/8229
[i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289
[i915#8332]: https://gitlab.freedesktop.org/drm/intel/issues/8332
[i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
[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#8466]: https://gitlab.freedesktop.org/drm/intel/issues/8466
[i915#8489]: https://gitlab.freedesktop.org/drm/intel/issues/8489
[i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502
[i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516
[i915#8521]: https://gitlab.freedesktop.org/drm/intel/issues/8521
[i915#8552]: https://gitlab.freedesktop.org/drm/intel/issues/8552
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623
[i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
[i915#8724]: https://gitlab.freedesktop.org/drm/intel/issues/8724
[i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808
[i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821
[i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841
[i915#8865]: https://gitlab.freedesktop.org/drm/intel/issues/8865
[i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925
[i915#8957]: https://gitlab.freedesktop.org/drm/intel/issues/8957
[i915#8962]: https://gitlab.freedesktop.org/drm/intel/issues/8962
[i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067
[i915#9121]: https://gitlab.freedesktop.org/drm/intel/issues/9121
[i915#9157]: https://gitlab.freedesktop.org/drm/intel/issues/9157
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7451 -> IGTPW_9645
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_13558: 2d5f57f6436263ecb456228603356d81173b1ceb @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9645: 9645
IGT_7451: 5d48d1fb231f449fe2f80cda14ea7a1ecfda59fa @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9645/index.html
[-- Attachment #2: Type: text/html, Size: 119877 bytes --]
^ permalink raw reply [flat|nested] 21+ messages in thread
end of thread, other threads:[~2023-08-24 14:15 UTC | newest]
Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-24 5:41 [igt-dev] [i-g-t 00/16] Add tiling support for display tests Bhanuprakash Modem
2023-08-24 5:41 ` [igt-dev] [i-g-t 01/16] lib: Add tiling support for XE Bhanuprakash Modem
2023-08-24 5:41 ` [igt-dev] [i-g-t 02/16] tests/kms_cursor_edge_walk: Fix intel specific checks Bhanuprakash Modem
2023-08-24 5:41 ` [igt-dev] [i-g-t 03/16] tests/kms_getfb: Extended ccs tests to support XE Bhanuprakash Modem
2023-08-24 5:41 ` [igt-dev] [i-g-t 04/16] tests/kms_addfb_basic: Add tiling support for XE Bhanuprakash Modem
2023-08-24 5:41 ` [igt-dev] [i-g-t 05/16] tests/kms_plane: " Bhanuprakash Modem
2023-08-24 5:41 ` [igt-dev] [i-g-t 06/16] tests/kms_plane_lowres: " Bhanuprakash Modem
2023-08-24 5:41 ` [igt-dev] [i-g-t 07/16] tests/kms_plane_scaling: " Bhanuprakash Modem
2023-08-24 5:41 ` [igt-dev] [i-g-t 08/16] tests/kms_rotation_crc: " Bhanuprakash Modem
2023-08-24 5:41 ` [igt-dev] [i-g-t 09/16] tests/i915/kms_big_fb: " Bhanuprakash Modem
2023-08-24 5:41 ` [igt-dev] [i-g-t 10/16] tests/i915/kms_draw_crc: " Bhanuprakash Modem
2023-08-24 5:41 ` [igt-dev] [i-g-t 11/16] tests/i915/kms_flip_scaled_crc: " Bhanuprakash Modem
2023-08-24 5:41 ` [igt-dev] [i-g-t 12/16] tests/i915/kms_flip_tiling: " Bhanuprakash Modem
2023-08-24 5:41 ` [igt-dev] [i-g-t 13/16] tests/intel-ci: Drop tiling tests from xe blocklist Bhanuprakash Modem
2023-08-24 5:41 ` [igt-dev] [i-g-t 14/16] tests/intel-ci: Update Xe BAT & blocklist for kms FBT Bhanuprakash Modem
2023-08-24 5:41 ` [igt-dev] [i-g-t 15/16] tests/intel-ci: Add tiling tests to XE BAT Bhanuprakash Modem
2023-08-24 5:41 ` [igt-dev] [i-g-t 16/16] HAX: Run tiling tests in XE fast-feedback Bhanuprakash Modem
2023-08-24 6:03 ` [igt-dev] ✗ GitLab.Pipeline: warning for Add tiling support for display tests Patchwork
2023-08-24 6:22 ` [igt-dev] ✗ CI.xeBAT: failure " Patchwork
2023-08-24 6:30 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2023-08-24 14:15 ` [igt-dev] ✗ 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