* [PATCH i-g-t,v6 0/4] Add dsc+bigjoiner subtest
@ 2026-04-30 19:09 Swati Sharma
2026-04-30 19:09 ` [PATCH i-g-t, v6 1/4] tests/intel/kms_joiner_helper: Add igt_get_joined_pipes_name() Swati Sharma
` (7 more replies)
0 siblings, 8 replies; 13+ messages in thread
From: Swati Sharma @ 2026-04-30 19:09 UTC (permalink / raw)
To: igt-dev; +Cc: Swati Sharma
New subtest is added to validate dsc + big/ultra joiner use cases.
Swati Sharma (4):
tests/intel/kms_joiner_helper: Add igt_get_joined_pipes_name()
tests/kms_joiner_helper: Add igt_is_joiner_supported_by_source()
tests/intel/kms_dsc_helper: Add helper func()
tests/intel/kms_dsc: Add force dsc and joiner test cases
tests/intel/kms_dsc.c | 203 +++++++++++++++++++++-----------
tests/intel/kms_dsc_helper.c | 54 +++++++++
tests/intel/kms_dsc_helper.h | 3 +
tests/intel/kms_joiner.c | 8 +-
tests/intel/kms_joiner_helper.c | 55 +++++++++
tests/intel/kms_joiner_helper.h | 3 +
tests/meson.build | 17 ++-
7 files changed, 259 insertions(+), 84 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH i-g-t, v6 1/4] tests/intel/kms_joiner_helper: Add igt_get_joined_pipes_name()
2026-04-30 19:09 [PATCH i-g-t,v6 0/4] Add dsc+bigjoiner subtest Swati Sharma
@ 2026-04-30 19:09 ` Swati Sharma
2026-05-15 6:06 ` Karthik B S
2026-04-30 19:09 ` [PATCH i-g-t, v6 2/4] tests/kms_joiner_helper: Add igt_is_joiner_supported_by_source() Swati Sharma
` (6 subsequent siblings)
7 siblings, 1 reply; 13+ messages in thread
From: Swati Sharma @ 2026-04-30 19:09 UTC (permalink / raw)
To: igt-dev; +Cc: Swati Sharma
Add function to transform the enum into a string.
v2: -Improved func() doc (Jeevan)
v3: -Return names without '-' dash prefix (Santhosh)
v4: -Move from lib/igt_kms to tests/intel/kms_joiner_helper (Jani)
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
---
tests/intel/kms_joiner_helper.c | 22 ++++++++++++++++++++++
tests/intel/kms_joiner_helper.h | 1 +
2 files changed, 23 insertions(+)
diff --git a/tests/intel/kms_joiner_helper.c b/tests/intel/kms_joiner_helper.c
index e24d7ce94..0aa409ac2 100644
--- a/tests/intel/kms_joiner_helper.c
+++ b/tests/intel/kms_joiner_helper.c
@@ -183,3 +183,25 @@ bool igt_assign_pipes_for_outputs(int drm_fd,
}
return true;
}
+
+/**
+ * igt_get_joined_pipes_name:
+ * @val: joined_pipes enum value
+ *
+ * Returns: A readable string for the given joined_pipes enum value.
+ */
+const char *igt_get_joined_pipes_name(enum joined_pipes val)
+{
+ switch (val) {
+ case JOINED_PIPES_DEFAULT:
+ return "";
+ case JOINED_PIPES_NONE:
+ return "none";
+ case JOINED_PIPES_BIG_JOINER:
+ return "bigjoiner";
+ case JOINED_PIPES_ULTRA_JOINER:
+ return "ultrajoiner";
+ default:
+ igt_assert(false);
+ }
+}
diff --git a/tests/intel/kms_joiner_helper.h b/tests/intel/kms_joiner_helper.h
index 6d21e7eb0..1ea871a3b 100644
--- a/tests/intel/kms_joiner_helper.h
+++ b/tests/intel/kms_joiner_helper.h
@@ -17,6 +17,7 @@ bool igt_assign_pipes_for_outputs(int drm_fd,
uint32_t *used_pipes_mask,
uint32_t master_pipes_mask,
uint32_t valid_pipes_mask);
+const char *igt_get_joined_pipes_name(enum joined_pipes val);
enum force_joiner_mode {
FORCE_JOINER_ENABLE = 0,
--
2.25.1
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH i-g-t, v6 2/4] tests/kms_joiner_helper: Add igt_is_joiner_supported_by_source()
2026-04-30 19:09 [PATCH i-g-t,v6 0/4] Add dsc+bigjoiner subtest Swati Sharma
2026-04-30 19:09 ` [PATCH i-g-t, v6 1/4] tests/intel/kms_joiner_helper: Add igt_get_joined_pipes_name() Swati Sharma
@ 2026-04-30 19:09 ` Swati Sharma
2026-05-15 6:18 ` Karthik B S
2026-04-30 19:09 ` [PATCH i-g-t,v6 3/4] tests/intel/kms_dsc_helper: Add helper func() Swati Sharma
` (5 subsequent siblings)
7 siblings, 1 reply; 13+ messages in thread
From: Swati Sharma @ 2026-04-30 19:09 UTC (permalink / raw)
To: igt-dev; +Cc: Swati Sharma
Add func() returning true/false if platform supports big/ultra
joiner and use corresponding func() in related binaries.
v2: -Moved func() to joiner_helper (Jeevan)
-Use common func for ultra|big joiner (Ankit)
v3: -Rename param type to joiner_type (Ankit)
-Fix ultra joiner condition logic (Karthik, Ankit)
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
---
tests/intel/kms_joiner.c | 8 ++------
tests/intel/kms_joiner_helper.c | 33 +++++++++++++++++++++++++++++++++
tests/intel/kms_joiner_helper.h | 2 ++
3 files changed, 37 insertions(+), 6 deletions(-)
diff --git a/tests/intel/kms_joiner.c b/tests/intel/kms_joiner.c
index 86226a3ba..2cd0d7276 100644
--- a/tests/intel/kms_joiner.c
+++ b/tests/intel/kms_joiner.c
@@ -33,7 +33,6 @@
*/
#include "igt.h"
-#include "xe/xe_query.h"
#include "kms_dsc_helper.c"
#include "kms_joiner_helper.h"
@@ -619,9 +618,8 @@ static void test_basic_max_non_joiner(data_t *data)
int igt_main()
{
- bool is_dgfx;
igt_crtc_t *crtc;
- int j, display_ver;
+ int j;
igt_output_t *output;
drmModeModeInfo mode;
data_t data;
@@ -644,9 +642,7 @@ int igt_main()
igt_require(data.display.is_atomic);
max_dotclock = igt_get_max_dotclock(data.drm_fd);
- is_dgfx = is_xe_device(data.drm_fd) ? xe_has_vram(data.drm_fd) : gem_has_lmem(data.drm_fd);
- display_ver = intel_display_ver(intel_get_drm_devid(data.drm_fd));
- if (is_dgfx && display_ver == 14)
+ if (igt_is_joiner_supported_by_source(data.drm_fd, JOINED_PIPES_ULTRA_JOINER))
data.ultra_joiner_supported = true;
for_each_connected_output(&data.display, output) {
diff --git a/tests/intel/kms_joiner_helper.c b/tests/intel/kms_joiner_helper.c
index 0aa409ac2..d51aa77e5 100644
--- a/tests/intel/kms_joiner_helper.c
+++ b/tests/intel/kms_joiner_helper.c
@@ -184,6 +184,39 @@ bool igt_assign_pipes_for_outputs(int drm_fd,
return true;
}
+/**
+ * igt_is_joiner_supported_by_source:
+ * @drm_fd: drm file descriptor
+ * @joiner_type: joiner type
+ *
+ * Returns: True if (ultra|big)joiner is supported by platform, false otherwise
+ */
+bool igt_is_joiner_supported_by_source(int drm_fd, enum joined_pipes joiner_type)
+{
+ int disp_ver;
+ bool is_dgfx;
+
+ is_dgfx = is_xe_device(drm_fd) ? xe_has_vram(drm_fd) : gem_has_lmem(drm_fd);
+ disp_ver = intel_display_ver(intel_get_drm_devid(drm_fd));
+
+ switch (joiner_type) {
+ case JOINED_PIPES_BIG_JOINER:
+ if (disp_ver < 12) {
+ igt_info("Bigjoiner is not supported on D11 and older platforms.\n");
+ return false;
+ }
+ return true;
+ case JOINED_PIPES_ULTRA_JOINER:
+ if (!is_dgfx || disp_ver != 14) {
+ igt_info("Ultrajoiner is supported on dgfx with D14 only.\n");
+ return false;
+ }
+ return true;
+ default:
+ return false;
+ }
+}
+
/**
* igt_get_joined_pipes_name:
* @val: joined_pipes enum value
diff --git a/tests/intel/kms_joiner_helper.h b/tests/intel/kms_joiner_helper.h
index 1ea871a3b..7ede624c6 100644
--- a/tests/intel/kms_joiner_helper.h
+++ b/tests/intel/kms_joiner_helper.h
@@ -7,6 +7,7 @@
#define KMS_JOINER_HELPER_H
#include "igt_kms.h"
+#include "xe/xe_query.h"
void igt_set_all_master_pipes_for_platform(igt_display_t *display,
uint32_t *master_pipes);
@@ -17,6 +18,7 @@ bool igt_assign_pipes_for_outputs(int drm_fd,
uint32_t *used_pipes_mask,
uint32_t master_pipes_mask,
uint32_t valid_pipes_mask);
+bool igt_is_joiner_supported_by_source(int drm_fd, enum joined_pipes joiner_type);
const char *igt_get_joined_pipes_name(enum joined_pipes val);
enum force_joiner_mode {
--
2.25.1
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH i-g-t,v6 3/4] tests/intel/kms_dsc_helper: Add helper func()
2026-04-30 19:09 [PATCH i-g-t,v6 0/4] Add dsc+bigjoiner subtest Swati Sharma
2026-04-30 19:09 ` [PATCH i-g-t, v6 1/4] tests/intel/kms_joiner_helper: Add igt_get_joined_pipes_name() Swati Sharma
2026-04-30 19:09 ` [PATCH i-g-t, v6 2/4] tests/kms_joiner_helper: Add igt_is_joiner_supported_by_source() Swati Sharma
@ 2026-04-30 19:09 ` Swati Sharma
2026-05-15 8:36 ` Karthik B S
2026-04-30 19:09 ` [PATCH i-g-t, v6 4/4] tests/intel/kms_dsc: Add force dsc and joiner test cases Swati Sharma
` (4 subsequent siblings)
7 siblings, 1 reply; 13+ messages in thread
From: Swati Sharma @ 2026-04-30 19:09 UTC (permalink / raw)
To: igt-dev; +Cc: Swati Sharma
Introduce check_dsc_joiner_constraints() to validate minimum pipe
count, DSC slice requirements, and joiner support for DSC joiner
scenarios.
Update meson.build to link kms_joiner_helper.c into DSC-related
tests so the new helper can call igt_is_joiner_supported_by_source().
v2: -Avoid hardcoding min_pipes/min_slices, use enum values (Santhosh)
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
---
tests/intel/kms_dsc_helper.c | 54 ++++++++++++++++++++++++++++++++++++
tests/intel/kms_dsc_helper.h | 3 ++
tests/meson.build | 17 ++++++++----
3 files changed, 68 insertions(+), 6 deletions(-)
diff --git a/tests/intel/kms_dsc_helper.c b/tests/intel/kms_dsc_helper.c
index 29b998c2f..63170af1e 100644
--- a/tests/intel/kms_dsc_helper.c
+++ b/tests/intel/kms_dsc_helper.c
@@ -203,3 +203,57 @@ bool is_dsc_fractional_bpp_supported(int disp_ver, int drmfd, igt_output_t *outp
return true;
}
+
+bool check_dsc_joiner_constraints(int drm_fd,
+ igt_output_t *output,
+ int num_pipes,
+ enum joined_pipes type)
+{
+ int min_pipes = 0, min_slices = 0;
+
+ if (!igt_is_joiner_supported_by_source(drm_fd, type))
+ return false;
+
+ /*
+ * For joiner, 2 slices per pipe is used
+ * i.e. min_slices = 2 * min_pipes
+ */
+ switch (type) {
+ case JOINED_PIPES_BIG_JOINER:
+ min_pipes = JOINED_PIPES_BIG_JOINER;
+ min_slices = min_pipes * 2;
+ break;
+ case JOINED_PIPES_ULTRA_JOINER:
+ min_pipes = JOINED_PIPES_ULTRA_JOINER;
+ min_slices = min_pipes * 2;
+ break;
+ case JOINED_PIPES_NONE:
+ case JOINED_PIPES_DEFAULT:
+ default:
+ igt_info("Unsupported joiner type: %s\n",
+ igt_get_joined_pipes_name(type));
+ return false;
+ }
+
+ if (num_pipes < min_pipes) {
+ igt_info("%s requires minimum %d pipes\n",
+ igt_get_joined_pipes_name(type), min_pipes);
+ return false;
+ }
+
+ if (igt_get_dsc_sink_max_slice_count(drm_fd, output->name) < min_slices) {
+ igt_info("Output %s doesn't support minimum %d slice count for %s\n",
+ igt_output_name(output), min_slices,
+ igt_get_joined_pipes_name(type));
+ return false;
+ }
+
+ if (!igt_has_force_joiner_debugfs(drm_fd, output->name)) {
+ igt_info("Output %s doesn't support force_joiner debugfs for %s\n",
+ igt_output_name(output),
+ igt_get_joined_pipes_name(type));
+ return false;
+ }
+
+ return true;
+}
diff --git a/tests/intel/kms_dsc_helper.h b/tests/intel/kms_dsc_helper.h
index ee419c849..e4c970447 100644
--- a/tests/intel/kms_dsc_helper.h
+++ b/tests/intel/kms_dsc_helper.h
@@ -8,6 +8,7 @@
#include "igt.h"
#include "igt_sysfs.h"
+#include "kms_joiner_helper.h"
#include <errno.h>
#include <getopt.h>
#include <math.h>
@@ -39,5 +40,7 @@ void force_dsc_fractional_bpp_enable(int drmfd, igt_output_t *output);
void save_force_dsc_fractional_bpp_en(int drmfd, igt_output_t *output);
void restore_force_dsc_fractional_bpp_en(void);
bool is_dsc_fractional_bpp_supported(int disp_ver, int drmfd, igt_output_t *output);
+bool check_dsc_joiner_constraints(int drm_fd, igt_output_t *output, int num_pipes,
+ enum joined_pipes type);
#endif
diff --git a/tests/meson.build b/tests/meson.build
index 60cea3aa8..38a42bda6 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -399,14 +399,19 @@ extra_sources = {
'kms_chamelium_hpd': [ join_paths ('chamelium', 'kms_chamelium_helper.c') ],
'kms_chamelium_sharpness_filter': [ join_paths ('chamelium', 'kms_chamelium_helper.c') ],
'kms_dp_linktrain_fallback': [
- join_paths ('intel', 'kms_mst_helper.c'),
- join_paths ('intel', 'kms_dsc_helper.c') ],
+ join_paths ('intel', 'kms_mst_helper.c'),
+ join_paths ('intel', 'kms_dsc_helper.c'),
+ join_paths ('intel', 'kms_joiner_helper.c') ],
'kms_dp_link_training': [
- join_paths ('intel', 'kms_mst_helper.c'),
- join_paths ('intel', 'kms_joiner_helper.c') ],
- 'kms_dsc': [ join_paths ('intel', 'kms_dsc_helper.c') ],
+ join_paths ('intel', 'kms_mst_helper.c'),
+ join_paths ('intel', 'kms_joiner_helper.c') ],
+ 'kms_dsc': [
+ join_paths ('intel', 'kms_dsc_helper.c'),
+ join_paths ('intel', 'kms_joiner_helper.c') ],
'kms_joiner': [ join_paths ('intel', 'kms_joiner_helper.c') ],
- 'kms_psr2_sf': [ join_paths ('intel', 'kms_dsc_helper.c') ],
+ 'kms_psr2_sf': [
+ join_paths ('intel', 'kms_dsc_helper.c'),
+ join_paths ('intel', 'kms_joiner_helper.c') ],
}
# Extra dependencies used on core and Intel drivers
--
2.25.1
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH i-g-t, v6 4/4] tests/intel/kms_dsc: Add force dsc and joiner test cases
2026-04-30 19:09 [PATCH i-g-t,v6 0/4] Add dsc+bigjoiner subtest Swati Sharma
` (2 preceding siblings ...)
2026-04-30 19:09 ` [PATCH i-g-t,v6 3/4] tests/intel/kms_dsc_helper: Add helper func() Swati Sharma
@ 2026-04-30 19:09 ` Swati Sharma
2026-05-15 8:42 ` Karthik B S
2026-04-30 20:34 ` ✓ Xe.CI.BAT: success for Add dsc+bigjoiner subtest (rev8) Patchwork
` (3 subsequent siblings)
7 siblings, 1 reply; 13+ messages in thread
From: Swati Sharma @ 2026-04-30 19:09 UTC (permalink / raw)
To: igt-dev; +Cc: Swati Sharma
Add test cases where we are validating force dsc and force
joiner.
v2: -fix if() for ultra/big joiner (Ankit)
v3: -Add '-' separator in subtest names when using
igt_get_joined_pipes_name (Santhosh)
v4: -Use 'enum joined_pipes force_joined_pipes' in data_t (Ankit)
-Use dsc-basic-%s format for subtest names (Ankit)
-Use igt_crtc_for_pipe() to check consecutive HW pipes,
handling fused pipe holes properly (Ankit)
v5: -Use igt_display_n_crtcs() instead of open-coded
for_each_crtc counting loop (Jani)
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
---
tests/intel/kms_dsc.c | 203 +++++++++++++++++++++++++++---------------
1 file changed, 131 insertions(+), 72 deletions(-)
diff --git a/tests/intel/kms_dsc.c b/tests/intel/kms_dsc.c
index 69f335da3..9a19de1c4 100644
--- a/tests/intel/kms_dsc.c
+++ b/tests/intel/kms_dsc.c
@@ -55,7 +55,27 @@
* @with-output-formats-with-bpc: DSC with output formats with certain input BPC for the connector
* @fractional-bpp: DSC with fractional bpp with default parameters
* @fractional-bpp-with-bpc: DSC with fractional bpp with certain input BPC for the connector
- */
+ *
+ * SUBTEST: dsc-%s-%s
+ * Description: Tests Display Stream Compression functionality if supported by a
+ * connector by forcing %arg[1] and %arg[2] on all connectors that support it
+ *
+ * arg[1]:
+ *
+ * @basic: DSC with default parameters
+ * @with-bpc: DSC with certain input BPC for the connector
+ * @with-bpc-formats: DSC with certain input BPC for the connector and diff formats
+ * @with-formats: DSC with default parameters and creating fb with diff formats
+ * @with-output-formats: DSC with output formats
+ * @with-output-formats-with-bpc: DSC with output formats with certain input BPC for the connector
+ * @fractional-bpp: DSC with fractional bpp with default parameters
+ * @fractional-bpp-with-bpc: DSC with fractional bpp with certain input BPC for the connector
+ *
+ * arg[2]:
+ *
+ * @bigjoiner: big joiner
+ * @ultrajoiner: ultra joiner
+*/
IGT_TEST_DESCRIPTION("Test to validate display stream compression");
@@ -81,11 +101,13 @@ typedef struct {
int disp_ver;
igt_crtc_t *crtc;
bool limited;
+ enum joined_pipes force_joined_pipes;
} data_t;
static int output_format_list[] = {DSC_FORMAT_YCBCR420, DSC_FORMAT_YCBCR444};
static int format_list[] = {DRM_FORMAT_XYUV8888, DRM_FORMAT_XRGB2101010, DRM_FORMAT_XRGB16161616F, DRM_FORMAT_YUYV};
static uint32_t bpc_list[] = {8, 10, 12};
+static enum joined_pipes joiner_tests[] = {JOINED_PIPES_DEFAULT, JOINED_PIPES_BIG_JOINER, JOINED_PIPES_ULTRA_JOINER};
static inline void manual(const char *expected)
{
@@ -135,6 +157,7 @@ static void update_display(data_t *data, uint32_t test_type)
int current_bpc = 0;
igt_plane_t *primary;
drmModeModeInfo *mode;
+ bool status;
igt_output_t *output = data->output;
igt_display_t *display = &data->display;
drmModeConnector *connector = output->config.connector;
@@ -147,6 +170,11 @@ static void update_display(data_t *data, uint32_t test_type)
save_force_dsc_en(data->drm_fd, data->output);
force_dsc_enable(data->drm_fd, data->output);
+ if (data->force_joined_pipes == JOINED_PIPES_BIG_JOINER || data->force_joined_pipes == JOINED_PIPES_ULTRA_JOINER) {
+ status = kmstest_force_connector_joiner(data->drm_fd, connector, data->force_joined_pipes);
+ igt_assert_f(status, "Failed to toggle force joiner\n");
+ }
+
if (test_type & TEST_DSC_BPC) {
igt_debug("Trying to set input BPC to %d\n", data->input_bpc);
force_dsc_enable_bpc(data->drm_fd, data->output, data->input_bpc);
@@ -246,11 +274,13 @@ reset:
static void test_dsc(data_t *data, uint32_t test_type, int bpc,
unsigned int plane_format,
- enum dsc_output_format output_format)
+ enum dsc_output_format output_format,
+ enum joined_pipes joined_pipes)
{
igt_display_t *display = &data->display;
igt_output_t *output;
igt_crtc_t *crtc;
+ int n_pipes = igt_display_n_crtcs(display);
char name[3][LEN] = {
{0},
{0},
@@ -259,12 +289,17 @@ static void test_dsc(data_t *data, uint32_t test_type, int bpc,
igt_require(check_gen11_bpc_constraint(data->drm_fd, data->input_bpc));
+ if (joined_pipes != JOINED_PIPES_DEFAULT &&
+ !igt_is_joiner_supported_by_source(data->drm_fd, joined_pipes))
+ return;
+
for_each_crtc_with_valid_output(display, crtc, output) {
data->output_format = output_format;
data->plane_format = plane_format;
data->input_bpc = bpc;
data->output = output;
data->crtc = crtc;
+ data->force_joined_pipes = joined_pipes;
if (!is_dsc_supported_by_sink(data->drm_fd, data->output) ||
!check_gen11_dp_constraint(data->drm_fd, data->output, data->crtc))
@@ -285,6 +320,26 @@ static void test_dsc(data_t *data, uint32_t test_type, int bpc,
data->drm_fd, data->output)))
continue;
+ /*
+ * Check joiner constraints and verify that we have
+ * enough consecutive HW pipes starting from this crtc.
+ * Use igt_crtc_for_pipe() to handle fused pipe holes.
+ */
+ if (joined_pipes != JOINED_PIPES_DEFAULT &&
+ !check_dsc_joiner_constraints(data->drm_fd, data->output,
+ n_pipes, joined_pipes))
+ continue;
+
+ if (joined_pipes == JOINED_PIPES_BIG_JOINER &&
+ !igt_crtc_for_pipe(display, crtc->pipe + 1))
+ continue;
+
+ if (joined_pipes == JOINED_PIPES_ULTRA_JOINER &&
+ (!igt_crtc_for_pipe(display, crtc->pipe + 1) ||
+ !igt_crtc_for_pipe(display, crtc->pipe + 2) ||
+ !igt_crtc_for_pipe(display, crtc->pipe + 3)))
+ continue;
+
if (test_type & TEST_DSC_OUTPUT_FORMAT)
snprintf(&name[0][0], LEN, "-%s", kmstest_dsc_output_format_str(data->output_format));
if (test_type & TEST_DSC_FORMAT)
@@ -334,85 +389,89 @@ int igt_main_args("l", NULL, help_str, opt_handler, &data)
igt_require(is_dsc_supported_by_source(data.drm_fd));
}
- igt_describe("Tests basic display stream compression functionality if supported "
- "by a connector by forcing DSC on all connectors that support it "
- "with default parameters");
- igt_subtest_with_dynamic("dsc-basic")
- test_dsc(&data, TEST_DSC_BASIC, DEFAULT_BPC,
- DRM_FORMAT_XRGB8888, DSC_FORMAT_RGB);
-
- igt_describe("Tests basic display stream compression functionality if supported "
- "by a connector by forcing DSC on all connectors that support it "
- "with default parameters and creating fb with diff formats");
- igt_subtest_with_dynamic("dsc-with-formats") {
- for (int k = 0; k < ARRAY_SIZE(format_list); k++)
- test_dsc(&data, TEST_DSC_FORMAT, DEFAULT_BPC,
- format_list[k], DSC_FORMAT_RGB);
- }
- igt_describe("Tests basic display stream compression functionality if supported "
- "by a connector by forcing DSC on all connectors that support it "
- "with certain input BPC for the connector");
- igt_subtest_with_dynamic("dsc-with-bpc") {
- for (int j = 0; j < ARRAY_SIZE(bpc_list); j++)
- test_dsc(&data, TEST_DSC_BPC, bpc_list[j],
- DRM_FORMAT_XRGB8888, DSC_FORMAT_RGB);
- }
+ for (int i = 0; i < ARRAY_SIZE(joiner_tests) ; i++) {
+ igt_describe("Tests basic display stream compression functionality if supported "
+ "by a connector by forcing DSC on all connectors that support it "
+ "with default parameters");
+ igt_subtest_with_dynamic_f("dsc-basic%s%s", joiner_tests[i] ? "-" : "", igt_get_joined_pipes_name(joiner_tests[i])) {
+ test_dsc(&data, TEST_DSC_BASIC, DEFAULT_BPC,
+ DRM_FORMAT_XRGB8888, DSC_FORMAT_RGB, joiner_tests[i]);
+ }
- igt_describe("Tests basic display stream compression functionality if supported "
- "by a connector by forcing DSC on all connectors that support it "
- "with certain input BPC for the connector with diff formats");
- igt_subtest_with_dynamic("dsc-with-bpc-formats") {
- for (int j = 0; j < ARRAY_SIZE(bpc_list); j++) {
- for (int k = 0; k < ARRAY_SIZE(format_list); k++) {
- test_dsc(&data, TEST_DSC_BPC | TEST_DSC_FORMAT,
- bpc_list[j], format_list[k],
- DSC_FORMAT_RGB);
- }
+ igt_describe("Tests basic display stream compression functionality if supported "
+ "by a connector by forcing DSC on all connectors that support it "
+ "with default parameters and creating fb with diff formats");
+ igt_subtest_with_dynamic_f("dsc-with-formats%s%s", joiner_tests[i] ? "-" : "", igt_get_joined_pipes_name(joiner_tests[i])) {
+ for (int k = 0; k < ARRAY_SIZE(format_list); k++)
+ test_dsc(&data, TEST_DSC_FORMAT, DEFAULT_BPC,
+ format_list[k], DSC_FORMAT_RGB, joiner_tests[i]);
}
- }
- igt_describe("Tests basic display stream compression functionality if supported "
- "by a connector by forcing DSC and output format on all connectors "
- "that support it");
- igt_subtest_with_dynamic("dsc-with-output-formats") {
- for (int k = 0; k < ARRAY_SIZE(output_format_list); k++)
- test_dsc(&data, TEST_DSC_OUTPUT_FORMAT, DEFAULT_BPC,
- DRM_FORMAT_XRGB8888,
- output_format_list[k]);
- }
+ igt_describe("Tests basic display stream compression functionality if supported "
+ "by a connector by forcing DSC on all connectors that support it "
+ "with certain input BPC for the connector");
+ igt_subtest_with_dynamic_f("dsc-with-bpc%s%s", joiner_tests[i] ? "-" : "", igt_get_joined_pipes_name(joiner_tests[i])) {
+ for (int j = 0; j < ARRAY_SIZE(bpc_list); j++)
+ test_dsc(&data, TEST_DSC_BPC, bpc_list[j],
+ DRM_FORMAT_XRGB8888, DSC_FORMAT_RGB, joiner_tests[i]);
+ }
- igt_describe("Tests basic display stream compression functionality if supported "
- "by a connector by forcing DSC and output format on all connectors "
- "that support it with certain input BPC for the connector");
- igt_subtest_with_dynamic("dsc-with-output-formats-with-bpc") {
- for (int k = 0; k < ARRAY_SIZE(output_format_list); k++) {
+ igt_describe("Tests basic display stream compression functionality if supported "
+ "by a connector by forcing DSC on all connectors that support it "
+ "with certain input BPC for the connector with diff formats");
+ igt_subtest_with_dynamic_f("dsc-with-bpc-formats%s%s", joiner_tests[i] ? "-" : "", igt_get_joined_pipes_name(joiner_tests[i])) {
for (int j = 0; j < ARRAY_SIZE(bpc_list); j++) {
- test_dsc(&data, TEST_DSC_OUTPUT_FORMAT | TEST_DSC_BPC,
- bpc_list[j], DRM_FORMAT_XRGB8888,
- output_format_list[k]);
+ for (int k = 0; k < ARRAY_SIZE(format_list); k++) {
+ test_dsc(&data, TEST_DSC_BPC | TEST_DSC_FORMAT,
+ bpc_list[j], format_list[k],
+ DSC_FORMAT_RGB, joiner_tests[i]);
+ }
}
}
- }
- igt_describe("Tests fractional compressed bpp functionality if supported "
- "by a connector by forcing fractional_bpp on all connectors that support it "
- "with default parameter. While finding the optimum compressed bpp, driver will "
- "skip over the compressed bpps with integer values. It will go ahead with DSC, "
- "iff compressed bpp is fractional, failing in which, it will fail the commit.");
- igt_subtest_with_dynamic("dsc-fractional-bpp")
- test_dsc(&data, TEST_DSC_FRACTIONAL_BPP,
- DEFAULT_BPC, DRM_FORMAT_XRGB8888,
- DSC_FORMAT_RGB);
-
- igt_describe("Tests fractional compressed bpp functionality if supported "
- "by a connector by forcing fractional_bpp on all connectors that support it "
- "with certain input BPC for the connector.");
- igt_subtest_with_dynamic("dsc-fractional-bpp-with-bpc") {
- for (int j = 0; j < ARRAY_SIZE(bpc_list); j++)
- test_dsc(&data, TEST_DSC_FRACTIONAL_BPP | TEST_DSC_BPC,
- bpc_list[j], DRM_FORMAT_XRGB8888,
- DSC_FORMAT_RGB);
+ igt_describe("Tests basic display stream compression functionality if supported "
+ "by a connector by forcing DSC and output format on all connectors "
+ "that support it");
+ igt_subtest_with_dynamic_f("dsc-with-output-formats%s%s", joiner_tests[i] ? "-" : "", igt_get_joined_pipes_name(joiner_tests[i])) {
+ for (int k = 0; k < ARRAY_SIZE(output_format_list); k++)
+ test_dsc(&data, TEST_DSC_OUTPUT_FORMAT, DEFAULT_BPC,
+ DRM_FORMAT_XRGB8888,
+ output_format_list[k], joiner_tests[i]);
+ }
+
+ igt_describe("Tests basic display stream compression functionality if supported "
+ "by a connector by forcing DSC and output format on all connectors "
+ "that support it with certain input BPC for the connector");
+ igt_subtest_with_dynamic_f("dsc-with-output-formats-with-bpc%s%s", joiner_tests[i] ? "-" : "", igt_get_joined_pipes_name(joiner_tests[i])) {
+ for (int k = 0; k < ARRAY_SIZE(output_format_list); k++) {
+ for (int j = 0; j < ARRAY_SIZE(bpc_list); j++) {
+ test_dsc(&data, TEST_DSC_OUTPUT_FORMAT | TEST_DSC_BPC,
+ bpc_list[j], DRM_FORMAT_XRGB8888,
+ output_format_list[k], joiner_tests[i]);
+ }
+ }
+ }
+
+ igt_describe("Tests fractional compressed bpp functionality if supported "
+ "by a connector by forcing fractional_bpp on all connectors that support it "
+ "with default parameter. While finding the optimum compressed bpp, driver will "
+ "skip over the compressed bpps with integer values. It will go ahead with DSC, "
+ "iff compressed bpp is fractional, failing in which, it will fail the commit.");
+ igt_subtest_with_dynamic_f("dsc-fractional-bpp%s%s", joiner_tests[i] ? "-" : "", igt_get_joined_pipes_name(joiner_tests[i]))
+ test_dsc(&data, TEST_DSC_FRACTIONAL_BPP,
+ DEFAULT_BPC, DRM_FORMAT_XRGB8888,
+ DSC_FORMAT_RGB, joiner_tests[i]);
+
+ igt_describe("Tests fractional compressed bpp functionality if supported "
+ "by a connector by forcing fractional_bpp on all connectors that support it "
+ "with certain input BPC for the connector.");
+ igt_subtest_with_dynamic_f("dsc-fractional-bpp-with-bpc%s%s", joiner_tests[i] ? "-" : "", igt_get_joined_pipes_name(joiner_tests[i])) {
+ for (int j = 0; j < ARRAY_SIZE(bpc_list); j++)
+ test_dsc(&data, TEST_DSC_FRACTIONAL_BPP | TEST_DSC_BPC,
+ bpc_list[j], DRM_FORMAT_XRGB8888,
+ DSC_FORMAT_RGB, joiner_tests[i]);
+ }
}
igt_fixture() {
--
2.25.1
^ permalink raw reply related [flat|nested] 13+ messages in thread
* ✓ Xe.CI.BAT: success for Add dsc+bigjoiner subtest (rev8)
2026-04-30 19:09 [PATCH i-g-t,v6 0/4] Add dsc+bigjoiner subtest Swati Sharma
` (3 preceding siblings ...)
2026-04-30 19:09 ` [PATCH i-g-t, v6 4/4] tests/intel/kms_dsc: Add force dsc and joiner test cases Swati Sharma
@ 2026-04-30 20:34 ` Patchwork
2026-04-30 20:43 ` ✓ i915.CI.BAT: " Patchwork
` (2 subsequent siblings)
7 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2026-04-30 20:34 UTC (permalink / raw)
To: Swati Sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1148 bytes --]
== Series Details ==
Series: Add dsc+bigjoiner subtest (rev8)
URL : https://patchwork.freedesktop.org/series/128266/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8881_BAT -> XEIGTPW_15088_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8881 -> IGTPW_15088
* Linux: xe-4959-3ac514cf64f272cc4d5143f4cc28fb18a8aba76d -> xe-4960-6472756e8384e3945f12b6726dd9dc1ac12f3bb4
IGTPW_15088: 3cdcf9de1211f8291f6c0abb243a1be3520bba3a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8881: aa5853ef5b379b1e4558218c21ef4caeae112184 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4959-3ac514cf64f272cc4d5143f4cc28fb18a8aba76d: 3ac514cf64f272cc4d5143f4cc28fb18a8aba76d
xe-4960-6472756e8384e3945f12b6726dd9dc1ac12f3bb4: 6472756e8384e3945f12b6726dd9dc1ac12f3bb4
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/index.html
[-- Attachment #2: Type: text/html, Size: 1707 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ i915.CI.BAT: success for Add dsc+bigjoiner subtest (rev8)
2026-04-30 19:09 [PATCH i-g-t,v6 0/4] Add dsc+bigjoiner subtest Swati Sharma
` (4 preceding siblings ...)
2026-04-30 20:34 ` ✓ Xe.CI.BAT: success for Add dsc+bigjoiner subtest (rev8) Patchwork
@ 2026-04-30 20:43 ` Patchwork
2026-05-01 1:26 ` ✗ i915.CI.Full: failure " Patchwork
2026-05-01 7:11 ` ✗ Xe.CI.FULL: " Patchwork
7 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2026-04-30 20:43 UTC (permalink / raw)
To: Swati Sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2425 bytes --]
== Series Details ==
Series: Add dsc+bigjoiner subtest (rev8)
URL : https://patchwork.freedesktop.org/series/128266/
State : success
== Summary ==
CI Bug Log - changes from IGT_8881 -> IGTPW_15088
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/index.html
Participating hosts (41 -> 39)
------------------------------
Missing (2): bat-dg2-13 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_15088 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live:
- bat-dg2-8: [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8881/bat-dg2-8/igt@i915_selftest@live.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/bat-dg2-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arls-5: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8881/bat-arls-5/igt@i915_selftest@live@workarounds.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/bat-arls-5/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-mtlp-8: [DMESG-FAIL][5] ([i915#12061]) -> [PASS][6] +1 other test pass
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8881/bat-mtlp-8/igt@i915_selftest@live.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/bat-mtlp-8/igt@i915_selftest@live.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8881 -> IGTPW_15088
* Linux: CI_DRM_18388 -> CI_DRM_18389
CI-20190529: 20190529
CI_DRM_18388: 3ac514cf64f272cc4d5143f4cc28fb18a8aba76d @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_18389: 6472756e8384e3945f12b6726dd9dc1ac12f3bb4 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15088: 3cdcf9de1211f8291f6c0abb243a1be3520bba3a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8881: aa5853ef5b379b1e4558218c21ef4caeae112184 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/index.html
[-- Attachment #2: Type: text/html, Size: 3243 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ i915.CI.Full: failure for Add dsc+bigjoiner subtest (rev8)
2026-04-30 19:09 [PATCH i-g-t,v6 0/4] Add dsc+bigjoiner subtest Swati Sharma
` (5 preceding siblings ...)
2026-04-30 20:43 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-05-01 1:26 ` Patchwork
2026-05-01 7:11 ` ✗ Xe.CI.FULL: " Patchwork
7 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2026-05-01 1:26 UTC (permalink / raw)
To: Swati Sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 148156 bytes --]
== Series Details ==
Series: Add dsc+bigjoiner subtest (rev8)
URL : https://patchwork.freedesktop.org/series/128266/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_18389_full -> IGTPW_15088_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_15088_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_15088_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/index.html
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_15088_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_mmap_offset@clear-via-pagefault:
- shard-mtlp: [PASS][1] -> [TIMEOUT][2] +1 other test timeout
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-mtlp-1/igt@gem_mmap_offset@clear-via-pagefault.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-7/igt@gem_mmap_offset@clear-via-pagefault.html
* igt@i915_selftest@live@objects:
- shard-mtlp: NOTRUN -> [DMESG-FAIL][3] +1 other test dmesg-fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-7/igt@i915_selftest@live@objects.html
* igt@kms_dsc@dsc-fractional-bpp-bigjoiner (NEW):
- shard-dg1: NOTRUN -> [SKIP][4] +14 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-13/igt@kms_dsc@dsc-fractional-bpp-bigjoiner.html
- shard-tglu: NOTRUN -> [SKIP][5] +12 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-3/igt@kms_dsc@dsc-fractional-bpp-bigjoiner.html
- shard-mtlp: NOTRUN -> [SKIP][6] +15 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-4/igt@kms_dsc@dsc-fractional-bpp-bigjoiner.html
* igt@kms_dsc@dsc-with-bpc-formats-ultrajoiner (NEW):
- shard-tglu-1: NOTRUN -> [SKIP][7] +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-1/igt@kms_dsc@dsc-with-bpc-formats-ultrajoiner.html
* igt@kms_dsc@dsc-with-output-formats-bigjoiner (NEW):
- shard-rkl: NOTRUN -> [SKIP][8] +13 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-4/igt@kms_dsc@dsc-with-output-formats-bigjoiner.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner (NEW):
- shard-dg2: NOTRUN -> [SKIP][9] +15 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-6/igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner.html
New tests
---------
New tests have been introduced between CI_DRM_18389_full and IGTPW_15088_full:
### New IGT tests (52) ###
* igt@gem_userptr_blits@4-tiled-addfb-size-overflow:
- Statuses :
- Exec time: [None] s
* igt@gem_userptr_blits@add-remove-objects:
- Statuses :
- Exec time: [None] s
* igt@gem_userptr_blits@after-wait:
- Statuses :
- Exec time: [None] s
* igt@gem_userptr_blits@basic-fence-blt:
- Statuses :
- Exec time: [None] s
* igt@gem_userptr_blits@basic-s3:
- Statuses :
- Exec time: [None] s
* igt@gem_userptr_blits@crc-primary-suspend-yf-tiled-ccs:
- Statuses :
- Exec time: [None] s
* igt@gem_userptr_blits@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs:
- Statuses :
- Exec time: [None] s
* igt@gem_userptr_blits@create-ext-set-pat:
- Statuses :
- Exec time: [None] s
* igt@gem_userptr_blits@create-regular-buffer:
- Statuses :
- Exec time: [None] s
* igt@gem_userptr_blits@display-2x:
- Statuses :
- Exec time: [None] s
* igt@gem_userptr_blits@dsc-fractional-bpp-with-bpc-bigjoiner:
- Statuses :
- Exec time: [None] s
* igt@gem_userptr_blits@etime-multi-wait-all-for-submit-available-unsubmitted-submitted:
- Statuses :
- Exec time: [None] s
* igt@gem_userptr_blits@etime-single-wait-all-available-unsubmitted:
- Statuses :
- Exec time: [None] s
* igt@gem_userptr_blits@fairslice:
- Statuses :
- Exec time: [None] s
* igt@gem_userptr_blits@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-cpu:
- Statuses :
- Exec time: [None] s
* igt@gem_userptr_blits@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- Statuses :
- Exec time: [None] s
* igt@gem_userptr_blits@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- Statuses :
- Exec time: [None] s
* igt@gem_userptr_blits@getfb-handle-valid:
- Statuses :
- Exec time: [None] s
* igt@gem_userptr_blits@getfb-repeated-different-handles:
- Statuses :
- Exec time: [None] s
* igt@gem_userptr_blits@interruptible:
- Statuses :
- Exec time: [None] s
* igt@gem_userptr_blits@invalid-bsd2-flag-on-blt:
- Statuses :
- Exec time: [None] s
* igt@gem_userptr_blits@linear-32bpp-rotate-0:
- Statuses :
- Exec time: [None] s
* igt@gem_userptr_blits@multi-wait-all-for-submit-signaled:
- Statuses :
- Exec time: [None] s
* igt@gem_userptr_blits@multi-wait-for-submit-submitted-signaled:
- Statuses :
- Exec time: [None] s
* igt@gem_userptr_blits@multi-wait-for-submit-unsubmitted-submitted:
- Statuses :
- Exec time: [None] s
* igt@gem_userptr_blits@pf-nonblock:
- Statuses :
- Exec time: [None] s
* igt@gem_userptr_blits@psr-2p-primscrn-cur-indfb-draw-pwrite:
- Statuses :
- Exec time: [None] s
* igt@gem_userptr_blits@query-idle-hang:
- Statuses :
- Exec time: [None] s
* igt@gem_userptr_blits@rc6:
- Statuses :
- Exec time: [None] s
* igt@gem_userptr_blits@sliced:
- Statuses :
- Exec time: [None] s
* igt@gem_userptr_blits@suspend-resume-context:
- Statuses :
- Exec time: [None] s
* igt@gem_userptr_blits@tiling-none:
- Statuses :
- Exec time: [None] s
* igt@gem_userptr_blits@timeline_closed_signaled:
- Statuses :
- Exec time: [None] s
* igt@gem_userptr_blits@userptr:
- Statuses :
- Exec time: [None] s
* igt@gem_userptr_blits@wait-busy-hang:
- Statuses :
- Exec time: [None] s
* igt@gem_userptr_blits@wait-immediate:
- Statuses :
- Exec time: [None] s
* igt@kms_dsc@dsc-basic-bigjoiner:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.00] s
* igt@kms_dsc@dsc-basic-ultrajoiner:
- Statuses : 7 skip(s)
- Exec time: [0.0] s
* igt@kms_dsc@dsc-fractional-bpp-bigjoiner:
- Statuses : 7 skip(s)
- Exec time: [0.0] s
* igt@kms_dsc@dsc-fractional-bpp-ultrajoiner:
- Statuses : 6 skip(s)
- Exec time: [0.0] s
* igt@kms_dsc@dsc-fractional-bpp-with-bpc-bigjoiner:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.00] s
* igt@kms_dsc@dsc-fractional-bpp-with-bpc-ultrajoiner:
- Statuses : 6 skip(s)
- Exec time: [0.0] s
* igt@kms_dsc@dsc-with-bpc-bigjoiner:
- Statuses : 7 skip(s)
- Exec time: [0.0, 0.00] s
* igt@kms_dsc@dsc-with-bpc-formats-bigjoiner:
- Statuses : 5 skip(s)
- Exec time: [0.0, 0.01] s
* igt@kms_dsc@dsc-with-bpc-formats-ultrajoiner:
- Statuses : 7 skip(s)
- Exec time: [0.0] s
* igt@kms_dsc@dsc-with-bpc-ultrajoiner:
- Statuses : 6 skip(s)
- Exec time: [0.0] s
* igt@kms_dsc@dsc-with-formats-bigjoiner:
- Statuses : 7 skip(s)
- Exec time: [0.0, 0.00] s
* igt@kms_dsc@dsc-with-formats-ultrajoiner:
- Statuses : 7 skip(s)
- Exec time: [0.0] s
* igt@kms_dsc@dsc-with-output-formats-bigjoiner:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.00] s
* igt@kms_dsc@dsc-with-output-formats-ultrajoiner:
- Statuses : 7 skip(s)
- Exec time: [0.0] s
* igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner:
- Statuses : 5 skip(s)
- Exec time: [0.0, 0.00] s
* igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner:
- Statuses : 7 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_15088_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@dmabuf@all-tests:
- shard-tglu: NOTRUN -> [SKIP][10] ([i915#15931])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-8/igt@dmabuf@all-tests.html
- shard-mtlp: NOTRUN -> [SKIP][11] ([i915#15931])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-7/igt@dmabuf@all-tests.html
- shard-dg2: NOTRUN -> [SKIP][12] ([i915#15931])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-8/igt@dmabuf@all-tests.html
- shard-rkl: NOTRUN -> [SKIP][13] ([i915#15931])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-3/igt@dmabuf@all-tests.html
- shard-dg1: NOTRUN -> [SKIP][14] ([i915#15931])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-17/igt@dmabuf@all-tests.html
* igt@drm_buddy@drm_buddy:
- shard-mtlp: NOTRUN -> [SKIP][15] ([i915#15678])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-2/igt@drm_buddy@drm_buddy.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-tglu-1: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9323])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-1/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@suspend-resume:
- shard-mtlp: NOTRUN -> [SKIP][17] ([i915#9323]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-4/igt@gem_ccs@suspend-resume.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-dg2: NOTRUN -> [SKIP][18] ([i915#8555])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-1/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_ctx_persistence@legacy-engines-cleanup:
- shard-snb: NOTRUN -> [SKIP][19] ([i915#1099])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-snb4/igt@gem_ctx_persistence@legacy-engines-cleanup.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-tglu-1: NOTRUN -> [SKIP][20] ([i915#280]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-1/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_ctx_sseu@mmap-args:
- shard-dg1: NOTRUN -> [SKIP][21] ([i915#280])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-19/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@in-flight-suspend:
- shard-dg1: [PASS][22] -> [DMESG-WARN][23] ([i915#4391] / [i915#4423])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-dg1-14/igt@gem_eio@in-flight-suspend.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-13/igt@gem_eio@in-flight-suspend.html
- shard-glk11: NOTRUN -> [INCOMPLETE][24] ([i915#13390])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-glk11/igt@gem_eio@in-flight-suspend.html
* igt@gem_exec_balancer@bonded-pair:
- shard-mtlp: NOTRUN -> [SKIP][25] ([i915#4771])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-8/igt@gem_exec_balancer@bonded-pair.html
- shard-dg2: NOTRUN -> [SKIP][26] ([i915#4771])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-3/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@noheartbeat:
- shard-mtlp: NOTRUN -> [SKIP][27] ([i915#8555]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-4/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_balancer@parallel-bb-first:
- shard-tglu-1: NOTRUN -> [SKIP][28] ([i915#4525])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-1/igt@gem_exec_balancer@parallel-bb-first.html
* igt@gem_exec_balancer@parallel-out-fence:
- shard-rkl: NOTRUN -> [SKIP][29] ([i915#4525])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-4/igt@gem_exec_balancer@parallel-out-fence.html
- shard-tglu: NOTRUN -> [SKIP][30] ([i915#4525])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-2/igt@gem_exec_balancer@parallel-out-fence.html
* igt@gem_exec_big@single:
- shard-tglu: [PASS][31] -> [FAIL][32] ([i915#15816])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-tglu-6/igt@gem_exec_big@single.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-5/igt@gem_exec_big@single.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: NOTRUN -> [SKIP][33] ([i915#6344])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-8/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_endless@dispatch@vcs1:
- shard-dg1: [PASS][34] -> [TIMEOUT][35] ([i915#3778]) +1 other test timeout
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-dg1-18/igt@gem_exec_endless@dispatch@vcs1.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-16/igt@gem_exec_endless@dispatch@vcs1.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-mtlp: NOTRUN -> [SKIP][36] ([i915#3711])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-7/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_flush@basic-wb-rw-before-default:
- shard-dg1: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-18/igt@gem_exec_flush@basic-wb-rw-before-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-mtlp: NOTRUN -> [SKIP][38] ([i915#5107])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-6/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-gtt-cpu:
- shard-rkl: NOTRUN -> [SKIP][39] ([i915#3281]) +8 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-8/igt@gem_exec_reloc@basic-gtt-cpu.html
* igt@gem_exec_reloc@basic-gtt-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][40] ([i915#3281]) +11 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-2/igt@gem_exec_reloc@basic-gtt-noreloc.html
* igt@gem_exec_reloc@basic-softpin:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#3281]) +7 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-1/igt@gem_exec_reloc@basic-softpin.html
- shard-dg1: NOTRUN -> [SKIP][42] ([i915#3281]) +7 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-18/igt@gem_exec_reloc@basic-softpin.html
* igt@gem_exec_suspend@basic-s0:
- shard-dg2: [PASS][43] -> [INCOMPLETE][44] ([i915#13356]) +1 other test incomplete
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-dg2-8/igt@gem_exec_suspend@basic-s0.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-1/igt@gem_exec_suspend@basic-s0.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4860]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-2/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][46] ([i915#2190])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-3/igt@gem_huc_copy@huc-copy.html
- shard-tglu: NOTRUN -> [SKIP][47] ([i915#2190])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-7/igt@gem_huc_copy@huc-copy.html
- shard-glk: NOTRUN -> [SKIP][48] ([i915#2190])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-glk1/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-rkl: NOTRUN -> [SKIP][49] ([i915#14544] / [i915#4613])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][50] ([i915#4613]) +2 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@parallel-random-engines:
- shard-glk: NOTRUN -> [SKIP][51] ([i915#4613]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-glk1/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-tglu: NOTRUN -> [SKIP][52] ([i915#4613]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-5/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@random-engines:
- shard-rkl: NOTRUN -> [SKIP][53] ([i915#4613]) +2 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-4/igt@gem_lmem_swapping@random-engines.html
* igt@gem_lmem_swapping@smem-oom:
- shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4613]) +2 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-4/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_mmap@basic-small-bo:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#4083])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-4/igt@gem_mmap@basic-small-bo.html
- shard-dg1: NOTRUN -> [SKIP][56] ([i915#4083])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-14/igt@gem_mmap@basic-small-bo.html
* igt@gem_mmap_gtt@cpuset-basic-small-copy:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#4077]) +2 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-4/igt@gem_mmap_gtt@cpuset-basic-small-copy.html
* igt@gem_mmap_gtt@hang-busy:
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4077]) +7 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-6/igt@gem_mmap_gtt@hang-busy.html
* igt@gem_mmap_gtt@zero-extend:
- shard-dg1: NOTRUN -> [SKIP][59] ([i915#4077]) +4 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-19/igt@gem_mmap_gtt@zero-extend.html
* igt@gem_mmap_wc@copy:
- shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4083]) +2 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-7/igt@gem_mmap_wc@copy.html
* igt@gem_partial_pwrite_pread@writes-after-reads-snoop:
- shard-rkl: NOTRUN -> [SKIP][61] ([i915#14544] / [i915#3282]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#3282]) +4 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-19/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#3282]) +5 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-3/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pread@exhaustion:
- shard-glk: NOTRUN -> [WARN][64] ([i915#2658])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-glk3/igt@gem_pread@exhaustion.html
* igt@gem_pread@snoop:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#3282]) +4 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-4/igt@gem_pread@snoop.html
- shard-rkl: NOTRUN -> [SKIP][66] ([i915#3282]) +5 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-5/igt@gem_pread@snoop.html
* igt@gem_pwrite@basic-exhaustion:
- shard-tglu: NOTRUN -> [WARN][67] ([i915#2658])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-10/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-tglu-1: NOTRUN -> [SKIP][68] ([i915#13398])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_pxp@hw-rejects-pxp-context:
- shard-rkl: NOTRUN -> [SKIP][69] ([i915#13717])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-5/igt@gem_pxp@hw-rejects-pxp-context.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#4270]) +3 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-4/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#4270]) +2 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-17/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_render_copy@yf-tiled-to-vebox-linear:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#5190] / [i915#8428]) +2 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-1/igt@gem_render_copy@yf-tiled-to-vebox-linear.html
- shard-mtlp: NOTRUN -> [SKIP][73] ([i915#8428]) +3 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-7/igt@gem_render_copy@yf-tiled-to-vebox-linear.html
* igt@gem_render_tiled_blits@basic:
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4079])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-1/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_pread_basic@basic:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#15657])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-5/igt@gem_tiled_pread_basic@basic.html
- shard-rkl: NOTRUN -> [SKIP][76] ([i915#15656])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-7/igt@gem_tiled_pread_basic@basic.html
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#15657])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-12/igt@gem_tiled_pread_basic@basic.html
- shard-mtlp: NOTRUN -> [SKIP][78] ([i915#15657])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-3/igt@gem_tiled_pread_basic@basic.html
* igt@gem_userptr_blits@coherency-sync:
- shard-rkl: NOTRUN -> [SKIP][79] ([i915#3297]) +2 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-8/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#3297])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-3/igt@gem_userptr_blits@coherency-unsync.html
- shard-mtlp: NOTRUN -> [SKIP][81] ([i915#3297])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-1/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-tglu: NOTRUN -> [SKIP][82] ([i915#3297] / [i915#3323])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-4/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-tglu: NOTRUN -> [SKIP][83] ([i915#3297]) +2 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-10/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-tglu-1: NOTRUN -> [SKIP][84] ([i915#3297]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-1/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-rkl: NOTRUN -> [SKIP][85] ([i915#14544] / [i915#3297])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gem_userptr_blits@vma-merge:
- shard-dg2: [PASS][86] -> [ABORT][87] ([i915#13562])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-dg2-7/igt@gem_userptr_blits@vma-merge.html
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-7/igt@gem_userptr_blits@vma-merge.html
* igt@gem_workarounds@suspend-resume-context:
- shard-rkl: [PASS][88] -> [INCOMPLETE][89] ([i915#13356])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-3/igt@gem_workarounds@suspend-resume-context.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-3/igt@gem_workarounds@suspend-resume-context.html
* igt@gen9_exec_parse@allowed-all:
- shard-glk: NOTRUN -> [ABORT][90] ([i915#5566])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-glk3/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@bb-oversize:
- shard-dg1: NOTRUN -> [SKIP][91] ([i915#2527])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-12/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-secure:
- shard-rkl: NOTRUN -> [SKIP][92] ([i915#2527])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-2/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-mtlp: NOTRUN -> [SKIP][93] ([i915#2856])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-6/igt@gen9_exec_parse@bb-start-cmd.html
- shard-dg2: NOTRUN -> [SKIP][94] ([i915#2856])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-4/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-tglu-1: NOTRUN -> [SKIP][95] ([i915#2527] / [i915#2856]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-1/igt@gen9_exec_parse@unaligned-jump.html
* igt@gen9_exec_parse@valid-registers:
- shard-tglu: NOTRUN -> [SKIP][96] ([i915#2527] / [i915#2856]) +2 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-10/igt@gen9_exec_parse@valid-registers.html
* igt@i915_drm_fdinfo@isolation@rcs0:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#14073]) +7 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-7/igt@i915_drm_fdinfo@isolation@rcs0.html
- shard-dg1: NOTRUN -> [SKIP][98] ([i915#14073]) +5 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-13/igt@i915_drm_fdinfo@isolation@rcs0.html
- shard-mtlp: NOTRUN -> [SKIP][99] ([i915#14073]) +6 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-2/igt@i915_drm_fdinfo@isolation@rcs0.html
* igt@i915_drm_fdinfo@virtual-busy-idle-all:
- shard-mtlp: NOTRUN -> [SKIP][100] ([i915#14118]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-1/igt@i915_drm_fdinfo@virtual-busy-idle-all.html
* igt@i915_fb_tiling@basic-x-tiling:
- shard-mtlp: NOTRUN -> [SKIP][101] ([i915#13786])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-8/igt@i915_fb_tiling@basic-x-tiling.html
* igt@i915_module_load@reload-no-display:
- shard-dg2: NOTRUN -> [DMESG-WARN][102] ([i915#13029] / [i915#14545])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-3/igt@i915_module_load@reload-no-display.html
- shard-snb: NOTRUN -> [DMESG-WARN][103] ([i915#14545])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-snb1/igt@i915_module_load@reload-no-display.html
* igt@i915_module_load@resize-bar:
- shard-tglu: NOTRUN -> [SKIP][104] ([i915#6412])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-6/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-tglu-1: NOTRUN -> [SKIP][105] ([i915#8399])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-1/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-rkl: NOTRUN -> [SKIP][106] ([i915#6590]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-4/igt@i915_pm_freq_mult@media-freq@gt0.html
- shard-dg1: NOTRUN -> [SKIP][107] ([i915#6590]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-15/igt@i915_pm_freq_mult@media-freq@gt0.html
- shard-tglu: NOTRUN -> [SKIP][108] ([i915#6590]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-2/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_freq_mult@media-freq@gt1:
- shard-mtlp: NOTRUN -> [SKIP][109] ([i915#6590]) +2 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-6/igt@i915_pm_freq_mult@media-freq@gt1.html
* igt@i915_pm_rps@thresholds-park:
- shard-dg2: NOTRUN -> [SKIP][110] ([i915#11681])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-1/igt@i915_pm_rps@thresholds-park.html
- shard-dg1: NOTRUN -> [SKIP][111] ([i915#11681])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-18/igt@i915_pm_rps@thresholds-park.html
- shard-mtlp: NOTRUN -> [SKIP][112] ([i915#11681])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-3/igt@i915_pm_rps@thresholds-park.html
* igt@i915_query@hwconfig_table:
- shard-dg1: NOTRUN -> [SKIP][113] ([i915#6245])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-19/igt@i915_query@hwconfig_table.html
- shard-tglu: NOTRUN -> [SKIP][114] ([i915#6245])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-3/igt@i915_query@hwconfig_table.html
- shard-rkl: NOTRUN -> [SKIP][115] ([i915#14544] / [i915#6245])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@i915_query@hwconfig_table.html
* igt@i915_query@test-query-geometry-subslices:
- shard-rkl: NOTRUN -> [SKIP][116] ([i915#5723])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-4/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_selftest@live:
- shard-mtlp: NOTRUN -> [DMESG-FAIL][117] ([i915#15560])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-7/igt@i915_selftest@live.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-glk: [PASS][118] -> [INCOMPLETE][119] ([i915#4817])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-glk5/igt@i915_suspend@basic-s3-without-i915.html
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-glk6/igt@i915_suspend@basic-s3-without-i915.html
* igt@i915_suspend@fence-restore-untiled:
- shard-glk: NOTRUN -> [INCOMPLETE][120] ([i915#4817])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-glk8/igt@i915_suspend@fence-restore-untiled.html
* igt@intel_hwmon@hwmon-read:
- shard-tglu: NOTRUN -> [SKIP][121] ([i915#7707])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-10/igt@intel_hwmon@hwmon-read.html
* igt@intel_hwmon@hwmon-write:
- shard-tglu-1: NOTRUN -> [SKIP][122] ([i915#7707])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-1/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
- shard-mtlp: NOTRUN -> [SKIP][123] ([i915#4212])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-2/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
- shard-dg2: NOTRUN -> [SKIP][124] ([i915#4212])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-4/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
- shard-dg1: NOTRUN -> [SKIP][125] ([i915#4212])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-12/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-glk: NOTRUN -> [INCOMPLETE][126] ([i915#12761]) +1 other test incomplete
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-glk5/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-glk11: NOTRUN -> [SKIP][127] ([i915#1769])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-glk11/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-dg1: NOTRUN -> [SKIP][128] ([i915#1769] / [i915#3555])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-13/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][129] ([i915#5286]) +9 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-4/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][130] ([i915#4538] / [i915#5286]) +5 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-19/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-dg1: NOTRUN -> [SKIP][131] ([i915#5286])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-13/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-tglu-1: NOTRUN -> [SKIP][132] ([i915#5286]) +3 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-tglu: NOTRUN -> [SKIP][133] ([i915#5286]) +5 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-16bpp-rotate-0:
- shard-mtlp: [PASS][134] -> [FAIL][135] ([i915#15733] / [i915#5138])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-mtlp-2/igt@kms_big_fb@linear-16bpp-rotate-0.html
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-7/igt@kms_big_fb@linear-16bpp-rotate-0.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][136] ([i915#3638]) +3 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-3/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
- shard-mtlp: NOTRUN -> [SKIP][137] ([i915#3828])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#3828])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-7/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
- shard-rkl: NOTRUN -> [SKIP][139] ([i915#3828])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-5/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
- shard-tglu-1: NOTRUN -> [SKIP][140] ([i915#3828])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-1/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-180:
- shard-dg1: [PASS][141] -> [DMESG-WARN][142] ([i915#4423]) +4 other tests dmesg-warn
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-dg1-12/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-18/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-mtlp: NOTRUN -> [SKIP][143] ([i915#6187])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-8/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-mtlp: NOTRUN -> [SKIP][144] +20 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-2/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:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#4538] / [i915#5190]) +5 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#4538]) +2 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-c-hdmi-a-2:
- shard-glk11: NOTRUN -> [SKIP][147] +107 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-glk11/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
- shard-glk: NOTRUN -> [SKIP][148] +384 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-glk8/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][149] ([i915#12313]) +1 other test skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-8/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][150] ([i915#12313])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-19/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
- shard-tglu: NOTRUN -> [SKIP][151] ([i915#12313]) +1 other test skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][152] ([i915#12313]) +1 other test skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#12313])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#12313] / [i915#14544])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-dg1: NOTRUN -> [SKIP][155] ([i915#6095]) +201 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-15/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#6095]) +73 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][157] ([i915#12805])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][158] ([i915#14098] / [i915#6095]) +50 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][159] ([i915#6095]) +24 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][160] ([i915#6095]) +8 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][161] ([i915#6095]) +64 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-10/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][163] ([i915#6095]) +54 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs:
- shard-rkl: NOTRUN -> [SKIP][164] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][165] ([i915#14544] / [i915#6095]) +5 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#10307] / [i915#6095]) +105 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-1/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-3.html
* igt@kms_cdclk@mode-transition:
- shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#3742])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-1/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][168] ([i915#13781]) +4 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-6/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#13781]) +4 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-7/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#13783]) +3 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-4/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html
* igt@kms_chamelium_color@degamma:
- shard-dg2: NOTRUN -> [SKIP][171] +6 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-3/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#11151] / [i915#7828]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-4/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html
- shard-mtlp: NOTRUN -> [SKIP][173] ([i915#11151] / [i915#7828]) +4 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-2/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-tglu: NOTRUN -> [SKIP][174] ([i915#11151] / [i915#7828]) +4 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-10/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-tglu-1: NOTRUN -> [SKIP][175] ([i915#11151] / [i915#7828]) +4 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-1/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-rkl: NOTRUN -> [SKIP][176] ([i915#11151] / [i915#7828]) +5 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-7/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
- shard-dg1: NOTRUN -> [SKIP][177] ([i915#11151] / [i915#7828]) +1 other test skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-17/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
* igt@kms_content_protection@atomic-dpms:
- shard-rkl: NOTRUN -> [SKIP][178] ([i915#15865]) +1 other test skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-3/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@atomic-hdcp14:
- shard-tglu-1: NOTRUN -> [SKIP][179] ([i915#15865])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-1/igt@kms_content_protection@atomic-hdcp14.html
* igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
- shard-mtlp: NOTRUN -> [SKIP][180] ([i915#15330])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-8/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
- shard-dg2: NOTRUN -> [SKIP][181] ([i915#15330])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-3/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#15330] / [i915#3116])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0-suspend-resume:
- shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#15330])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
* igt@kms_content_protection@dp-mst-type-1-suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#15330])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-4/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
* igt@kms_content_protection@type1:
- shard-tglu: NOTRUN -> [SKIP][185] ([i915#15865]) +1 other test skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-9/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-tglu-1: NOTRUN -> [SKIP][186] ([i915#3555])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-mtlp: NOTRUN -> [SKIP][187] ([i915#13049]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-6/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-rkl: [PASS][188] -> [FAIL][189] ([i915#13566]) +3 other tests fail
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-128x42.html
- shard-tglu: [PASS][190] -> [FAIL][191] ([i915#13566]) +3 other tests fail
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#3555]) +2 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [FAIL][193] ([i915#13566]) +1 other test fail
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-1/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-random-256x256@pipe-d-edp-1:
- shard-mtlp: [PASS][194] -> [FAIL][195] ([i915#13566] / [i915#15733]) +2 other tests fail
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-mtlp-8/igt@kms_cursor_crc@cursor-random-256x256@pipe-d-edp-1.html
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-7/igt@kms_cursor_crc@cursor-random-256x256@pipe-d-edp-1.html
* igt@kms_cursor_crc@cursor-rapid-movement-64x21:
- shard-mtlp: NOTRUN -> [SKIP][196] ([i915#8814]) +2 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-4/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html
* igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][197] ([i915#13566]) +5 other tests fail
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html
- shard-tglu: NOTRUN -> [FAIL][198] ([i915#13566]) +1 other test fail
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-rkl: NOTRUN -> [SKIP][199] ([i915#13049])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-512x512.html
- shard-tglu-1: NOTRUN -> [SKIP][200] ([i915#13049])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-rkl: NOTRUN -> [SKIP][201] +19 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-8/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#13046] / [i915#5354]) +1 other test skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-mtlp: NOTRUN -> [SKIP][203] ([i915#9809]) +2 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-rkl: NOTRUN -> [SKIP][204] ([i915#14544]) +2 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][205] ([i915#9723])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-dg2: NOTRUN -> [SKIP][206] ([i915#3555])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
- shard-rkl: NOTRUN -> [SKIP][207] ([i915#3555] / [i915#3804])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
- shard-tglu: NOTRUN -> [SKIP][208] ([i915#1769] / [i915#3555] / [i915#3804])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][209] ([i915#3804])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][210] ([i915#3804])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dp_aux_dev@basic:
- shard-rkl: NOTRUN -> [SKIP][211] ([i915#1257])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-2/igt@kms_dp_aux_dev@basic.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-dg2: NOTRUN -> [SKIP][212] ([i915#13749])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-4/igt@kms_dp_link_training@non-uhbr-mst.html
- shard-rkl: NOTRUN -> [SKIP][213] ([i915#13749]) +1 other test skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-5/igt@kms_dp_link_training@non-uhbr-mst.html
- shard-tglu-1: NOTRUN -> [SKIP][214] ([i915#13749])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-1/igt@kms_dp_link_training@non-uhbr-mst.html
- shard-dg1: NOTRUN -> [SKIP][215] ([i915#13749])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-14/igt@kms_dp_link_training@non-uhbr-mst.html
- shard-mtlp: NOTRUN -> [SKIP][216] ([i915#13749])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-8/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-tglu: NOTRUN -> [SKIP][217] ([i915#13749])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-5/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#3840])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-3/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][219] ([i915#3840] / [i915#9053])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-4/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
- shard-tglu-1: NOTRUN -> [SKIP][220] ([i915#3840] / [i915#9053])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-glk10: NOTRUN -> [INCOMPLETE][221] ([i915#9878])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-glk10/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_feature_discovery@display-2x:
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#1839])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-3/igt@kms_feature_discovery@display-2x.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-tglu-1: NOTRUN -> [SKIP][223] ([i915#3637] / [i915#9934]) +1 other test skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-1/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-mtlp: NOTRUN -> [SKIP][224] ([i915#3637] / [i915#9934]) +5 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-8/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@2x-flip-vs-modeset:
- shard-tglu: NOTRUN -> [SKIP][225] ([i915#3637] / [i915#9934]) +4 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-3/igt@kms_flip@2x-flip-vs-modeset.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-glk: NOTRUN -> [INCOMPLETE][226] ([i915#12314] / [i915#12745] / [i915#4839])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-glk5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2:
- shard-glk: NOTRUN -> [INCOMPLETE][227] ([i915#12314] / [i915#12745])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-glk5/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-rkl: NOTRUN -> [SKIP][228] ([i915#9934]) +3 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-3/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-dg2: NOTRUN -> [SKIP][229] ([i915#9934]) +2 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-5/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
- shard-dg1: NOTRUN -> [SKIP][230] ([i915#9934]) +1 other test skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-12/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-dg2: [PASS][231] -> [FAIL][232] ([i915#13027])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-dg2-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1:
- shard-dg2: NOTRUN -> [FAIL][233] ([i915#13027])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-glk: NOTRUN -> [INCOMPLETE][234] ([i915#12745] / [i915#4839]) +1 other test incomplete
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-glk9/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][235] ([i915#12745]) +1 other test incomplete
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-glk9/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][236] ([i915#3555] / [i915#8810] / [i915#8813])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][237] ([i915#8810] / [i915#8813])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][238] ([i915#15643]) +3 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
- shard-mtlp: NOTRUN -> [SKIP][239] ([i915#15643]) +1 other test skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#15643])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][241] ([i915#15643])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-dg1: NOTRUN -> [SKIP][242] ([i915#15643]) +1 other test skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][243] ([i915#14544] / [i915#15643])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][244] ([i915#15643]) +4 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][245] ([i915#15990] / [i915#8708]) +3 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-pwrite:
- shard-dg2: [PASS][246] -> [FAIL][247] ([i915#15389])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-pwrite.html
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
- shard-dg2: [PASS][248] -> [FAIL][249] ([i915#15389] / [i915#6880])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#15990] / [i915#8708]) +5 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][251] ([i915#14544] / [i915#1825]) +1 other test skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite:
- shard-mtlp: NOTRUN -> [SKIP][252] ([i915#15991] / [i915#1825]) +20 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-tglu-1: NOTRUN -> [SKIP][253] +22 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][254] ([i915#15991] / [i915#5354]) +3 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-rkl: [PASS][255] -> [INCOMPLETE][256] ([i915#10056])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-suspend.html
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][257] ([i915#14544] / [i915#5439])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
- shard-tglu: NOTRUN -> [SKIP][258] ([i915#5439])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-7/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][259] ([i915#15102]) +2 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][260] ([i915#15102]) +1 other test skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][261] ([i915#14544] / [i915#15102] / [i915#3023]) +1 other test skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][262] +12 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][263] ([i915#1825]) +26 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][264] ([i915#15102]) +1 other test skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][265] ([i915#14544] / [i915#15102])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][266] ([i915#15104] / [i915#15990])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-tglu-1: NOTRUN -> [SKIP][267] ([i915#15102]) +10 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][268] ([i915#15102] / [i915#3023]) +18 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
- shard-dg1: NOTRUN -> [SKIP][269] ([i915#15102] / [i915#3458]) +7 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][270] ([i915#15102] / [i915#3458]) +5 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-snb: NOTRUN -> [SKIP][271] +118 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-snb5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][272] ([i915#15990] / [i915#8708]) +6 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][273] ([i915#15102]) +18 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-tglu: NOTRUN -> [SKIP][274] ([i915#3555] / [i915#8228])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-5/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@brightness-with-hdr:
- shard-rkl: NOTRUN -> [SKIP][275] ([i915#12713])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-8/igt@kms_hdr@brightness-with-hdr.html
- shard-tglu: NOTRUN -> [SKIP][276] ([i915#12713])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-3/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@static-swap:
- shard-rkl: NOTRUN -> [SKIP][277] ([i915#3555] / [i915#8228])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-3/igt@kms_hdr@static-swap.html
* igt@kms_joiner@basic-big-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][278] ([i915#15460])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-1/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-tglu: NOTRUN -> [SKIP][279] ([i915#13688])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-7/igt@kms_joiner@basic-max-non-joiner.html
- shard-dg2: NOTRUN -> [SKIP][280] ([i915#13688])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-8/igt@kms_joiner@basic-max-non-joiner.html
- shard-rkl: NOTRUN -> [SKIP][281] ([i915#13688] / [i915#14544])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@kms_joiner@basic-max-non-joiner.html
- shard-dg1: NOTRUN -> [SKIP][282] ([i915#13688])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-13/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-mtlp: NOTRUN -> [SKIP][283] ([i915#15458]) +1 other test skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-3/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-tglu-1: NOTRUN -> [SKIP][284] ([i915#15815])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-rkl: NOTRUN -> [SKIP][285] ([i915#6301])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-5/igt@kms_panel_fitting@atomic-fastset.html
- shard-tglu-1: NOTRUN -> [SKIP][286] ([i915#6301])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-1/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-glk: NOTRUN -> [INCOMPLETE][287] ([i915#12756] / [i915#13409] / [i915#13476])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-glk1/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][288] ([i915#13409] / [i915#13476])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-glk1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html
* igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier:
- shard-glk10: NOTRUN -> [SKIP][289] +81 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-glk10/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping:
- shard-tglu-1: NOTRUN -> [SKIP][290] ([i915#15709]) +1 other test skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping:
- shard-rkl: NOTRUN -> [SKIP][291] ([i915#15709]) +2 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-8/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
- shard-dg1: NOTRUN -> [SKIP][292] ([i915#15709]) +2 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-13/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
- shard-tglu: NOTRUN -> [SKIP][293] ([i915#15709]) +1 other test skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-3/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
- shard-mtlp: NOTRUN -> [SKIP][294] ([i915#15709]) +2 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-4/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-5:
- shard-mtlp: NOTRUN -> [SKIP][295] ([i915#15608]) +1 other test skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-3/igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5:
- shard-rkl: NOTRUN -> [SKIP][296] ([i915#15608]) +1 other test skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-3/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7:
- shard-tglu: NOTRUN -> [SKIP][297] ([i915#15608]) +3 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-3/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7.html
* igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7:
- shard-tglu-1: NOTRUN -> [SKIP][298] ([i915#15608]) +1 other test skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7.html
- shard-dg1: NOTRUN -> [SKIP][299] ([i915#15608]) +1 other test skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-14/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier:
- shard-dg2: NOTRUN -> [SKIP][300] ([i915#15709]) +1 other test skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-4/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b:
- shard-glk: NOTRUN -> [INCOMPLETE][301] ([i915#13026])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-glk6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-glk11: NOTRUN -> [FAIL][302] ([i915#10647] / [i915#12177])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-glk11/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
- shard-glk11: NOTRUN -> [FAIL][303] ([i915#10647]) +1 other test fail
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-glk11/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-dg1: NOTRUN -> [SKIP][304] ([i915#3555]) +1 other test skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-16/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-dg2: NOTRUN -> [SKIP][305] ([i915#13958])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-6/igt@kms_plane_multiple@2x-tiling-none.html
- shard-dg1: NOTRUN -> [SKIP][306] ([i915#13958])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-16/igt@kms_plane_multiple@2x-tiling-none.html
- shard-tglu: NOTRUN -> [SKIP][307] ([i915#13958])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-4/igt@kms_plane_multiple@2x-tiling-none.html
- shard-mtlp: NOTRUN -> [SKIP][308] ([i915#13958])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-8/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-rkl: NOTRUN -> [SKIP][309] ([i915#13958])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-4/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][310] ([i915#14259])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-2/igt@kms_plane_multiple@tiling-y.html
- shard-dg2: NOTRUN -> [SKIP][311] ([i915#14259])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-6/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
- shard-tglu-1: NOTRUN -> [SKIP][312] ([i915#15329]) +4 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][313] ([i915#15329]) +3 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-4/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5:
- shard-mtlp: NOTRUN -> [SKIP][314] ([i915#15329] / [i915#6953])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a:
- shard-mtlp: NOTRUN -> [SKIP][315] ([i915#15329]) +3 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][316] ([i915#12343])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-2/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][317] ([i915#5354])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-2/igt@kms_pm_backlight@fade-with-dpms.html
- shard-dg1: NOTRUN -> [SKIP][318] ([i915#5354])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-19/igt@kms_pm_backlight@fade-with-dpms.html
- shard-tglu: NOTRUN -> [SKIP][319] ([i915#9812]) +1 other test skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-4/igt@kms_pm_backlight@fade-with-dpms.html
- shard-dg2: NOTRUN -> [SKIP][320] ([i915#5354])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-3/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-rkl: NOTRUN -> [SKIP][321] ([i915#14544] / [i915#5354])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-mtlp: NOTRUN -> [SKIP][322] ([i915#13441])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-8/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_dc@dc5-psr:
- shard-tglu: NOTRUN -> [SKIP][323] ([i915#15948]) +1 other test skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-6/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-psr:
- shard-rkl: NOTRUN -> [SKIP][324] ([i915#15948])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-3/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: [PASS][325] -> [SKIP][326] ([i915#15073]) +2 other tests skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-2/igt@kms_pm_rpm@dpms-lpsp.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-3/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-dg1: [PASS][327] -> [SKIP][328] ([i915#15073])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-dg1-13/igt@kms_pm_rpm@dpms-non-lpsp.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-15/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: NOTRUN -> [SKIP][329] ([i915#15073])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
- shard-tglu: NOTRUN -> [SKIP][330] ([i915#15073])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
- shard-mtlp: NOTRUN -> [SKIP][331] ([i915#15073])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@package-g7:
- shard-mtlp: NOTRUN -> [SKIP][332] ([i915#15403])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-3/igt@kms_pm_rpm@package-g7.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-glk: [PASS][333] -> [INCOMPLETE][334] ([i915#10553])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-glk4/igt@kms_pm_rpm@system-suspend-modeset.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-glk1/igt@kms_pm_rpm@system-suspend-modeset.html
- shard-rkl: [PASS][335] -> [INCOMPLETE][336] ([i915#14419])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-2/igt@kms_pm_rpm@system-suspend-modeset.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_prime@basic-crc-hybrid:
- shard-mtlp: NOTRUN -> [SKIP][337] ([i915#6524])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-8/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg1: NOTRUN -> [SKIP][338] ([i915#6524])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-12/igt@kms_prime@basic-crc-vgem.html
* igt@kms_prime@d3hot:
- shard-rkl: NOTRUN -> [SKIP][339] ([i915#6524])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-4/igt@kms_prime@d3hot.html
- shard-tglu-1: NOTRUN -> [SKIP][340] ([i915#6524])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-1/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-tglu: NOTRUN -> [SKIP][341] ([i915#11520]) +6 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-7/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][342] ([i915#11520]) +9 other tests skip
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-glk1/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
- shard-dg2: NOTRUN -> [SKIP][343] ([i915#11520]) +5 other tests skip
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-7/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][344] ([i915#9808]) +3 other tests skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-glk11: NOTRUN -> [SKIP][345] ([i915#11520]) +3 other tests skip
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-glk11/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html
- shard-rkl: NOTRUN -> [SKIP][346] ([i915#11520] / [i915#14544])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf:
- shard-glk10: NOTRUN -> [SKIP][347] ([i915#11520]) +1 other test skip
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-glk10/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
- shard-mtlp: NOTRUN -> [SKIP][348] ([i915#12316]) +6 other tests skip
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-3/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-snb: NOTRUN -> [SKIP][349] ([i915#11520]) +3 other tests skip
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-snb7/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
- shard-tglu-1: NOTRUN -> [SKIP][350] ([i915#11520]) +2 other tests skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
- shard-dg1: NOTRUN -> [SKIP][351] ([i915#11520]) +4 other tests skip
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-19/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][352] ([i915#11520]) +9 other tests skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-8/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][353] ([i915#9683])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-8/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-rkl: NOTRUN -> [SKIP][354] ([i915#9683])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-5/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-dg1: NOTRUN -> [SKIP][355] ([i915#9683])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-15/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-tglu: NOTRUN -> [SKIP][356] ([i915#9683])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-6/igt@kms_psr2_su@page_flip-xrgb8888.html
- shard-mtlp: NOTRUN -> [SKIP][357] ([i915#4348])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-4/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-cursor-blt:
- shard-tglu: NOTRUN -> [SKIP][358] ([i915#9732]) +16 other tests skip
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-10/igt@kms_psr@fbc-pr-cursor-blt.html
* igt@kms_psr@fbc-pr-cursor-render:
- shard-dg1: NOTRUN -> [SKIP][359] ([i915#1072] / [i915#9732]) +8 other tests skip
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-18/igt@kms_psr@fbc-pr-cursor-render.html
* igt@kms_psr@fbc-psr2-primary-blt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][360] ([i915#9688]) +13 other tests skip
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-6/igt@kms_psr@fbc-psr2-primary-blt@edp-1.html
* igt@kms_psr@pr-primary-blt:
- shard-dg2: NOTRUN -> [SKIP][361] ([i915#1072] / [i915#9732]) +7 other tests skip
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-1/igt@kms_psr@pr-primary-blt.html
* igt@kms_psr@psr-sprite-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][362] ([i915#9732]) +7 other tests skip
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-1/igt@kms_psr@psr-sprite-mmap-cpu.html
* igt@kms_psr@psr2-cursor-blt:
- shard-rkl: NOTRUN -> [SKIP][363] ([i915#1072] / [i915#14544] / [i915#9732]) +2 other tests skip
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@kms_psr@psr2-cursor-blt.html
* igt@kms_psr@psr2-cursor-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][364] ([i915#1072] / [i915#9732]) +16 other tests skip
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-7/igt@kms_psr@psr2-cursor-mmap-gtt.html
* igt@kms_psr@psr2-primary-mmap-gtt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][365] ([i915#4077] / [i915#9688]) +1 other test skip
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-2/igt@kms_psr@psr2-primary-mmap-gtt@edp-1.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-rkl: NOTRUN -> [SKIP][366] ([i915#15949])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
- shard-tglu: NOTRUN -> [SKIP][367] ([i915#15949])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-10/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-tglu-1: NOTRUN -> [SKIP][368] ([i915#15949])
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-top:
- shard-glk10: NOTRUN -> [INCOMPLETE][369] ([i915#15492])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-glk10/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-dg1: NOTRUN -> [SKIP][370] ([i915#5289])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-17/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-mtlp: NOTRUN -> [SKIP][371] ([i915#12755] / [i915#15867]) +1 other test skip
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-3/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2: NOTRUN -> [SKIP][372] ([i915#12755] / [i915#15867])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-6/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-1:
- shard-snb: [PASS][373] -> [FAIL][374] ([i915#15106]) +1 other test fail
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-snb1/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-snb7/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-tglu: NOTRUN -> [SKIP][375] ([i915#3555])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-9/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-rkl: NOTRUN -> [SKIP][376] ([i915#8623])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][377] ([i915#12276]) +1 other test incomplete
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-glk2/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-glk10: NOTRUN -> [INCOMPLETE][378] ([i915#12276]) +1 other test incomplete
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-glk10/igt@kms_vblank@ts-continuation-suspend.html
* igt@kms_vrr@flip-suspend:
- shard-mtlp: NOTRUN -> [SKIP][379] ([i915#3555] / [i915#8808]) +1 other test skip
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-1/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@lobf:
- shard-tglu: NOTRUN -> [SKIP][380] ([i915#11920])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-2/igt@kms_vrr@lobf.html
* igt@kms_vrr@max-min:
- shard-rkl: NOTRUN -> [SKIP][381] ([i915#9906])
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-3/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-tglu-1: NOTRUN -> [SKIP][382] ([i915#9906])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@perf@mi-rpc:
- shard-rkl: NOTRUN -> [SKIP][383] ([i915#2434])
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-4/igt@perf@mi-rpc.html
* igt@perf_pmu@busy-idle:
- shard-mtlp: [PASS][384] -> [FAIL][385] ([i915#4349]) +3 other tests fail
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-mtlp-6/igt@perf_pmu@busy-idle.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-2/igt@perf_pmu@busy-idle.html
* igt@perf_pmu@busy-idle@vcs1:
- shard-dg1: [PASS][386] -> [FAIL][387] ([i915#4349]) +2 other tests fail
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-dg1-14/igt@perf_pmu@busy-idle@vcs1.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-17/igt@perf_pmu@busy-idle@vcs1.html
* igt@perf_pmu@busy-idle@vecs1:
- shard-dg2: [PASS][388] -> [FAIL][389] ([i915#4349]) +4 other tests fail
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-dg2-1/igt@perf_pmu@busy-idle@vecs1.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-4/igt@perf_pmu@busy-idle@vecs1.html
* igt@perf_pmu@module-unload:
- shard-glk11: NOTRUN -> [ABORT][390] ([i915#15778])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-glk11/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6-all-gts:
- shard-rkl: NOTRUN -> [SKIP][391] ([i915#8516])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-4/igt@perf_pmu@rc6-all-gts.html
- shard-tglu: NOTRUN -> [SKIP][392] ([i915#8516])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-5/igt@perf_pmu@rc6-all-gts.html
* igt@prime_vgem@basic-write:
- shard-rkl: NOTRUN -> [SKIP][393] ([i915#3291] / [i915#3708])
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-7/igt@prime_vgem@basic-write.html
* igt@prime_vgem@fence-write-hang:
- shard-tglu: NOTRUN -> [SKIP][394] +39 other tests skip
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-10/igt@prime_vgem@fence-write-hang.html
- shard-mtlp: NOTRUN -> [SKIP][395] ([i915#3708])
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-3/igt@prime_vgem@fence-write-hang.html
- shard-dg2: NOTRUN -> [SKIP][396] ([i915#3708])
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-5/igt@prime_vgem@fence-write-hang.html
- shard-rkl: NOTRUN -> [SKIP][397] ([i915#3708])
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-7/igt@prime_vgem@fence-write-hang.html
- shard-dg1: NOTRUN -> [SKIP][398] ([i915#3708])
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-12/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-rkl: NOTRUN -> [SKIP][399] ([i915#14544] / [i915#9917])
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random:
- shard-tglu: NOTRUN -> [FAIL][400] ([i915#12910]) +8 other tests fail
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-5/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random.html
#### Possible fixes ####
* igt@gem_ccs@suspend-resume:
- shard-dg2: [INCOMPLETE][401] ([i915#13356]) -> [PASS][402]
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-dg2-7/igt@gem_ccs@suspend-resume.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-3/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: [INCOMPLETE][403] ([i915#12392] / [i915#13356]) -> [PASS][404]
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-dg2-7/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-3/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglu: [WARN][405] ([i915#13790] / [i915#2681]) -> [PASS][406] +1 other test pass
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-tglu-3/igt@i915_pm_rc6_residency@rc6-fence.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-glk: [INCOMPLETE][407] ([i915#13356] / [i915#15172]) -> [PASS][408]
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-glk3/igt@i915_pm_rpm@system-suspend-execbuf.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-glk2/igt@i915_pm_rpm@system-suspend-execbuf.html
- shard-rkl: [ABORT][409] ([i915#15060]) -> [PASS][410]
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-1/igt@i915_pm_rpm@system-suspend-execbuf.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-5/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_selftest@perf:
- shard-dg2: [DMESG-WARN][411] ([i915#14545]) -> [PASS][412]
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-dg2-6/igt@i915_selftest@perf.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-6/igt@i915_selftest@perf.html
- shard-snb: [DMESG-WARN][413] ([i915#14545]) -> [PASS][414]
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-snb5/igt@i915_selftest@perf.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-snb1/igt@i915_selftest@perf.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-mtlp: [FAIL][415] ([i915#15733] / [i915#5138]) -> [PASS][416]
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-rkl: [INCOMPLETE][417] ([i915#15582]) -> [PASS][418]
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][419] ([i915#13566]) -> [PASS][420] +1 other test pass
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-tglu-9/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-7/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html
* igt@kms_hdr@bpc-switch:
- shard-rkl: [SKIP][421] ([i915#3555] / [i915#8228]) -> [PASS][422]
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-7/igt@kms_hdr@bpc-switch.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@kms_hdr@bpc-switch.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a:
- shard-glk: [INCOMPLETE][423] ([i915#13026]) -> [PASS][424]
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-glk3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-glk6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-glk: [SKIP][425] -> [PASS][426]
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-glk4/igt@kms_plane_scaling@intel-max-src-size.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-glk5/igt@kms_plane_scaling@intel-max-src-size.html
- shard-tglu: [SKIP][427] ([i915#6953]) -> [PASS][428]
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-tglu-2/igt@kms_plane_scaling@intel-max-src-size.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-tglu-2/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2: [SKIP][429] ([i915#15073]) -> [PASS][430] +1 other test pass
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-dg2-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-6/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg1: [SKIP][431] ([i915#15073]) -> [PASS][432]
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-dg1-18/igt@kms_pm_rpm@modeset-lpsp-stress.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-15/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [SKIP][433] ([i915#15073]) -> [PASS][434] +2 other tests pass
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-rkl: [INCOMPLETE][435] ([i915#14419]) -> [PASS][436]
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-6/igt@kms_pm_rpm@system-suspend-idle.html
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-5/igt@kms_pm_rpm@system-suspend-idle.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-dg1: [DMESG-WARN][437] ([i915#4423]) -> [PASS][438] +1 other test pass
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-dg1-12/igt@kms_rotation_crc@bad-pixel-format.html
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-19/igt@kms_rotation_crc@bad-pixel-format.html
#### Warnings ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-rkl: [SKIP][439] ([i915#8411]) -> [SKIP][440] ([i915#14544] / [i915#8411])
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-2/igt@api_intel_bb@blit-reloc-keep-cache.html
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-rkl: [SKIP][441] ([i915#14544] / [i915#8411]) -> [SKIP][442] ([i915#8411])
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-6/igt@api_intel_bb@object-reloc-keep-cache.html
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-7/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@gem_basic@multigpu-create-close:
- shard-rkl: [SKIP][443] ([i915#7697]) -> [SKIP][444] ([i915#14544] / [i915#7697])
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-7/igt@gem_basic@multigpu-create-close.html
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@gem_basic@multigpu-create-close.html
* igt@gem_exec_reloc@basic-concurrent0:
- shard-rkl: [SKIP][445] ([i915#3281]) -> [SKIP][446] ([i915#14544] / [i915#3281]) +3 other tests skip
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-5/igt@gem_exec_reloc@basic-concurrent0.html
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@gem_exec_reloc@basic-concurrent0.html
* igt@gem_exec_reloc@basic-cpu-wc:
- shard-rkl: [SKIP][447] ([i915#14544] / [i915#3281]) -> [SKIP][448] ([i915#3281])
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-wc.html
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-4/igt@gem_exec_reloc@basic-cpu-wc.html
* igt@gem_lmem_swapping@parallel-random-engines:
- shard-rkl: [SKIP][449] ([i915#4613]) -> [SKIP][450] ([i915#14544] / [i915#4613])
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-2/igt@gem_lmem_swapping@parallel-random-engines.html
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_tiled_partial_pwrite_pread@writes-after-reads:
- shard-rkl: [SKIP][451] ([i915#3282]) -> [SKIP][452] ([i915#14544] / [i915#3282])
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-3/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@gem_tiled_partial_pwrite_pread@writes-after-reads.html
* igt@gem_userptr_blits@relocations:
- shard-rkl: [SKIP][453] ([i915#3281] / [i915#3297]) -> [SKIP][454] ([i915#14544] / [i915#3281] / [i915#3297])
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-7/igt@gem_userptr_blits@relocations.html
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@gem_userptr_blits@relocations.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-rkl: [SKIP][455] ([i915#3297]) -> [SKIP][456] ([i915#14544] / [i915#3297])
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-4/igt@gem_userptr_blits@unsync-overlap.html
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@gem_userptr_blits@unsync-overlap.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-rkl: [SKIP][457] ([i915#2527]) -> [SKIP][458] ([i915#14544] / [i915#2527])
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-8/igt@gen9_exec_parse@basic-rejected-ctx-param.html
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: [SKIP][459] ([i915#14544] / [i915#8399]) -> [SKIP][460] ([i915#8399])
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-6/igt@i915_pm_freq_api@freq-suspend.html
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-3/igt@i915_pm_freq_api@freq-suspend.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-180:
- shard-rkl: [SKIP][461] ([i915#14544] / [i915#5286]) -> [SKIP][462] ([i915#5286]) +1 other test skip
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-3/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-rkl: [SKIP][463] ([i915#5286]) -> [SKIP][464] ([i915#14544] / [i915#5286]) +2 other tests skip
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-rkl: [SKIP][465] ([i915#3638]) -> [SKIP][466] ([i915#14544] / [i915#3638]) +1 other test skip
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-7/igt@kms_big_fb@linear-32bpp-rotate-270.html
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-rkl: [SKIP][467] -> [SKIP][468] ([i915#14544]) +2 other tests skip
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
- shard-rkl: [SKIP][469] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][470] ([i915#14098] / [i915#6095]) +4 other tests skip
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-4/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][471] ([i915#14544] / [i915#6095]) -> [SKIP][472] ([i915#6095]) +3 other tests skip
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-4/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-rkl: [SKIP][473] ([i915#12313]) -> [SKIP][474] ([i915#12313] / [i915#14544])
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-5/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][475] ([i915#6095]) -> [SKIP][476] ([i915#14544] / [i915#6095]) +5 other tests skip
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][477] ([i915#14098] / [i915#6095]) -> [SKIP][478] ([i915#14098] / [i915#14544] / [i915#6095]) +7 other tests skip
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-rkl: [SKIP][479] ([i915#12313] / [i915#14544]) -> [SKIP][480] ([i915#12313])
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-7/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-rkl: [SKIP][481] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][482] ([i915#11151] / [i915#7828]) +1 other test skip
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-4/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-rkl: [SKIP][483] ([i915#11151] / [i915#7828]) -> [SKIP][484] ([i915#11151] / [i915#14544] / [i915#7828]) +2 other tests skip
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-7/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_content_protection@lic-type-1:
- shard-rkl: [SKIP][485] ([i915#14544] / [i915#15865]) -> [SKIP][486] ([i915#15865]) +1 other test skip
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-6/igt@kms_content_protection@lic-type-1.html
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-8/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@srm:
- shard-dg1: [SKIP][487] ([i915#15865]) -> [SKIP][488] ([i915#15865] / [i915#4423])
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-dg1-18/igt@kms_content_protection@srm.html
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-12/igt@kms_content_protection@srm.html
* igt@kms_content_protection@suspend-resume:
- shard-rkl: [SKIP][489] ([i915#15865]) -> [SKIP][490] ([i915#14544] / [i915#15865]) +1 other test skip
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-3/igt@kms_content_protection@suspend-resume.html
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@kms_content_protection@suspend-resume.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-rkl: [SKIP][491] ([i915#3555]) -> [SKIP][492] ([i915#14544] / [i915#3555])
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-4/igt@kms_cursor_crc@cursor-random-32x32.html
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-rkl: [SKIP][493] ([i915#13049]) -> [SKIP][494] ([i915#13049] / [i915#14544]) +1 other test skip
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-2/igt@kms_cursor_crc@cursor-random-512x170.html
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-rkl: [SKIP][495] ([i915#13049] / [i915#14544]) -> [SKIP][496] ([i915#13049]) +1 other test skip
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x512.html
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-7/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-rkl: [SKIP][497] ([i915#4103]) -> [SKIP][498] ([i915#14544] / [i915#4103])
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-rkl: [SKIP][499] ([i915#14544]) -> [SKIP][500] +2 other tests skip
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-8/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-rkl: [SKIP][501] ([i915#9723]) -> [SKIP][502] ([i915#14544] / [i915#9723])
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dsc@dsc-with-bpc:
- shard-rkl: [SKIP][503] ([i915#14544] / [i915#3555] / [i915#3840]) -> [SKIP][504] ([i915#3555] / [i915#3840])
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-6/igt@kms_dsc@dsc-with-bpc.html
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-7/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-formats:
- shard-rkl: [SKIP][505] ([i915#3555] / [i915#3840]) -> [SKIP][506] ([i915#14544] / [i915#3555] / [i915#3840])
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-3/igt@kms_dsc@dsc-with-formats.html
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@kms_dsc@dsc-with-formats.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible:
- shard-rkl: [SKIP][507] ([i915#9934]) -> [SKIP][508] ([i915#14544] / [i915#9934]) +1 other test skip
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-2/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: [SKIP][509] ([i915#14544] / [i915#9934]) -> [SKIP][510] ([i915#9934]) +2 other tests skip
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-6/igt@kms_flip@2x-plain-flip.html
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-3/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-rkl: [SKIP][511] ([i915#14544] / [i915#15643]) -> [SKIP][512] ([i915#15643])
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-rkl: [SKIP][513] ([i915#15643]) -> [SKIP][514] ([i915#14544] / [i915#15643])
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite:
- shard-dg1: [SKIP][515] -> [SKIP][516] ([i915#4423])
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite.html
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt:
- shard-rkl: [SKIP][517] ([i915#15102]) -> [SKIP][518] ([i915#14544] / [i915#15102])
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg1: [SKIP][519] ([i915#15990] / [i915#8708]) -> [SKIP][520] ([i915#15990] / [i915#4423] / [i915#8708])
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-wc.html
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][521] ([i915#1825]) -> [SKIP][522] ([i915#14544] / [i915#1825]) +9 other tests skip
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: [SKIP][523] ([i915#15102] / [i915#3023]) -> [SKIP][524] ([i915#14544] / [i915#15102] / [i915#3023]) +7 other tests skip
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][525] ([i915#14544] / [i915#15102]) -> [SKIP][526] ([i915#15102])
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: [SKIP][527] ([i915#15102] / [i915#3458]) -> [SKIP][528] ([i915#10433] / [i915#15102] / [i915#3458]) +3 other tests skip
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
- shard-rkl: [SKIP][529] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][530] ([i915#15102] / [i915#3023]) +4 other tests skip
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt:
- shard-rkl: [SKIP][531] ([i915#14544] / [i915#1825]) -> [SKIP][532] ([i915#1825]) +10 other tests skip
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: [SKIP][533] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][534] ([i915#15102] / [i915#3458]) +1 other test skip
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg1: [SKIP][535] ([i915#12713]) -> [SKIP][536] ([i915#1187] / [i915#12713])
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-dg1-12/igt@kms_hdr@brightness-with-hdr.html
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-rkl: [SKIP][537] ([i915#14544] / [i915#15458]) -> [SKIP][538] ([i915#15458])
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-6/igt@kms_joiner@basic-ultra-joiner.html
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-2/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping:
- shard-rkl: [SKIP][539] ([i915#15709]) -> [SKIP][540] ([i915#14544] / [i915#15709]) +2 other tests skip
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping.html
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier:
- shard-rkl: [SKIP][541] ([i915#14544] / [i915#15709]) -> [SKIP][542] ([i915#15709])
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-4/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-rkl: [SKIP][543] ([i915#13958] / [i915#14544]) -> [SKIP][544] ([i915#13958])
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-yf.html
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-7/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-rkl: [SKIP][545] ([i915#14544] / [i915#6953]) -> [SKIP][546] ([i915#6953])
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size.html
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-2/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: [SKIP][547] ([i915#3828]) -> [SKIP][548] ([i915#14544] / [i915#9340])
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-8/igt@kms_pm_lpsp@kms-lpsp.html
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-rkl: [SKIP][549] ([i915#11520] / [i915#14544]) -> [SKIP][550] ([i915#11520]) +2 other tests skip
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-7/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf:
- shard-rkl: [SKIP][551] ([i915#11520]) -> [SKIP][552] ([i915#11520] / [i915#14544]) +1 other test skip
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-7/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr@fbc-psr-basic:
- shard-dg1: [SKIP][553] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][554] ([i915#1072] / [i915#9732])
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-dg1-12/igt@kms_psr@fbc-psr-basic.html
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-15/igt@kms_psr@fbc-psr-basic.html
* igt@kms_psr@fbc-psr-dpms:
- shard-rkl: [SKIP][555] ([i915#1072] / [i915#9732]) -> [SKIP][556] ([i915#1072] / [i915#14544] / [i915#9732]) +4 other tests skip
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-5/igt@kms_psr@fbc-psr-dpms.html
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@kms_psr@fbc-psr-dpms.html
* igt@kms_psr@fbc-psr-primary-blt:
- shard-dg1: [SKIP][557] ([i915#1072] / [i915#9732]) -> [SKIP][558] ([i915#1072] / [i915#4423] / [i915#9732]) +1 other test skip
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-dg1-18/igt@kms_psr@fbc-psr-primary-blt.html
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-dg1-12/igt@kms_psr@fbc-psr-primary-blt.html
* igt@kms_psr@psr-suspend:
- shard-rkl: [SKIP][559] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][560] ([i915#1072] / [i915#9732]) +5 other tests skip
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-6/igt@kms_psr@psr-suspend.html
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-7/igt@kms_psr@psr-suspend.html
* igt@kms_vrr@flip-basic:
- shard-rkl: [SKIP][561] ([i915#14544] / [i915#15243] / [i915#3555]) -> [SKIP][562] ([i915#15243] / [i915#3555])
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-6/igt@kms_vrr@flip-basic.html
[562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-4/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@flip-dpms:
- shard-rkl: [SKIP][563] ([i915#15243] / [i915#3555]) -> [SKIP][564] ([i915#14544] / [i915#15243] / [i915#3555])
[563]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-5/igt@kms_vrr@flip-dpms.html
[564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-6/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-rkl: [SKIP][565] ([i915#14544] / [i915#9906]) -> [SKIP][566] ([i915#9906])
[565]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-drrs.html
[566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-7/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@perf_pmu@module-unload:
- shard-mtlp: [ABORT][567] ([i915#15778]) -> [INCOMPLETE][568] ([i915#13520])
[567]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-mtlp-7/igt@perf_pmu@module-unload.html
[568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-mtlp-3/igt@perf_pmu@module-unload.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-rkl: [SKIP][569] ([i915#14544] / [i915#9917]) -> [SKIP][570] ([i915#9917])
[569]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18389/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-on.html
[570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15088/shard-rkl-3/igt@sriov_basic@enable-vfs-autoprobe-on.html
[i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177
[i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
[i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026
[i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027
[i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390
[i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
[i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409
[i915#13441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13441
[i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
[i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520
[i915#13562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13562
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
[i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781
[i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783
[i915#13786]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13786
[i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
[i915#15060]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15060
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
[i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106
[i915#15172]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15172
[i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389
[i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403
[i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460
[i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492
[i915#15560]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15560
[i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
[i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656
[i915#15657]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15657
[i915#15678]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
[i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
[i915#15815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15815
[i915#15816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15816
[i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
[i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
[i915#15931]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931
[i915#15948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948
[i915#15949]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15949
[i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990
[i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3711]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3711
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3778
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#5107]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5566
[i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
[i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
[i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8881 -> IGTPW_15088
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_18389: 6472756e8384e3945f12b6726dd9dc1ac12f3bb4 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15088: 3cdcf9de1211f8291f6c0abb243a1be3520bba3a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8881: aa5853ef5b379b1e4558218c21ef4caeae112184 @ 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_15088/index.html
[-- Attachment #2: Type: text/html, Size: 196989 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ Xe.CI.FULL: failure for Add dsc+bigjoiner subtest (rev8)
2026-04-30 19:09 [PATCH i-g-t,v6 0/4] Add dsc+bigjoiner subtest Swati Sharma
` (6 preceding siblings ...)
2026-05-01 1:26 ` ✗ i915.CI.Full: failure " Patchwork
@ 2026-05-01 7:11 ` Patchwork
7 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2026-05-01 7:11 UTC (permalink / raw)
To: Swati Sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 53865 bytes --]
== Series Details ==
Series: Add dsc+bigjoiner subtest (rev8)
URL : https://patchwork.freedesktop.org/series/128266/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8881_FULL -> XEIGTPW_15088_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_15088_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_15088_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_15088_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@core_getversion@basic:
- shard-bmg: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-5/igt@core_getversion@basic.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-2/igt@core_getversion@basic.html
* igt@kms_dsc@dsc-basic-bigjoiner (NEW):
- shard-bmg: NOTRUN -> [SKIP][3] +15 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-5/igt@kms_dsc@dsc-basic-bigjoiner.html
* igt@kms_dsc@dsc-with-output-formats-bigjoiner (NEW):
- shard-lnl: NOTRUN -> [SKIP][4] +15 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-lnl-2/igt@kms_dsc@dsc-with-output-formats-bigjoiner.html
New tests
---------
New tests have been introduced between XEIGT_8881_FULL and XEIGTPW_15088_FULL:
### New IGT tests (16) ###
* igt@kms_dsc@dsc-basic-bigjoiner:
- Statuses : 2 skip(s)
- Exec time: [0.0] s
* igt@kms_dsc@dsc-basic-ultrajoiner:
- Statuses : 2 skip(s)
- Exec time: [0.0] s
* igt@kms_dsc@dsc-fractional-bpp-bigjoiner:
- Statuses : 2 skip(s)
- Exec time: [0.00] s
* igt@kms_dsc@dsc-fractional-bpp-ultrajoiner:
- Statuses : 2 skip(s)
- Exec time: [0.0, 0.00] s
* igt@kms_dsc@dsc-fractional-bpp-with-bpc-bigjoiner:
- Statuses : 2 skip(s)
- Exec time: [0.00] s
* igt@kms_dsc@dsc-fractional-bpp-with-bpc-ultrajoiner:
- Statuses : 2 skip(s)
- Exec time: [0.0, 0.00] s
* igt@kms_dsc@dsc-with-bpc-bigjoiner:
- Statuses : 2 skip(s)
- Exec time: [0.00] s
* igt@kms_dsc@dsc-with-bpc-formats-bigjoiner:
- Statuses : 2 skip(s)
- Exec time: [0.00, 0.01] s
* igt@kms_dsc@dsc-with-bpc-formats-ultrajoiner:
- Statuses : 2 skip(s)
- Exec time: [0.0, 0.01] s
* igt@kms_dsc@dsc-with-bpc-ultrajoiner:
- Statuses : 2 skip(s)
- Exec time: [0.0, 0.00] s
* igt@kms_dsc@dsc-with-formats-bigjoiner:
- Statuses : 2 skip(s)
- Exec time: [0.00] s
* igt@kms_dsc@dsc-with-formats-ultrajoiner:
- Statuses : 2 skip(s)
- Exec time: [0.0, 0.00] s
* igt@kms_dsc@dsc-with-output-formats-bigjoiner:
- Statuses : 2 skip(s)
- Exec time: [0.00] s
* igt@kms_dsc@dsc-with-output-formats-ultrajoiner:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner:
- Statuses : 2 skip(s)
- Exec time: [0.00] s
* igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner:
- Statuses : 2 skip(s)
- Exec time: [0.0, 0.00] s
Known issues
------------
Here are the changes found in XEIGTPW_15088_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2370])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#1124]) +2 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-7/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#1124]) +2 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-lnl-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-target-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#7679])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-target-2160x1440p.html
* igt@kms_bw@linear-tiling-3-displays-target-2560x1440p:
- shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#367])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-lnl-1/igt@kms_bw@linear-tiling-3-displays-target-2560x1440p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2887]) +3 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-4/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#2669] / [Intel XE#3433] / [Intel XE#7389]) +3 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-lnl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#2887]) +3 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-lnl-5/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2652]) +8 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-9/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2325] / [Intel XE#7358])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-7/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2252])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-8/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_chamelium_hpd@hdmi-hpd:
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#373]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-lnl-2/igt@kms_chamelium_hpd@hdmi-hpd.html
* igt@kms_chamelium_sharpness_filter@filter-basic:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#6507])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-8/igt@kms_chamelium_sharpness_filter@filter-basic.html
* igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#6974])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-lnl-4/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
* igt@kms_content_protection@uevent@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][19] ([Intel XE#6707] / [Intel XE#7439])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-5/igt@kms_content_protection@uevent@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1424]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-lnl-3/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#309] / [Intel XE#7343]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-lnl-7/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [PASS][22] -> [FAIL][23] ([Intel XE#7571])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-10/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#1421])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-lnl-5/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-bmg: [PASS][25] -> [FAIL][26] ([Intel XE#3321]) +1 other test fail
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank@c-edp1:
- shard-lnl: [PASS][27] -> [FAIL][28] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html
* igt@kms_force_connector_basic@force-connector-state:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#352])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-lnl-4/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2311]) +6 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#4141]) +4 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-lnl-5/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#7061] / [Intel XE#7356])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-render:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#6312] / [Intel XE#651]) +2 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move:
- shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#5812] / [Intel XE#656]) +10 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2313]) +7 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#1469] / [Intel XE#7399])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#7283])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-lnl-1/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#4596] / [Intel XE#5854])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-lnl-4/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [PASS][42] -> [FAIL][43] ([Intel XE#7340] / [Intel XE#7504])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-lnl-2/igt@kms_pm_dc@dc5-dpms.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-lnl-4/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [PASS][44] -> [FAIL][45] ([Intel XE#7340])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-lnl-5/igt@kms_pm_dc@dc5-psr.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#2893] / [Intel XE#7304])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-lnl-2/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#1489])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-8/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr@fbc-psr-primary-render:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-8/igt@kms_psr@fbc-psr-primary-render.html
* igt@kms_psr@pr-cursor-plane-move:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#1406]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-lnl-1/igt@kms_psr@pr-cursor-plane-move.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#7795])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-9/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#3904] / [Intel XE#7342])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-5/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_sharpness_filter@filter-suspend:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#6503])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-4/igt@kms_sharpness_filter@filter-suspend.html
* igt@kms_vrr@flip-suspend@pipe-a-edp-1:
- shard-lnl: [PASS][53] -> [FAIL][54] ([Intel XE#4227] / [Intel XE#7397]) +1 other test fail
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-lnl-8/igt@kms_vrr@flip-suspend@pipe-a-edp-1.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-lnl-2/igt@kms_vrr@flip-suspend@pipe-a-edp-1.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#1499])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-1/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@xe_ccs@block-multicopy-inplace:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#6703]) +6 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-2/igt@xe_ccs@block-multicopy-inplace.html
* igt@xe_eudebug@attach-debug-metadata:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#7636]) +3 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-lnl-7/igt@xe_eudebug@attach-debug-metadata.html
* igt@xe_eudebug@basic-read-event:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#7636]) +2 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-5/igt@xe_eudebug@basic-read-event.html
* igt@xe_evict@evict-mixed-threads-small-multi-queue:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#7140])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-1/igt@xe_evict@evict-mixed-threads-small-multi-queue.html
* igt@xe_evict_ccs@evict-overcommit-standalone-nofree-samefd:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#6540] / [Intel XE#688]) +2 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-lnl-3/igt@xe_evict_ccs@evict-overcommit-standalone-nofree-samefd.html
* igt@xe_exec_balancer@once-parallel-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#7482]) +5 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-lnl-4/igt@xe_exec_balancer@once-parallel-userptr-invalidate.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind:
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#1392]) +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-lnl-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html
* igt@xe_exec_basic@multigpu-once-null-defer-mmap:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2322] / [Intel XE#7372]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-2/igt@xe_exec_basic@multigpu-once-null-defer-mmap.html
* igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch:
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#7136])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-lnl-4/igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch.html
* igt@xe_exec_fault_mode@twice-multi-queue-invalid-userptr-fault:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#7136])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-1/igt@xe_exec_fault_mode@twice-multi-queue-invalid-userptr-fault.html
* igt@xe_exec_multi_queue@max-queues-preempt-mode-dyn-priority:
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#6874]) +6 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-lnl-1/igt@xe_exec_multi_queue@max-queues-preempt-mode-dyn-priority.html
* igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-close-fd:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#6874]) +7 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-8/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-close-fd.html
* igt@xe_exec_system_allocator@once-malloc-mlock-nomemset:
- shard-bmg: [PASS][68] -> [DMESG-FAIL][69] ([Intel XE#5545])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-9/igt@xe_exec_system_allocator@once-malloc-mlock-nomemset.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-2/igt@xe_exec_system_allocator@once-malloc-mlock-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-stride-free-nomemset:
- shard-bmg: [PASS][70] -> [SKIP][71] ([Intel XE#6703]) +120 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-5/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-free-nomemset.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-2/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-free-nomemset.html
* igt@xe_exec_threads@threads-multi-queue-mixed-userptr:
- shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#7138]) +2 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-lnl-5/igt@xe_exec_threads@threads-multi-queue-mixed-userptr.html
* igt@xe_multigpu_svm@mgpu-latency-prefetch:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#6964]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-2/igt@xe_multigpu_svm@mgpu-latency-prefetch.html
* igt@xe_noexec_ping_pong@basic:
- shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#6259] / [Intel XE#7324] / [Intel XE#7406])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-lnl-7/igt@xe_noexec_ping_pong@basic.html
* igt@xe_page_reclaim@binds-full-pd:
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#7793])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-lnl-1/igt@xe_page_reclaim@binds-full-pd.html
* igt@xe_pxp@pxp-optout:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#4733] / [Intel XE#7417]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-4/igt@xe_pxp@pxp-optout.html
* igt@xe_query@multigpu-query-gt-list:
- shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#944])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-lnl-5/igt@xe_query@multigpu-query-gt-list.html
* igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#4130] / [Intel XE#7366])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-lnl-7/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html
* igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling@numvfs-random:
- shard-bmg: [PASS][79] -> [FAIL][80] ([Intel XE#5937]) +1 other test fail
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-7/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling@numvfs-random.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-1/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling@numvfs-random.html
#### Possible fixes ####
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [FAIL][81] ([Intel XE#7809]) -> [PASS][82]
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ab-dp2-hdmi-a3:
- shard-bmg: [FAIL][83] ([Intel XE#3098]) -> [PASS][84] +1 other test pass
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-1/igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ab-dp2-hdmi-a3.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-5/igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ab-dp2-hdmi-a3.html
* igt@kms_plane_cursor@viewport:
- shard-bmg: [DMESG-FAIL][85] -> [PASS][86] +1 other test pass
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-2/igt@kms_plane_cursor@viewport.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-1/igt@kms_plane_cursor@viewport.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][87] ([Intel XE#6321]) -> [PASS][88]
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-2/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-4/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_exec_basic@once-bindexecqueue-userptr-invalidate-race:
- shard-bmg: [SKIP][89] ([Intel XE#6703]) -> [PASS][90] +70 other tests pass
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-2/igt@xe_exec_basic@once-bindexecqueue-userptr-invalidate-race.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-4/igt@xe_exec_basic@once-bindexecqueue-userptr-invalidate-race.html
* igt@xe_sriov_flr@flr-basic@numvfs-1:
- shard-bmg: [FAIL][91] ([Intel XE#5937]) -> [PASS][92] +1 other test pass
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-8/igt@xe_sriov_flr@flr-basic@numvfs-1.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-7/igt@xe_sriov_flr@flr-basic@numvfs-1.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-bmg: [FAIL][93] ([Intel XE#6569]) -> [PASS][94]
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-7/igt@xe_sriov_flr@flr-vf1-clear.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-6/igt@xe_sriov_flr@flr-vf1-clear.html
#### Warnings ####
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
- shard-bmg: [SKIP][95] ([Intel XE#7059] / [Intel XE#7085]) -> [SKIP][96] ([Intel XE#6703])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-2/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-2/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180:
- shard-bmg: [SKIP][97] ([Intel XE#6703]) -> [SKIP][98] ([Intel XE#1124])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-bmg: [SKIP][99] ([Intel XE#1124]) -> [SKIP][100] ([Intel XE#6703]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-4/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-2/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_bw@connected-linear-tiling-2-displays-target-2560x1440p:
- shard-bmg: [SKIP][101] ([Intel XE#7679]) -> [SKIP][102] ([Intel XE#6703])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-10/igt@kms_bw@connected-linear-tiling-2-displays-target-2560x1440p.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-target-2560x1440p.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs:
- shard-bmg: [SKIP][103] ([Intel XE#2887]) -> [SKIP][104] ([Intel XE#6703]) +1 other test skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-4/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-2/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs:
- shard-bmg: [SKIP][105] ([Intel XE#3432]) -> [SKIP][106] ([Intel XE#6703])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs:
- shard-bmg: [SKIP][107] ([Intel XE#6703]) -> [SKIP][108] ([Intel XE#2887]) +3 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs.html
* igt@kms_chamelium_audio@dp-audio:
- shard-bmg: [SKIP][109] ([Intel XE#2252]) -> [SKIP][110] ([Intel XE#6703])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-8/igt@kms_chamelium_audio@dp-audio.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-2/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-bmg: [SKIP][111] ([Intel XE#6703]) -> [SKIP][112] ([Intel XE#2252])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-2/igt@kms_chamelium_edid@hdmi-mode-timings.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-4/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_content_protection@content-type-change:
- shard-bmg: [SKIP][113] ([Intel XE#6703]) -> [SKIP][114] ([Intel XE#7642])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-2/igt@kms_content_protection@content-type-change.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-5/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@uevent:
- shard-bmg: [SKIP][115] ([Intel XE#6703]) -> [FAIL][116] ([Intel XE#6707] / [Intel XE#7439])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-2/igt@kms_content_protection@uevent.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-5/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-bmg: [SKIP][117] ([Intel XE#2320]) -> [SKIP][118] ([Intel XE#6703])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-2/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-2/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
- shard-bmg: [SKIP][119] ([Intel XE#7178] / [Intel XE#7351]) -> [SKIP][120] ([Intel XE#6703])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc:
- shard-bmg: [SKIP][121] ([Intel XE#7061] / [Intel XE#7356]) -> [SKIP][122] ([Intel XE#6703]) +2 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][123] ([Intel XE#4141]) -> [SKIP][124] ([Intel XE#6703]) +1 other test skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][125] ([Intel XE#6703]) -> [SKIP][126] ([Intel XE#4141])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render:
- shard-bmg: [ABORT][127] -> [SKIP][128] ([Intel XE#4141])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-render:
- shard-bmg: [SKIP][129] ([Intel XE#6703]) -> [SKIP][130] ([Intel XE#7061] / [Intel XE#7356])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-render.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt:
- shard-bmg: [SKIP][131] ([Intel XE#2311]) -> [SKIP][132] ([Intel XE#6703]) +5 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-slowdraw:
- shard-bmg: [SKIP][133] ([Intel XE#6703]) -> [SKIP][134] ([Intel XE#2311]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-slowdraw.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-slowdraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][135] ([Intel XE#2313]) -> [SKIP][136] ([Intel XE#6703]) +4 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc:
- shard-bmg: [SKIP][137] ([Intel XE#6703]) -> [SKIP][138] ([Intel XE#2313]) +3 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html
* igt@kms_hdmi_inject@inject-audio:
- shard-bmg: [SKIP][139] ([Intel XE#7308]) -> [SKIP][140] ([Intel XE#6703])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-9/igt@kms_hdmi_inject@inject-audio.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-2/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping:
- shard-bmg: [SKIP][141] ([Intel XE#6703]) -> [SKIP][142] ([Intel XE#7283])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-2/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-5/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-yf-tiled-modifier:
- shard-bmg: [SKIP][143] ([Intel XE#7283]) -> [SKIP][144] ([Intel XE#6703])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-4/igt@kms_plane@pixel-format-yf-tiled-modifier.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-2/igt@kms_plane@pixel-format-yf-tiled-modifier.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75:
- shard-bmg: [SKIP][145] ([Intel XE#2763] / [Intel XE#6886]) -> [SKIP][146] ([Intel XE#6703])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
* igt@kms_pm_dc@dc5-psr:
- shard-bmg: [SKIP][147] ([Intel XE#7794]) -> [SKIP][148] ([Intel XE#6703])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-6/igt@kms_pm_dc@dc5-psr.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-2/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-bmg: [SKIP][149] ([Intel XE#6703]) -> [SKIP][150] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-2/igt@kms_pm_rpm@modeset-lpsp-stress.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-4/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
- shard-bmg: [SKIP][151] ([Intel XE#6703]) -> [SKIP][152] ([Intel XE#1489])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf:
- shard-bmg: [SKIP][153] ([Intel XE#1489]) -> [SKIP][154] ([Intel XE#6703]) +2 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-9/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-2/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr@psr-sprite-plane-move:
- shard-bmg: [SKIP][155] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][156] ([Intel XE#6703]) +1 other test skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-1/igt@kms_psr@psr-sprite-plane-move.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-2/igt@kms_psr@psr-sprite-plane-move.html
* igt@kms_sharpness_filter@filter-rotations:
- shard-bmg: [SKIP][157] ([Intel XE#6503]) -> [SKIP][158] ([Intel XE#6703])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-9/igt@kms_sharpness_filter@filter-rotations.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-2/igt@kms_sharpness_filter@filter-rotations.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [FAIL][159] ([Intel XE#1729] / [Intel XE#7424]) -> [SKIP][160] ([Intel XE#2426] / [Intel XE#5848])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@flipline:
- shard-bmg: [SKIP][161] ([Intel XE#6703]) -> [SKIP][162] ([Intel XE#1499])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-2/igt@kms_vrr@flipline.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-9/igt@kms_vrr@flipline.html
* igt@xe_eudebug_online@set-breakpoint-faultable:
- shard-bmg: [SKIP][163] ([Intel XE#7636]) -> [SKIP][164] ([Intel XE#6703]) +2 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-4/igt@xe_eudebug_online@set-breakpoint-faultable.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-2/igt@xe_eudebug_online@set-breakpoint-faultable.html
* igt@xe_eudebug_online@single-step:
- shard-bmg: [SKIP][165] ([Intel XE#6703]) -> [SKIP][166] ([Intel XE#7636])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-2/igt@xe_eudebug_online@single-step.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-6/igt@xe_eudebug_online@single-step.html
* igt@xe_evict@evict-small-multi-queue-cm:
- shard-bmg: [SKIP][167] ([Intel XE#6703]) -> [SKIP][168] ([Intel XE#7140])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-2/igt@xe_evict@evict-small-multi-queue-cm.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-7/igt@xe_evict@evict-small-multi-queue-cm.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind:
- shard-bmg: [SKIP][169] ([Intel XE#6703]) -> [SKIP][170] ([Intel XE#2322] / [Intel XE#7372])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind.html
* igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap:
- shard-bmg: [SKIP][171] ([Intel XE#2322] / [Intel XE#7372]) -> [SKIP][172] ([Intel XE#6703])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-10/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html
* igt@xe_exec_fault_mode@many-multi-queue-imm:
- shard-bmg: [SKIP][173] ([Intel XE#7136]) -> [SKIP][174] ([Intel XE#6703]) +4 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-6/igt@xe_exec_fault_mode@many-multi-queue-imm.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-2/igt@xe_exec_fault_mode@many-multi-queue-imm.html
* igt@xe_exec_multi_queue@max-queues-preempt-mode-fault-dyn-priority:
- shard-bmg: [SKIP][175] ([Intel XE#6874]) -> [SKIP][176] ([Intel XE#6703]) +3 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-10/igt@xe_exec_multi_queue@max-queues-preempt-mode-fault-dyn-priority.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-2/igt@xe_exec_multi_queue@max-queues-preempt-mode-fault-dyn-priority.html
* igt@xe_exec_multi_queue@two-queues-close-fd-smem:
- shard-bmg: [SKIP][177] ([Intel XE#6703]) -> [SKIP][178] ([Intel XE#6874]) +2 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-2/igt@xe_exec_multi_queue@two-queues-close-fd-smem.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-9/igt@xe_exec_multi_queue@two-queues-close-fd-smem.html
* igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr:
- shard-bmg: [SKIP][179] ([Intel XE#7138]) -> [SKIP][180] ([Intel XE#6703])
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-1/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr.html
* igt@xe_exec_threads@threads-multi-queue-userptr-rebind:
- shard-bmg: [SKIP][181] ([Intel XE#6703]) -> [SKIP][182] ([Intel XE#7138])
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-userptr-rebind.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-1/igt@xe_exec_threads@threads-multi-queue-userptr-rebind.html
* igt@xe_page_reclaim@prl-max-entries:
- shard-bmg: [SKIP][183] ([Intel XE#6703]) -> [SKIP][184] ([Intel XE#7793])
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-2/igt@xe_page_reclaim@prl-max-entries.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-2/igt@xe_page_reclaim@prl-max-entries.html
* igt@xe_page_reclaim@random:
- shard-bmg: [SKIP][185] ([Intel XE#7793]) -> [SKIP][186] ([Intel XE#6703])
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-8/igt@xe_page_reclaim@random.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-2/igt@xe_page_reclaim@random.html
* igt@xe_pxp@pxp-termination-key-update-post-rpm:
- shard-bmg: [SKIP][187] ([Intel XE#4733] / [Intel XE#7417]) -> [SKIP][188] ([Intel XE#6703])
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-1/igt@xe_pxp@pxp-termination-key-update-post-rpm.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-2/igt@xe_pxp@pxp-termination-key-update-post-rpm.html
* igt@xe_query@multigpu-query-mem-usage:
- shard-bmg: [SKIP][189] ([Intel XE#944]) -> [SKIP][190] ([Intel XE#6703])
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8881/shard-bmg-5/igt@xe_query@multigpu-query-mem-usage.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/shard-bmg-2/igt@xe_query@multigpu-query-mem-usage.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433
[Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5812]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5812
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#5854]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5854
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#6259]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6259
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6507]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6507
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
[Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304
[Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308
[Intel XE#7324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7324
[Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7366
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
[Intel XE#7389]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7389
[Intel XE#7397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7397
[Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
[Intel XE#7406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7406
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
[Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7504
[Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
[Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
[Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
[Intel XE#7794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7794
[Intel XE#7795]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7795
[Intel XE#7809]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7809
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8881 -> IGTPW_15088
* Linux: xe-4959-3ac514cf64f272cc4d5143f4cc28fb18a8aba76d -> xe-4960-6472756e8384e3945f12b6726dd9dc1ac12f3bb4
IGTPW_15088: 3cdcf9de1211f8291f6c0abb243a1be3520bba3a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8881: aa5853ef5b379b1e4558218c21ef4caeae112184 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4959-3ac514cf64f272cc4d5143f4cc28fb18a8aba76d: 3ac514cf64f272cc4d5143f4cc28fb18a8aba76d
xe-4960-6472756e8384e3945f12b6726dd9dc1ac12f3bb4: 6472756e8384e3945f12b6726dd9dc1ac12f3bb4
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15088/index.html
[-- Attachment #2: Type: text/html, Size: 64949 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t, v6 1/4] tests/intel/kms_joiner_helper: Add igt_get_joined_pipes_name()
2026-04-30 19:09 ` [PATCH i-g-t, v6 1/4] tests/intel/kms_joiner_helper: Add igt_get_joined_pipes_name() Swati Sharma
@ 2026-05-15 6:06 ` Karthik B S
0 siblings, 0 replies; 13+ messages in thread
From: Karthik B S @ 2026-05-15 6:06 UTC (permalink / raw)
To: Swati Sharma, igt-dev
On 5/1/2026 12:39 AM, Swati Sharma wrote:
> Add function to transform the enum into a string.
>
> v2: -Improved func() doc (Jeevan)
> v3: -Return names without '-' dash prefix (Santhosh)
> v4: -Move from lib/igt_kms to tests/intel/kms_joiner_helper (Jani)
>
> Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
Reviewed-by: Karthik B S <karthik.b.s@intel.com>
> ---
> tests/intel/kms_joiner_helper.c | 22 ++++++++++++++++++++++
> tests/intel/kms_joiner_helper.h | 1 +
> 2 files changed, 23 insertions(+)
>
> diff --git a/tests/intel/kms_joiner_helper.c b/tests/intel/kms_joiner_helper.c
> index e24d7ce94..0aa409ac2 100644
> --- a/tests/intel/kms_joiner_helper.c
> +++ b/tests/intel/kms_joiner_helper.c
> @@ -183,3 +183,25 @@ bool igt_assign_pipes_for_outputs(int drm_fd,
> }
> return true;
> }
> +
> +/**
> + * igt_get_joined_pipes_name:
> + * @val: joined_pipes enum value
> + *
> + * Returns: A readable string for the given joined_pipes enum value.
> + */
> +const char *igt_get_joined_pipes_name(enum joined_pipes val)
> +{
> + switch (val) {
> + case JOINED_PIPES_DEFAULT:
> + return "";
> + case JOINED_PIPES_NONE:
> + return "none";
> + case JOINED_PIPES_BIG_JOINER:
> + return "bigjoiner";
> + case JOINED_PIPES_ULTRA_JOINER:
> + return "ultrajoiner";
> + default:
> + igt_assert(false);
> + }
> +}
> diff --git a/tests/intel/kms_joiner_helper.h b/tests/intel/kms_joiner_helper.h
> index 6d21e7eb0..1ea871a3b 100644
> --- a/tests/intel/kms_joiner_helper.h
> +++ b/tests/intel/kms_joiner_helper.h
> @@ -17,6 +17,7 @@ bool igt_assign_pipes_for_outputs(int drm_fd,
> uint32_t *used_pipes_mask,
> uint32_t master_pipes_mask,
> uint32_t valid_pipes_mask);
> +const char *igt_get_joined_pipes_name(enum joined_pipes val);
>
> enum force_joiner_mode {
> FORCE_JOINER_ENABLE = 0,
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t, v6 2/4] tests/kms_joiner_helper: Add igt_is_joiner_supported_by_source()
2026-04-30 19:09 ` [PATCH i-g-t, v6 2/4] tests/kms_joiner_helper: Add igt_is_joiner_supported_by_source() Swati Sharma
@ 2026-05-15 6:18 ` Karthik B S
0 siblings, 0 replies; 13+ messages in thread
From: Karthik B S @ 2026-05-15 6:18 UTC (permalink / raw)
To: Swati Sharma, igt-dev
Hi Swati,
On 5/1/2026 12:39 AM, Swati Sharma wrote:
> Add func() returning true/false if platform supports big/ultra
> joiner and use corresponding func() in related binaries.
>
> v2: -Moved func() to joiner_helper (Jeevan)
> -Use common func for ultra|big joiner (Ankit)
> v3: -Rename param type to joiner_type (Ankit)
> -Fix ultra joiner condition logic (Karthik, Ankit)
>
> Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
> ---
> tests/intel/kms_joiner.c | 8 ++------
> tests/intel/kms_joiner_helper.c | 33 +++++++++++++++++++++++++++++++++
> tests/intel/kms_joiner_helper.h | 2 ++
> 3 files changed, 37 insertions(+), 6 deletions(-)
>
> diff --git a/tests/intel/kms_joiner.c b/tests/intel/kms_joiner.c
> index 86226a3ba..2cd0d7276 100644
> --- a/tests/intel/kms_joiner.c
> +++ b/tests/intel/kms_joiner.c
> @@ -33,7 +33,6 @@
> */
>
> #include "igt.h"
> -#include "xe/xe_query.h"
> #include "kms_dsc_helper.c"
> #include "kms_joiner_helper.h"
>
> @@ -619,9 +618,8 @@ static void test_basic_max_non_joiner(data_t *data)
>
> int igt_main()
> {
> - bool is_dgfx;
> igt_crtc_t *crtc;
> - int j, display_ver;
> + int j;
> igt_output_t *output;
> drmModeModeInfo mode;
> data_t data;
> @@ -644,9 +642,7 @@ int igt_main()
> igt_require(data.display.is_atomic);
> max_dotclock = igt_get_max_dotclock(data.drm_fd);
>
> - is_dgfx = is_xe_device(data.drm_fd) ? xe_has_vram(data.drm_fd) : gem_has_lmem(data.drm_fd);
> - display_ver = intel_display_ver(intel_get_drm_devid(data.drm_fd));
> - if (is_dgfx && display_ver == 14)
> + if (igt_is_joiner_supported_by_source(data.drm_fd, JOINED_PIPES_ULTRA_JOINER))
Would be to add a check using this helper for big joiner as well, but
that could be handled outside this patch as well.
> data.ultra_joiner_supported = true;
>
> for_each_connected_output(&data.display, output) {
> diff --git a/tests/intel/kms_joiner_helper.c b/tests/intel/kms_joiner_helper.c
> index 0aa409ac2..d51aa77e5 100644
> --- a/tests/intel/kms_joiner_helper.c
> +++ b/tests/intel/kms_joiner_helper.c
> @@ -184,6 +184,39 @@ bool igt_assign_pipes_for_outputs(int drm_fd,
> return true;
> }
>
> +/**
> + * igt_is_joiner_supported_by_source:
> + * @drm_fd: drm file descriptor
> + * @joiner_type: joiner type
> + *
> + * Returns: True if (ultra|big)joiner is supported by platform, false otherwise
> + */
> +bool igt_is_joiner_supported_by_source(int drm_fd, enum joined_pipes joiner_type)
IMHO, the function also be called igt_is_joiner_type_supported_by_source?
Either case, patch LGTM.
Reviewed-by: Karthik B S <karthik.b.s@intel.com>
> +{
> + int disp_ver;
> + bool is_dgfx;
> +
> + is_dgfx = is_xe_device(drm_fd) ? xe_has_vram(drm_fd) : gem_has_lmem(drm_fd);
> + disp_ver = intel_display_ver(intel_get_drm_devid(drm_fd));
> +
> + switch (joiner_type) {
> + case JOINED_PIPES_BIG_JOINER:
> + if (disp_ver < 12) {
> + igt_info("Bigjoiner is not supported on D11 and older platforms.\n");
> + return false;
> + }
> + return true;
> + case JOINED_PIPES_ULTRA_JOINER:
> + if (!is_dgfx || disp_ver != 14) {
> + igt_info("Ultrajoiner is supported on dgfx with D14 only.\n");
> + return false;
> + }
> + return true;
> + default:
> + return false;
> + }
> +}
> +
> /**
> * igt_get_joined_pipes_name:
> * @val: joined_pipes enum value
> diff --git a/tests/intel/kms_joiner_helper.h b/tests/intel/kms_joiner_helper.h
> index 1ea871a3b..7ede624c6 100644
> --- a/tests/intel/kms_joiner_helper.h
> +++ b/tests/intel/kms_joiner_helper.h
> @@ -7,6 +7,7 @@
> #define KMS_JOINER_HELPER_H
>
> #include "igt_kms.h"
> +#include "xe/xe_query.h"
>
> void igt_set_all_master_pipes_for_platform(igt_display_t *display,
> uint32_t *master_pipes);
> @@ -17,6 +18,7 @@ bool igt_assign_pipes_for_outputs(int drm_fd,
> uint32_t *used_pipes_mask,
> uint32_t master_pipes_mask,
> uint32_t valid_pipes_mask);
> +bool igt_is_joiner_supported_by_source(int drm_fd, enum joined_pipes joiner_type);
> const char *igt_get_joined_pipes_name(enum joined_pipes val);
>
> enum force_joiner_mode {
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t,v6 3/4] tests/intel/kms_dsc_helper: Add helper func()
2026-04-30 19:09 ` [PATCH i-g-t,v6 3/4] tests/intel/kms_dsc_helper: Add helper func() Swati Sharma
@ 2026-05-15 8:36 ` Karthik B S
0 siblings, 0 replies; 13+ messages in thread
From: Karthik B S @ 2026-05-15 8:36 UTC (permalink / raw)
To: Swati Sharma, igt-dev
Hi Swati,
On 5/1/2026 12:39 AM, Swati Sharma wrote:
> Introduce check_dsc_joiner_constraints() to validate minimum pipe
> count, DSC slice requirements, and joiner support for DSC joiner
> scenarios.
>
> Update meson.build to link kms_joiner_helper.c into DSC-related
> tests so the new helper can call igt_is_joiner_supported_by_source().
>
> v2: -Avoid hardcoding min_pipes/min_slices, use enum values (Santhosh)
>
> Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
> ---
> tests/intel/kms_dsc_helper.c | 54 ++++++++++++++++++++++++++++++++++++
> tests/intel/kms_dsc_helper.h | 3 ++
> tests/meson.build | 17 ++++++++----
> 3 files changed, 68 insertions(+), 6 deletions(-)
>
> diff --git a/tests/intel/kms_dsc_helper.c b/tests/intel/kms_dsc_helper.c
> index 29b998c2f..63170af1e 100644
> --- a/tests/intel/kms_dsc_helper.c
> +++ b/tests/intel/kms_dsc_helper.c
> @@ -203,3 +203,57 @@ bool is_dsc_fractional_bpp_supported(int disp_ver, int drmfd, igt_output_t *outp
>
> return true;
> }
> +
> +bool check_dsc_joiner_constraints(int drm_fd,
> + igt_output_t *output,
> + int num_pipes,
> + enum joined_pipes type)
> +{
> + int min_pipes = 0, min_slices = 0;
> +
> + if (!igt_is_joiner_supported_by_source(drm_fd, type))
> + return false;
> +
> + /*
> + * For joiner, 2 slices per pipe is used
> + * i.e. min_slices = 2 * min_pipes
> + */
> + switch (type) {
> + case JOINED_PIPES_BIG_JOINER:
> + min_pipes = JOINED_PIPES_BIG_JOINER;
> + min_slices = min_pipes * 2;
> + break;
> + case JOINED_PIPES_ULTRA_JOINER:
> + min_pipes = JOINED_PIPES_ULTRA_JOINER;
> + min_slices = min_pipes * 2;
> + break;
> + case JOINED_PIPES_NONE:
> + case JOINED_PIPES_DEFAULT:
IMHO, since this helper can be potentially called other tests in the
future, we should not call these as unsupported with DSC.
> + default:
> + igt_info("Unsupported joiner type: %s\n",
> + igt_get_joined_pipes_name(type));
There seem to be a bunch of indentation and styling issues checkpatch is
throwing, please fix them.
Thanks and Regards,
Karthik.B.S
> + return false;
> + }
> +
> + if (num_pipes < min_pipes) {
> + igt_info("%s requires minimum %d pipes\n",
> + igt_get_joined_pipes_name(type), min_pipes);
> + return false;
> + }
> +
> + if (igt_get_dsc_sink_max_slice_count(drm_fd, output->name) < min_slices) {
> + igt_info("Output %s doesn't support minimum %d slice count for %s\n",
> + igt_output_name(output), min_slices,
> + igt_get_joined_pipes_name(type));
> + return false;
> + }
> +
> + if (!igt_has_force_joiner_debugfs(drm_fd, output->name)) {
> + igt_info("Output %s doesn't support force_joiner debugfs for %s\n",
> + igt_output_name(output),
> + igt_get_joined_pipes_name(type));
> + return false;
> + }
> +
> + return true;
> +}
> diff --git a/tests/intel/kms_dsc_helper.h b/tests/intel/kms_dsc_helper.h
> index ee419c849..e4c970447 100644
> --- a/tests/intel/kms_dsc_helper.h
> +++ b/tests/intel/kms_dsc_helper.h
> @@ -8,6 +8,7 @@
>
> #include "igt.h"
> #include "igt_sysfs.h"
> +#include "kms_joiner_helper.h"
> #include <errno.h>
> #include <getopt.h>
> #include <math.h>
> @@ -39,5 +40,7 @@ void force_dsc_fractional_bpp_enable(int drmfd, igt_output_t *output);
> void save_force_dsc_fractional_bpp_en(int drmfd, igt_output_t *output);
> void restore_force_dsc_fractional_bpp_en(void);
> bool is_dsc_fractional_bpp_supported(int disp_ver, int drmfd, igt_output_t *output);
> +bool check_dsc_joiner_constraints(int drm_fd, igt_output_t *output, int num_pipes,
> + enum joined_pipes type);
>
> #endif
> diff --git a/tests/meson.build b/tests/meson.build
> index 60cea3aa8..38a42bda6 100644
> --- a/tests/meson.build
> +++ b/tests/meson.build
> @@ -399,14 +399,19 @@ extra_sources = {
> 'kms_chamelium_hpd': [ join_paths ('chamelium', 'kms_chamelium_helper.c') ],
> 'kms_chamelium_sharpness_filter': [ join_paths ('chamelium', 'kms_chamelium_helper.c') ],
> 'kms_dp_linktrain_fallback': [
> - join_paths ('intel', 'kms_mst_helper.c'),
> - join_paths ('intel', 'kms_dsc_helper.c') ],
> + join_paths ('intel', 'kms_mst_helper.c'),
> + join_paths ('intel', 'kms_dsc_helper.c'),
> + join_paths ('intel', 'kms_joiner_helper.c') ],
> 'kms_dp_link_training': [
> - join_paths ('intel', 'kms_mst_helper.c'),
> - join_paths ('intel', 'kms_joiner_helper.c') ],
> - 'kms_dsc': [ join_paths ('intel', 'kms_dsc_helper.c') ],
> + join_paths ('intel', 'kms_mst_helper.c'),
> + join_paths ('intel', 'kms_joiner_helper.c') ],
> + 'kms_dsc': [
> + join_paths ('intel', 'kms_dsc_helper.c'),
> + join_paths ('intel', 'kms_joiner_helper.c') ],
> 'kms_joiner': [ join_paths ('intel', 'kms_joiner_helper.c') ],
> - 'kms_psr2_sf': [ join_paths ('intel', 'kms_dsc_helper.c') ],
> + 'kms_psr2_sf': [
> + join_paths ('intel', 'kms_dsc_helper.c'),
> + join_paths ('intel', 'kms_joiner_helper.c') ],
> }
>
> # Extra dependencies used on core and Intel drivers
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t, v6 4/4] tests/intel/kms_dsc: Add force dsc and joiner test cases
2026-04-30 19:09 ` [PATCH i-g-t, v6 4/4] tests/intel/kms_dsc: Add force dsc and joiner test cases Swati Sharma
@ 2026-05-15 8:42 ` Karthik B S
0 siblings, 0 replies; 13+ messages in thread
From: Karthik B S @ 2026-05-15 8:42 UTC (permalink / raw)
To: Swati Sharma, igt-dev; +Cc: Nautiyal, Ankit K
[-- Attachment #1: Type: text/plain, Size: 15687 bytes --]
Hi Swati,
On 5/1/2026 12:39 AM, Swati Sharma wrote:
> Add test cases where we are validating force dsc and force
> joiner.
>
> v2: -fix if() for ultra/big joiner (Ankit)
> v3: -Add '-' separator in subtest names when using
> igt_get_joined_pipes_name (Santhosh)
> v4: -Use 'enum joined_pipes force_joined_pipes' in data_t (Ankit)
> -Use dsc-basic-%s format for subtest names (Ankit)
> -Use igt_crtc_for_pipe() to check consecutive HW pipes,
> handling fused pipe holes properly (Ankit)
> v5: -Use igt_display_n_crtcs() instead of open-coded
> for_each_crtc counting loop (Jani)
>
> Signed-off-by: Swati Sharma<swati2.sharma@intel.com>
> ---
> tests/intel/kms_dsc.c | 203 +++++++++++++++++++++++++++---------------
> 1 file changed, 131 insertions(+), 72 deletions(-)
>
> diff --git a/tests/intel/kms_dsc.c b/tests/intel/kms_dsc.c
> index 69f335da3..9a19de1c4 100644
> --- a/tests/intel/kms_dsc.c
> +++ b/tests/intel/kms_dsc.c
> @@ -55,7 +55,27 @@
> * @with-output-formats-with-bpc: DSC with output formats with certain input BPC for the connector
> * @fractional-bpp: DSC with fractional bpp with default parameters
> * @fractional-bpp-with-bpc: DSC with fractional bpp with certain input BPC for the connector
> - */
> + *
> + * SUBTEST: dsc-%s-%s
> + * Description: Tests Display Stream Compression functionality if supported by a
> + * connector by forcing %arg[1] and %arg[2] on all connectors that support it
> + *
IMHO, better to call out the default/existing tests as non-joiner to
avoid any confusion.
May be we could have something like this:
1. non-joiner: If display is non-joiner go ahead as is, if not force
non-joiner.
2. big-joiner: if display is big-joiner go ahead as is, if not force
big-joiner.
3. ultra-joiner: if display is ultra-joiner go ahead as is, if not
force ultra-joiner.
> + * arg[1]:
> + *
> + * @basic: DSC with default parameters
> + * @with-bpc: DSC with certain input BPC for the connector
> + * @with-bpc-formats: DSC with certain input BPC for the connector and diff formats
> + * @with-formats: DSC with default parameters and creating fb with diff formats
> + * @with-output-formats: DSC with output formats
> + * @with-output-formats-with-bpc: DSC with output formats with certain input BPC for the connector
> + * @fractional-bpp: DSC with fractional bpp with default parameters
> + * @fractional-bpp-with-bpc: DSC with fractional bpp with certain input BPC for the connector
> + *
> + * arg[2]:
> + *
> + * @bigjoiner: big joiner
> + * @ultrajoiner: ultra joiner
> +*/
>
> IGT_TEST_DESCRIPTION("Test to validate display stream compression");
>
> @@ -81,11 +101,13 @@ typedef struct {
> int disp_ver;
> igt_crtc_t *crtc;
> bool limited;
> + enum joined_pipes force_joined_pipes;
> } data_t;
>
> static int output_format_list[] = {DSC_FORMAT_YCBCR420, DSC_FORMAT_YCBCR444};
> static int format_list[] = {DRM_FORMAT_XYUV8888, DRM_FORMAT_XRGB2101010, DRM_FORMAT_XRGB16161616F, DRM_FORMAT_YUYV};
> static uint32_t bpc_list[] = {8, 10, 12};
> +static enum joined_pipes joiner_tests[] = {JOINED_PIPES_DEFAULT, JOINED_PIPES_BIG_JOINER, JOINED_PIPES_ULTRA_JOINER};
>
> static inline void manual(const char *expected)
> {
> @@ -135,6 +157,7 @@ static void update_display(data_t *data, uint32_t test_type)
> int current_bpc = 0;
> igt_plane_t *primary;
> drmModeModeInfo *mode;
> + bool status;
> igt_output_t *output = data->output;
> igt_display_t *display = &data->display;
> drmModeConnector *connector = output->config.connector;
> @@ -147,6 +170,11 @@ static void update_display(data_t *data, uint32_t test_type)
> save_force_dsc_en(data->drm_fd, data->output);
> force_dsc_enable(data->drm_fd, data->output);
>
> + if (data->force_joined_pipes == JOINED_PIPES_BIG_JOINER || data->force_joined_pipes == JOINED_PIPES_ULTRA_JOINER) {
> + status = kmstest_force_connector_joiner(data->drm_fd, connector, data->force_joined_pipes);
> + igt_assert_f(status, "Failed to toggle force joiner\n");
> + }
> +
There seem to be few more issues with checkpatch here, mostly the
LONG_LINE which is okay if unavoidable but I feel in most places it
could be handled here. So please check.
> if (test_type & TEST_DSC_BPC) {
> igt_debug("Trying to set input BPC to %d\n", data->input_bpc);
> force_dsc_enable_bpc(data->drm_fd, data->output, data->input_bpc);
> @@ -246,11 +274,13 @@ reset:
>
> static void test_dsc(data_t *data, uint32_t test_type, int bpc,
> unsigned int plane_format,
> - enum dsc_output_format output_format)
> + enum dsc_output_format output_format,
> + enum joined_pipes joined_pipes)
> {
> igt_display_t *display = &data->display;
> igt_output_t *output;
> igt_crtc_t *crtc;
> + int n_pipes = igt_display_n_crtcs(display);
> char name[3][LEN] = {
> {0},
> {0},
> @@ -259,12 +289,17 @@ static void test_dsc(data_t *data, uint32_t test_type, int bpc,
>
> igt_require(check_gen11_bpc_constraint(data->drm_fd, data->input_bpc));
>
> + if (joined_pipes != JOINED_PIPES_DEFAULT &&
> + !igt_is_joiner_supported_by_source(data->drm_fd, joined_pipes))
> + return;
> +
> for_each_crtc_with_valid_output(display, crtc, output) {
> data->output_format = output_format;
> data->plane_format = plane_format;
> data->input_bpc = bpc;
> data->output = output;
> data->crtc = crtc;
> + data->force_joined_pipes = joined_pipes;
>
> if (!is_dsc_supported_by_sink(data->drm_fd, data->output) ||
> !check_gen11_dp_constraint(data->drm_fd, data->output, data->crtc))
> @@ -285,6 +320,26 @@ static void test_dsc(data_t *data, uint32_t test_type, int bpc,
> data->drm_fd, data->output)))
> continue;
>
> + /*
> + * Check joiner constraints and verify that we have
> + * enough consecutive HW pipes starting from this crtc.
> + * Use igt_crtc_for_pipe() to handle fused pipe holes.
> + */
> + if (joined_pipes != JOINED_PIPES_DEFAULT &&
> + !check_dsc_joiner_constraints(data->drm_fd, data->output,
> + n_pipes, joined_pipes))
> + continue;
> +
> + if (joined_pipes == JOINED_PIPES_BIG_JOINER &&
> + !igt_crtc_for_pipe(display, crtc->pipe + 1))
> + continue;
> +
> + if (joined_pipes == JOINED_PIPES_ULTRA_JOINER &&
> + (!igt_crtc_for_pipe(display, crtc->pipe + 1) ||
> + !igt_crtc_for_pipe(display, crtc->pipe + 2) ||
> + !igt_crtc_for_pipe(display, crtc->pipe + 3)))
> + continue;
Could this be added in the joiner helper rather than having it specific
to test?
Thanks and Regards,
Karthik.B.S
> +
> if (test_type & TEST_DSC_OUTPUT_FORMAT)
> snprintf(&name[0][0], LEN, "-%s", kmstest_dsc_output_format_str(data->output_format));
> if (test_type & TEST_DSC_FORMAT)
> @@ -334,85 +389,89 @@ int igt_main_args("l", NULL, help_str, opt_handler, &data)
> igt_require(is_dsc_supported_by_source(data.drm_fd));
> }
>
> - igt_describe("Tests basic display stream compression functionality if supported "
> - "by a connector by forcing DSC on all connectors that support it "
> - "with default parameters");
> - igt_subtest_with_dynamic("dsc-basic")
> - test_dsc(&data, TEST_DSC_BASIC, DEFAULT_BPC,
> - DRM_FORMAT_XRGB8888, DSC_FORMAT_RGB);
> -
> - igt_describe("Tests basic display stream compression functionality if supported "
> - "by a connector by forcing DSC on all connectors that support it "
> - "with default parameters and creating fb with diff formats");
> - igt_subtest_with_dynamic("dsc-with-formats") {
> - for (int k = 0; k < ARRAY_SIZE(format_list); k++)
> - test_dsc(&data, TEST_DSC_FORMAT, DEFAULT_BPC,
> - format_list[k], DSC_FORMAT_RGB);
> - }
>
> - igt_describe("Tests basic display stream compression functionality if supported "
> - "by a connector by forcing DSC on all connectors that support it "
> - "with certain input BPC for the connector");
> - igt_subtest_with_dynamic("dsc-with-bpc") {
> - for (int j = 0; j < ARRAY_SIZE(bpc_list); j++)
> - test_dsc(&data, TEST_DSC_BPC, bpc_list[j],
> - DRM_FORMAT_XRGB8888, DSC_FORMAT_RGB);
> - }
> + for (int i = 0; i < ARRAY_SIZE(joiner_tests) ; i++) {
> + igt_describe("Tests basic display stream compression functionality if supported "
> + "by a connector by forcing DSC on all connectors that support it "
> + "with default parameters");
> + igt_subtest_with_dynamic_f("dsc-basic%s%s", joiner_tests[i] ? "-" : "", igt_get_joined_pipes_name(joiner_tests[i])) {
> + test_dsc(&data, TEST_DSC_BASIC, DEFAULT_BPC,
> + DRM_FORMAT_XRGB8888, DSC_FORMAT_RGB, joiner_tests[i]);
> + }
>
> - igt_describe("Tests basic display stream compression functionality if supported "
> - "by a connector by forcing DSC on all connectors that support it "
> - "with certain input BPC for the connector with diff formats");
> - igt_subtest_with_dynamic("dsc-with-bpc-formats") {
> - for (int j = 0; j < ARRAY_SIZE(bpc_list); j++) {
> - for (int k = 0; k < ARRAY_SIZE(format_list); k++) {
> - test_dsc(&data, TEST_DSC_BPC | TEST_DSC_FORMAT,
> - bpc_list[j], format_list[k],
> - DSC_FORMAT_RGB);
> - }
> + igt_describe("Tests basic display stream compression functionality if supported "
> + "by a connector by forcing DSC on all connectors that support it "
> + "with default parameters and creating fb with diff formats");
> + igt_subtest_with_dynamic_f("dsc-with-formats%s%s", joiner_tests[i] ? "-" : "", igt_get_joined_pipes_name(joiner_tests[i])) {
> + for (int k = 0; k < ARRAY_SIZE(format_list); k++)
> + test_dsc(&data, TEST_DSC_FORMAT, DEFAULT_BPC,
> + format_list[k], DSC_FORMAT_RGB, joiner_tests[i]);
> }
> - }
>
> - igt_describe("Tests basic display stream compression functionality if supported "
> - "by a connector by forcing DSC and output format on all connectors "
> - "that support it");
> - igt_subtest_with_dynamic("dsc-with-output-formats") {
> - for (int k = 0; k < ARRAY_SIZE(output_format_list); k++)
> - test_dsc(&data, TEST_DSC_OUTPUT_FORMAT, DEFAULT_BPC,
> - DRM_FORMAT_XRGB8888,
> - output_format_list[k]);
> - }
> + igt_describe("Tests basic display stream compression functionality if supported "
> + "by a connector by forcing DSC on all connectors that support it "
> + "with certain input BPC for the connector");
> + igt_subtest_with_dynamic_f("dsc-with-bpc%s%s", joiner_tests[i] ? "-" : "", igt_get_joined_pipes_name(joiner_tests[i])) {
> + for (int j = 0; j < ARRAY_SIZE(bpc_list); j++)
> + test_dsc(&data, TEST_DSC_BPC, bpc_list[j],
> + DRM_FORMAT_XRGB8888, DSC_FORMAT_RGB, joiner_tests[i]);
> + }
>
> - igt_describe("Tests basic display stream compression functionality if supported "
> - "by a connector by forcing DSC and output format on all connectors "
> - "that support it with certain input BPC for the connector");
> - igt_subtest_with_dynamic("dsc-with-output-formats-with-bpc") {
> - for (int k = 0; k < ARRAY_SIZE(output_format_list); k++) {
> + igt_describe("Tests basic display stream compression functionality if supported "
> + "by a connector by forcing DSC on all connectors that support it "
> + "with certain input BPC for the connector with diff formats");
> + igt_subtest_with_dynamic_f("dsc-with-bpc-formats%s%s", joiner_tests[i] ? "-" : "", igt_get_joined_pipes_name(joiner_tests[i])) {
> for (int j = 0; j < ARRAY_SIZE(bpc_list); j++) {
> - test_dsc(&data, TEST_DSC_OUTPUT_FORMAT | TEST_DSC_BPC,
> - bpc_list[j], DRM_FORMAT_XRGB8888,
> - output_format_list[k]);
> + for (int k = 0; k < ARRAY_SIZE(format_list); k++) {
> + test_dsc(&data, TEST_DSC_BPC | TEST_DSC_FORMAT,
> + bpc_list[j], format_list[k],
> + DSC_FORMAT_RGB, joiner_tests[i]);
> + }
> }
> }
> - }
>
> - igt_describe("Tests fractional compressed bpp functionality if supported "
> - "by a connector by forcing fractional_bpp on all connectors that support it "
> - "with default parameter. While finding the optimum compressed bpp, driver will "
> - "skip over the compressed bpps with integer values. It will go ahead with DSC, "
> - "iff compressed bpp is fractional, failing in which, it will fail the commit.");
> - igt_subtest_with_dynamic("dsc-fractional-bpp")
> - test_dsc(&data, TEST_DSC_FRACTIONAL_BPP,
> - DEFAULT_BPC, DRM_FORMAT_XRGB8888,
> - DSC_FORMAT_RGB);
> -
> - igt_describe("Tests fractional compressed bpp functionality if supported "
> - "by a connector by forcing fractional_bpp on all connectors that support it "
> - "with certain input BPC for the connector.");
> - igt_subtest_with_dynamic("dsc-fractional-bpp-with-bpc") {
> - for (int j = 0; j < ARRAY_SIZE(bpc_list); j++)
> - test_dsc(&data, TEST_DSC_FRACTIONAL_BPP | TEST_DSC_BPC,
> - bpc_list[j], DRM_FORMAT_XRGB8888,
> - DSC_FORMAT_RGB);
> + igt_describe("Tests basic display stream compression functionality if supported "
> + "by a connector by forcing DSC and output format on all connectors "
> + "that support it");
> + igt_subtest_with_dynamic_f("dsc-with-output-formats%s%s", joiner_tests[i] ? "-" : "", igt_get_joined_pipes_name(joiner_tests[i])) {
> + for (int k = 0; k < ARRAY_SIZE(output_format_list); k++)
> + test_dsc(&data, TEST_DSC_OUTPUT_FORMAT, DEFAULT_BPC,
> + DRM_FORMAT_XRGB8888,
> + output_format_list[k], joiner_tests[i]);
> + }
> +
> + igt_describe("Tests basic display stream compression functionality if supported "
> + "by a connector by forcing DSC and output format on all connectors "
> + "that support it with certain input BPC for the connector");
> + igt_subtest_with_dynamic_f("dsc-with-output-formats-with-bpc%s%s", joiner_tests[i] ? "-" : "", igt_get_joined_pipes_name(joiner_tests[i])) {
> + for (int k = 0; k < ARRAY_SIZE(output_format_list); k++) {
> + for (int j = 0; j < ARRAY_SIZE(bpc_list); j++) {
> + test_dsc(&data, TEST_DSC_OUTPUT_FORMAT | TEST_DSC_BPC,
> + bpc_list[j], DRM_FORMAT_XRGB8888,
> + output_format_list[k], joiner_tests[i]);
> + }
> + }
> + }
> +
> + igt_describe("Tests fractional compressed bpp functionality if supported "
> + "by a connector by forcing fractional_bpp on all connectors that support it "
> + "with default parameter. While finding the optimum compressed bpp, driver will "
> + "skip over the compressed bpps with integer values. It will go ahead with DSC, "
> + "iff compressed bpp is fractional, failing in which, it will fail the commit.");
> + igt_subtest_with_dynamic_f("dsc-fractional-bpp%s%s", joiner_tests[i] ? "-" : "", igt_get_joined_pipes_name(joiner_tests[i]))
> + test_dsc(&data, TEST_DSC_FRACTIONAL_BPP,
> + DEFAULT_BPC, DRM_FORMAT_XRGB8888,
> + DSC_FORMAT_RGB, joiner_tests[i]);
> +
> + igt_describe("Tests fractional compressed bpp functionality if supported "
> + "by a connector by forcing fractional_bpp on all connectors that support it "
> + "with certain input BPC for the connector.");
> + igt_subtest_with_dynamic_f("dsc-fractional-bpp-with-bpc%s%s", joiner_tests[i] ? "-" : "", igt_get_joined_pipes_name(joiner_tests[i])) {
> + for (int j = 0; j < ARRAY_SIZE(bpc_list); j++)
> + test_dsc(&data, TEST_DSC_FRACTIONAL_BPP | TEST_DSC_BPC,
> + bpc_list[j], DRM_FORMAT_XRGB8888,
> + DSC_FORMAT_RGB, joiner_tests[i]);
> + }
> }
>
> igt_fixture() {
[-- Attachment #2: Type: text/html, Size: 17277 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2026-05-15 8:43 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-30 19:09 [PATCH i-g-t,v6 0/4] Add dsc+bigjoiner subtest Swati Sharma
2026-04-30 19:09 ` [PATCH i-g-t, v6 1/4] tests/intel/kms_joiner_helper: Add igt_get_joined_pipes_name() Swati Sharma
2026-05-15 6:06 ` Karthik B S
2026-04-30 19:09 ` [PATCH i-g-t, v6 2/4] tests/kms_joiner_helper: Add igt_is_joiner_supported_by_source() Swati Sharma
2026-05-15 6:18 ` Karthik B S
2026-04-30 19:09 ` [PATCH i-g-t,v6 3/4] tests/intel/kms_dsc_helper: Add helper func() Swati Sharma
2026-05-15 8:36 ` Karthik B S
2026-04-30 19:09 ` [PATCH i-g-t, v6 4/4] tests/intel/kms_dsc: Add force dsc and joiner test cases Swati Sharma
2026-05-15 8:42 ` Karthik B S
2026-04-30 20:34 ` ✓ Xe.CI.BAT: success for Add dsc+bigjoiner subtest (rev8) Patchwork
2026-04-30 20:43 ` ✓ i915.CI.BAT: " Patchwork
2026-05-01 1:26 ` ✗ i915.CI.Full: failure " Patchwork
2026-05-01 7:11 ` ✗ Xe.CI.FULL: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox