* [PATCH i-g-t,v5 0/4] Add dsc+bigjoiner subtest
@ 2026-04-29 19:51 Swati Sharma
2026-04-29 19:51 ` [PATCH i-g-t,v5 1/4] lib/igt_kms: Add igt_get_joined_pipes_name() Swati Sharma
` (7 more replies)
0 siblings, 8 replies; 13+ messages in thread
From: Swati Sharma @ 2026-04-29 19:51 UTC (permalink / raw)
To: igt-dev; +Cc: Swati Sharma
New subtest is added to validate dsc + big/ultra joiner use cases.
Swati Sharma (4):
lib/igt_kms: 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
lib/igt_kms.c | 22 ++++
lib/igt_kms.h | 1 +
tests/intel/kms_dsc.c | 206 +++++++++++++++++++++-----------
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 | 33 +++++
tests/intel/kms_joiner_helper.h | 2 +
tests/meson.build | 17 ++-
9 files changed, 262 insertions(+), 84 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH i-g-t,v5 1/4] lib/igt_kms: Add igt_get_joined_pipes_name()
2026-04-29 19:51 [PATCH i-g-t,v5 0/4] Add dsc+bigjoiner subtest Swati Sharma
@ 2026-04-29 19:51 ` Swati Sharma
2026-04-30 7:22 ` [PATCH i-g-t, v5 " Jani Nikula
2026-04-29 19:51 ` [PATCH i-g-t, v5 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-29 19:51 UTC (permalink / raw)
To: igt-dev; +Cc: Swati Sharma, Ankit Nautiyal
Add function to transform the enum into a string.
v2: -Improved func() doc (Jeevan)
v3: -Return names without '-' dash prefix (Santhosh)
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
lib/igt_kms.c | 22 ++++++++++++++++++++++
lib/igt_kms.h | 1 +
2 files changed, 23 insertions(+)
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index 2efdfb85f..bece27ff6 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -1906,6 +1906,28 @@ bool kmstest_force_connector_joiner(int drm_fd, drmModeConnector *connector, int
return true;
}
+/**
+ * igt_get_joined_pipes_name:
+ * @val: forced value
+ *
+ * Returns: A joined_pipes enum value into a readable string.
+ */
+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);
+ }
+}
+
/**
* kmstest_force_edid:
* @drm_fd: drm file descriptor
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index fcbb6a5ad..6898cd981 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -1280,6 +1280,7 @@ void igt_set_link_params(int drm_fd, igt_output_t *output,
int igt_backlight_read(int *result, const char *fname, igt_backlight_context_t *context);
int igt_backlight_write(int value, const char *fname, igt_backlight_context_t *context);
uint32_t igt_get_connected_output_count(igt_display_t *display);
+const char *igt_get_joined_pipes_name(enum joined_pipes val);
drmModePropertyBlobRes *igt_get_writeback_formats_blob(igt_output_t *output);
--
2.25.1
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH i-g-t, v5 2/4] tests/kms_joiner_helper: Add igt_is_joiner_supported_by_source()
2026-04-29 19:51 [PATCH i-g-t,v5 0/4] Add dsc+bigjoiner subtest Swati Sharma
2026-04-29 19:51 ` [PATCH i-g-t,v5 1/4] lib/igt_kms: Add igt_get_joined_pipes_name() Swati Sharma
@ 2026-04-29 19:51 ` Swati Sharma
2026-04-29 19:51 ` [PATCH i-g-t,v5 3/4] tests/intel/kms_dsc_helper: Add helper func() Swati Sharma
` (5 subsequent siblings)
7 siblings, 0 replies; 13+ messages in thread
From: Swati Sharma @ 2026-04-29 19:51 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 e24d7ce94..03e7248f4 100644
--- a/tests/intel/kms_joiner_helper.c
+++ b/tests/intel/kms_joiner_helper.c
@@ -183,3 +183,36 @@ 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;
+ }
+}
diff --git a/tests/intel/kms_joiner_helper.h b/tests/intel/kms_joiner_helper.h
index 6d21e7eb0..145a3f7d5 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);
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,v5 3/4] tests/intel/kms_dsc_helper: Add helper func()
2026-04-29 19:51 [PATCH i-g-t,v5 0/4] Add dsc+bigjoiner subtest Swati Sharma
2026-04-29 19:51 ` [PATCH i-g-t,v5 1/4] lib/igt_kms: Add igt_get_joined_pipes_name() Swati Sharma
2026-04-29 19:51 ` [PATCH i-g-t, v5 2/4] tests/kms_joiner_helper: Add igt_is_joiner_supported_by_source() Swati Sharma
@ 2026-04-29 19:51 ` Swati Sharma
2026-04-29 19:51 ` [PATCH i-g-t, v5 4/4] tests/intel/kms_dsc: Add force dsc and joiner test cases Swati Sharma
` (4 subsequent siblings)
7 siblings, 0 replies; 13+ messages in thread
From: Swati Sharma @ 2026-04-29 19:51 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, v5 4/4] tests/intel/kms_dsc: Add force dsc and joiner test cases
2026-04-29 19:51 [PATCH i-g-t,v5 0/4] Add dsc+bigjoiner subtest Swati Sharma
` (2 preceding siblings ...)
2026-04-29 19:51 ` [PATCH i-g-t,v5 3/4] tests/intel/kms_dsc_helper: Add helper func() Swati Sharma
@ 2026-04-29 19:51 ` Swati Sharma
2026-04-30 7:33 ` Jani Nikula
2026-04-29 21:24 ` ✓ Xe.CI.BAT: success for Add dsc+bigjoiner subtest (rev7) Patchwork
` (3 subsequent siblings)
7 siblings, 1 reply; 13+ messages in thread
From: Swati Sharma @ 2026-04-29 19:51 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)
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
---
tests/intel/kms_dsc.c | 206 +++++++++++++++++++++++++++---------------
1 file changed, 134 insertions(+), 72 deletions(-)
diff --git a/tests/intel/kms_dsc.c b/tests/intel/kms_dsc.c
index 69f335da3..bfd84e59a 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,25 +274,35 @@ 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 = 0;
char name[3][LEN] = {
{0},
{0},
{0},
};
+ for_each_crtc(display, crtc)
+ n_pipes++;
+
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 +323,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 +392,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 (rev7)
2026-04-29 19:51 [PATCH i-g-t,v5 0/4] Add dsc+bigjoiner subtest Swati Sharma
` (3 preceding siblings ...)
2026-04-29 19:51 ` [PATCH i-g-t, v5 4/4] tests/intel/kms_dsc: Add force dsc and joiner test cases Swati Sharma
@ 2026-04-29 21:24 ` Patchwork
2026-04-29 21:33 ` ✓ i915.CI.BAT: " Patchwork
` (2 subsequent siblings)
7 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2026-04-29 21:24 UTC (permalink / raw)
To: Swati Sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1148 bytes --]
== Series Details ==
Series: Add dsc+bigjoiner subtest (rev7)
URL : https://patchwork.freedesktop.org/series/128266/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8879_BAT -> XEIGTPW_15084_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8879 -> IGTPW_15084
* Linux: xe-4948-a53aafc879e9c52b2776089762591d2766a27f0a -> xe-4953-f3b0eacc6be937779388c8412909b66717926980
IGTPW_15084: e19ed76c8bde09ed253dae4d0dea55023140190b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8879: 02b0e01dd9a5a3ab1efe976bb8c4f13cfcdbab1a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4948-a53aafc879e9c52b2776089762591d2766a27f0a: a53aafc879e9c52b2776089762591d2766a27f0a
xe-4953-f3b0eacc6be937779388c8412909b66717926980: f3b0eacc6be937779388c8412909b66717926980
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/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 (rev7)
2026-04-29 19:51 [PATCH i-g-t,v5 0/4] Add dsc+bigjoiner subtest Swati Sharma
` (4 preceding siblings ...)
2026-04-29 21:24 ` ✓ Xe.CI.BAT: success for Add dsc+bigjoiner subtest (rev7) Patchwork
@ 2026-04-29 21:33 ` Patchwork
2026-04-30 7:03 ` ✗ i915.CI.Full: failure " Patchwork
2026-04-30 9:29 ` ✗ Xe.CI.FULL: " Patchwork
7 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2026-04-29 21:33 UTC (permalink / raw)
To: Swati Sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 4009 bytes --]
== Series Details ==
Series: Add dsc+bigjoiner subtest (rev7)
URL : https://patchwork.freedesktop.org/series/128266/
State : success
== Summary ==
CI Bug Log - changes from IGT_8879 -> IGTPW_15084
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/index.html
Participating hosts (42 -> 39)
------------------------------
Missing (3): bat-dg2-13 fi-snb-2520m bat-adls-6
Known issues
------------
Here are the changes found in IGTPW_15084 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_8879/bat-dg2-8/igt@i915_selftest@live.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/bat-dg2-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-mtlp-9: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8879/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
- bat-arls-6: [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8879/bat-arls-6/igt@i915_selftest@live@workarounds.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/bat-arls-6/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@i915_pm_rpm@module-reload:
- bat-adlp-6: [DMESG-WARN][7] ([i915#15673]) -> [PASS][8] +78 other tests pass
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8879/bat-adlp-6/igt@i915_pm_rpm@module-reload.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/bat-adlp-6/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live@late_gt_pm:
- fi-cfl-8109u: [DMESG-WARN][9] ([i915#13735]) -> [PASS][10] +80 other tests pass
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8879/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [DMESG-FAIL][11] ([i915#12061]) -> [PASS][12] +1 other test pass
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8879/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/bat-arlh-3/igt@i915_selftest@live@workarounds.html
* igt@kms_pipe_crc_basic@read-crc:
- fi-cfl-8109u: [DMESG-WARN][13] ([i915#13735] / [i915#15673]) -> [PASS][14] +49 other tests pass
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8879/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735
[i915#15673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15673
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8879 -> IGTPW_15084
* Linux: CI_DRM_18377 -> CI_DRM_18383
CI-20190529: 20190529
CI_DRM_18377: a53aafc879e9c52b2776089762591d2766a27f0a @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_18383: c50aab3f28b1580a38a58ca7a3fc3ff9ceb5d5ed @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15084: e19ed76c8bde09ed253dae4d0dea55023140190b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8879: 02b0e01dd9a5a3ab1efe976bb8c4f13cfcdbab1a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/index.html
[-- Attachment #2: Type: text/html, Size: 5144 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ i915.CI.Full: failure for Add dsc+bigjoiner subtest (rev7)
2026-04-29 19:51 [PATCH i-g-t,v5 0/4] Add dsc+bigjoiner subtest Swati Sharma
` (5 preceding siblings ...)
2026-04-29 21:33 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-04-30 7:03 ` Patchwork
2026-04-30 9:29 ` ✗ Xe.CI.FULL: " Patchwork
7 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2026-04-30 7:03 UTC (permalink / raw)
To: Swati Sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 129199 bytes --]
== Series Details ==
Series: Add dsc+bigjoiner subtest (rev7)
URL : https://patchwork.freedesktop.org/series/128266/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_18383_full -> IGTPW_15084_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_15084_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_15084_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_15084/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_15084_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_dsc@dsc-fractional-bpp-bigjoiner (NEW):
- shard-dg1: NOTRUN -> [SKIP][1] +12 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-14/igt@kms_dsc@dsc-fractional-bpp-bigjoiner.html
- shard-tglu: NOTRUN -> [SKIP][2] +12 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-5/igt@kms_dsc@dsc-fractional-bpp-bigjoiner.html
- shard-mtlp: NOTRUN -> [SKIP][3] +13 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-mtlp-1/igt@kms_dsc@dsc-fractional-bpp-bigjoiner.html
* igt@kms_dsc@dsc-with-bpc-ultrajoiner (NEW):
- shard-tglu-1: NOTRUN -> [SKIP][4]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-1/igt@kms_dsc@dsc-with-bpc-ultrajoiner.html
* igt@kms_dsc@dsc-with-formats-bigjoiner (NEW):
- shard-dg2: NOTRUN -> [SKIP][5] +13 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-1/igt@kms_dsc@dsc-with-formats-bigjoiner.html
* igt@kms_dsc@dsc-with-output-formats-bigjoiner (NEW):
- shard-rkl: NOTRUN -> [SKIP][6] +10 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-8/igt@kms_dsc@dsc-with-output-formats-bigjoiner.html
New tests
---------
New tests have been introduced between CI_DRM_18383_full and IGTPW_15084_full:
### New IGT tests (16) ###
* igt@kms_dsc@dsc-basic-bigjoiner:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.00] s
* igt@kms_dsc@dsc-basic-ultrajoiner:
- Statuses : 6 skip(s)
- Exec time: [0.0] s
* igt@kms_dsc@dsc-fractional-bpp-bigjoiner:
- Statuses : 7 skip(s)
- Exec time: [0.0, 0.00] s
* igt@kms_dsc@dsc-fractional-bpp-ultrajoiner:
- Statuses : 5 skip(s)
- Exec time: [0.0] s
* igt@kms_dsc@dsc-fractional-bpp-with-bpc-bigjoiner:
- Statuses :
- Exec time: [None] s
* igt@kms_dsc@dsc-fractional-bpp-with-bpc-ultrajoiner:
- Statuses : 5 skip(s)
- Exec time: [0.0] s
* igt@kms_dsc@dsc-with-bpc-bigjoiner:
- Statuses : 5 skip(s)
- Exec time: [0.0, 0.00] s
* igt@kms_dsc@dsc-with-bpc-formats-bigjoiner:
- Statuses : 7 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 : 7 skip(s)
- Exec time: [0.0] s
* igt@kms_dsc@dsc-with-formats-bigjoiner:
- Statuses : 6 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 : 7 skip(s)
- Exec time: [0.0, 0.00] s
* igt@kms_dsc@dsc-with-output-formats-ultrajoiner:
- Statuses : 6 skip(s)
- Exec time: [0.0] s
* igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner:
- Statuses :
- Exec time: [None] 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_15084_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-rkl: NOTRUN -> [SKIP][7] ([i915#8411])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-5/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@crc32:
- shard-tglu-1: NOTRUN -> [SKIP][8] ([i915#6230])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-1/igt@api_intel_bb@crc32.html
* igt@device_reset@cold-reset-bound:
- shard-tglu: NOTRUN -> [SKIP][9] ([i915#11078])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-9/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-tglu-1: NOTRUN -> [SKIP][10] ([i915#11078])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-1/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_buddy@drm_buddy:
- shard-rkl: NOTRUN -> [SKIP][11] ([i915#15678])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-8/igt@drm_buddy@drm_buddy.html
* igt@gem_basic@multigpu-create-close:
- shard-rkl: NOTRUN -> [SKIP][12] ([i915#7697]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-4/igt@gem_basic@multigpu-create-close.html
- shard-dg1: NOTRUN -> [SKIP][13] ([i915#7697])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-15/igt@gem_basic@multigpu-create-close.html
- shard-tglu: NOTRUN -> [SKIP][14] ([i915#7697])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-6/igt@gem_basic@multigpu-create-close.html
- shard-mtlp: NOTRUN -> [SKIP][15] ([i915#7697])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-mtlp-7/igt@gem_basic@multigpu-create-close.html
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#7697])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-8/igt@gem_basic@multigpu-create-close.html
* igt@gem_busy@semaphore:
- shard-dg2: NOTRUN -> [SKIP][17] ([i915#3936])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-8/igt@gem_busy@semaphore.html
- shard-dg1: NOTRUN -> [SKIP][18] ([i915#3936])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-18/igt@gem_busy@semaphore.html
- shard-mtlp: NOTRUN -> [SKIP][19] ([i915#3936])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-mtlp-5/igt@gem_busy@semaphore.html
* igt@gem_ccs@suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][20] ([i915#9323])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-8/igt@gem_ccs@suspend-resume.html
- shard-dg1: NOTRUN -> [SKIP][21] ([i915#9323])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-14/igt@gem_ccs@suspend-resume.html
- shard-tglu: NOTRUN -> [SKIP][22] ([i915#9323])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-3/igt@gem_ccs@suspend-resume.html
- shard-mtlp: NOTRUN -> [SKIP][23] ([i915#9323])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-mtlp-8/igt@gem_ccs@suspend-resume.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-tglu-1: NOTRUN -> [SKIP][24] ([i915#6335])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-1/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_freq@sysfs@gt0:
- shard-dg2: [PASS][25] -> [FAIL][26] ([i915#9561]) +1 other test fail
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-dg2-3/igt@gem_ctx_freq@sysfs@gt0.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-1/igt@gem_ctx_freq@sysfs@gt0.html
* igt@gem_ctx_param@set-priority-not-supported:
- shard-dg1: NOTRUN -> [SKIP][27] +25 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-14/igt@gem_ctx_param@set-priority-not-supported.html
* igt@gem_ctx_persistence@engines-hostile-preempt:
- shard-snb: NOTRUN -> [SKIP][28] ([i915#1099]) +2 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-snb7/igt@gem_ctx_persistence@engines-hostile-preempt.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#8555])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-5/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg1: NOTRUN -> [SKIP][30] ([i915#8555])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-13/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_sseu@engines:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#280])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-8/igt@gem_ctx_sseu@engines.html
- shard-rkl: NOTRUN -> [SKIP][32] ([i915#280])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-4/igt@gem_ctx_sseu@engines.html
- shard-dg1: NOTRUN -> [SKIP][33] ([i915#280])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-15/igt@gem_ctx_sseu@engines.html
- shard-tglu: NOTRUN -> [SKIP][34] ([i915#280])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-6/igt@gem_ctx_sseu@engines.html
- shard-mtlp: NOTRUN -> [SKIP][35] ([i915#280])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-mtlp-7/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@mmap-args:
- shard-tglu-1: NOTRUN -> [SKIP][36] ([i915#280]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-1/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@unwedge-stress:
- shard-snb: NOTRUN -> [FAIL][37] ([i915#8898]) +1 other test fail
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-snb4/igt@gem_eio@unwedge-stress.html
* igt@gem_eio@unwedge-stress@blt:
- shard-mtlp: NOTRUN -> [SKIP][38] ([i915#15314])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-mtlp-8/igt@gem_eio@unwedge-stress@blt.html
* igt@gem_exec_balancer@parallel:
- shard-tglu: NOTRUN -> [SKIP][39] ([i915#4525]) +2 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-9/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-tglu-1: NOTRUN -> [SKIP][40] ([i915#4525])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-1/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_balancer@parallel-out-fence:
- shard-rkl: NOTRUN -> [SKIP][41] ([i915#4525])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-4/igt@gem_exec_balancer@parallel-out-fence.html
* igt@gem_exec_flush@basic-wb-ro-default:
- shard-dg2: NOTRUN -> [SKIP][42] ([i915#3539] / [i915#4852])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-4/igt@gem_exec_flush@basic-wb-ro-default.html
* igt@gem_exec_flush@basic-wb-rw-before-default:
- shard-dg1: NOTRUN -> [SKIP][43] ([i915#3539] / [i915#4852]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-16/igt@gem_exec_flush@basic-wb-rw-before-default.html
* igt@gem_exec_reloc@basic-concurrent16:
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#3281]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-3/igt@gem_exec_reloc@basic-concurrent16.html
* igt@gem_exec_reloc@basic-wc:
- shard-rkl: NOTRUN -> [SKIP][45] ([i915#3281]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-4/igt@gem_exec_reloc@basic-wc.html
* igt@gem_exec_reloc@basic-write-cpu-active:
- shard-dg1: NOTRUN -> [SKIP][46] ([i915#3281])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-14/igt@gem_exec_reloc@basic-write-cpu-active.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: NOTRUN -> [SKIP][47] ([i915#7276])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-3/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_exec_suspend@basic-s3:
- shard-glk11: NOTRUN -> [INCOMPLETE][48] ([i915#13196] / [i915#13356]) +1 other test incomplete
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-glk11/igt@gem_exec_suspend@basic-s3.html
- shard-rkl: [PASS][49] -> [INCOMPLETE][50] ([i915#13356]) +1 other test incomplete
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-8/igt@gem_exec_suspend@basic-s3.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-6/igt@gem_exec_suspend@basic-s3.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#4860])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-18/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_lmem_swapping@heavy-verify-random:
- shard-tglu-1: NOTRUN -> [SKIP][52] ([i915#4613]) +2 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-random.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_15084/shard-rkl-4/igt@gem_lmem_swapping@random-engines.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-glk: NOTRUN -> [SKIP][54] ([i915#4613]) +5 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-glk4/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#12193])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-13/igt@gem_lmem_swapping@verify-random-ccs.html
- shard-tglu: NOTRUN -> [SKIP][56] ([i915#4613]) +2 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-7/igt@gem_lmem_swapping@verify-random-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4613]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-mtlp-8/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_lmem_swapping@verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][58] ([i915#4565])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-13/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html
* igt@gem_media_vme:
- shard-tglu: NOTRUN -> [SKIP][59] ([i915#284])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-6/igt@gem_media_vme.html
* igt@gem_mmap_gtt@bad-object:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#4077]) +4 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-1/igt@gem_mmap_gtt@bad-object.html
* igt@gem_mmap_gtt@basic-write-read-distinct:
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4077]) +3 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-mtlp-3/igt@gem_mmap_gtt@basic-write-read-distinct.html
* igt@gem_mmap_gtt@medium-copy-xy:
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#4077]) +6 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-12/igt@gem_mmap_gtt@medium-copy-xy.html
* igt@gem_mmap_wc@write-wc-read-gtt:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#4083]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-7/igt@gem_mmap_wc@write-wc-read-gtt.html
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#4083]) +2 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-16/igt@gem_mmap_wc@write-wc-read-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4083]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-mtlp-4/igt@gem_mmap_wc@write-wc-read-gtt.html
* igt@gem_partial_pwrite_pread@writes-after-reads-snoop:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#3282]) +7 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-8/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html
- shard-dg1: NOTRUN -> [SKIP][67] ([i915#3282]) +4 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-19/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html
* igt@gem_pread@display:
- shard-rkl: NOTRUN -> [SKIP][68] ([i915#3282]) +3 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-4/igt@gem_pread@display.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-tglu-1: NOTRUN -> [SKIP][69] ([i915#13398])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg1: NOTRUN -> [SKIP][70] ([i915#4270]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-14/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#4270])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-3/igt@gem_pxp@verify-pxp-stale-buf-execution.html
- shard-rkl: NOTRUN -> [SKIP][72] ([i915#4270])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-4/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_readwrite@new-obj:
- shard-mtlp: NOTRUN -> [SKIP][73] ([i915#3282]) +5 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-mtlp-1/igt@gem_readwrite@new-obj.html
* igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs:
- shard-dg2: NOTRUN -> [SKIP][74] ([i915#5190] / [i915#8428]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-6/igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][75] ([i915#8428]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-mtlp-6/igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs.html
* igt@gem_userptr_blits@access-control:
- shard-mtlp: NOTRUN -> [SKIP][76] ([i915#3297]) +2 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-mtlp-3/igt@gem_userptr_blits@access-control.html
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#3297])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-15/igt@gem_userptr_blits@access-control.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-tglu-1: NOTRUN -> [SKIP][78] ([i915#3297]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-1/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-tglu: NOTRUN -> [SKIP][79] ([i915#3297] / [i915#3323])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-4/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#3297] / [i915#4880])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-8/igt@gem_userptr_blits@map-fixed-invalidate.html
- shard-dg1: NOTRUN -> [SKIP][81] ([i915#3297] / [i915#4880])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-15/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#3297]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-4/igt@gem_userptr_blits@unsync-overlap.html
- shard-rkl: NOTRUN -> [SKIP][83] ([i915#3297]) +2 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-5/igt@gem_userptr_blits@unsync-overlap.html
- shard-tglu: NOTRUN -> [SKIP][84] ([i915#3297]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-10/igt@gem_userptr_blits@unsync-overlap.html
* igt@gem_workarounds@suspend-resume-context:
- shard-glk: [PASS][85] -> [INCOMPLETE][86] ([i915#13356]) +1 other test incomplete
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-glk9/igt@gem_workarounds@suspend-resume-context.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-glk3/igt@gem_workarounds@suspend-resume-context.html
* igt@gen7_exec_parse@basic-rejected:
- shard-dg2: NOTRUN -> [SKIP][87] +5 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-7/igt@gen7_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@allowed-all:
- shard-rkl: NOTRUN -> [SKIP][88] ([i915#2527]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-4/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-tglu-1: NOTRUN -> [SKIP][89] ([i915#2527] / [i915#2856])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-1/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-dg1: NOTRUN -> [SKIP][90] ([i915#2527]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-14/igt@gen9_exec_parse@bb-start-cmd.html
- shard-tglu: NOTRUN -> [SKIP][91] ([i915#2527] / [i915#2856]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-5/igt@gen9_exec_parse@bb-start-cmd.html
- shard-mtlp: NOTRUN -> [SKIP][92] ([i915#2856])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-mtlp-1/igt@gen9_exec_parse@bb-start-cmd.html
- shard-dg2: NOTRUN -> [SKIP][93] ([i915#2856])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-5/igt@gen9_exec_parse@bb-start-cmd.html
* igt@i915_drm_fdinfo@isolation@rcs0:
- shard-dg2: NOTRUN -> [SKIP][94] ([i915#14073]) +7 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-6/igt@i915_drm_fdinfo@isolation@rcs0.html
- shard-dg1: NOTRUN -> [SKIP][95] ([i915#14073]) +5 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-12/igt@i915_drm_fdinfo@isolation@rcs0.html
- shard-mtlp: NOTRUN -> [SKIP][96] ([i915#14073]) +6 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-mtlp-3/igt@i915_drm_fdinfo@isolation@rcs0.html
* igt@i915_module_load@fault-injection@intel_connector_register:
- shard-glk11: NOTRUN -> [ABORT][97] ([i915#15342]) +1 other test abort
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-glk11/igt@i915_module_load@fault-injection@intel_connector_register.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-rkl: NOTRUN -> [SKIP][98] ([i915#8399])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-4/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_freq_api@freq-suspend@gt0:
- shard-dg2: NOTRUN -> [INCOMPLETE][99] ([i915#13356] / [i915#13820]) +1 other test incomplete
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-4/igt@i915_pm_freq_api@freq-suspend@gt0.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglu: NOTRUN -> [WARN][100] ([i915#13790] / [i915#2681]) +1 other test warn
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-tglu: NOTRUN -> [INCOMPLETE][101] ([i915#4817] / [i915#7443])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-8/igt@i915_suspend@basic-s3-without-i915.html
* igt@i915_suspend@debugfs-reader:
- shard-rkl: NOTRUN -> [ABORT][102] ([i915#15131] / [i915#15140])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-1/igt@i915_suspend@debugfs-reader.html
* igt@i915_suspend@fence-restore-untiled:
- shard-rkl: [PASS][103] -> [INCOMPLETE][104] ([i915#4817]) +1 other test incomplete
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-5/igt@i915_suspend@fence-restore-untiled.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-3/igt@i915_suspend@fence-restore-untiled.html
* igt@i915_suspend@forcewake:
- shard-glk10: NOTRUN -> [INCOMPLETE][105] ([i915#4817])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-glk10/igt@i915_suspend@forcewake.html
* igt@intel_hwmon@hwmon-read:
- shard-rkl: NOTRUN -> [SKIP][106] ([i915#7707]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-8/igt@intel_hwmon@hwmon-read.html
* igt@intel_hwmon@hwmon-write:
- shard-tglu: NOTRUN -> [SKIP][107] ([i915#7707])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-10/igt@intel_hwmon@hwmon-write.html
- shard-mtlp: NOTRUN -> [SKIP][108] ([i915#7707])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-mtlp-5/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
- shard-mtlp: NOTRUN -> [SKIP][109] ([i915#4212]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-mtlp-2/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg2: NOTRUN -> [SKIP][110] ([i915#4212]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-1/igt@kms_addfb_basic@clobberred-modifier.html
- shard-dg1: NOTRUN -> [SKIP][111] ([i915#4212]) +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-19/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-tglu-1: NOTRUN -> [SKIP][112] ([i915#12454] / [i915#12712])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-snb: [PASS][113] -> [ABORT][114] ([i915#15840]) +1 other test abort
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-snb6/igt@kms_async_flips@async-flip-suspend-resume.html
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-snb6/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-tglu: NOTRUN -> [SKIP][115] ([i915#1769] / [i915#3555])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][116] ([i915#5286]) +2 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-7/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
- shard-tglu-1: NOTRUN -> [SKIP][117] ([i915#5286]) +2 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-1/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-tglu: NOTRUN -> [SKIP][118] ([i915#5286]) +3 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-5/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-dg1: NOTRUN -> [SKIP][119] ([i915#5286])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-13/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#4538] / [i915#5286]) +1 other test skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-12/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][121] ([i915#3638]) +2 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-4/igt@kms_big_fb@linear-16bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][122] ([i915#3638]) +3 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-15/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][123] +7 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-mtlp-5/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
- shard-tglu: NOTRUN -> [SKIP][124] ([i915#3828]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-10/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
- shard-tglu-1: NOTRUN -> [SKIP][125] ([i915#3828])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-1/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2: NOTRUN -> [SKIP][126] ([i915#5190])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-4/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][127] ([i915#4538] / [i915#5190]) +2 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][128] ([i915#4538]) +2 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-12/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][129] +10 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-1/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#10307] / [i915#6095]) +61 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-7/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-3.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2:
- shard-glk11: NOTRUN -> [SKIP][131] +36 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-glk11/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][132] ([i915#6095]) +24 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-1/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][133] ([i915#12313]) +2 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-10/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#14098] / [i915#6095]) +43 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-2/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][135] ([i915#6095]) +77 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][136] ([i915#12313])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-12/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][137] ([i915#12313])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-mtlp-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#12313])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
- shard-rkl: NOTRUN -> [SKIP][139] ([i915#12313])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][140] ([i915#6095]) +199 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-12/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#10307] / [i915#10434] / [i915#6095])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-4/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][142] ([i915#12805]) +1 other test skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][143] ([i915#6095]) +59 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-3/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#6095]) +7 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-3/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][145] ([i915#6095]) +14 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-mtlp-4/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-edp-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][146] ([i915#12313]) +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs:
- shard-rkl: NOTRUN -> [SKIP][147] ([i915#14098] / [i915#14544] / [i915#6095]) +1 other test skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/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][148] ([i915#14544] / [i915#6095]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-dg1: NOTRUN -> [SKIP][149] ([i915#11151] / [i915#7828]) +3 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-18/igt@kms_chamelium_frames@dp-crc-single.html
- shard-tglu: NOTRUN -> [SKIP][150] ([i915#11151] / [i915#7828]) +7 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-2/igt@kms_chamelium_frames@dp-crc-single.html
- shard-mtlp: NOTRUN -> [SKIP][151] ([i915#11151] / [i915#7828]) +3 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-mtlp-6/igt@kms_chamelium_frames@dp-crc-single.html
- shard-rkl: NOTRUN -> [SKIP][152] ([i915#11151] / [i915#14544] / [i915#7828])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-6/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_hpd@dp-hpd:
- shard-tglu-1: NOTRUN -> [SKIP][153] ([i915#11151] / [i915#7828]) +3 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#11151] / [i915#7828]) +4 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-3/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@dp-hpd-fast:
- shard-dg2: NOTRUN -> [SKIP][155] ([i915#11151] / [i915#7828]) +4 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-5/igt@kms_chamelium_hpd@dp-hpd-fast.html
* igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
- shard-tglu: NOTRUN -> [SKIP][156] ([i915#15330])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-7/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg1: NOTRUN -> [SKIP][157] ([i915#15330] / [i915#3299])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-18/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#15330])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-6/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_content_protection@srm:
- shard-tglu: NOTRUN -> [SKIP][159] ([i915#15865]) +1 other test skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-3/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-dg2: NOTRUN -> [SKIP][160] ([i915#15865]) +1 other test skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-1/igt@kms_content_protection@type1.html
- shard-rkl: NOTRUN -> [SKIP][161] ([i915#15865]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-5/igt@kms_content_protection@type1.html
- shard-dg1: NOTRUN -> [SKIP][162] ([i915#15865]) +1 other test skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-19/igt@kms_content_protection@type1.html
- shard-mtlp: NOTRUN -> [SKIP][163] ([i915#15865]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-mtlp-6/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-tglu-1: NOTRUN -> [SKIP][164] ([i915#15865])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-1/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2: NOTRUN -> [SKIP][165] ([i915#13049]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-8/igt@kms_cursor_crc@cursor-offscreen-512x512.html
- shard-tglu: NOTRUN -> [SKIP][166] ([i915#13049]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-7/igt@kms_cursor_crc@cursor-offscreen-512x512.html
- shard-mtlp: NOTRUN -> [SKIP][167] ([i915#13049]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-mtlp-5/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-tglu-1: NOTRUN -> [SKIP][168] ([i915#3555]) +3 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#3555]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-6/igt@kms_cursor_crc@cursor-random-32x10.html
- shard-dg1: NOTRUN -> [SKIP][170] ([i915#3555]) +2 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-12/igt@kms_cursor_crc@cursor-random-32x10.html
- shard-mtlp: NOTRUN -> [SKIP][171] ([i915#3555] / [i915#8814])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-mtlp-3/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg1: NOTRUN -> [SKIP][172] ([i915#13049]) +2 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-17/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-64x21:
- shard-rkl: [PASS][173] -> [FAIL][174] ([i915#13566])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-5/igt@kms_cursor_crc@cursor-random-64x21.html
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-3/igt@kms_cursor_crc@cursor-random-64x21.html
* igt@kms_cursor_crc@cursor-random-64x21@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][175] ([i915#13566])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-3/igt@kms_cursor_crc@cursor-random-64x21@pipe-a-hdmi-a-2.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-rkl: NOTRUN -> [SKIP][176] ([i915#13049])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][177] ([i915#12358] / [i915#14152] / [i915#7882])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-glk5/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][178] ([i915#12358] / [i915#14152])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-glk5/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions-varying-size:
- shard-dg1: [PASS][179] -> [DMESG-WARN][180] ([i915#4423]) +6 other tests dmesg-warn
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-dg1-15/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions-varying-size.html
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-16/igt@kms_cursor_legacy@cursora-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-dg2: NOTRUN -> [SKIP][181] ([i915#13046] / [i915#5354])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-7/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
- shard-mtlp: NOTRUN -> [SKIP][182] ([i915#9809])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-mtlp-4/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#4103])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#4103])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][185] ([i915#14544] / [i915#3804])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-tglu: NOTRUN -> [SKIP][186] ([i915#13749])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-10/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-rkl: NOTRUN -> [SKIP][187] ([i915#13749])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-8/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-tglu-1: NOTRUN -> [SKIP][188] ([i915#13748])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-1/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#13707])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-3/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#13707])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-4/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-dg1: NOTRUN -> [SKIP][191] ([i915#13707])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-16/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-tglu: NOTRUN -> [SKIP][192] ([i915#13707])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-5/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-mtlp: NOTRUN -> [SKIP][193] ([i915#13707])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-mtlp-2/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#3840])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-3/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
- shard-rkl: NOTRUN -> [SKIP][195] ([i915#3840])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
- shard-dg1: NOTRUN -> [SKIP][196] ([i915#3840])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-17/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
- shard-tglu: NOTRUN -> [SKIP][197] ([i915#3840])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-3/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
- shard-mtlp: NOTRUN -> [SKIP][198] ([i915#3840])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-mtlp-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#3555] / [i915#3840])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-8/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner (NEW):
- shard-rkl: NOTRUN -> [SKIP][200] ([i915#14544]) +1 other test skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][201] ([i915#9878])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-glk2/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-tglu: NOTRUN -> [SKIP][202] ([i915#2065] / [i915#4854])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-3/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-3x:
- shard-tglu: NOTRUN -> [SKIP][203] ([i915#1839]) +1 other test skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-6/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@psr2:
- shard-tglu-1: NOTRUN -> [SKIP][204] ([i915#658])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-1/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][205] ([i915#3637] / [i915#9934]) +4 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-6/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
- shard-mtlp: NOTRUN -> [SKIP][206] ([i915#3637] / [i915#9934]) +2 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-mtlp-7/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][207] ([i915#9934])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#9934]) +5 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-8/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-glk: NOTRUN -> [INCOMPLETE][209] ([i915#12745] / [i915#4839])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-glk1/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][210] ([i915#12745])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-glk1/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#9934]) +3 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-7/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][212] ([i915#3637] / [i915#9934]) +3 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-1/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-dg1: NOTRUN -> [SKIP][213] ([i915#9934]) +4 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-15/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#14544] / [i915#9934])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@blocking-wf_vblank:
- shard-rkl: [PASS][215] -> [FAIL][216] ([i915#10826])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-2/igt@kms_flip@blocking-wf_vblank.html
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-3/igt@kms_flip@blocking-wf_vblank.html
* igt@kms_flip@blocking-wf_vblank@a-hdmi-a2:
- shard-rkl: NOTRUN -> [FAIL][217] ([i915#10826])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-3/igt@kms_flip@blocking-wf_vblank@a-hdmi-a2.html
* igt@kms_flip@flip-vs-fences:
- shard-dg2: NOTRUN -> [SKIP][218] ([i915#8381])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-5/igt@kms_flip@flip-vs-fences.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-rkl: NOTRUN -> [SKIP][219] ([i915#14544] / [i915#15643])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#15643])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][221] ([i915#15643]) +2 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#15643] / [i915#5190])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-tglu: NOTRUN -> [SKIP][223] ([i915#15643]) +1 other test skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-10/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][224] ([i915#15104]) +2 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#15104])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][226] ([i915#15104])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][227] ([i915#4423] / [i915#8708])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw:
- shard-rkl: NOTRUN -> [SKIP][228] ([i915#1825]) +14 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][229] ([i915#14544] / [i915#1825]) +2 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite:
- shard-mtlp: NOTRUN -> [SKIP][230] ([i915#1825]) +14 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-mtlp-5/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][231] +28 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][232] ([i915#10056])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-glk6/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-tglu-1: NOTRUN -> [SKIP][233] ([i915#5439])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][234] ([i915#15102]) +2 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render.html
- shard-dg1: NOTRUN -> [SKIP][235] ([i915#15102]) +1 other test skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][236] ([i915#15102] / [i915#3458]) +10 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#8708]) +5 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][238] ([i915#5354]) +17 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen:
- shard-tglu: NOTRUN -> [SKIP][239] +61 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render:
- shard-dg1: NOTRUN -> [SKIP][240] ([i915#15102] / [i915#3458]) +6 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][241] ([i915#15102]) +26 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][242] ([i915#8708]) +2 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#8708]) +7 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][244] ([i915#15102] / [i915#3023]) +10 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
- shard-tglu-1: NOTRUN -> [SKIP][245] ([i915#15102]) +9 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html
* igt@kms_hdr@bpc-switch:
- shard-rkl: NOTRUN -> [SKIP][246] ([i915#3555] / [i915#8228])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-4/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg1: NOTRUN -> [SKIP][247] ([i915#1187] / [i915#12713])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-rkl: [PASS][248] -> [SKIP][249] ([i915#3555] / [i915#8228])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-6/igt@kms_hdr@invalid-metadata-sizes.html
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-7/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle-dpms:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#3555] / [i915#8228])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-3/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_hdr@static-toggle-suspend:
- shard-tglu: NOTRUN -> [SKIP][251] ([i915#3555] / [i915#8228])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-10/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-big-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][252] ([i915#15460])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-1/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][253] ([i915#15459])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-1/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][254] ([i915#14544] / [i915#15458])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-6/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][255] ([i915#15458])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][256] ([i915#15458])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-mtlp-7/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-dg2: NOTRUN -> [SKIP][257] ([i915#15458])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-8/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-rkl: NOTRUN -> [SKIP][258] ([i915#15458])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-4/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-dg1: NOTRUN -> [SKIP][259] ([i915#15458])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-15/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-rkl: NOTRUN -> [SKIP][260] ([i915#14544] / [i915#6301])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-6/igt@kms_panel_fitting@legacy.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier:
- shard-dg2: NOTRUN -> [SKIP][261] ([i915#15709]) +1 other test skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-1/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping:
- shard-rkl: NOTRUN -> [SKIP][262] ([i915#15709]) +1 other test skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping:
- shard-tglu-1: NOTRUN -> [SKIP][263] ([i915#15709])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping:
- shard-tglu: NOTRUN -> [SKIP][264] ([i915#15709]) +4 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-2/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7:
- shard-tglu-1: NOTRUN -> [SKIP][265] ([i915#15608]) +1 other test skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7.html
* igt@kms_plane@pixel-format-yf-tiled-modifier:
- shard-dg1: NOTRUN -> [SKIP][266] ([i915#15709])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-16/igt@kms_plane@pixel-format-yf-tiled-modifier.html
- shard-mtlp: NOTRUN -> [SKIP][267] ([i915#15709])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-mtlp-4/igt@kms_plane@pixel-format-yf-tiled-modifier.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a:
- shard-glk: [PASS][268] -> [INCOMPLETE][269] ([i915#13026])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-glk5/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-glk2/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb:
- shard-glk: NOTRUN -> [FAIL][270] ([i915#10647] / [i915#12169]) +1 other test fail
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-glk6/igt@kms_plane_alpha_blend@alpha-opaque-fb.html
* igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][271] ([i915#10647]) +3 other tests fail
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-glk2/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][272] ([i915#3555] / [i915#8821])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-4/igt@kms_plane_lowres@tiling-yf.html
- shard-rkl: NOTRUN -> [SKIP][273] ([i915#3555]) +3 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-5/igt@kms_plane_lowres@tiling-yf.html
- shard-mtlp: NOTRUN -> [SKIP][274] ([i915#3555] / [i915#8821])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-mtlp-5/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@tiling-4:
- shard-tglu: NOTRUN -> [SKIP][275] ([i915#14259])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-4/igt@kms_plane_multiple@tiling-4.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
- shard-dg1: NOTRUN -> [SKIP][276] ([i915#15329]) +4 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-19/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][277] ([i915#15329]) +9 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-7/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][278] ([i915#15329]) +3 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-8/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25:
- shard-mtlp: NOTRUN -> [SKIP][279] ([i915#15329] / [i915#6953]) +1 other test skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c:
- shard-mtlp: NOTRUN -> [SKIP][280] ([i915#15329]) +7 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-mtlp-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c.html
* igt@kms_pm_backlight@fade:
- shard-tglu: NOTRUN -> [SKIP][281] ([i915#9812])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-7/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2: NOTRUN -> [SKIP][282] ([i915#15948])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-8/igt@kms_pm_dc@dc5-psr.html
- shard-dg1: NOTRUN -> [SKIP][283] ([i915#15948])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-18/igt@kms_pm_dc@dc5-psr.html
- shard-tglu: NOTRUN -> [SKIP][284] ([i915#15948])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-3/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg1: NOTRUN -> [SKIP][285] ([i915#3828])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-16/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg1: [PASS][286] -> [SKIP][287] ([i915#15073]) +2 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-dg1-15/igt@kms_pm_rpm@dpms-lpsp.html
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-17/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: [PASS][288] -> [SKIP][289] ([i915#15073]) +1 other test skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress.html
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-1/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [PASS][290] -> [SKIP][291] ([i915#15073]) +4 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: NOTRUN -> [SKIP][292] ([i915#15073])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_prime@d3hot:
- shard-tglu: NOTRUN -> [SKIP][293] ([i915#6524])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-2/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg2: NOTRUN -> [SKIP][294] ([i915#11520]) +1 other test skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-1/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
- shard-rkl: NOTRUN -> [SKIP][295] ([i915#11520]) +2 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-3/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
- shard-snb: NOTRUN -> [SKIP][296] ([i915#11520]) +1 other test skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-snb7/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
- shard-dg1: NOTRUN -> [SKIP][297] ([i915#11520]) +3 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-18/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
- shard-mtlp: NOTRUN -> [SKIP][298] ([i915#12316]) +1 other test skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-mtlp-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
- shard-glk11: NOTRUN -> [SKIP][299] ([i915#11520]) +1 other test skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-glk11/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][300] ([i915#11520]) +9 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-glk9/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf:
- shard-glk10: NOTRUN -> [SKIP][301] ([i915#11520]) +2 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-glk10/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-tglu-1: NOTRUN -> [SKIP][302] ([i915#11520]) +3 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-tglu: NOTRUN -> [SKIP][303] ([i915#11520]) +7 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-6/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@fbc-pr-primary-blt:
- shard-mtlp: NOTRUN -> [SKIP][304] ([i915#9688]) +8 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-mtlp-3/igt@kms_psr@fbc-pr-primary-blt.html
* igt@kms_psr@fbc-pr-primary-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][305] ([i915#1072] / [i915#14544] / [i915#9732]) +1 other test skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-6/igt@kms_psr@fbc-pr-primary-mmap-gtt.html
* igt@kms_psr@fbc-psr-no-drrs:
- shard-tglu: NOTRUN -> [SKIP][306] ([i915#9732]) +21 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-10/igt@kms_psr@fbc-psr-no-drrs.html
* igt@kms_psr@fbc-psr-primary-mmap-cpu:
- shard-glk10: NOTRUN -> [SKIP][307] +50 other tests skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-glk10/igt@kms_psr@fbc-psr-primary-mmap-cpu.html
* igt@kms_psr@fbc-psr2-cursor-mmap-gtt:
- shard-glk: NOTRUN -> [SKIP][308] +499 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-glk9/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html
* igt@kms_psr@psr-cursor-plane-onoff:
- shard-dg1: NOTRUN -> [SKIP][309] ([i915#1072] / [i915#9732]) +12 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-19/igt@kms_psr@psr-cursor-plane-onoff.html
* igt@kms_psr@psr-sprite-plane-onoff:
- shard-rkl: NOTRUN -> [SKIP][310] ([i915#1072] / [i915#9732]) +8 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-2/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_psr@psr2-cursor-render:
- shard-dg2: NOTRUN -> [SKIP][311] ([i915#1072] / [i915#9732]) +11 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-6/igt@kms_psr@psr2-cursor-render.html
* igt@kms_psr@psr2-sprite-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][312] ([i915#9732]) +9 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-cpu.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-tglu-1: NOTRUN -> [SKIP][313] ([i915#15949])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
- shard-glk: NOTRUN -> [INCOMPLETE][314] ([i915#15500])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-glk6/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-tglu: NOTRUN -> [SKIP][315] ([i915#3555]) +3 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-10/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg1: NOTRUN -> [SKIP][316] ([i915#8623])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-15/igt@kms_tiled_display@basic-test-pattern.html
- shard-tglu: NOTRUN -> [SKIP][317] ([i915#8623])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-6/igt@kms_tiled_display@basic-test-pattern.html
- shard-mtlp: NOTRUN -> [SKIP][318] ([i915#8623])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-mtlp-7/igt@kms_tiled_display@basic-test-pattern.html
- shard-dg2: NOTRUN -> [SKIP][319] ([i915#8623])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-8/igt@kms_tiled_display@basic-test-pattern.html
- shard-rkl: NOTRUN -> [SKIP][320] ([i915#8623])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-4/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-glk10: NOTRUN -> [INCOMPLETE][321] ([i915#12276]) +1 other test incomplete
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-glk10/igt@kms_vblank@ts-continuation-suspend.html
* igt@kms_vrr@flip-basic-fastset:
- shard-tglu: NOTRUN -> [SKIP][322] ([i915#9906])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-2/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@flip-suspend:
- shard-snb: NOTRUN -> [SKIP][323] +127 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-snb6/igt@kms_vrr@flip-suspend.html
- shard-mtlp: NOTRUN -> [SKIP][324] ([i915#3555] / [i915#8808])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-mtlp-3/igt@kms_vrr@flip-suspend.html
- shard-dg2: NOTRUN -> [SKIP][325] ([i915#15243] / [i915#3555])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-1/igt@kms_vrr@flip-suspend.html
- shard-rkl: NOTRUN -> [SKIP][326] ([i915#15243] / [i915#3555])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-7/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@lobf:
- shard-rkl: NOTRUN -> [SKIP][327] ([i915#11920])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-8/igt@kms_vrr@lobf.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-dg2: NOTRUN -> [SKIP][328] ([i915#9906])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-1/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@prime_vgem@basic-fence-read:
- shard-dg2: NOTRUN -> [SKIP][329] ([i915#3291] / [i915#3708])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-3/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@fence-write-hang:
- shard-mtlp: NOTRUN -> [SKIP][330] ([i915#3708])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-mtlp-2/igt@prime_vgem@fence-write-hang.html
- shard-dg2: NOTRUN -> [SKIP][331] ([i915#3708])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-3/igt@prime_vgem@fence-write-hang.html
- shard-rkl: NOTRUN -> [SKIP][332] ([i915#3708])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-4/igt@prime_vgem@fence-write-hang.html
- shard-dg1: NOTRUN -> [SKIP][333] ([i915#3708])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-16/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-dg2: NOTRUN -> [SKIP][334] ([i915#9917])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-3/igt@sriov_basic@bind-unbind-vf.html
- shard-rkl: NOTRUN -> [SKIP][335] ([i915#9917])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-5/igt@sriov_basic@bind-unbind-vf.html
- shard-dg1: NOTRUN -> [SKIP][336] ([i915#9917])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-18/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@bind-unbind-vf@vf-4:
- shard-tglu: NOTRUN -> [FAIL][337] ([i915#12910]) +9 other tests fail
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-9/igt@sriov_basic@bind-unbind-vf@vf-4.html
* igt@sriov_basic@bind-unbind-vf@vf-5:
- shard-mtlp: NOTRUN -> [FAIL][338] ([i915#12910]) +9 other tests fail
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-mtlp-6/igt@sriov_basic@bind-unbind-vf@vf-5.html
#### Possible fixes ####
* igt@gem_eio@kms:
- shard-rkl: [DMESG-WARN][339] ([i915#13363]) -> [PASS][340]
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-2/igt@gem_eio@kms.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-1/igt@gem_eio@kms.html
- shard-tglu: [DMESG-WARN][341] ([i915#13363]) -> [PASS][342]
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-tglu-3/igt@gem_eio@kms.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-9/igt@gem_eio@kms.html
* igt@i915_power@sanity:
- shard-mtlp: [SKIP][343] ([i915#7984]) -> [PASS][344]
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-mtlp-5/igt@i915_power@sanity.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-mtlp-2/igt@i915_power@sanity.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1:
- shard-mtlp: [FAIL][345] ([i915#5956]) -> [PASS][346] +1 other test pass
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-mtlp-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-mtlp-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [FAIL][347] ([i915#15733] / [i915#5138]) -> [PASS][348]
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-rkl: [INCOMPLETE][349] ([i915#15582]) -> [PASS][350] +1 other test pass
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-tglu: [FAIL][351] ([i915#13566]) -> [PASS][352] +3 other tests pass
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-256x85.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-9/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2:
- shard-rkl: [FAIL][353] ([i915#13566]) -> [PASS][354] +1 other test pass
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-2.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [FAIL][355] ([i915#13027]) -> [PASS][356] +1 other test pass
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-snb6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-vga1-hdmi-a1.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-snb7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-rkl: [ABORT][357] ([i915#15132]) -> [PASS][358] +1 other test pass
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-1/igt@kms_pipe_crc_basic@suspend-read-crc.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-4/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: [SKIP][359] ([i915#15073]) -> [PASS][360]
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-4/igt@kms_pm_rpm@dpms-lpsp.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-2/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-glk: [INCOMPLETE][361] ([i915#10553]) -> [PASS][362]
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-glk3/igt@kms_pm_rpm@system-suspend-modeset.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-glk9/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_vblank@ts-continuation-modeset:
- shard-dg1: [DMESG-WARN][363] ([i915#4423]) -> [PASS][364] +2 other tests pass
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-dg1-15/igt@kms_vblank@ts-continuation-modeset.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-19/igt@kms_vblank@ts-continuation-modeset.html
* igt@perf_pmu@all-busy-idle-check-all:
- shard-mtlp: [FAIL][365] ([i915#15453]) -> [PASS][366]
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-mtlp-3/igt@perf_pmu@all-busy-idle-check-all.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-mtlp-4/igt@perf_pmu@all-busy-idle-check-all.html
#### Warnings ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-rkl: [SKIP][367] ([i915#8411]) -> [SKIP][368] ([i915#14544] / [i915#8411])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-7/igt@api_intel_bb@blit-reloc-keep-cache.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-6/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@gem_ccs@large-ctrl-surf-copy:
- shard-rkl: [SKIP][369] ([i915#13008]) -> [SKIP][370] ([i915#13008] / [i915#14544])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-8/igt@gem_ccs@large-ctrl-surf-copy.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-6/igt@gem_ccs@large-ctrl-surf-copy.html
* igt@gem_exec_reloc@basic-cpu-noreloc:
- shard-rkl: [SKIP][371] ([i915#3281]) -> [SKIP][372] ([i915#14544] / [i915#3281]) +5 other tests skip
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-8/igt@gem_exec_reloc@basic-cpu-noreloc.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-noreloc.html
* igt@gem_exec_reloc@basic-gtt-cpu:
- shard-rkl: [SKIP][373] ([i915#14544] / [i915#3281]) -> [SKIP][374] ([i915#3281]) +4 other tests skip
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-cpu.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-cpu.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-rkl: [SKIP][375] ([i915#4613]) -> [SKIP][376] ([i915#14544] / [i915#4613]) +1 other test skip
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-1/igt@gem_lmem_swapping@verify-ccs.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-6/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_pread@snoop:
- shard-rkl: [SKIP][377] ([i915#3282]) -> [SKIP][378] ([i915#14544] / [i915#3282]) +2 other tests skip
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-3/igt@gem_pread@snoop.html
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-6/igt@gem_pread@snoop.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-rkl: [SKIP][379] ([i915#13717] / [i915#14544]) -> [SKIP][380] ([i915#13717])
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-buffer.html
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-7/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_tiled_partial_pwrite_pread@reads:
- shard-rkl: [SKIP][381] ([i915#14544] / [i915#3282]) -> [SKIP][382] ([i915#3282]) +2 other tests skip
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-6/igt@gem_tiled_partial_pwrite_pread@reads.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-7/igt@gem_tiled_partial_pwrite_pread@reads.html
* igt@i915_pm_sseu@full-enable:
- shard-rkl: [SKIP][383] ([i915#4387]) -> [SKIP][384] ([i915#14544] / [i915#4387])
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-4/igt@i915_pm_sseu@full-enable.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-6/igt@i915_pm_sseu@full-enable.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-rkl: [SKIP][385] ([i915#5286]) -> [SKIP][386] ([i915#14544] / [i915#5286]) +1 other test skip
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-8/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-6/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-rkl: [SKIP][387] ([i915#14544] / [i915#5286]) -> [SKIP][388] ([i915#5286]) +2 other tests skip
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: [SKIP][389] ([i915#3638]) -> [SKIP][390] ([i915#14544] / [i915#3638]) +2 other tests skip
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-2/igt@kms_big_fb@linear-8bpp-rotate-270.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-6/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-rkl: [SKIP][391] ([i915#14544] / [i915#3638]) -> [SKIP][392] ([i915#3638])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-6/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-5/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-rkl: [SKIP][393] -> [SKIP][394] ([i915#14544]) +7 other tests skip
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-8/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-rkl: [SKIP][395] ([i915#14544]) -> [SKIP][396] +4 other tests skip
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-6/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-3/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-rkl: [SKIP][397] ([i915#12313] / [i915#14544]) -> [SKIP][398] ([i915#12313])
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-7/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][399] ([i915#12313]) -> [SKIP][400] ([i915#12313] / [i915#14544]) +1 other test skip
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-3/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][401] ([i915#6095]) -> [SKIP][402] ([i915#14544] / [i915#6095]) +3 other tests skip
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs:
- shard-rkl: [SKIP][403] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][404] ([i915#14098] / [i915#6095])
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-5/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][405] ([i915#14098] / [i915#6095]) -> [SKIP][406] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-rkl: [SKIP][407] ([i915#14544] / [i915#3742]) -> [SKIP][408] ([i915#3742])
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-6/igt@kms_cdclk@mode-transition-all-outputs.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-3/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-dg1: [SKIP][409] ([i915#11151] / [i915#4423] / [i915#7828]) -> [SKIP][410] ([i915#11151] / [i915#7828])
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-dg1-17/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-19/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-rkl: [SKIP][411] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][412] ([i915#11151] / [i915#7828]) +2 other tests skip
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-6/igt@kms_chamelium_frames@hdmi-crc-fast.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-5/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-rkl: [SKIP][413] ([i915#11151] / [i915#7828]) -> [SKIP][414] ([i915#11151] / [i915#14544] / [i915#7828])
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-3/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-6/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_content_protection@atomic-dpms:
- shard-rkl: [SKIP][415] ([i915#14544] / [i915#15865]) -> [SKIP][416] ([i915#15865]) +1 other test skip
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-6/igt@kms_content_protection@atomic-dpms.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-4/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-rkl: [SKIP][417] ([i915#15330] / [i915#3116]) -> [SKIP][418] ([i915#14544] / [i915#15330] / [i915#3116])
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-2/igt@kms_content_protection@dp-mst-type-0.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][419] ([i915#9433]) -> [SKIP][420] ([i915#15865])
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-dg1-13/igt@kms_content_protection@mei-interface.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-14/igt@kms_content_protection@mei-interface.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-rkl: [SKIP][421] ([i915#13049] / [i915#14544]) -> [SKIP][422] ([i915#13049])
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-512x170.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-3/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-rkl: [SKIP][423] ([i915#13049]) -> [SKIP][424] ([i915#13049] / [i915#14544])
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-512x170.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-dg1: [SKIP][425] -> [SKIP][426] ([i915#4423])
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-dg1-13/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-13/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-rkl: [SKIP][427] ([i915#3555] / [i915#3804]) -> [SKIP][428] ([i915#14544] / [i915#3555] / [i915#3804])
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-rkl: [SKIP][429] ([i915#13748] / [i915#14544]) -> [SKIP][430] ([i915#13748])
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-6/igt@kms_dp_link_training@uhbr-sst.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-4/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-rkl: [SKIP][431] ([i915#3840]) -> [SKIP][432] ([i915#14544] / [i915#3840])
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-4/igt@kms_dsc@dsc-fractional-bpp.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_feature_discovery@dp-mst:
- shard-rkl: [SKIP][433] ([i915#14544] / [i915#9337]) -> [SKIP][434] ([i915#9337])
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-6/igt@kms_feature_discovery@dp-mst.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-8/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-rkl: [SKIP][435] ([i915#9934]) -> [SKIP][436] ([i915#14544] / [i915#9934]) +4 other tests skip
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-2/igt@kms_flip@2x-flip-vs-dpms.html
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-rkl: [SKIP][437] ([i915#14544] / [i915#9934]) -> [SKIP][438] ([i915#9934])
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-6/igt@kms_flip@2x-flip-vs-fences-interruptible.html
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-3/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-glk: [INCOMPLETE][439] ([i915#12745] / [i915#4839] / [i915#6113]) -> [INCOMPLETE][440] ([i915#12745] / [i915#4839])
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-glk2/igt@kms_flip@2x-flip-vs-suspend.html
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-glk4/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-rkl: [SKIP][441] ([i915#15643]) -> [SKIP][442] ([i915#14544] / [i915#15643]) +1 other test skip
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-dg1: [SKIP][443] ([i915#15104]) -> [SKIP][444] ([i915#15104] / [i915#4423])
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-wc.html
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-rkl: [SKIP][445] ([i915#14544] / [i915#1825]) -> [SKIP][446] ([i915#1825]) +14 other tests skip
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt:
- shard-rkl: [SKIP][447] ([i915#15102]) -> [SKIP][448] ([i915#14544] / [i915#15102]) +4 other tests skip
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt:
- shard-rkl: [SKIP][449] ([i915#14544] / [i915#15102]) -> [SKIP][450] ([i915#15102])
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move:
- shard-rkl: [SKIP][451] ([i915#15102] / [i915#3023]) -> [SKIP][452] ([i915#14544] / [i915#15102] / [i915#3023]) +6 other tests skip
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: [SKIP][453] ([i915#15102] / [i915#3458]) -> [SKIP][454] ([i915#10433] / [i915#15102] / [i915#3458])
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-rkl: [SKIP][455] ([i915#1825]) -> [SKIP][456] ([i915#14544] / [i915#1825]) +9 other tests skip
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-rkl: [SKIP][457] ([i915#5439]) -> [SKIP][458] ([i915#14544] / [i915#5439])
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render:
- shard-rkl: [SKIP][459] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][460] ([i915#15102] / [i915#3023]) +6 other tests skip
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: [SKIP][461] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][462] ([i915#15102] / [i915#3458]) +1 other test skip
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_hdr@brightness-with-hdr:
- shard-rkl: [SKIP][463] ([i915#12713]) -> [SKIP][464] ([i915#13331] / [i915#14544])
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-2/igt@kms_hdr@brightness-with-hdr.html
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-6/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-hdr:
- shard-rkl: [SKIP][465] ([i915#3555] / [i915#8228]) -> [SKIP][466] ([i915#14544] / [i915#3555] / [i915#8228])
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-1/igt@kms_hdr@invalid-hdr.html
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-6/igt@kms_hdr@invalid-hdr.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping:
- shard-rkl: [SKIP][467] ([i915#15709]) -> [SKIP][468] ([i915#14544] / [i915#15709]) +2 other tests skip
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier:
- shard-rkl: [SKIP][469] ([i915#14544] / [i915#15709]) -> [SKIP][470] ([i915#15709]) +1 other test skip
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-3/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-rkl: [SKIP][471] ([i915#13958] / [i915#14544]) -> [SKIP][472] ([i915#13958]) +1 other test skip
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-none.html
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-2/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c:
- shard-rkl: [SKIP][473] ([i915#15329]) -> [SKIP][474] ([i915#14544] / [i915#15329]) +7 other tests skip
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-4/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html
* igt@kms_pm_backlight@bad-brightness:
- shard-rkl: [SKIP][475] ([i915#14544] / [i915#5354]) -> [SKIP][476] ([i915#5354]) +1 other test skip
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-6/igt@kms_pm_backlight@bad-brightness.html
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-5/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@fade:
- shard-dg1: [SKIP][477] ([i915#5354]) -> [SKIP][478] ([i915#4423] / [i915#5354])
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-dg1-13/igt@kms_pm_backlight@fade.html
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-dg1-13/igt@kms_pm_backlight@fade.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-rkl: [SKIP][479] ([i915#5354]) -> [SKIP][480] ([i915#14544] / [i915#5354])
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-2/igt@kms_pm_backlight@fade-with-suspend.html
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-6/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: [SKIP][481] ([i915#15128]) -> [FAIL][482] ([i915#15752])
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-tglu-6/igt@kms_pm_dc@dc6-dpms.html
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-tglu-7/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-rkl: [SKIP][483] ([i915#14544] / [i915#15948]) -> [SKIP][484] ([i915#15948])
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-6/igt@kms_pm_dc@dc6-psr.html
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-2/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-rkl: [SKIP][485] ([i915#15073]) -> [SKIP][486] ([i915#14544] / [i915#15073])
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-4/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-6/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf:
- shard-rkl: [SKIP][487] ([i915#11520] / [i915#14544]) -> [SKIP][488] ([i915#11520]) +2 other tests skip
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-7/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
- shard-rkl: [SKIP][489] ([i915#11520]) -> [SKIP][490] ([i915#11520] / [i915#14544]) +2 other tests skip
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
* igt@kms_psr2_su@page_flip-p010:
- shard-rkl: [SKIP][491] ([i915#14544] / [i915#9683]) -> [SKIP][492] ([i915#9683])
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-6/igt@kms_psr2_su@page_flip-p010.html
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-4/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr2-no-drrs:
- shard-rkl: [SKIP][493] ([i915#1072] / [i915#9732]) -> [SKIP][494] ([i915#1072] / [i915#14544] / [i915#9732]) +4 other tests skip
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-1/igt@kms_psr@fbc-psr2-no-drrs.html
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-6/igt@kms_psr@fbc-psr2-no-drrs.html
* igt@kms_psr@psr2-cursor-mmap-gtt:
- shard-rkl: [SKIP][495] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][496] ([i915#1072] / [i915#9732]) +6 other tests skip
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-6/igt@kms_psr@psr2-cursor-mmap-gtt.html
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-2/igt@kms_psr@psr2-cursor-mmap-gtt.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-rkl: [SKIP][497] ([i915#14544] / [i915#5289]) -> [SKIP][498] ([i915#5289])
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-rkl: [SKIP][499] ([i915#3555]) -> [SKIP][500] ([i915#14544] / [i915#3555]) +2 other tests skip
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-4/igt@kms_scaling_modes@scaling-mode-none.html
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-6/igt@kms_scaling_modes@scaling-mode-none.html
* igt@perf_pmu@rc6-all-gts:
- shard-rkl: [SKIP][501] ([i915#8516]) -> [SKIP][502] ([i915#14544] / [i915#8516])
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-5/igt@perf_pmu@rc6-all-gts.html
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-6/igt@perf_pmu@rc6-all-gts.html
* igt@prime_vgem@basic-write:
- shard-rkl: [SKIP][503] ([i915#3291] / [i915#3708]) -> [SKIP][504] ([i915#14544] / [i915#3291] / [i915#3708])
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-5/igt@prime_vgem@basic-write.html
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-6/igt@prime_vgem@basic-write.html
* igt@prime_vgem@coherency-gtt:
- shard-rkl: [SKIP][505] ([i915#3708]) -> [SKIP][506] ([i915#14544] / [i915#3708]) +1 other test skip
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18383/shard-rkl-5/igt@prime_vgem@coherency-gtt.html
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15084/shard-rkl-6/igt@prime_vgem@coherency-gtt.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#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
[i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193
[i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
[i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
[i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008
[i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026
[i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13196
[i915#13331]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13331
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13363]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363
[i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790
[i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820
[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#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[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#15128]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15128
[i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
[i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
[i915#15140]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15140
[i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
[i915#15314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15314
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342
[i915#15453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15453
[i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
[i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460
[i915#15500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15500
[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#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#15752]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15752
[i915#15840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15840
[i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
[i915#15948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948
[i915#15949]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15949
[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#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[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#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[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#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[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#3936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[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#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[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#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[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#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[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#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276
[i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443
[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#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882
[i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[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#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
[i915#8898]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8898
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
[i915#9561]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9561
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[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_8879 -> IGTPW_15084
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_18383: c50aab3f28b1580a38a58ca7a3fc3ff9ceb5d5ed @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15084: e19ed76c8bde09ed253dae4d0dea55023140190b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8879: 02b0e01dd9a5a3ab1efe976bb8c4f13cfcdbab1a @ 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_15084/index.html
[-- Attachment #2: Type: text/html, Size: 172489 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t, v5 1/4] lib/igt_kms: Add igt_get_joined_pipes_name()
2026-04-29 19:51 ` [PATCH i-g-t,v5 1/4] lib/igt_kms: Add igt_get_joined_pipes_name() Swati Sharma
@ 2026-04-30 7:22 ` Jani Nikula
2026-04-30 10:00 ` Sharma, Swati2
0 siblings, 1 reply; 13+ messages in thread
From: Jani Nikula @ 2026-04-30 7:22 UTC (permalink / raw)
To: Swati Sharma, igt-dev; +Cc: Swati Sharma, Ankit Nautiyal
On Thu, 30 Apr 2026, Swati Sharma <swati2.sharma@intel.com> wrote:
> Add function to transform the enum into a string.
>
> v2: -Improved func() doc (Jeevan)
> v3: -Return names without '-' dash prefix (Santhosh)
>
> Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
> Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
> ---
> lib/igt_kms.c | 22 ++++++++++++++++++++++
> lib/igt_kms.h | 1 +
> 2 files changed, 23 insertions(+)
>
> diff --git a/lib/igt_kms.c b/lib/igt_kms.c
> index 2efdfb85f..bece27ff6 100644
> --- a/lib/igt_kms.c
> +++ b/lib/igt_kms.c
> @@ -1906,6 +1906,28 @@ bool kmstest_force_connector_joiner(int drm_fd, drmModeConnector *connector, int
> return true;
> }
>
> +/**
> + * igt_get_joined_pipes_name:
> + * @val: forced value
> + *
> + * Returns: A joined_pipes enum value into a readable string.
> + */
> +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);
> + }
> +}
I don't really think this belongs in lib/igt_kms.[ch]. And to be fair,
IMO none of the joiner code belongs here, because it's Intel specific,
and this is supposed to be generic code.
BR,
Jani.
> +
> /**
> * kmstest_force_edid:
> * @drm_fd: drm file descriptor
> diff --git a/lib/igt_kms.h b/lib/igt_kms.h
> index fcbb6a5ad..6898cd981 100644
> --- a/lib/igt_kms.h
> +++ b/lib/igt_kms.h
> @@ -1280,6 +1280,7 @@ void igt_set_link_params(int drm_fd, igt_output_t *output,
> int igt_backlight_read(int *result, const char *fname, igt_backlight_context_t *context);
> int igt_backlight_write(int value, const char *fname, igt_backlight_context_t *context);
> uint32_t igt_get_connected_output_count(igt_display_t *display);
> +const char *igt_get_joined_pipes_name(enum joined_pipes val);
>
> drmModePropertyBlobRes *igt_get_writeback_formats_blob(igt_output_t *output);
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t, v5 4/4] tests/intel/kms_dsc: Add force dsc and joiner test cases
2026-04-29 19:51 ` [PATCH i-g-t, v5 4/4] tests/intel/kms_dsc: Add force dsc and joiner test cases Swati Sharma
@ 2026-04-30 7:33 ` Jani Nikula
2026-04-30 10:04 ` Sharma, Swati2
0 siblings, 1 reply; 13+ messages in thread
From: Jani Nikula @ 2026-04-30 7:33 UTC (permalink / raw)
To: Swati Sharma, igt-dev; +Cc: Swati Sharma
On Thu, 30 Apr 2026, Swati Sharma <swati2.sharma@intel.com> 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)
>
> Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
> ---
> tests/intel/kms_dsc.c | 206 +++++++++++++++++++++++++++---------------
> 1 file changed, 134 insertions(+), 72 deletions(-)
>
> diff --git a/tests/intel/kms_dsc.c b/tests/intel/kms_dsc.c
> index 69f335da3..bfd84e59a 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,25 +274,35 @@ 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 = 0;
> char name[3][LEN] = {
> {0},
> {0},
> {0},
> };
>
> + for_each_crtc(display, crtc)
> + n_pipes++;
Nowadays that's just igt_display_n_crtcs().
> +
> 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 +323,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;
I don't have the time to look into all of this properly, but I have a
feeling it would be worth it to add a coherent set of joiner helpers
under lib/intel, consoditating the joiner stuff from lib/igt_kms.c and
tests/intel/kms_joiner_helper.c, and possibly kms_dsc_helper.c etc.
It's just not tenable for tests to be checking the above.
That said, it takes time and effort, and I'm not insisting on it. It's
just something to think of, and maybe start moving stuff to a single
location to make it easier to re-use.
BR,
Jani.
> +
> 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 +392,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() {
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ Xe.CI.FULL: failure for Add dsc+bigjoiner subtest (rev7)
2026-04-29 19:51 [PATCH i-g-t,v5 0/4] Add dsc+bigjoiner subtest Swati Sharma
` (6 preceding siblings ...)
2026-04-30 7:03 ` ✗ i915.CI.Full: failure " Patchwork
@ 2026-04-30 9:29 ` Patchwork
7 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2026-04-30 9:29 UTC (permalink / raw)
To: Sharma, Swati2; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 53613 bytes --]
== Series Details ==
Series: Add dsc+bigjoiner subtest (rev7)
URL : https://patchwork.freedesktop.org/series/128266/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8879_FULL -> XEIGTPW_15084_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_15084_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_15084_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_15084_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_dsc@dsc-basic-bigjoiner (NEW):
- shard-bmg: NOTRUN -> [SKIP][1] +13 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-8/igt@kms_dsc@dsc-basic-bigjoiner.html
* igt@kms_dsc@dsc-with-output-formats-bigjoiner (NEW):
- shard-lnl: NOTRUN -> [SKIP][2] +15 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-7/igt@kms_dsc@dsc-with-output-formats-bigjoiner.html
#### Warnings ####
* igt@xe_exec_reset@multi-queue-cancel-on-secondary:
- shard-bmg: [SKIP][3] ([Intel XE#6703]) -> [SKIP][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-2/igt@xe_exec_reset@multi-queue-cancel-on-secondary.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-10/igt@xe_exec_reset@multi-queue-cancel-on-secondary.html
New tests
---------
New tests have been introduced between XEIGT_8879_FULL and XEIGTPW_15084_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, 0.00] s
* igt@kms_dsc@dsc-fractional-bpp-bigjoiner:
- Statuses : 2 skip(s)
- Exec time: [0.0, 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 : 1 skip(s)
- Exec time: [0.0] 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 : 1 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 : 2 skip(s)
- Exec time: [0.0, 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_15084_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#1466])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-5/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#2370])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2327]) +2 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-8/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#1428] / [Intel XE#7387])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-1/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#1124]) +6 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-9/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1124]) +2 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-3-displays-target-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#7679]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-3/igt@kms_bw@connected-linear-tiling-3-displays-target-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-4-displays-target-3840x2160p:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#7676])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-5/igt@kms_bw@connected-linear-tiling-4-displays-target-3840x2160p.html
* igt@kms_bw@linear-tiling-1-displays-target-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#367]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-9/igt@kms_bw@linear-tiling-1-displays-target-2560x1440p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2652]) +8 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-1/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#2669] / [Intel XE#3433] / [Intel XE#7389]) +3 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#3432])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2887]) +8 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#2887]) +5 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-3/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2724] / [Intel XE#7449])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-3/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2325] / [Intel XE#7358])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-3/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_color@ctm-max:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#306] / [Intel XE#7358])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-5/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_edid@dp-edid-resolution-list:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2252]) +3 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-7/igt@kms_chamelium_edid@dp-edid-resolution-list.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#373]) +2 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-7/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#307] / [Intel XE#6974])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-3/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2390] / [Intel XE#6974])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-9/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][26] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-8/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
* igt@kms_content_protection@type1:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#7642]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-7/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2320]) +4 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-8/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2321] / [Intel XE#7355]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-9/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#2321] / [Intel XE#7355]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-5/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#309] / [Intel XE#7343]) +4 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [PASS][32] -> [FAIL][33] ([Intel XE#7571])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-9/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#323] / [Intel XE#6035])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#4354] / [Intel XE#5882])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-9/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2244])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#4422] / [Intel XE#7442])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-7/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#4156] / [Intel XE#7425])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-10/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_feature_discovery@display-3x:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#703] / [Intel XE#7448])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-5/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#1421]) +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-3/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank@a-edp1:
- shard-lnl: NOTRUN -> [FAIL][41] ([Intel XE#301]) +2 other tests fail
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#7178] / [Intel XE#7351]) +3 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#7179])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#7179])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-8/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#4141]) +7 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#7061] / [Intel XE#7356])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-6/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#6312] / [Intel XE#651]) +6 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2311]) +19 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2313]) +20 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#5812] / [Intel XE#656]) +16 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#6900] / [Intel XE#7362])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-7/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#7086] / [Intel XE#7390])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2486])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-4/igt@kms_panel_fitting@legacy.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#7283]) +4 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-8/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#7283]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-2/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html
* igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#599] / [Intel XE#7382]) +3 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-4/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2393])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-9/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-bmg: [PASS][60] -> [SKIP][61] ([Intel XE#2685] / [Intel XE#3307])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-2/igt@kms_plane_scaling@intel-max-src-size.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-7/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c:
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#2763] / [Intel XE#6886]) +3 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-6/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c.html
* igt@kms_pm_backlight@fade:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#7376] / [Intel XE#870])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-9/igt@kms_pm_backlight@fade.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#1489]) +5 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-1/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#2893] / [Intel XE#7304])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-2/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#4608]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#4608] / [Intel XE#7304]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-b-edp-1.html
* igt@kms_psr2_su@page_flip-p010:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2387] / [Intel XE#7429])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-7/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr-suspend:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2234] / [Intel XE#2850]) +6 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-1/igt@kms_psr@fbc-psr-suspend.html
* igt@kms_psr@fbc-psr2-cursor-plane-move:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#1406] / [Intel XE#7345])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-5/igt@kms_psr@fbc-psr2-cursor-plane-move.html
* igt@kms_psr@fbc-psr2-cursor-plane-move@edp-1:
- shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#1406] / [Intel XE#4609])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-5/igt@kms_psr@fbc-psr2-cursor-plane-move@edp-1.html
* igt@kms_psr@pr-primary-blt:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1406]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-4/igt@kms_psr@pr-primary-blt.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) +2 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-2/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_sharpness_filter@invalid-filter-with-scaling-mode:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#6503]) +2 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-2/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html
* igt@kms_tv_load_detect@load-detect:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2450] / [Intel XE#5857])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-7/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@flip-basic:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#1499])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-4/igt@kms_vrr@flip-basic.html
* igt@xe_eudebug_online@single-step:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#7636]) +8 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-9/igt@xe_eudebug_online@single-step.html
* igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-vram:
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#7636]) +3 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-8/igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-vram.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: NOTRUN -> [INCOMPLETE][80] ([Intel XE#6321])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_evict@evict-mixed-threads-small-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#6540] / [Intel XE#688]) +2 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-7/igt@xe_evict@evict-mixed-threads-small-multi-vm.html
* igt@xe_exec_balancer@twice-cm-virtual-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#7482]) +9 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-7/igt@xe_exec_balancer@twice-cm-virtual-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#1392]) +3 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-3/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html
* igt@xe_exec_basic@multigpu-once-null-rebind:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2322] / [Intel XE#7372]) +3 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-8/igt@xe_exec_basic@multigpu-once-null-rebind.html
* igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind:
- shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#7136]) +6 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-3/igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind.html
* igt@xe_exec_fault_mode@twice-multi-queue-imm:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#7136]) +10 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-4/igt@xe_exec_fault_mode@twice-multi-queue-imm.html
* igt@xe_exec_multi_queue@max-queues-preempt-mode-fault-dyn-priority:
- shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#6874]) +11 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-7/igt@xe_exec_multi_queue@max-queues-preempt-mode-fault-dyn-priority.html
* igt@xe_exec_multi_queue@two-queues-priority:
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#6874]) +18 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-4/igt@xe_exec_multi_queue@two-queues-priority.html
* igt@xe_exec_reset@multi-queue-cancel:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#7866])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-10/igt@xe_exec_reset@multi-queue-cancel.html
* igt@xe_exec_threads@threads-multi-queue-mixed-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#7138]) +7 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-3/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-rebind.html
* igt@xe_exec_threads@threads-multi-queue-rebind-err:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#7138]) +3 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-3/igt@xe_exec_threads@threads-multi-queue-rebind-err.html
* igt@xe_live_ktest@xe_eudebug:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2833])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-7/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_multigpu_svm@mgpu-coherency-fail-prefetch:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#6964]) +2 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-2/igt@xe_multigpu_svm@mgpu-coherency-fail-prefetch.html
* igt@xe_multigpu_svm@mgpu-pagefault-prefetch:
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#6964]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-7/igt@xe_multigpu_svm@mgpu-pagefault-prefetch.html
* igt@xe_page_reclaim@basic-mixed:
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#7793]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-3/igt@xe_page_reclaim@basic-mixed.html
* igt@xe_page_reclaim@random:
- shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#7793])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-6/igt@xe_page_reclaim@random.html
* igt@xe_pat@pat-index-xehpc:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#1420] / [Intel XE#7590])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-3/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-sw-hw-compare:
- shard-bmg: NOTRUN -> [FAIL][98] ([Intel XE#7695])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-4/igt@xe_pat@pat-sw-hw-compare.html
* igt@xe_pm@d3cold-basic:
- shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#2284] / [Intel XE#366] / [Intel XE#7370])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-3/igt@xe_pm@d3cold-basic.html
* igt@xe_pm@s4-d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2284] / [Intel XE#7370])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-6/igt@xe_pm@s4-d3cold-basic-exec.html
* igt@xe_pm_residency@cpg-basic:
- shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#584] / [Intel XE#7369]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-6/igt@xe_pm_residency@cpg-basic.html
* igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#4733] / [Intel XE#7417]) +2 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-7/igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#944]) +1 other test skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-2/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_sriov_auto_provisioning@fair-allocation:
- shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#4130] / [Intel XE#7366])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-6/igt@xe_sriov_auto_provisioning@fair-allocation.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-bmg: [PASS][105] -> [FAIL][106] ([Intel XE#6569])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-3/igt@xe_sriov_flr@flr-vf1-clear.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-9/igt@xe_sriov_flr@flr-vf1-clear.html
* igt@xe_sriov_vram@vf-access-after-resize-up:
- shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#6376] / [Intel XE#7330] / [Intel XE#7422])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-4/igt@xe_sriov_vram@vf-access-after-resize-up.html
#### Possible fixes ####
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-bmg: [FAIL][108] ([Intel XE#7659]) -> [PASS][109] +2 other tests pass
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-10/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-c-hdmi-a-3:
- shard-bmg: [FAIL][110] -> [PASS][111] +1 other test pass
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-c-hdmi-a-3.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-10/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-c-hdmi-a-3.html
* igt@kms_cursor_legacy@cursor-vs-flip-varying-size:
- shard-bmg: [DMESG-WARN][112] ([Intel XE#5354]) -> [PASS][113]
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-6/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-9/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3:
- shard-bmg: [FAIL][114] ([Intel XE#3321]) -> [PASS][115] +1 other test pass
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-10/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html
* igt@kms_pm_dc@dc6-dpms:
- shard-lnl: [FAIL][116] ([Intel XE#7340]) -> [PASS][117]
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-lnl-7/igt@kms_pm_dc@dc6-dpms.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-3/igt@kms_pm_dc@dc6-dpms.html
* igt@xe_exec_system_allocator@threads-shared-vm-shared-alloc-many-stride-malloc:
- shard-bmg: [SKIP][118] ([Intel XE#6703]) -> [PASS][119] +7 other tests pass
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-2/igt@xe_exec_system_allocator@threads-shared-vm-shared-alloc-many-stride-malloc.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-10/igt@xe_exec_system_allocator@threads-shared-vm-shared-alloc-many-stride-malloc.html
* igt@xe_module_load@load:
- shard-bmg: ([ABORT][120], [PASS][121], [PASS][122], [PASS][123], [SKIP][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143]) ([Intel XE#2457] / [Intel XE#7405]) -> ([PASS][144], [PASS][145], [PASS][146], [PASS][147], [PASS][148], [PASS][149], [PASS][150], [PASS][151], [PASS][152], [PASS][153], [PASS][154], [PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164], [PASS][165])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-5/igt@xe_module_load@load.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-2/igt@xe_module_load@load.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-2/igt@xe_module_load@load.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-2/igt@xe_module_load@load.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-2/igt@xe_module_load@load.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-9/igt@xe_module_load@load.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-9/igt@xe_module_load@load.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-9/igt@xe_module_load@load.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-6/igt@xe_module_load@load.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-6/igt@xe_module_load@load.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-3/igt@xe_module_load@load.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-7/igt@xe_module_load@load.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-7/igt@xe_module_load@load.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-1/igt@xe_module_load@load.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-1/igt@xe_module_load@load.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-1/igt@xe_module_load@load.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-10/igt@xe_module_load@load.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-10/igt@xe_module_load@load.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-3/igt@xe_module_load@load.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-8/igt@xe_module_load@load.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-8/igt@xe_module_load@load.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-8/igt@xe_module_load@load.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-4/igt@xe_module_load@load.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-4/igt@xe_module_load@load.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-4/igt@xe_module_load@load.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-6/igt@xe_module_load@load.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-10/igt@xe_module_load@load.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-4/igt@xe_module_load@load.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-3/igt@xe_module_load@load.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-9/igt@xe_module_load@load.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-2/igt@xe_module_load@load.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-10/igt@xe_module_load@load.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-6/igt@xe_module_load@load.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-8/igt@xe_module_load@load.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-8/igt@xe_module_load@load.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-1/igt@xe_module_load@load.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-1/igt@xe_module_load@load.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-3/igt@xe_module_load@load.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-2/igt@xe_module_load@load.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-9/igt@xe_module_load@load.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-9/igt@xe_module_load@load.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-10/igt@xe_module_load@load.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-3/igt@xe_module_load@load.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-4/igt@xe_module_load@load.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-7/igt@xe_module_load@load.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-7/igt@xe_module_load@load.html
* igt@xe_sriov_vram@vf-access-beyond:
- shard-bmg: [FAIL][166] ([Intel XE#5937]) -> [PASS][167] +1 other test pass
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-1/igt@xe_sriov_vram@vf-access-beyond.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-4/igt@xe_sriov_vram@vf-access-beyond.html
#### Warnings ####
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-lnl: [SKIP][168] ([Intel XE#1407]) -> [ABORT][169] ([Intel XE#4760])
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-lnl-4/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-4/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [FAIL][170] ([Intel XE#7571]) -> [FAIL][171] ([Intel XE#7809])
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][172] ([Intel XE#6703]) -> [SKIP][173] ([Intel XE#2313])
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt:
- shard-lnl: [SKIP][174] ([Intel XE#656]) -> [SKIP][175] ([Intel XE#5812] / [Intel XE#656]) +220 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-lnl-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-lnl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier:
- shard-bmg: [SKIP][176] ([Intel XE#6703]) -> [SKIP][177] ([Intel XE#7283])
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-2/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-10/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html
* igt@kms_psr@fbc-pr-sprite-plane-move:
- shard-bmg: [SKIP][178] ([Intel XE#6703]) -> [SKIP][179] ([Intel XE#2234] / [Intel XE#2850])
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-2/igt@kms_psr@fbc-pr-sprite-plane-move.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-6/igt@kms_psr@fbc-pr-sprite-plane-move.html
* igt@xe_exec_basic@multigpu-no-exec-basic:
- shard-bmg: [SKIP][180] ([Intel XE#6703]) -> [SKIP][181] ([Intel XE#2322] / [Intel XE#7372])
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-basic.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-6/igt@xe_exec_basic@multigpu-no-exec-basic.html
* igt@xe_exec_threads@threads-multi-queue-fd-rebind:
- shard-bmg: [SKIP][182] ([Intel XE#6703]) -> [SKIP][183] ([Intel XE#7138])
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8879/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-fd-rebind.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/shard-bmg-10/igt@xe_exec_threads@threads-multi-queue-fd-rebind.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[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#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428
[Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466
[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#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[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#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[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#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[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#2685]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2685
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
[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#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[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#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#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#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4760
[Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
[Intel XE#5812]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5812
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#5857]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5857
[Intel XE#5882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5882
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035
[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#6376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6376
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[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#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#6900]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6900
[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#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7086]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7086
[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#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
[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#7330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7330
[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#7345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7345
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[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#7362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7362
[Intel XE#7366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7366
[Intel XE#7369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7369
[Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
[Intel XE#7382]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7382
[Intel XE#7387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7387
[Intel XE#7389]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7389
[Intel XE#7390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7390
[Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7422
[Intel XE#7425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7425
[Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
[Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442
[Intel XE#7448]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7448
[Intel XE#7449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7449
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[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#7659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7659
[Intel XE#7676]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7676
[Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
[Intel XE#7695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7695
[Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
[Intel XE#7809]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7809
[Intel XE#7866]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7866
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8879 -> IGTPW_15084
* Linux: xe-4948-a53aafc879e9c52b2776089762591d2766a27f0a -> xe-4953-f3b0eacc6be937779388c8412909b66717926980
IGTPW_15084: e19ed76c8bde09ed253dae4d0dea55023140190b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8879: 02b0e01dd9a5a3ab1efe976bb8c4f13cfcdbab1a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4948-a53aafc879e9c52b2776089762591d2766a27f0a: a53aafc879e9c52b2776089762591d2766a27f0a
xe-4953-f3b0eacc6be937779388c8412909b66717926980: f3b0eacc6be937779388c8412909b66717926980
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15084/index.html
[-- Attachment #2: Type: text/html, Size: 60920 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t, v5 1/4] lib/igt_kms: Add igt_get_joined_pipes_name()
2026-04-30 7:22 ` [PATCH i-g-t, v5 " Jani Nikula
@ 2026-04-30 10:00 ` Sharma, Swati2
0 siblings, 0 replies; 13+ messages in thread
From: Sharma, Swati2 @ 2026-04-30 10:00 UTC (permalink / raw)
To: Jani Nikula, igt-dev; +Cc: Ankit Nautiyal
Hi Jani
On 30-04-2026 12:52 pm, Jani Nikula wrote:
> On Thu, 30 Apr 2026, Swati Sharma <swati2.sharma@intel.com> wrote:
>> Add function to transform the enum into a string.
>>
>> v2: -Improved func() doc (Jeevan)
>> v3: -Return names without '-' dash prefix (Santhosh)
>>
>> Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
>> Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
>> ---
>> lib/igt_kms.c | 22 ++++++++++++++++++++++
>> lib/igt_kms.h | 1 +
>> 2 files changed, 23 insertions(+)
>>
>> diff --git a/lib/igt_kms.c b/lib/igt_kms.c
>> index 2efdfb85f..bece27ff6 100644
>> --- a/lib/igt_kms.c
>> +++ b/lib/igt_kms.c
>> @@ -1906,6 +1906,28 @@ bool kmstest_force_connector_joiner(int drm_fd, drmModeConnector *connector, int
>> return true;
>> }
>>
>> +/**
>> + * igt_get_joined_pipes_name:
>> + * @val: forced value
>> + *
>> + * Returns: A joined_pipes enum value into a readable string.
>> + */
>> +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);
>> + }
>> +}
> I don't really think this belongs in lib/igt_kms.[ch]. And to be fair,
> IMO none of the joiner code belongs here, because it's Intel specific,
> and this is supposed to be generic code.
>
> BR,
> Jani.
Right, will move this to tests/intel/kms_joiner_helper.c/h
>> +
>> /**
>> * kmstest_force_edid:
>> * @drm_fd: drm file descriptor
>> diff --git a/lib/igt_kms.h b/lib/igt_kms.h
>> index fcbb6a5ad..6898cd981 100644
>> --- a/lib/igt_kms.h
>> +++ b/lib/igt_kms.h
>> @@ -1280,6 +1280,7 @@ void igt_set_link_params(int drm_fd, igt_output_t *output,
>> int igt_backlight_read(int *result, const char *fname, igt_backlight_context_t *context);
>> int igt_backlight_write(int value, const char *fname, igt_backlight_context_t *context);
>> uint32_t igt_get_connected_output_count(igt_display_t *display);
>> +const char *igt_get_joined_pipes_name(enum joined_pipes val);
>>
>> drmModePropertyBlobRes *igt_get_writeback_formats_blob(igt_output_t *output);
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t, v5 4/4] tests/intel/kms_dsc: Add force dsc and joiner test cases
2026-04-30 7:33 ` Jani Nikula
@ 2026-04-30 10:04 ` Sharma, Swati2
0 siblings, 0 replies; 13+ messages in thread
From: Sharma, Swati2 @ 2026-04-30 10:04 UTC (permalink / raw)
To: Jani Nikula, igt-dev
Hi Jani,
On 30-04-2026 01:03 pm, Jani Nikula wrote:
> On Thu, 30 Apr 2026, Swati Sharma <swati2.sharma@intel.com> 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)
>>
>> Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
>> ---
>> tests/intel/kms_dsc.c | 206 +++++++++++++++++++++++++++---------------
>> 1 file changed, 134 insertions(+), 72 deletions(-)
>>
>> diff --git a/tests/intel/kms_dsc.c b/tests/intel/kms_dsc.c
>> index 69f335da3..bfd84e59a 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,25 +274,35 @@ 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 = 0;
>> char name[3][LEN] = {
>> {0},
>> {0},
>> {0},
>> };
>>
>> + for_each_crtc(display, crtc)
>> + n_pipes++;
> Nowadays that's just igt_display_n_crtcs().
Ack
>
>> +
>> 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 +323,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;
> I don't have the time to look into all of this properly, but I have a
> feeling it would be worth it to add a coherent set of joiner helpers
> under lib/intel, consoditating the joiner stuff from lib/igt_kms.c and
> tests/intel/kms_joiner_helper.c, and possibly kms_dsc_helper.c etc.
>
> It's just not tenable for tests to be checking the above.
>
> That said, it takes time and effort, and I'm not insisting on it. It's
> just something to think of, and maybe start moving stuff to a single
> location to make it easier to re-use.
>
> BR,
> Jani.
Agreed, consolidating joiner helpers under lib/intel/ would be the right
long-term direction.
For this series we'll keep it as-is and file a follow-up to refactor the
joiner helpers into a common library.
Happy to do that as a separate patch series once this lands.
Have created WI#205:
https://gitlab.freedesktop.org/drm/igt-gpu-tools/-/work_items/205
>> +
>> 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 +392,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() {
^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2026-04-30 10:04 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-29 19:51 [PATCH i-g-t,v5 0/4] Add dsc+bigjoiner subtest Swati Sharma
2026-04-29 19:51 ` [PATCH i-g-t,v5 1/4] lib/igt_kms: Add igt_get_joined_pipes_name() Swati Sharma
2026-04-30 7:22 ` [PATCH i-g-t, v5 " Jani Nikula
2026-04-30 10:00 ` Sharma, Swati2
2026-04-29 19:51 ` [PATCH i-g-t, v5 2/4] tests/kms_joiner_helper: Add igt_is_joiner_supported_by_source() Swati Sharma
2026-04-29 19:51 ` [PATCH i-g-t,v5 3/4] tests/intel/kms_dsc_helper: Add helper func() Swati Sharma
2026-04-29 19:51 ` [PATCH i-g-t, v5 4/4] tests/intel/kms_dsc: Add force dsc and joiner test cases Swati Sharma
2026-04-30 7:33 ` Jani Nikula
2026-04-30 10:04 ` Sharma, Swati2
2026-04-29 21:24 ` ✓ Xe.CI.BAT: success for Add dsc+bigjoiner subtest (rev7) Patchwork
2026-04-29 21:33 ` ✓ i915.CI.BAT: " Patchwork
2026-04-30 7:03 ` ✗ i915.CI.Full: failure " Patchwork
2026-04-30 9:29 ` ✗ 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