* [PATCH i-g-t, v5 01/11] lib/igt_kms: Add "sharpness strength" as crtc property
2025-02-21 16:57 [PATCH i-g-t 00/11] Add new test to validate adaptive sharpness filter Swati Sharma
@ 2025-02-21 16:57 ` Swati Sharma
2025-02-21 16:57 ` [PATCH i-g-t, v2 02/11] lib/igt_kms: Add func() to return scaling mode name string Swati Sharma
` (13 subsequent siblings)
14 siblings, 0 replies; 20+ messages in thread
From: Swati Sharma @ 2025-02-21 16:57 UTC (permalink / raw)
To: igt-dev; +Cc: ankit.k.nautiyal, Swati Sharma, Mohammed Thasleem
Add "sharpness strength" as crtc property.
v2: Replace SHARPENESS_STRENGTH with SHARPNESS_STRENGTH. (Nemesa)
v3: Rebase
v4: Rebase
v5: Rebase
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
lib/igt_kms.c | 4 ++++
lib/igt_kms.h | 1 +
2 files changed, 5 insertions(+)
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index bc46487c5..dac818c71 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -714,6 +714,7 @@ const char * const igt_crtc_prop_names[IGT_NUM_CRTC_PROPS] = {
[IGT_CRTC_OUT_FENCE_PTR] = "OUT_FENCE_PTR",
[IGT_CRTC_VRR_ENABLED] = "VRR_ENABLED",
[IGT_CRTC_SCALING_FILTER] = "SCALING_FILTER",
+ [IGT_CRTC_SHARPNESS_STRENGTH] = "SHARPNESS_STRENGTH",
};
const char * const igt_connector_prop_names[IGT_NUM_CONNECTOR_PROPS] = {
@@ -2615,6 +2616,9 @@ static void igt_pipe_reset(igt_pipe_t *pipe)
if (igt_pipe_obj_has_prop(pipe, IGT_CRTC_VRR_ENABLED))
igt_pipe_obj_set_prop_value(pipe, IGT_CRTC_VRR_ENABLED, 0);
+ if (igt_pipe_obj_has_prop(pipe, IGT_CRTC_SHARPNESS_STRENGTH))
+ igt_pipe_obj_set_prop_value(pipe, IGT_CRTC_SHARPNESS_STRENGTH, 0);
+
pipe->out_fence_fd = -1;
}
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index 31b9820cb..6a1925d9d 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -165,6 +165,7 @@ enum igt_atomic_crtc_properties {
IGT_CRTC_OUT_FENCE_PTR,
IGT_CRTC_VRR_ENABLED,
IGT_CRTC_SCALING_FILTER,
+ IGT_CRTC_SHARPNESS_STRENGTH,
IGT_NUM_CRTC_PROPS
};
--
2.25.1
^ permalink raw reply related [flat|nested] 20+ messages in thread* [PATCH i-g-t, v2 02/11] lib/igt_kms: Add func() to return scaling mode name string
2025-02-21 16:57 [PATCH i-g-t 00/11] Add new test to validate adaptive sharpness filter Swati Sharma
2025-02-21 16:57 ` [PATCH i-g-t, v5 01/11] lib/igt_kms: Add "sharpness strength" as crtc property Swati Sharma
@ 2025-02-21 16:57 ` Swati Sharma
2025-02-21 16:57 ` [PATCH i-g-t, v10 03/11] tests/kms_sharpness_filter: Add adaptive sharpness basic filter tests Swati Sharma
` (12 subsequent siblings)
14 siblings, 0 replies; 20+ messages in thread
From: Swati Sharma @ 2025-02-21 16:57 UTC (permalink / raw)
To: igt-dev; +Cc: ankit.k.nautiyal, Swati Sharma
Add func() to print scaling mode name string.
v2: -replaced uint32_t with int (Ankit)
-fixed subject (Ankit)
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
lib/igt_kms.c | 19 +++++++++++++++++++
lib/igt_kms.h | 1 +
2 files changed, 20 insertions(+)
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index dac818c71..bf3f49100 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -1054,6 +1054,25 @@ const char *kmstest_scaling_filter_str(int filter)
return find_type_name(scaling_filter_names, filter);
}
+static const struct type_name scaling_modes_names[] = {
+ { DRM_MODE_SCALE_FULLSCREEN, "fullscreen" },
+ { DRM_MODE_SCALE_CENTER, "center" },
+ { DRM_MODE_SCALE_ASPECT, "aspect" },
+ { DRM_MODE_SCALE_NONE, "none" },
+ {}
+};
+
+/**
+ * kmstest_scaling_mode_str:
+ * @mode: SCALING_MODE_* mode value
+ *
+ * Returns: A string representing the scaling mode @mode.
+ */
+const char *kmstest_scaling_mode_str(int mode)
+{
+ return find_type_name(scaling_modes_names, mode);
+}
+
static const struct type_name dsc_output_format_names[] = {
{ DSC_FORMAT_RGB, "RGB" },
{ DSC_FORMAT_YCBCR420, "YCBCR420" },
diff --git a/lib/igt_kms.h b/lib/igt_kms.h
index 6a1925d9d..6d28742a5 100644
--- a/lib/igt_kms.h
+++ b/lib/igt_kms.h
@@ -143,6 +143,7 @@ const char *kmstest_encoder_type_str(int type);
const char *kmstest_connector_status_str(int status);
const char *kmstest_connector_type_str(int type);
const char *kmstest_scaling_filter_str(int filter);
+const char *kmstest_scaling_mode_str(int mode);
const char *kmstest_dsc_output_format_str(int output_format);
void kmstest_dump_mode(drmModeModeInfo *mode);
--
2.25.1
^ permalink raw reply related [flat|nested] 20+ messages in thread* [PATCH i-g-t, v10 03/11] tests/kms_sharpness_filter: Add adaptive sharpness basic filter tests
2025-02-21 16:57 [PATCH i-g-t 00/11] Add new test to validate adaptive sharpness filter Swati Sharma
2025-02-21 16:57 ` [PATCH i-g-t, v5 01/11] lib/igt_kms: Add "sharpness strength" as crtc property Swati Sharma
2025-02-21 16:57 ` [PATCH i-g-t, v2 02/11] lib/igt_kms: Add func() to return scaling mode name string Swati Sharma
@ 2025-02-21 16:57 ` Swati Sharma
2025-02-21 16:57 ` [PATCH i-g-t, v2 04/11] tests/kms_sharpness_filter: Add toggle subtest Swati Sharma
` (11 subsequent siblings)
14 siblings, 0 replies; 20+ messages in thread
From: Swati Sharma @ 2025-02-21 16:57 UTC (permalink / raw)
To: igt-dev; +Cc: ankit.k.nautiyal, Swati Sharma, Mohammed Thasleem
Add new test to validate adaptive sharpness filter on LNL platform.
Add various test cases to validate this feature. Mark these as
non-CRC based tests requiring manual verification.
Pipe scaler is repurposed to perform a portion of this work.
This means pipe scaling will be disabled while the sharpening
function is in use. Use the other scaler for plane scaling.
Add 5 subtests:
-basic: verify basic functionality
-modifiers: verify casf with different modifiers
-rotation: verify casf with different rotation
-formats: verify casf with different formats
-strength: vary strength and check difference in sharpness
TODO: -Enable casf with varying output formats (YCBCR/RGB)
v2: -Updated modifier type to uint64_t.
-Replaced IGT_CRTC_SHARPENESS_STRENGTH with IGT_CRTC_SHARPNESS_STRENGTH.
v3: -Updated setup_fb with height and width.
v4: -Renamed tests/intel/kms_sharpness_filter.c -> tests/kms_sharpness_filter.c (Ankit)
-Added subtest invalid filter with connector. (Ankit)
-Updated documentation. (Bhanu)
-Used driver_close_driver instead close. (Bhanu)
-Added check to avoid debug print for invalid tests and filter strength = 0. (Ankit)
v5: -Instead of using default strength as MAX, use MID value strength.
-Add relevant debug print for test skip.
-Fix indentation.
-Renamed invalid-filter-with-connector -> invalid-filter-with-scaling-mode
-Reworked on invalid-filter-with-scaling-mode(), added provision to
validate other scaling modes.
v6: -Skip test if ret=-EINVAL for downscaling test.
-Change if() for tap subtest.
v8: -Optimize tap-filter subtest (Ankit)
v9: -Logically split tests (Ankit)
-Fix alignment (Ankit)
v10: -Use imperative mood for commit message (Ankit)
-Fix condition for rotation test (Ankit)
-Change iterator from k to i (Ankit)
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
Signed-off-by: Mohammed Thasleem <mohammed.thasleem@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
tests/kms_sharpness_filter.c | 348 +++++++++++++++++++++++++++++++++++
tests/meson.build | 1 +
2 files changed, 349 insertions(+)
create mode 100644 tests/kms_sharpness_filter.c
diff --git a/tests/kms_sharpness_filter.c b/tests/kms_sharpness_filter.c
new file mode 100644
index 000000000..92981c2ae
--- /dev/null
+++ b/tests/kms_sharpness_filter.c
@@ -0,0 +1,348 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2024 Intel Corporation
+ */
+
+/**
+ * TEST: kms sharpness filter
+ * Category: Display
+ * Description: Test to validate content adaptive sharpness filter
+ * Driver requirement: xe
+ * Functionality: casf
+ * Mega feature: General Display Features
+ * Test category: functionality test
+ */
+
+#include "igt.h"
+#include "igt_kms.h"
+
+/**
+ * SUBTEST: filter-basic
+ * Description: Verify basic content adaptive sharpness filter.
+ *
+ * SUBTEST: filter-strength
+ * Description: Verify that varying strength (0-255), affects the degree of sharpeness applied.
+ *
+ * SUBTEST: filter-modifiers
+ * Description: Verify content adaptive sharpness filter with varying modifiers.
+ * Functionality: casf, tiling
+ *
+ * SUBTEST: filter-rotations
+ * Description: Verify content adaptive sharpness filter with varying rotations.
+ * Functionality: casf, rotation
+ *
+ * SUBTEST: filter-formats
+ * Description: Verify content adaptive sharpness filter with varying formats.
+ * Functionality: casf, pixel-format
+*/
+
+IGT_TEST_DESCRIPTION("Test to validate content adaptive sharpness filter");
+
+/*
+ * Until the CRC support is added test needs to be invoked with
+ * --interactive|--i to manually verify if "sharpened" image
+ * is seen without corruption for each subtest.
+ */
+
+#define MIN_FILTER_STRENGTH 1
+#define MID_FILTER_STRENGTH 128
+#define MAX_FILTER_STRENGTH 255
+
+enum test_type {
+ TEST_FILTER_BASIC,
+ TEST_FILTER_MODIFIERS,
+ TEST_FILTER_ROTATION,
+ TEST_FILTER_FORMATS,
+ TEST_FILTER_STRENGTH,
+};
+
+const int filter_strength_list[] = {
+ MIN_FILTER_STRENGTH,
+ (MIN_FILTER_STRENGTH + MID_FILTER_STRENGTH) / 2,
+ MID_FILTER_STRENGTH,
+ (MID_FILTER_STRENGTH + MAX_FILTER_STRENGTH) / 2,
+ MAX_FILTER_STRENGTH,
+};
+static const struct {
+ uint64_t modifier;
+ const char *name;
+} modifiers[] = {
+ { DRM_FORMAT_MOD_LINEAR, "linear", },
+ { I915_FORMAT_MOD_X_TILED, "x-tiled", },
+ { I915_FORMAT_MOD_4_TILED, "4-tiled", },
+};
+static const int formats[] = {
+ DRM_FORMAT_NV12,
+ DRM_FORMAT_RGB565,
+ DRM_FORMAT_XRGB8888,
+ DRM_FORMAT_XBGR16161616F,
+};
+static const igt_rotation_t rotations[] = {
+ IGT_ROTATION_0,
+ IGT_ROTATION_180,
+};
+
+typedef struct {
+ int drm_fd;
+ bool limited;
+ enum pipe pipe_id;
+ struct igt_fb fb[4];
+ igt_pipe_t *pipe;
+ igt_display_t display;
+ igt_output_t *output;
+ igt_plane_t *plane[4];
+ drmModeModeInfo *mode;
+ int filter_strength;
+ uint64_t modifier;
+ const char *modifier_name;
+ uint32_t format;
+ igt_rotation_t rotation;
+} data_t;
+
+static void set_filter_strength_on_pipe(data_t *data)
+{
+ igt_pipe_set_prop_value(&data->display, data->pipe_id,
+ IGT_CRTC_SHARPNESS_STRENGTH,
+ data->filter_strength);
+}
+
+static void paint_image(igt_fb_t *fb)
+{
+ cairo_t *cr = igt_get_cairo_ctx(fb->fd, fb);
+ int img_x, img_y, img_w, img_h;
+ const char *file = "1080p-left.png";
+
+ img_x = img_y = 0;
+ img_w = fb->width;
+ img_h = fb->height;
+
+ igt_paint_image(cr, file, img_x, img_y, img_w, img_h);
+
+ igt_put_cairo_ctx(cr);
+}
+
+static void setup_fb(int fd, int width, int height, uint32_t format,
+ uint64_t modifier, struct igt_fb *fb)
+{
+ int fb_id;
+
+ fb_id = igt_create_fb(fd, width, height, format, modifier, fb);
+ igt_assert(fb_id);
+
+ paint_image(fb);
+}
+
+static void cleanup_fbs(data_t *data)
+{
+ for (int i = 0; i < ARRAY_SIZE(data->fb); i++)
+ igt_remove_fb(data->drm_fd, &data->fb[i]);
+}
+
+static void cleanup(data_t *data)
+{
+ igt_display_reset(&data->display);
+
+ cleanup_fbs(data);
+}
+
+static void test_sharpness_filter(data_t *data, enum test_type type)
+{
+ drmModeModeInfo *mode = data->mode;
+ int height = mode->hdisplay;
+ int width = mode->vdisplay;
+ int ret;
+
+ data->plane[0] = igt_pipe_get_plane_type(data->pipe, DRM_PLANE_TYPE_PRIMARY);
+ igt_skip_on_f(!igt_plane_has_format_mod(data->plane[0], data->format, data->modifier),
+ "No requested format/modifier on pipe %s\n", kmstest_pipe_name(data->pipe_id));
+
+ setup_fb(data->drm_fd, height, width, data->format, data->modifier, &data->fb[0]);
+ igt_plane_set_fb(data->plane[0], &data->fb[0]);
+
+ if (type == TEST_FILTER_ROTATION) {
+ if (igt_plane_has_rotation(data->plane[0], data->rotation))
+ igt_plane_set_rotation(data->plane[0], data->rotation);
+ else
+ igt_skip("No requested rotation on pipe %s\n", kmstest_pipe_name(data->pipe_id));
+ }
+
+ set_filter_strength_on_pipe(data);
+
+ if (data->filter_strength != 0)
+ igt_debug("Sharpened image should be observed for filter strength > 0\n");
+
+ ret = igt_display_try_commit2(&data->display, COMMIT_ATOMIC);
+
+ igt_assert_eq(ret, 0);
+
+ cleanup(data);
+}
+
+static bool has_sharpness_filter(igt_pipe_t *pipe)
+{
+ return igt_pipe_obj_has_prop(pipe, IGT_CRTC_SHARPNESS_STRENGTH);
+}
+
+static void
+run_sharpness_filter_test(data_t *data, enum test_type type)
+{
+ igt_display_t *display = &data->display;
+ igt_output_t *output;
+ enum pipe pipe;
+ char name[40];
+
+ for_each_connected_output(display, output) {
+ for_each_pipe(display, pipe) {
+ igt_display_reset(display);
+
+ data->output = output;
+ data->pipe_id = pipe;
+ data->pipe = &display->pipes[data->pipe_id];
+ data->mode = igt_output_get_mode(data->output);
+
+ if (!has_sharpness_filter(data->pipe)) {
+ igt_info("%s: Doesn't support IGT_CRTC_SHARPNESS_STRENGTH.\n",
+ kmstest_pipe_name(data->pipe_id));
+ continue;
+ }
+
+ igt_output_set_pipe(data->output, data->pipe_id);
+
+ if (!intel_pipe_output_combo_valid(display)) {
+ igt_output_set_pipe(data->output, PIPE_NONE);
+ continue;
+ }
+
+ switch (type) {
+ case TEST_FILTER_BASIC:
+ snprintf(name, sizeof(name), "-basic");
+ break;
+ case TEST_FILTER_MODIFIERS:
+ snprintf(name, sizeof(name), "-%s", data->modifier_name);
+ break;
+ case TEST_FILTER_ROTATION:
+ snprintf(name, sizeof(name), "-%srot", igt_plane_rotation_name(data->rotation));
+ break;
+ case TEST_FILTER_FORMATS:
+ snprintf(name, sizeof(name), "-%s", igt_format_str(data->format));
+ break;
+ case TEST_FILTER_STRENGTH:
+ snprintf(name, sizeof(name), "-strength-%d", data->filter_strength);
+ break;
+ default:
+ igt_assert(0);
+ }
+
+ igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(data->pipe_id), data->output->name, name)
+ test_sharpness_filter(data, type);
+
+ if (data->limited)
+ break;
+ }
+ }
+}
+
+static int opt_handler(int opt, int opt_index, void *_data)
+{
+ data_t *data = _data;
+
+ switch (opt) {
+ case 'l':
+ data->limited = true;
+ break;
+ default:
+ return IGT_OPT_HANDLER_ERROR;
+ }
+
+ return IGT_OPT_HANDLER_SUCCESS;
+}
+
+static const char help_str[] =
+ " --limited|-l\t\tLimit execution to 1 valid pipe-output combo\n";
+
+data_t data = {};
+
+igt_main_args("l", NULL, help_str, opt_handler, &data)
+{
+ igt_fixture {
+ data.drm_fd = drm_open_driver_master(DRIVER_ANY);
+
+ kmstest_set_vt_graphics_mode();
+
+ igt_display_require(&data.display, data.drm_fd);
+ igt_require(data.display.is_atomic);
+ igt_display_require_output(&data.display);
+ }
+
+ igt_describe("Verify basic content adaptive sharpness filter.");
+ igt_subtest_with_dynamic("filter-basic") {
+ data.modifier = DRM_FORMAT_MOD_LINEAR;
+ data.rotation = IGT_ROTATION_0;
+ data.format = DRM_FORMAT_XRGB8888;
+ data.filter_strength = MID_FILTER_STRENGTH;
+
+ run_sharpness_filter_test(&data, TEST_FILTER_BASIC);
+ }
+
+ igt_describe("Verify that varying strength(0-255), affects "
+ "the degree of sharpeness applied.");
+ igt_subtest_with_dynamic("filter-strength") {
+ data.modifier = DRM_FORMAT_MOD_LINEAR;
+ data.rotation = IGT_ROTATION_0;
+ data.format = DRM_FORMAT_XRGB8888;
+
+ for (int i = 0; i < ARRAY_SIZE(filter_strength_list); i++) {
+ data.filter_strength = filter_strength_list[i];
+
+ run_sharpness_filter_test(&data, TEST_FILTER_STRENGTH);
+ }
+ }
+
+ igt_describe("Verify content adaptive sharpness filter with "
+ "varying modifiers.");
+ igt_subtest_with_dynamic("filter-modifiers") {
+ data.rotation = IGT_ROTATION_0;
+ data.format = DRM_FORMAT_XRGB8888;
+ data.filter_strength = MID_FILTER_STRENGTH;
+
+ for (int i = 0; i < ARRAY_SIZE(modifiers); i++) {
+ data.modifier = modifiers[i].modifier;
+ data.modifier_name = modifiers[i].name;
+
+ run_sharpness_filter_test(&data, TEST_FILTER_MODIFIERS);
+ }
+ }
+
+ igt_describe("Verify content adaptive sharpness filter with "
+ "varying rotations.");
+ igt_subtest_with_dynamic("filter-rotations") {
+ data.modifier = DRM_FORMAT_MOD_LINEAR;
+ data.format = DRM_FORMAT_XRGB8888;
+ data.filter_strength = MID_FILTER_STRENGTH;
+
+ for (int i = 0; i < ARRAY_SIZE(rotations); i++) {
+ data.rotation = rotations[i];
+
+ run_sharpness_filter_test(&data, TEST_FILTER_ROTATION);
+ }
+ }
+
+ igt_describe("Verify content adaptive sharpness filter with "
+ "varying formats.");
+ igt_subtest_with_dynamic("filter-formats") {
+ data.modifier = DRM_FORMAT_MOD_LINEAR;
+ data.rotation = IGT_ROTATION_0;
+ data.filter_strength = MID_FILTER_STRENGTH;
+
+ for (int i = 0; i < ARRAY_SIZE(formats); i++) {
+ data.format = formats[i];
+
+ run_sharpness_filter_test(&data, TEST_FILTER_FORMATS);
+ }
+ }
+
+ igt_fixture {
+ igt_display_fini(&data.display);
+ drm_close_driver(data.drm_fd);
+ }
+}
diff --git a/tests/meson.build b/tests/meson.build
index a0f984b34..aac3b4e10 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -58,6 +58,7 @@ test_progs = [
'kms_sequence',
'kms_setmode',
'kms_sysfs_edid_timing',
+ 'kms_sharpness_filter',
'kms_tiled_display',
'kms_tv_load_detect',
'kms_universal_plane',
--
2.25.1
^ permalink raw reply related [flat|nested] 20+ messages in thread* [PATCH i-g-t, v2 04/11] tests/kms_sharpness_filter: Add toggle subtest
2025-02-21 16:57 [PATCH i-g-t 00/11] Add new test to validate adaptive sharpness filter Swati Sharma
` (2 preceding siblings ...)
2025-02-21 16:57 ` [PATCH i-g-t, v10 03/11] tests/kms_sharpness_filter: Add adaptive sharpness basic filter tests Swati Sharma
@ 2025-02-21 16:57 ` Swati Sharma
2025-02-21 16:57 ` [PATCH i-g-t, v2 05/11] tests/kms_sharpness_filter: Add filter-tap subtest Swati Sharma
` (10 subsequent siblings)
14 siblings, 0 replies; 20+ messages in thread
From: Swati Sharma @ 2025-02-21 16:57 UTC (permalink / raw)
To: igt-dev; +Cc: ankit.k.nautiyal, Swati Sharma
Add subtest to verify toggling between enabling and disabling of
content adaptive sharpness filter.
v2: -Use imperative mood in commit message (Ankit)
-Change iterator from k to i (Ankit)
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
tests/kms_sharpness_filter.c | 40 ++++++++++++++++++++++++++++++++++++
1 file changed, 40 insertions(+)
diff --git a/tests/kms_sharpness_filter.c b/tests/kms_sharpness_filter.c
index 92981c2ae..2bc87374e 100644
--- a/tests/kms_sharpness_filter.c
+++ b/tests/kms_sharpness_filter.c
@@ -34,6 +34,9 @@
* SUBTEST: filter-formats
* Description: Verify content adaptive sharpness filter with varying formats.
* Functionality: casf, pixel-format
+ *
+ * SUBTEST: filter-toggle
+ * Description: Verify toggling between enabling and disabling content adaptive sharpness filter.
*/
IGT_TEST_DESCRIPTION("Test to validate content adaptive sharpness filter");
@@ -44,9 +47,11 @@ IGT_TEST_DESCRIPTION("Test to validate content adaptive sharpness filter");
* is seen without corruption for each subtest.
*/
+#define DISABLE_FILTER 0
#define MIN_FILTER_STRENGTH 1
#define MID_FILTER_STRENGTH 128
#define MAX_FILTER_STRENGTH 255
+#define NROUNDS 10
enum test_type {
TEST_FILTER_BASIC,
@@ -54,6 +59,7 @@ enum test_type {
TEST_FILTER_ROTATION,
TEST_FILTER_FORMATS,
TEST_FILTER_STRENGTH,
+ TEST_FILTER_TOGGLE,
};
const int filter_strength_list[] = {
@@ -145,6 +151,23 @@ static void cleanup(data_t *data)
cleanup_fbs(data);
}
+static int test_filter_toggle(data_t *data)
+{
+ int ret = 0;
+
+ for (int i = 0; i < NROUNDS; i++) {
+ if (i % 2 == 0)
+ data->filter_strength = DISABLE_FILTER;
+ else
+ data->filter_strength = MAX_FILTER_STRENGTH;
+
+ set_filter_strength_on_pipe(data);
+ ret |= igt_display_try_commit2(&data->display, COMMIT_ATOMIC);
+ }
+
+ return ret;
+}
+
static void test_sharpness_filter(data_t *data, enum test_type type)
{
drmModeModeInfo *mode = data->mode;
@@ -173,6 +196,9 @@ static void test_sharpness_filter(data_t *data, enum test_type type)
ret = igt_display_try_commit2(&data->display, COMMIT_ATOMIC);
+ if (type == TEST_FILTER_TOGGLE)
+ ret |= test_filter_toggle(data);
+
igt_assert_eq(ret, 0);
cleanup(data);
@@ -229,6 +255,9 @@ run_sharpness_filter_test(data_t *data, enum test_type type)
case TEST_FILTER_STRENGTH:
snprintf(name, sizeof(name), "-strength-%d", data->filter_strength);
break;
+ case TEST_FILTER_TOGGLE:
+ snprintf(name, sizeof(name), "-toggle");
+ break;
default:
igt_assert(0);
}
@@ -341,6 +370,17 @@ igt_main_args("l", NULL, help_str, opt_handler, &data)
}
}
+ igt_describe("Verify toggling between enabling and disabling "
+ "content adaptive sharpness filter.");
+ igt_subtest_with_dynamic("filter-toggle") {
+ data.modifier = DRM_FORMAT_MOD_LINEAR;
+ data.rotation = IGT_ROTATION_0;
+ data.format = DRM_FORMAT_XRGB8888;
+
+ data.filter_strength = MAX_FILTER_STRENGTH;
+ run_sharpness_filter_test(&data, TEST_FILTER_TOGGLE);
+ }
+
igt_fixture {
igt_display_fini(&data.display);
drm_close_driver(data.drm_fd);
--
2.25.1
^ permalink raw reply related [flat|nested] 20+ messages in thread* [PATCH i-g-t, v2 05/11] tests/kms_sharpness_filter: Add filter-tap subtest
2025-02-21 16:57 [PATCH i-g-t 00/11] Add new test to validate adaptive sharpness filter Swati Sharma
` (3 preceding siblings ...)
2025-02-21 16:57 ` [PATCH i-g-t, v2 04/11] tests/kms_sharpness_filter: Add toggle subtest Swati Sharma
@ 2025-02-21 16:57 ` Swati Sharma
2025-02-21 16:57 ` [PATCH i-g-t, v2 06/11] tests/kms_sharpness_filter: Add dpms/suspend subtests Swati Sharma
` (9 subsequent siblings)
14 siblings, 0 replies; 20+ messages in thread
From: Swati Sharma @ 2025-02-21 16:57 UTC (permalink / raw)
To: igt-dev; +Cc: ankit.k.nautiyal, Swati Sharma
Add subtest to verify that sharpness works with different
resolutions (implicitly different taps). Select different taps
based on the following conditions:
TAP 3: mode->hdisplay <= 1920 && mode->vdisplay <= 1080
TAP 5: (mode->hdisplay > 1920 && mode->hdisplay < 3840) &&
(mode->vdisplay > 1080 && mode->vdisplay < 2160)
TAP 7: mode->hdisplay >= 3840 && mode->vdisplay >= 2160
v2: -Fix test description (Ankit)
-Fix tap selection conditions (Ankit)
-Change iterator (Ankit)
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
tests/kms_sharpness_filter.c | 81 ++++++++++++++++++++++++++++++++++++
1 file changed, 81 insertions(+)
diff --git a/tests/kms_sharpness_filter.c b/tests/kms_sharpness_filter.c
index 2bc87374e..d1d6558c5 100644
--- a/tests/kms_sharpness_filter.c
+++ b/tests/kms_sharpness_filter.c
@@ -37,6 +37,10 @@
*
* SUBTEST: filter-toggle
* Description: Verify toggling between enabling and disabling content adaptive sharpness filter.
+ *
+ * SUBTEST: filter-tap
+ * Description: Verify content adaptive sharpness filter with resolution change, resolution change
+ * will lead to selection of distinct taps.
*/
IGT_TEST_DESCRIPTION("Test to validate content adaptive sharpness filter");
@@ -47,10 +51,15 @@ IGT_TEST_DESCRIPTION("Test to validate content adaptive sharpness filter");
* is seen without corruption for each subtest.
*/
+#define TAP_3 3
+#define TAP_5 5
+#define TAP_7 7
#define DISABLE_FILTER 0
#define MIN_FILTER_STRENGTH 1
#define MID_FILTER_STRENGTH 128
#define MAX_FILTER_STRENGTH 255
+#define MAX_PIXELS_FOR_3_TAP_FILTER (1920 * 1080)
+#define MAX_PIXELS_FOR_5_TAP_FILTER (3840 * 2160)
#define NROUNDS 10
enum test_type {
@@ -60,6 +69,7 @@ enum test_type {
TEST_FILTER_FORMATS,
TEST_FILTER_STRENGTH,
TEST_FILTER_TOGGLE,
+ TEST_FILTER_TAP,
};
const int filter_strength_list[] = {
@@ -69,6 +79,11 @@ const int filter_strength_list[] = {
(MID_FILTER_STRENGTH + MAX_FILTER_STRENGTH) / 2,
MAX_FILTER_STRENGTH,
};
+const int filter_tap_list[] = {
+ TAP_3,
+ TAP_5,
+ TAP_7,
+};
static const struct {
uint64_t modifier;
const char *name;
@@ -99,6 +114,7 @@ typedef struct {
igt_plane_t *plane[4];
drmModeModeInfo *mode;
int filter_strength;
+ int filter_tap;
uint64_t modifier;
const char *modifier_name;
uint32_t format;
@@ -151,6 +167,32 @@ static void cleanup(data_t *data)
cleanup_fbs(data);
}
+static void get_modes_for_filter_taps(igt_output_t *output, drmModeModeInfo *mode[3])
+{
+ drmModeConnector *connector = output->config.connector;
+ int total_pixels = 0;
+
+ /*
+ * TAP 3: mode->hdisplay <= 1920 && mode->vdisplay <= 1080
+ * TAP 5: (mode->hdisplay > 1920 && mode->hdisplay < 3840) &&
+ * (mode->vdisplay > 1080 && mode->vdisplay < 2160)
+ * TAP 7: mode->hdisplay >= 3840 && mode->vdisplay >= 2160
+ */
+ for (int i = 0; i < connector->count_modes; i++) {
+ total_pixels = connector->modes[i].hdisplay * connector->modes[i].vdisplay;
+
+ if (total_pixels <= MAX_PIXELS_FOR_3_TAP_FILTER)
+ mode[0] = &connector->modes[i];
+
+ if (total_pixels > MAX_PIXELS_FOR_3_TAP_FILTER &&
+ total_pixels <= MAX_PIXELS_FOR_5_TAP_FILTER)
+ mode[1] = &connector->modes[i];
+
+ if (total_pixels > MAX_PIXELS_FOR_5_TAP_FILTER)
+ mode[2] = &connector->modes[i];
+ }
+}
+
static int test_filter_toggle(data_t *data)
{
int ret = 0;
@@ -239,6 +281,34 @@ run_sharpness_filter_test(data_t *data, enum test_type type)
continue;
}
+ if (type == TEST_FILTER_TAP) {
+ drmModeModeInfo *modes[3] = { NULL, NULL, NULL };
+ int num_taps = ARRAY_SIZE(filter_tap_list);
+
+ igt_assert(num_taps == 3);
+
+ get_modes_for_filter_taps(output, modes);
+ for (int i = 0; i < 3; i++) {
+ data->filter_tap = filter_tap_list[i];
+ if (!modes[i])
+ continue;
+ data->mode = modes[i];
+ igt_info("Mode %dx%d@%d on output %s\n", data->mode->hdisplay, data->mode->vdisplay,
+ data->mode->vrefresh, igt_output_name(data->output));
+ igt_output_override_mode(data->output, data->mode);
+
+ snprintf(name, sizeof(name), "-tap-%d", data->filter_tap);
+ igt_dynamic_f("pipe-%s-%s%s", kmstest_pipe_name(data->pipe_id),
+ data->output->name, name)
+ test_sharpness_filter(data, type);
+ }
+
+ if (data->limited)
+ break;
+
+ continue;
+ }
+
switch (type) {
case TEST_FILTER_BASIC:
snprintf(name, sizeof(name), "-basic");
@@ -381,6 +451,17 @@ igt_main_args("l", NULL, help_str, opt_handler, &data)
run_sharpness_filter_test(&data, TEST_FILTER_TOGGLE);
}
+ igt_describe("Verify that following a resolution change, "
+ "distict taps are selected.");
+ igt_subtest_with_dynamic("filter-tap") {
+ data.modifier = DRM_FORMAT_MOD_LINEAR;
+ data.rotation = IGT_ROTATION_0;
+ data.format = DRM_FORMAT_XRGB8888;
+ data.filter_strength = MID_FILTER_STRENGTH;
+
+ run_sharpness_filter_test(&data, TEST_FILTER_TAP);
+ }
+
igt_fixture {
igt_display_fini(&data.display);
drm_close_driver(data.drm_fd);
--
2.25.1
^ permalink raw reply related [flat|nested] 20+ messages in thread* [PATCH i-g-t, v2 06/11] tests/kms_sharpness_filter: Add dpms/suspend subtests
2025-02-21 16:57 [PATCH i-g-t 00/11] Add new test to validate adaptive sharpness filter Swati Sharma
` (4 preceding siblings ...)
2025-02-21 16:57 ` [PATCH i-g-t, v2 05/11] tests/kms_sharpness_filter: Add filter-tap subtest Swati Sharma
@ 2025-02-21 16:57 ` Swati Sharma
2025-02-21 16:57 ` [PATCH i-g-t, v2 07/11] tests/kms_sharpness_filter: Add scaler subtests Swati Sharma
` (8 subsequent siblings)
14 siblings, 0 replies; 20+ messages in thread
From: Swati Sharma @ 2025-02-21 16:57 UTC (permalink / raw)
To: igt-dev; +Cc: ankit.k.nautiyal, Swati Sharma
Add subtests to verify CASF with DPMS and suspend.
v2: -Added CRC based verification (Ankit)
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
tests/kms_sharpness_filter.c | 67 ++++++++++++++++++++++++++++++++++++
1 file changed, 67 insertions(+)
diff --git a/tests/kms_sharpness_filter.c b/tests/kms_sharpness_filter.c
index d1d6558c5..32ad7a752 100644
--- a/tests/kms_sharpness_filter.c
+++ b/tests/kms_sharpness_filter.c
@@ -41,6 +41,14 @@
* SUBTEST: filter-tap
* Description: Verify content adaptive sharpness filter with resolution change, resolution change
* will lead to selection of distinct taps.
+ *
+ * SUBTEST: filter-dpms
+ * Description: Verify content adaptive sharpness filter with DPMS.
+ * Functionality: casf, dpms
+ *
+ * SUBTEST: filter-suspend
+ * Description: Verify content adaptive sharpness filter with suspend.
+ * Functionality: casf, suspend
*/
IGT_TEST_DESCRIPTION("Test to validate content adaptive sharpness filter");
@@ -70,6 +78,8 @@ enum test_type {
TEST_FILTER_STRENGTH,
TEST_FILTER_TOGGLE,
TEST_FILTER_TAP,
+ TEST_FILTER_DPMS,
+ TEST_FILTER_SUSPEND,
};
const int filter_strength_list[] = {
@@ -212,9 +222,12 @@ static int test_filter_toggle(data_t *data)
static void test_sharpness_filter(data_t *data, enum test_type type)
{
+ igt_output_t *output = data->output;
drmModeModeInfo *mode = data->mode;
int height = mode->hdisplay;
int width = mode->vdisplay;
+ igt_crc_t ref_crc, crc;
+ igt_pipe_crc_t *pipe_crc = NULL;
int ret;
data->plane[0] = igt_pipe_get_plane_type(data->pipe, DRM_PLANE_TYPE_PRIMARY);
@@ -238,11 +251,37 @@ static void test_sharpness_filter(data_t *data, enum test_type type)
ret = igt_display_try_commit2(&data->display, COMMIT_ATOMIC);
+ if (type == TEST_FILTER_DPMS || type == TEST_FILTER_SUSPEND) {
+ pipe_crc = igt_pipe_crc_new(data->drm_fd, data->pipe_id,
+ IGT_PIPE_CRC_SOURCE_AUTO);
+ igt_pipe_crc_collect_crc(pipe_crc, &ref_crc);
+ }
+
+ if (type == TEST_FILTER_DPMS) {
+ kmstest_set_connector_dpms(data->drm_fd,
+ output->config.connector,
+ DRM_MODE_DPMS_OFF);
+ kmstest_set_connector_dpms(data->drm_fd,
+ output->config.connector,
+ DRM_MODE_DPMS_ON);
+ }
+
+ if (type == TEST_FILTER_SUSPEND)
+ igt_system_suspend_autoresume(SUSPEND_STATE_MEM,
+ SUSPEND_TEST_NONE);
+
+ if (type == TEST_FILTER_DPMS || type == TEST_FILTER_SUSPEND) {
+ igt_pipe_crc_collect_crc(pipe_crc, &crc);
+ igt_assert_crc_equal(&crc, &ref_crc);
+ }
+
if (type == TEST_FILTER_TOGGLE)
ret |= test_filter_toggle(data);
igt_assert_eq(ret, 0);
+ /* clean-up */
+ igt_pipe_crc_free(pipe_crc);
cleanup(data);
}
@@ -328,6 +367,12 @@ run_sharpness_filter_test(data_t *data, enum test_type type)
case TEST_FILTER_TOGGLE:
snprintf(name, sizeof(name), "-toggle");
break;
+ case TEST_FILTER_DPMS:
+ snprintf(name, sizeof(name), "-dpms");
+ break;
+ case TEST_FILTER_SUSPEND:
+ snprintf(name, sizeof(name), "-suspend");
+ break;
default:
igt_assert(0);
}
@@ -462,6 +507,28 @@ igt_main_args("l", NULL, help_str, opt_handler, &data)
run_sharpness_filter_test(&data, TEST_FILTER_TAP);
}
+ igt_describe("Verify content adaptive sharpness filter "
+ "with DPMS.");
+ igt_subtest_with_dynamic("filter-dpms") {
+ data.modifier = DRM_FORMAT_MOD_LINEAR;
+ data.rotation = IGT_ROTATION_0;
+ data.format = DRM_FORMAT_XRGB8888;
+ data.filter_strength = MID_FILTER_STRENGTH;
+
+ run_sharpness_filter_test(&data, TEST_FILTER_DPMS);
+ }
+
+ igt_describe("Verify content adaptive sharpness filter "
+ "with suspend.");
+ igt_subtest_with_dynamic("filter-suspend") {
+ data.modifier = DRM_FORMAT_MOD_LINEAR;
+ data.rotation = IGT_ROTATION_0;
+ data.format = DRM_FORMAT_XRGB8888;
+ data.filter_strength = MID_FILTER_STRENGTH;
+
+ run_sharpness_filter_test(&data, TEST_FILTER_SUSPEND);
+ }
+
igt_fixture {
igt_display_fini(&data.display);
drm_close_driver(data.drm_fd);
--
2.25.1
^ permalink raw reply related [flat|nested] 20+ messages in thread* [PATCH i-g-t, v2 07/11] tests/kms_sharpness_filter: Add scaler subtests
2025-02-21 16:57 [PATCH i-g-t 00/11] Add new test to validate adaptive sharpness filter Swati Sharma
` (5 preceding siblings ...)
2025-02-21 16:57 ` [PATCH i-g-t, v2 06/11] tests/kms_sharpness_filter: Add dpms/suspend subtests Swati Sharma
@ 2025-02-21 16:57 ` Swati Sharma
2025-02-21 16:57 ` [PATCH i-g-t 08/11] tests/kms_sharpness_filter: Add invalid subtests Swati Sharma
` (7 subsequent siblings)
14 siblings, 0 replies; 20+ messages in thread
From: Swati Sharma @ 2025-02-21 16:57 UTC (permalink / raw)
To: igt-dev; +Cc: ankit.k.nautiyal, Swati Sharma
Add upscale/downscale subtests to apply plane scaler and CASF
together.
v2: -Improve description (Ankit)
-Remove unused var (Ankit)
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
tests/kms_sharpness_filter.c | 68 ++++++++++++++++++++++++++++++++++++
1 file changed, 68 insertions(+)
diff --git a/tests/kms_sharpness_filter.c b/tests/kms_sharpness_filter.c
index 32ad7a752..3451a9db4 100644
--- a/tests/kms_sharpness_filter.c
+++ b/tests/kms_sharpness_filter.c
@@ -49,6 +49,14 @@
* SUBTEST: filter-suspend
* Description: Verify content adaptive sharpness filter with suspend.
* Functionality: casf, suspend
+ *
+ * SUBTEST: filter-scaler-upscale
+ * Description: Verify content adaptive sharpness filter with 1 plane scaler enabled during upscaling.
+ * Functionality: casf, scaling
+ *
+ * SUBTEST: filter-scaler-downscale
+ * Description: Verify content adaptive sharpness filter with 1 plane scaler enabled during downscaling.
+ * Functionality: casf, scaling
*/
IGT_TEST_DESCRIPTION("Test to validate content adaptive sharpness filter");
@@ -70,6 +78,9 @@ IGT_TEST_DESCRIPTION("Test to validate content adaptive sharpness filter");
#define MAX_PIXELS_FOR_5_TAP_FILTER (3840 * 2160)
#define NROUNDS 10
+#define SET_PLANES ((type == TEST_FILTER_UPSCALE) \
+ || (type == TEST_FILTER_DOWNSCALE))
+
enum test_type {
TEST_FILTER_BASIC,
TEST_FILTER_MODIFIERS,
@@ -80,6 +91,8 @@ enum test_type {
TEST_FILTER_TAP,
TEST_FILTER_DPMS,
TEST_FILTER_SUSPEND,
+ TEST_FILTER_UPSCALE,
+ TEST_FILTER_DOWNSCALE,
};
const int filter_strength_list[] = {
@@ -170,6 +183,26 @@ static void cleanup_fbs(data_t *data)
igt_remove_fb(data->drm_fd, &data->fb[i]);
}
+static void set_planes(data_t *data, enum test_type type)
+{
+ drmModeModeInfo *mode = data->mode;
+ igt_output_t *output = data->output;
+
+ data->plane[1] = igt_output_get_plane(output, 1);
+
+ if (type == TEST_FILTER_UPSCALE) {
+ setup_fb(data->drm_fd, 20, 20, data->format, data->modifier, &data->fb[1]);
+ igt_plane_set_fb(data->plane[1], &data->fb[1]);
+ igt_plane_set_size(data->plane[1], mode->hdisplay, mode->vdisplay);
+ }
+
+ if (type == TEST_FILTER_DOWNSCALE) {
+ setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[1]);
+ igt_plane_set_fb(data->plane[1], &data->fb[1]);
+ igt_plane_set_size(data->plane[1], mode->hdisplay * 0.75, mode->vdisplay * 0.75);
+ }
+}
+
static void cleanup(data_t *data)
{
igt_display_reset(&data->display);
@@ -244,6 +277,9 @@ static void test_sharpness_filter(data_t *data, enum test_type type)
igt_skip("No requested rotation on pipe %s\n", kmstest_pipe_name(data->pipe_id));
}
+ if (SET_PLANES)
+ set_planes(data, type);
+
set_filter_strength_on_pipe(data);
if (data->filter_strength != 0)
@@ -278,6 +314,10 @@ static void test_sharpness_filter(data_t *data, enum test_type type)
if (type == TEST_FILTER_TOGGLE)
ret |= test_filter_toggle(data);
+ if (type == TEST_FILTER_DOWNSCALE)
+ igt_skip_on_f(ret == -ERANGE || ret == -EINVAL,
+ "Scaling op not supported, cdclk limits might be exceeded.\n");
+
igt_assert_eq(ret, 0);
/* clean-up */
@@ -373,6 +413,12 @@ run_sharpness_filter_test(data_t *data, enum test_type type)
case TEST_FILTER_SUSPEND:
snprintf(name, sizeof(name), "-suspend");
break;
+ case TEST_FILTER_UPSCALE:
+ snprintf(name, sizeof(name), "-upscale");
+ break;
+ case TEST_FILTER_DOWNSCALE:
+ snprintf(name, sizeof(name), "-downscale");
+ break;
default:
igt_assert(0);
}
@@ -529,6 +575,28 @@ igt_main_args("l", NULL, help_str, opt_handler, &data)
run_sharpness_filter_test(&data, TEST_FILTER_SUSPEND);
}
+ igt_describe("Verify content adaptive sharpness filter "
+ "with 1 plane scaler enabled.");
+ igt_subtest_with_dynamic("filter-scaler-upscale") {
+ data.modifier = DRM_FORMAT_MOD_LINEAR;
+ data.rotation = IGT_ROTATION_0;
+ data.format = DRM_FORMAT_XRGB8888;
+ data.filter_strength = MID_FILTER_STRENGTH;
+
+ run_sharpness_filter_test(&data, TEST_FILTER_UPSCALE);
+ }
+
+ igt_describe("Verify content adaptive sharpness filter "
+ "with 1 plane scaler enabled.");
+ igt_subtest_with_dynamic("filter-scaler-downscale") {
+ data.modifier = DRM_FORMAT_MOD_LINEAR;
+ data.rotation = IGT_ROTATION_0;
+ data.format = DRM_FORMAT_XRGB8888;
+ data.filter_strength = MID_FILTER_STRENGTH;
+
+ run_sharpness_filter_test(&data, TEST_FILTER_DOWNSCALE);
+ }
+
igt_fixture {
igt_display_fini(&data.display);
drm_close_driver(data.drm_fd);
--
2.25.1
^ permalink raw reply related [flat|nested] 20+ messages in thread* [PATCH i-g-t 08/11] tests/kms_sharpness_filter: Add invalid subtests
2025-02-21 16:57 [PATCH i-g-t 00/11] Add new test to validate adaptive sharpness filter Swati Sharma
` (6 preceding siblings ...)
2025-02-21 16:57 ` [PATCH i-g-t, v2 07/11] tests/kms_sharpness_filter: Add scaler subtests Swati Sharma
@ 2025-02-21 16:57 ` Swati Sharma
2025-02-21 16:57 ` [PATCH i-g-t, v3 09/11] tests/chamelium/kms_chamelium_sharpness_filter: Add basic test Swati Sharma
` (6 subsequent siblings)
14 siblings, 0 replies; 20+ messages in thread
From: Swati Sharma @ 2025-02-21 16:57 UTC (permalink / raw)
To: igt-dev; +Cc: ankit.k.nautiyal, Swati Sharma
Add invalid subtests:
-invalid filter with scaler: enable scaler on 2 planes and attempt
to enable casf
-invalid filter with plane: enable 2 NV12 planes and attempt
to enable casf
-invalid plane with filter: enable 1 NV12 plane and casf, then attempt
to enable a 2nd NV12 plane
-invalid filter with scaling mode: enable scaling_mode property and attempt
to enable casf
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
tests/kms_sharpness_filter.c | 181 +++++++++++++++++++++++++++++++++--
1 file changed, 175 insertions(+), 6 deletions(-)
diff --git a/tests/kms_sharpness_filter.c b/tests/kms_sharpness_filter.c
index 3451a9db4..630b2c41c 100644
--- a/tests/kms_sharpness_filter.c
+++ b/tests/kms_sharpness_filter.c
@@ -57,6 +57,30 @@
* SUBTEST: filter-scaler-downscale
* Description: Verify content adaptive sharpness filter with 1 plane scaler enabled during downscaling.
* Functionality: casf, scaling
+ *
+ * SUBTEST: invalid-filter-with-scaler
+ * Description: Negative check for content adaptive sharpness filter
+ * when 2 plane scalers have already been enabled and
+ * attempt is made to enable sharpness filter.
+ * Functionality: casf, scaling
+ *
+ * SUBTEST: invalid-filter-with-plane
+ * Description: Negative check for content adaptive sharpness filter
+ * when 2 NV12 planes have already been enabled and attempt is
+ * made to enable the sharpness filter.
+ * Functionality: casf, plane
+ *
+ * SUBTEST: invalid-plane-with-filter
+ * Description: Negative check for content adaptive sharpness filter
+ * when 1 NV12 plane and sharpness filter have already been enabled
+ * and attempt is made to enable the second NV12 plane.
+ * Functionality: casf, plane
+ *
+ * SUBTEST: invalid-filter-with-scaling-mode
+ * Description: Negative check for content adaptive sharpness filter
+ * when scaling mode is already enabled and attempt is made to enable
+ * sharpness filter.
+ * Functionality: casf, scaling
*/
IGT_TEST_DESCRIPTION("Test to validate content adaptive sharpness filter");
@@ -77,9 +101,15 @@ IGT_TEST_DESCRIPTION("Test to validate content adaptive sharpness filter");
#define MAX_PIXELS_FOR_3_TAP_FILTER (1920 * 1080)
#define MAX_PIXELS_FOR_5_TAP_FILTER (3840 * 2160)
#define NROUNDS 10
-
+#define INVALID_TEST ((type == TEST_INVALID_FILTER_WITH_SCALER) \
+ || (type == TEST_INVALID_FILTER_WITH_PLANE) \
+ || (type == TEST_INVALID_PLANE_WITH_FILTER) \
+ || (type == TEST_INVALID_FILTER_WITH_SCALING_MODE))
#define SET_PLANES ((type == TEST_FILTER_UPSCALE) \
- || (type == TEST_FILTER_DOWNSCALE))
+ || (type == TEST_FILTER_DOWNSCALE) \
+ || (type == TEST_INVALID_FILTER_WITH_SCALER) \
+ || (type == TEST_INVALID_FILTER_WITH_PLANE) \
+ || (type == TEST_INVALID_FILTER_WITH_SCALING_MODE))
enum test_type {
TEST_FILTER_BASIC,
@@ -93,6 +123,10 @@ enum test_type {
TEST_FILTER_SUSPEND,
TEST_FILTER_UPSCALE,
TEST_FILTER_DOWNSCALE,
+ TEST_INVALID_FILTER_WITH_SCALER,
+ TEST_INVALID_FILTER_WITH_PLANE,
+ TEST_INVALID_PLANE_WITH_FILTER,
+ TEST_INVALID_FILTER_WITH_SCALING_MODE,
};
const int filter_strength_list[] = {
@@ -125,6 +159,11 @@ static const igt_rotation_t rotations[] = {
IGT_ROTATION_0,
IGT_ROTATION_180,
};
+static const uint32_t scaling_modes[] = {
+ DRM_MODE_SCALE_FULLSCREEN,
+ DRM_MODE_SCALE_CENTER,
+ DRM_MODE_SCALE_ASPECT,
+};
typedef struct {
int drm_fd;
@@ -142,6 +181,7 @@ typedef struct {
const char *modifier_name;
uint32_t format;
igt_rotation_t rotation;
+ uint32_t scaling_mode;
} data_t;
static void set_filter_strength_on_pipe(data_t *data)
@@ -151,6 +191,12 @@ static void set_filter_strength_on_pipe(data_t *data)
data->filter_strength);
}
+static bool has_scaling_mode(igt_output_t *output)
+{
+ return igt_output_has_prop(output, IGT_CONNECTOR_SCALING_MODE) &&
+ igt_output_get_prop(output, IGT_CONNECTOR_SCALING_MODE);
+}
+
static void paint_image(igt_fb_t *fb)
{
cairo_t *cr = igt_get_cairo_ctx(fb->fd, fb);
@@ -185,10 +231,12 @@ static void cleanup_fbs(data_t *data)
static void set_planes(data_t *data, enum test_type type)
{
+ int ret;
drmModeModeInfo *mode = data->mode;
igt_output_t *output = data->output;
data->plane[1] = igt_output_get_plane(output, 1);
+ data->plane[2] = igt_output_get_plane(output, 2);
if (type == TEST_FILTER_UPSCALE) {
setup_fb(data->drm_fd, 20, 20, data->format, data->modifier, &data->fb[1]);
@@ -201,6 +249,46 @@ static void set_planes(data_t *data, enum test_type type)
igt_plane_set_fb(data->plane[1], &data->fb[1]);
igt_plane_set_size(data->plane[1], mode->hdisplay * 0.75, mode->vdisplay * 0.75);
}
+
+ if (type == TEST_INVALID_FILTER_WITH_SCALER) {
+ setup_fb(data->drm_fd, 20, 20, data->format, data->modifier, &data->fb[1]);
+ setup_fb(data->drm_fd, 20, 20, data->format, data->modifier, &data->fb[2]);
+ igt_plane_set_fb(data->plane[1], &data->fb[1]);
+ igt_plane_set_fb(data->plane[2], &data->fb[2]);
+ igt_plane_set_size(data->plane[1], mode->hdisplay, mode->vdisplay);
+ igt_plane_set_size(data->plane[2], mode->hdisplay, mode->vdisplay);
+ }
+
+ if (type == TEST_INVALID_FILTER_WITH_PLANE) {
+ setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[1]);
+ setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[2]);
+ igt_plane_set_fb(data->plane[1], &data->fb[1]);
+ igt_plane_set_fb(data->plane[2], &data->fb[2]);
+ }
+
+ if (type == TEST_INVALID_PLANE_WITH_FILTER) {
+ setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[1]);
+ igt_plane_set_fb(data->plane[1], &data->fb[1]);
+ }
+
+ if (type == TEST_INVALID_FILTER_WITH_SCALING_MODE) {
+ setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[1]);
+ setup_fb(data->drm_fd, 640, 480, data->format, data->modifier, &data->fb[2]);
+ igt_plane_set_fb(data->plane[1], &data->fb[1]);
+ igt_plane_set_fb(data->plane[2], &data->fb[2]);
+
+ ret = igt_display_try_commit_atomic(&data->display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
+ igt_assert_eq(ret, 0);
+
+ mode->hdisplay = 640;
+ mode->vdisplay = 480;
+
+ igt_output_override_mode(data->output, mode);
+ igt_plane_set_fb(data->plane[2], NULL);
+ igt_plane_set_fb(data->plane[1], &data->fb[2]);
+
+ igt_output_set_prop_value(data->output, IGT_CONNECTOR_SCALING_MODE, data->scaling_mode);
+ }
}
static void cleanup(data_t *data)
@@ -277,15 +365,21 @@ static void test_sharpness_filter(data_t *data, enum test_type type)
igt_skip("No requested rotation on pipe %s\n", kmstest_pipe_name(data->pipe_id));
}
+ if (type == TEST_INVALID_FILTER_WITH_SCALING_MODE)
+ igt_require_f(has_scaling_mode(output), "No connecter scaling mode found on %s\n", output->name);
+
if (SET_PLANES)
set_planes(data, type);
set_filter_strength_on_pipe(data);
- if (data->filter_strength != 0)
+ if (!INVALID_TEST && data->filter_strength != 0)
igt_debug("Sharpened image should be observed for filter strength > 0\n");
- ret = igt_display_try_commit2(&data->display, COMMIT_ATOMIC);
+ if (type == TEST_INVALID_FILTER_WITH_SCALING_MODE)
+ ret = igt_display_try_commit_atomic(&data->display, 0, NULL);
+ else
+ ret = igt_display_try_commit2(&data->display, COMMIT_ATOMIC);
if (type == TEST_FILTER_DPMS || type == TEST_FILTER_SUSPEND) {
pipe_crc = igt_pipe_crc_new(data->drm_fd, data->pipe_id,
@@ -299,7 +393,7 @@ static void test_sharpness_filter(data_t *data, enum test_type type)
DRM_MODE_DPMS_OFF);
kmstest_set_connector_dpms(data->drm_fd,
output->config.connector,
- DRM_MODE_DPMS_ON);
+ DRM_MODE_DPMS_ON);
}
if (type == TEST_FILTER_SUSPEND)
@@ -318,7 +412,18 @@ static void test_sharpness_filter(data_t *data, enum test_type type)
igt_skip_on_f(ret == -ERANGE || ret == -EINVAL,
"Scaling op not supported, cdclk limits might be exceeded.\n");
- igt_assert_eq(ret, 0);
+ if (type == TEST_INVALID_PLANE_WITH_FILTER) {
+ data->plane[3] = igt_output_get_plane(data->output, 3);
+ setup_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, data->format, data->modifier, &data->fb[3]);
+ igt_plane_set_fb(data->plane[3], &data->fb[3]);
+
+ ret = igt_display_try_commit2(&data->display, COMMIT_ATOMIC);
+ }
+
+ if (INVALID_TEST)
+ igt_assert_eq(ret, -EINVAL);
+ else
+ igt_assert_eq(ret, 0);
/* clean-up */
igt_pipe_crc_free(pipe_crc);
@@ -419,6 +524,18 @@ run_sharpness_filter_test(data_t *data, enum test_type type)
case TEST_FILTER_DOWNSCALE:
snprintf(name, sizeof(name), "-downscale");
break;
+ case TEST_INVALID_FILTER_WITH_SCALER:
+ snprintf(name, sizeof(name), "-invalid-filter-with-scaler");
+ break;
+ case TEST_INVALID_FILTER_WITH_PLANE:
+ snprintf(name, sizeof(name), "-invalid-filter-with-plane");
+ break;
+ case TEST_INVALID_PLANE_WITH_FILTER:
+ snprintf(name, sizeof(name), "-invalid-plane-with-filter");
+ break;
+ case TEST_INVALID_FILTER_WITH_SCALING_MODE:
+ snprintf(name, sizeof(name), "-invalid-filter-with-scaling-mode-%s", kmstest_scaling_mode_str(data->scaling_mode));
+ break;
default:
igt_assert(0);
}
@@ -597,6 +714,58 @@ igt_main_args("l", NULL, help_str, opt_handler, &data)
run_sharpness_filter_test(&data, TEST_FILTER_DOWNSCALE);
}
+ igt_describe("Negative check for content adaptive sharpness filter "
+ "when 2 plane scalers have already been enabled and "
+ "attempt is made to enable sharpness filter.");
+ igt_subtest_with_dynamic("invalid-filter-with-scaler") {
+ data.modifier = DRM_FORMAT_MOD_LINEAR;
+ data.rotation = IGT_ROTATION_0;
+ data.format = DRM_FORMAT_XRGB8888;
+ data.filter_strength = MID_FILTER_STRENGTH;
+
+ run_sharpness_filter_test(&data, TEST_INVALID_FILTER_WITH_SCALER);
+ }
+
+ igt_describe("Negative check for content adaptive sharpness filter "
+ "when 2 NV12 planes have already been enabled and attempt is "
+ "made to enable the sharpness filter.");
+ igt_subtest_with_dynamic("invalid-filter-with-plane") {
+ data.modifier = DRM_FORMAT_MOD_LINEAR;
+ data.rotation = IGT_ROTATION_0;
+ data.format = DRM_FORMAT_NV12;
+ data.filter_strength = MID_FILTER_STRENGTH;
+
+ run_sharpness_filter_test(&data, TEST_INVALID_FILTER_WITH_PLANE);
+ }
+
+ igt_describe("Negative check for content adaptive sharpness filter "
+ "when 1 NV12 plane and sharpness filter have already been enabled "
+ "and attempt is made to enable the second NV12 plane.");
+ igt_subtest_with_dynamic("invalid-plane-with-filter") {
+ data.modifier = DRM_FORMAT_MOD_LINEAR;
+ data.rotation = IGT_ROTATION_0;
+ data.format = DRM_FORMAT_NV12;
+ data.filter_strength = MID_FILTER_STRENGTH;
+
+ run_sharpness_filter_test(&data, TEST_INVALID_PLANE_WITH_FILTER);
+ }
+
+ igt_describe("Negative check for content adaptive sharpness filter "
+ "when scaling mode is already enabled and attempt is made "
+ "to enable sharpness filter.");
+ igt_subtest_with_dynamic("invalid-filter-with-scaling-mode") {
+ data.modifier = DRM_FORMAT_MOD_LINEAR;
+ data.rotation = IGT_ROTATION_0;
+ data.format = DRM_FORMAT_XRGB8888;
+ data.filter_strength = MID_FILTER_STRENGTH;
+
+ for (int k = 0; k < ARRAY_SIZE(scaling_modes); k++) {
+ data.scaling_mode = scaling_modes[k];
+
+ run_sharpness_filter_test(&data, TEST_INVALID_FILTER_WITH_SCALING_MODE);
+ }
+ }
+
igt_fixture {
igt_display_fini(&data.display);
drm_close_driver(data.drm_fd);
--
2.25.1
^ permalink raw reply related [flat|nested] 20+ messages in thread* [PATCH i-g-t, v3 09/11] tests/chamelium/kms_chamelium_sharpness_filter: Add basic test
2025-02-21 16:57 [PATCH i-g-t 00/11] Add new test to validate adaptive sharpness filter Swati Sharma
` (7 preceding siblings ...)
2025-02-21 16:57 ` [PATCH i-g-t 08/11] tests/kms_sharpness_filter: Add invalid subtests Swati Sharma
@ 2025-02-21 16:57 ` Swati Sharma
2025-03-19 5:26 ` [PATCH i-g-t,v3 " Nautiyal, Ankit K
2025-02-21 16:57 ` [PATCH i-g-t 10/11] lib/igt_core: Add igt_dynamic_subtest_name() Swati Sharma
` (5 subsequent siblings)
14 siblings, 1 reply; 20+ messages in thread
From: Swati Sharma @ 2025-02-21 16:57 UTC (permalink / raw)
To: igt-dev; +Cc: ankit.k.nautiyal, Swati Sharma
Add new chamelium based sharpness test. Basic test is added where
we have tried comparing frame dump of unsharped and sharped image.
After, sharpness filter is applied its expected both frame dumps
will be different.
v2: -removed MIN/MAX_FILTER_STRENGTH (Ankit)
-fixed alignment (Ankit)
-removed commit with fb_ref (Ankit)
-set data->pipe_id (Ankit)
-removed disable_filter_strength_on_pipe()
-fixed CRASH
-fixed assert condition
v3: -minor fixes
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
---
.../kms_chamelium_sharpness_filter.c | 236 ++++++++++++++++++
tests/meson.build | 2 +
2 files changed, 238 insertions(+)
create mode 100644 tests/chamelium/kms_chamelium_sharpness_filter.c
diff --git a/tests/chamelium/kms_chamelium_sharpness_filter.c b/tests/chamelium/kms_chamelium_sharpness_filter.c
new file mode 100644
index 000000000..70903b5f8
--- /dev/null
+++ b/tests/chamelium/kms_chamelium_sharpness_filter.c
@@ -0,0 +1,236 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2025 Intel Corporation
+ */
+
+/**
+ * TEST: kms chamelium sharpness filter
+ * Category: Display
+ * Description: Test to validate content adaptive sharpness filter using Chamelium
+ * Driver requirement: xe
+ * Functionality: chamelium, casf
+ * Mega feature: General Display Features
+ * Test category: functionality test
+ */
+
+#include "igt.h"
+#include "igt_kms.h"
+
+/**
+ * SUBTEST: filter-basic
+ * Description: Verify basic content adaptive sharpness filter.
+ */
+
+IGT_TEST_DESCRIPTION("Test to validate content adaptive sharpness filter using Chamelium");
+
+#define MID_FILTER_STRENGTH 128
+
+typedef struct {
+ int drm_fd;
+ enum pipe pipe_id;
+ struct igt_fb fb, fb_ref;
+ igt_display_t display;
+ igt_output_t *output;
+ igt_plane_t *primary;
+ drmModeModeInfo *mode;
+ int filter_strength;
+ struct chamelium *chamelium;
+ struct chamelium_port **ports;
+ int port_count;
+} data_t;
+
+static bool pipe_output_combo_valid(data_t *data, enum pipe pipe)
+{
+ bool ret = true;
+
+ igt_output_set_pipe(data->output, pipe);
+ if (!intel_pipe_output_combo_valid(&data->display))
+ ret = false;
+ igt_output_set_pipe(data->output, PIPE_NONE);
+
+ return ret;
+}
+
+static void set_filter_strength_on_pipe(data_t *data)
+{
+ igt_pipe_set_prop_value(&data->display, data->pipe_id,
+ IGT_CRTC_SHARPNESS_STRENGTH,
+ data->filter_strength);
+}
+
+static void paint_image(igt_fb_t *fb)
+{
+ cairo_t *cr = igt_get_cairo_ctx(fb->fd, fb);
+ int img_x, img_y, img_w, img_h;
+ const char *file = "1080p-left.png";
+
+ img_x = img_y = 0;
+ img_w = fb->width;
+ img_h = fb->height;
+
+ igt_paint_image(cr, file, img_x, img_y, img_w, img_h);
+
+ igt_put_cairo_ctx(cr);
+}
+
+static void setup_fb(int fd, int width, int height, uint32_t format,
+ uint64_t modifier, struct igt_fb *fb)
+{
+ int fb_id;
+
+ fb_id = igt_create_fb(fd, width, height, format, modifier, fb);
+ igt_assert(fb_id);
+
+ paint_image(fb);
+}
+
+static void cleanup(data_t *data)
+{
+ igt_remove_fb(data->drm_fd, &data->fb);
+ igt_remove_fb(data->drm_fd, &data->fb_ref);
+ igt_output_set_pipe(data->output, PIPE_NONE);
+ igt_output_override_mode(data->output, NULL);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+}
+
+static bool test_t(data_t *data, igt_plane_t *primary,
+ struct chamelium_port *port)
+{
+ struct chamelium_frame_dump *dump;
+ drmModeModeInfo *mode;
+ int height, width;
+ bool ret = false;
+
+ igt_output_set_pipe(data->output, data->pipe_id);
+
+ mode = igt_output_get_mode(data->output);
+ height = mode->hdisplay;
+ width = mode->vdisplay;
+
+ setup_fb(data->drm_fd, height, width, DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, &data->fb_ref);
+ setup_fb(data->drm_fd, height, width, DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, &data->fb);
+
+ igt_plane_set_fb(data->primary, &data->fb);
+ set_filter_strength_on_pipe(data);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+
+ igt_debug("Reading frame dumps from Chamelium...\n");
+ chamelium_capture(data->chamelium, port, 0, 0, 0, 0, 1);
+ dump = chamelium_read_captured_frame(data->chamelium, 0);
+
+ ret = chamelium_frame_match_or_dump(data->chamelium, port,
+ dump, &data->fb_ref,
+ CHAMELIUM_CHECK_ANALOG);
+ chamelium_destroy_frame_dump(dump);
+ cleanup(data);
+
+ return ret;
+}
+
+static int test_setup(data_t *data, enum pipe p)
+{
+ igt_pipe_t *pipe;
+ int i = 0;
+
+ igt_display_reset(&data->display);
+
+ pipe = &data->display.pipes[p];
+ igt_require(pipe->n_planes >= 0);
+
+ data->primary = igt_pipe_get_plane_type(pipe, DRM_PLANE_TYPE_PRIMARY);
+ igt_assert(data->primary);
+
+ /*
+ * Prefer to run this test on HDMI connector if its connected, since on DP we
+ * sometimes face DP FSM issue
+ */
+ for_each_valid_output_on_pipe(&data->display, p, data->output) {
+ data->pipe_id = p;
+ for (i = 0; i < data->port_count; i++) {
+ if ((data->output->config.connector->connector_type == DRM_MODE_CONNECTOR_HDMIA ||
+ data->output->config.connector->connector_type == DRM_MODE_CONNECTOR_HDMIB) &&
+ strcmp(data->output->name, chamelium_port_get_name(data->ports[i])) == 0)
+ return i;
+ }
+ }
+
+ for_each_valid_output_on_pipe(&data->display, p, data->output) {
+ data->pipe_id = p;
+ for (i = 0; i < data->port_count; i++) {
+ if (strcmp(data->output->name,
+ chamelium_port_get_name(data->ports[i])) == 0)
+ return i;
+ }
+ }
+
+ return -1;
+}
+
+static void test_sharpness_filter(data_t *data, enum pipe p)
+{
+ int port_idx = test_setup(data, p);
+
+ igt_require(port_idx >= 0);
+ igt_require(igt_pipe_obj_has_prop(&data->display.pipes[p], IGT_CRTC_SHARPNESS_STRENGTH));
+
+ if (!pipe_output_combo_valid(data, p))
+ return;
+
+ igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(p), data->output->name)
+ igt_assert_f((test_t(data, data->primary, data->ports[port_idx]) == 1), "No sharpness observed.\n");
+}
+
+static void
+run_sharpness_filter_test(data_t *data)
+{
+ igt_display_t *display = &data->display;
+ enum pipe pipe;
+
+ igt_describe("Verify basic content adaptive sharpness filter.");
+ igt_subtest_with_dynamic("filter-basic") {
+ for_each_pipe(display, pipe) {
+ data->filter_strength = MID_FILTER_STRENGTH;
+ test_sharpness_filter(data, pipe);
+ }
+ }
+}
+
+igt_main
+{
+ data_t data = {};
+
+ igt_fixture {
+ data.drm_fd = drm_open_driver_master(DRIVER_ANY);
+
+ igt_display_require(&data.display, data.drm_fd);
+ igt_require(data.display.is_atomic);
+
+ igt_chamelium_allow_fsm_handling = false;
+
+ /* we need to initalize chamelium after igt_display_require */
+ data.chamelium = chamelium_init(data.drm_fd, &data.display);
+ igt_require(data.chamelium);
+
+ data.ports = chamelium_get_ports(data.chamelium,
+ &data.port_count);
+
+ if (!data.port_count)
+ igt_skip("No ports connected\n");
+ /*
+ * We don't cause any harm by plugging
+ * discovered ports, just incase they are not plugged
+ * we currently skip in test_setup
+ */
+ for(int i = 0; i < data.port_count; i++)
+ chamelium_plug(data.chamelium, data.ports[i]);
+
+ kmstest_set_vt_graphics_mode();
+ }
+
+ run_sharpness_filter_test(&data);
+
+ igt_fixture {
+ igt_display_fini(&data.display);
+ drm_close_driver(data.drm_fd);
+ }
+}
diff --git a/tests/meson.build b/tests/meson.build
index aac3b4e10..09f7ed24b 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -345,6 +345,7 @@ chamelium_progs = [
'kms_chamelium_edid',
'kms_chamelium_frames',
'kms_chamelium_hpd',
+ 'kms_chamelium_sharpness_filter',
]
test_deps = [ igt_deps ]
@@ -370,6 +371,7 @@ extra_sources = {
'kms_chamelium_edid': [ join_paths ('chamelium', 'kms_chamelium_helper.c') ],
'kms_chamelium_frames': [ join_paths ('chamelium', 'kms_chamelium_helper.c') ],
'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') ],
--
2.25.1
^ permalink raw reply related [flat|nested] 20+ messages in thread* Re: [PATCH i-g-t,v3 09/11] tests/chamelium/kms_chamelium_sharpness_filter: Add basic test
2025-02-21 16:57 ` [PATCH i-g-t, v3 09/11] tests/chamelium/kms_chamelium_sharpness_filter: Add basic test Swati Sharma
@ 2025-03-19 5:26 ` Nautiyal, Ankit K
2025-03-19 5:31 ` Nautiyal, Ankit K
0 siblings, 1 reply; 20+ messages in thread
From: Nautiyal, Ankit K @ 2025-03-19 5:26 UTC (permalink / raw)
To: Swati Sharma, igt-dev
On 2/21/2025 10:27 PM, Swati Sharma wrote:
> Add new chamelium based sharpness test. Basic test is added where
> we have tried comparing frame dump of unsharped and sharped image.
> After, sharpness filter is applied its expected both frame dumps
> will be different.
>
> v2: -removed MIN/MAX_FILTER_STRENGTH (Ankit)
> -fixed alignment (Ankit)
> -removed commit with fb_ref (Ankit)
> -set data->pipe_id (Ankit)
> -removed disable_filter_strength_on_pipe()
> -fixed CRASH
> -fixed assert condition
> v3: -minor fixes
>
> Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
> ---
> .../kms_chamelium_sharpness_filter.c | 236 ++++++++++++++++++
> tests/meson.build | 2 +
> 2 files changed, 238 insertions(+)
> create mode 100644 tests/chamelium/kms_chamelium_sharpness_filter.c
>
> diff --git a/tests/chamelium/kms_chamelium_sharpness_filter.c b/tests/chamelium/kms_chamelium_sharpness_filter.c
> new file mode 100644
> index 000000000..70903b5f8
> --- /dev/null
> +++ b/tests/chamelium/kms_chamelium_sharpness_filter.c
> @@ -0,0 +1,236 @@
> +// SPDX-License-Identifier: MIT
> +/*
> + * Copyright © 2025 Intel Corporation
> + */
> +
> +/**
> + * TEST: kms chamelium sharpness filter
> + * Category: Display
> + * Description: Test to validate content adaptive sharpness filter using Chamelium
> + * Driver requirement: xe
> + * Functionality: chamelium, casf
> + * Mega feature: General Display Features
> + * Test category: functionality test
> + */
> +
> +#include "igt.h"
> +#include "igt_kms.h"
> +
> +/**
> + * SUBTEST: filter-basic
> + * Description: Verify basic content adaptive sharpness filter.
> + */
> +
> +IGT_TEST_DESCRIPTION("Test to validate content adaptive sharpness filter using Chamelium");
> +
> +#define MID_FILTER_STRENGTH 128
> +
> +typedef struct {
> + int drm_fd;
> + enum pipe pipe_id;
> + struct igt_fb fb, fb_ref;
> + igt_display_t display;
> + igt_output_t *output;
> + igt_plane_t *primary;
> + drmModeModeInfo *mode;
> + int filter_strength;
> + struct chamelium *chamelium;
> + struct chamelium_port **ports;
> + int port_count;
> +} data_t;
> +
> +static bool pipe_output_combo_valid(data_t *data, enum pipe pipe)
> +{
> + bool ret = true;
> +
> + igt_output_set_pipe(data->output, pipe);
> + if (!intel_pipe_output_combo_valid(&data->display))
> + ret = false;
> + igt_output_set_pipe(data->output, PIPE_NONE);
> +
> + return ret;
> +}
> +
> +static void set_filter_strength_on_pipe(data_t *data)
> +{
> + igt_pipe_set_prop_value(&data->display, data->pipe_id,
> + IGT_CRTC_SHARPNESS_STRENGTH,
> + data->filter_strength);
> +}
> +
> +static void paint_image(igt_fb_t *fb)
> +{
> + cairo_t *cr = igt_get_cairo_ctx(fb->fd, fb);
> + int img_x, img_y, img_w, img_h;
> + const char *file = "1080p-left.png";
> +
> + img_x = img_y = 0;
> + img_w = fb->width;
> + img_h = fb->height;
> +
> + igt_paint_image(cr, file, img_x, img_y, img_w, img_h);
> +
> + igt_put_cairo_ctx(cr);
> +}
> +
> +static void setup_fb(int fd, int width, int height, uint32_t format,
> + uint64_t modifier, struct igt_fb *fb)
> +{
> + int fb_id;
> +
> + fb_id = igt_create_fb(fd, width, height, format, modifier, fb);
> + igt_assert(fb_id);
> +
> + paint_image(fb);
> +}
> +
> +static void cleanup(data_t *data)
> +{
> + igt_remove_fb(data->drm_fd, &data->fb);
> + igt_remove_fb(data->drm_fd, &data->fb_ref);
> + igt_output_set_pipe(data->output, PIPE_NONE);
> + igt_output_override_mode(data->output, NULL);
> + igt_display_commit2(&data->display, COMMIT_ATOMIC);
> +}
> +
> +static bool test_t(data_t *data, igt_plane_t *primary,
> + struct chamelium_port *port)
> +{
> + struct chamelium_frame_dump *dump;
> + drmModeModeInfo *mode;
> + int height, width;
> + bool ret = false;
> +
> + igt_output_set_pipe(data->output, data->pipe_id);
> +
> + mode = igt_output_get_mode(data->output);
> + height = mode->hdisplay;
> + width = mode->vdisplay;
> +
> + setup_fb(data->drm_fd, height, width, DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, &data->fb_ref);
> + setup_fb(data->drm_fd, height, width, DRM_FORMAT_XRGB8888, DRM_FORMAT_MOD_LINEAR, &data->fb);
> +
> + igt_plane_set_fb(data->primary, &data->fb);
> + set_filter_strength_on_pipe(data);
> + igt_display_commit2(&data->display, COMMIT_ATOMIC);
Instead of setting the pipe and the property together, we can set the
pipe and commit in the first step.
After that, we can set the property and commit with the
DRM_MODE_ATOMIC_ALLOW_MODESET flag set.
This approach aligns with the general use case where the pipe is set
first, followed by enabling sharpness, and this should occur without
requiring a modeset.
Otherwise, I agree with the test.
Regards,
Ankit
> +
> + igt_debug("Reading frame dumps from Chamelium...\n");
> + chamelium_capture(data->chamelium, port, 0, 0, 0, 0, 1);
> + dump = chamelium_read_captured_frame(data->chamelium, 0);
> +
> + ret = chamelium_frame_match_or_dump(data->chamelium, port,
> + dump, &data->fb_ref,
> + CHAMELIUM_CHECK_ANALOG);
> + chamelium_destroy_frame_dump(dump);
> + cleanup(data);
> +
> + return ret;
> +}
> +
> +static int test_setup(data_t *data, enum pipe p)
> +{
> + igt_pipe_t *pipe;
> + int i = 0;
> +
> + igt_display_reset(&data->display);
> +
> + pipe = &data->display.pipes[p];
> + igt_require(pipe->n_planes >= 0);
> +
> + data->primary = igt_pipe_get_plane_type(pipe, DRM_PLANE_TYPE_PRIMARY);
> + igt_assert(data->primary);
> +
> + /*
> + * Prefer to run this test on HDMI connector if its connected, since on DP we
> + * sometimes face DP FSM issue
> + */
> + for_each_valid_output_on_pipe(&data->display, p, data->output) {
> + data->pipe_id = p;
> + for (i = 0; i < data->port_count; i++) {
> + if ((data->output->config.connector->connector_type == DRM_MODE_CONNECTOR_HDMIA ||
> + data->output->config.connector->connector_type == DRM_MODE_CONNECTOR_HDMIB) &&
> + strcmp(data->output->name, chamelium_port_get_name(data->ports[i])) == 0)
> + return i;
> + }
> + }
> +
> + for_each_valid_output_on_pipe(&data->display, p, data->output) {
> + data->pipe_id = p;
> + for (i = 0; i < data->port_count; i++) {
> + if (strcmp(data->output->name,
> + chamelium_port_get_name(data->ports[i])) == 0)
> + return i;
> + }
> + }
> +
> + return -1;
> +}
> +
> +static void test_sharpness_filter(data_t *data, enum pipe p)
> +{
> + int port_idx = test_setup(data, p);
> +
> + igt_require(port_idx >= 0);
> + igt_require(igt_pipe_obj_has_prop(&data->display.pipes[p], IGT_CRTC_SHARPNESS_STRENGTH));
> +
> + if (!pipe_output_combo_valid(data, p))
> + return;
> +
> + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(p), data->output->name)
> + igt_assert_f((test_t(data, data->primary, data->ports[port_idx]) == 1), "No sharpness observed.\n");
> +}
> +
> +static void
> +run_sharpness_filter_test(data_t *data)
> +{
> + igt_display_t *display = &data->display;
> + enum pipe pipe;
> +
> + igt_describe("Verify basic content adaptive sharpness filter.");
> + igt_subtest_with_dynamic("filter-basic") {
> + for_each_pipe(display, pipe) {
> + data->filter_strength = MID_FILTER_STRENGTH;
> + test_sharpness_filter(data, pipe);
> + }
> + }
> +}
> +
> +igt_main
> +{
> + data_t data = {};
> +
> + igt_fixture {
> + data.drm_fd = drm_open_driver_master(DRIVER_ANY);
> +
> + igt_display_require(&data.display, data.drm_fd);
> + igt_require(data.display.is_atomic);
> +
> + igt_chamelium_allow_fsm_handling = false;
> +
> + /* we need to initalize chamelium after igt_display_require */
> + data.chamelium = chamelium_init(data.drm_fd, &data.display);
> + igt_require(data.chamelium);
> +
> + data.ports = chamelium_get_ports(data.chamelium,
> + &data.port_count);
> +
> + if (!data.port_count)
> + igt_skip("No ports connected\n");
> + /*
> + * We don't cause any harm by plugging
> + * discovered ports, just incase they are not plugged
> + * we currently skip in test_setup
> + */
> + for(int i = 0; i < data.port_count; i++)
> + chamelium_plug(data.chamelium, data.ports[i]);
> +
> + kmstest_set_vt_graphics_mode();
> + }
> +
> + run_sharpness_filter_test(&data);
> +
> + igt_fixture {
> + igt_display_fini(&data.display);
> + drm_close_driver(data.drm_fd);
> + }
> +}
> diff --git a/tests/meson.build b/tests/meson.build
> index aac3b4e10..09f7ed24b 100644
> --- a/tests/meson.build
> +++ b/tests/meson.build
> @@ -345,6 +345,7 @@ chamelium_progs = [
> 'kms_chamelium_edid',
> 'kms_chamelium_frames',
> 'kms_chamelium_hpd',
> + 'kms_chamelium_sharpness_filter',
> ]
>
> test_deps = [ igt_deps ]
> @@ -370,6 +371,7 @@ extra_sources = {
> 'kms_chamelium_edid': [ join_paths ('chamelium', 'kms_chamelium_helper.c') ],
> 'kms_chamelium_frames': [ join_paths ('chamelium', 'kms_chamelium_helper.c') ],
> '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') ],
^ permalink raw reply [flat|nested] 20+ messages in thread* Re: [PATCH i-g-t,v3 09/11] tests/chamelium/kms_chamelium_sharpness_filter: Add basic test
2025-03-19 5:26 ` [PATCH i-g-t,v3 " Nautiyal, Ankit K
@ 2025-03-19 5:31 ` Nautiyal, Ankit K
0 siblings, 0 replies; 20+ messages in thread
From: Nautiyal, Ankit K @ 2025-03-19 5:31 UTC (permalink / raw)
To: Swati Sharma, igt-dev
On 3/19/2025 10:56 AM, Nautiyal, Ankit K wrote:
>
> On 2/21/2025 10:27 PM, Swati Sharma wrote:
>> Add new chamelium based sharpness test. Basic test is added where
>> we have tried comparing frame dump of unsharped and sharped image.
>> After, sharpness filter is applied its expected both frame dumps
>> will be different.
>>
>> v2: -removed MIN/MAX_FILTER_STRENGTH (Ankit)
>> -fixed alignment (Ankit)
>> -removed commit with fb_ref (Ankit)
>> -set data->pipe_id (Ankit)
>> -removed disable_filter_strength_on_pipe()
>> -fixed CRASH
>> -fixed assert condition
>> v3: -minor fixes
>>
>> Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
>> ---
>> .../kms_chamelium_sharpness_filter.c | 236 ++++++++++++++++++
>> tests/meson.build | 2 +
>> 2 files changed, 238 insertions(+)
>> create mode 100644 tests/chamelium/kms_chamelium_sharpness_filter.c
>>
>> diff --git a/tests/chamelium/kms_chamelium_sharpness_filter.c
>> b/tests/chamelium/kms_chamelium_sharpness_filter.c
>> new file mode 100644
>> index 000000000..70903b5f8
>> --- /dev/null
>> +++ b/tests/chamelium/kms_chamelium_sharpness_filter.c
>> @@ -0,0 +1,236 @@
>> +// SPDX-License-Identifier: MIT
>> +/*
>> + * Copyright © 2025 Intel Corporation
>> + */
>> +
>> +/**
>> + * TEST: kms chamelium sharpness filter
>> + * Category: Display
>> + * Description: Test to validate content adaptive sharpness filter
>> using Chamelium
>> + * Driver requirement: xe
>> + * Functionality: chamelium, casf
>> + * Mega feature: General Display Features
>> + * Test category: functionality test
>> + */
>> +
>> +#include "igt.h"
>> +#include "igt_kms.h"
>> +
>> +/**
>> + * SUBTEST: filter-basic
>> + * Description: Verify basic content adaptive sharpness filter.
>> + */
>> +
>> +IGT_TEST_DESCRIPTION("Test to validate content adaptive sharpness
>> filter using Chamelium");
>> +
>> +#define MID_FILTER_STRENGTH 128
>> +
>> +typedef struct {
>> + int drm_fd;
>> + enum pipe pipe_id;
>> + struct igt_fb fb, fb_ref;
>> + igt_display_t display;
>> + igt_output_t *output;
>> + igt_plane_t *primary;
>> + drmModeModeInfo *mode;
>> + int filter_strength;
>> + struct chamelium *chamelium;
>> + struct chamelium_port **ports;
>> + int port_count;
>> +} data_t;
>> +
>> +static bool pipe_output_combo_valid(data_t *data, enum pipe pipe)
>> +{
>> + bool ret = true;
>> +
>> + igt_output_set_pipe(data->output, pipe);
>> + if (!intel_pipe_output_combo_valid(&data->display))
>> + ret = false;
>> + igt_output_set_pipe(data->output, PIPE_NONE);
>> +
>> + return ret;
>> +}
>> +
>> +static void set_filter_strength_on_pipe(data_t *data)
>> +{
>> + igt_pipe_set_prop_value(&data->display, data->pipe_id,
>> + IGT_CRTC_SHARPNESS_STRENGTH,
>> + data->filter_strength);
>> +}
>> +
>> +static void paint_image(igt_fb_t *fb)
>> +{
>> + cairo_t *cr = igt_get_cairo_ctx(fb->fd, fb);
>> + int img_x, img_y, img_w, img_h;
>> + const char *file = "1080p-left.png";
>> +
>> + img_x = img_y = 0;
>> + img_w = fb->width;
>> + img_h = fb->height;
>> +
>> + igt_paint_image(cr, file, img_x, img_y, img_w, img_h);
>> +
>> + igt_put_cairo_ctx(cr);
>> +}
>> +
>> +static void setup_fb(int fd, int width, int height, uint32_t format,
>> + uint64_t modifier, struct igt_fb *fb)
>> +{
>> + int fb_id;
>> +
>> + fb_id = igt_create_fb(fd, width, height, format, modifier, fb);
>> + igt_assert(fb_id);
>> +
>> + paint_image(fb);
>> +}
>> +
>> +static void cleanup(data_t *data)
>> +{
>> + igt_remove_fb(data->drm_fd, &data->fb);
>> + igt_remove_fb(data->drm_fd, &data->fb_ref);
>> + igt_output_set_pipe(data->output, PIPE_NONE);
>> + igt_output_override_mode(data->output, NULL);
>> + igt_display_commit2(&data->display, COMMIT_ATOMIC);
>> +}
>> +
>> +static bool test_t(data_t *data, igt_plane_t *primary,
>> + struct chamelium_port *port)
>> +{
>> + struct chamelium_frame_dump *dump;
>> + drmModeModeInfo *mode;
>> + int height, width;
>> + bool ret = false;
>> +
>> + igt_output_set_pipe(data->output, data->pipe_id);
>> +
>> + mode = igt_output_get_mode(data->output);
>> + height = mode->hdisplay;
>> + width = mode->vdisplay;
>> +
>> + setup_fb(data->drm_fd, height, width, DRM_FORMAT_XRGB8888,
>> DRM_FORMAT_MOD_LINEAR, &data->fb_ref);
>> + setup_fb(data->drm_fd, height, width, DRM_FORMAT_XRGB8888,
>> DRM_FORMAT_MOD_LINEAR, &data->fb);
>> +
>> + igt_plane_set_fb(data->primary, &data->fb);
>> + set_filter_strength_on_pipe(data);
>> + igt_display_commit2(&data->display, COMMIT_ATOMIC);
>
>
> Instead of setting the pipe and the property together, we can set the
> pipe and commit in the first step.
>
> After that, we can set the property and commit with the
> DRM_MODE_ATOMIC_ALLOW_MODESET flag set.
Sorry for the typo, I meant with the flag reset.
Regards,
Ankit
>
> This approach aligns with the general use case where the pipe is set
> first, followed by enabling sharpness, and this should occur without
> requiring a modeset.
>
> Otherwise, I agree with the test.
>
> Regards,
>
> Ankit
>
>> +
>> + igt_debug("Reading frame dumps from Chamelium...\n");
>> + chamelium_capture(data->chamelium, port, 0, 0, 0, 0, 1);
>> + dump = chamelium_read_captured_frame(data->chamelium, 0);
>> +
>> + ret = chamelium_frame_match_or_dump(data->chamelium, port,
>> + dump, &data->fb_ref,
>> + CHAMELIUM_CHECK_ANALOG);
>> + chamelium_destroy_frame_dump(dump);
>> + cleanup(data);
>> +
>> + return ret;
>> +}
>> +
>> +static int test_setup(data_t *data, enum pipe p)
>> +{
>> + igt_pipe_t *pipe;
>> + int i = 0;
>> +
>> + igt_display_reset(&data->display);
>> +
>> + pipe = &data->display.pipes[p];
>> + igt_require(pipe->n_planes >= 0);
>> +
>> + data->primary = igt_pipe_get_plane_type(pipe,
>> DRM_PLANE_TYPE_PRIMARY);
>> + igt_assert(data->primary);
>> +
>> + /*
>> + * Prefer to run this test on HDMI connector if its connected,
>> since on DP we
>> + * sometimes face DP FSM issue
>> + */
>> + for_each_valid_output_on_pipe(&data->display, p,
>> data->output) {
>> + data->pipe_id = p;
>> + for (i = 0; i < data->port_count; i++) {
>> + if ((data->output->config.connector->connector_type ==
>> DRM_MODE_CONNECTOR_HDMIA ||
>> + data->output->config.connector->connector_type ==
>> DRM_MODE_CONNECTOR_HDMIB) &&
>> + strcmp(data->output->name,
>> chamelium_port_get_name(data->ports[i])) == 0)
>> + return i;
>> + }
>> + }
>> +
>> + for_each_valid_output_on_pipe(&data->display, p, data->output) {
>> + data->pipe_id = p;
>> + for (i = 0; i < data->port_count; i++) {
>> + if (strcmp(data->output->name,
>> + chamelium_port_get_name(data->ports[i])) == 0)
>> + return i;
>> + }
>> + }
>> +
>> + return -1;
>> +}
>> +
>> +static void test_sharpness_filter(data_t *data, enum pipe p)
>> +{
>> + int port_idx = test_setup(data, p);
>> +
>> + igt_require(port_idx >= 0);
>> + igt_require(igt_pipe_obj_has_prop(&data->display.pipes[p],
>> IGT_CRTC_SHARPNESS_STRENGTH));
>> +
>> + if (!pipe_output_combo_valid(data, p))
>> + return;
>> +
>> + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(p),
>> data->output->name)
>> + igt_assert_f((test_t(data, data->primary,
>> data->ports[port_idx]) == 1), "No sharpness observed.\n");
>> +}
>> +
>> +static void
>> +run_sharpness_filter_test(data_t *data)
>> +{
>> + igt_display_t *display = &data->display;
>> + enum pipe pipe;
>> +
>> + igt_describe("Verify basic content adaptive sharpness filter.");
>> + igt_subtest_with_dynamic("filter-basic") {
>> + for_each_pipe(display, pipe) {
>> + data->filter_strength = MID_FILTER_STRENGTH;
>> + test_sharpness_filter(data, pipe);
>> + }
>> + }
>> +}
>> +
>> +igt_main
>> +{
>> + data_t data = {};
>> +
>> + igt_fixture {
>> + data.drm_fd = drm_open_driver_master(DRIVER_ANY);
>> +
>> + igt_display_require(&data.display, data.drm_fd);
>> + igt_require(data.display.is_atomic);
>> +
>> + igt_chamelium_allow_fsm_handling = false;
>> +
>> + /* we need to initalize chamelium after igt_display_require */
>> + data.chamelium = chamelium_init(data.drm_fd, &data.display);
>> + igt_require(data.chamelium);
>> +
>> + data.ports = chamelium_get_ports(data.chamelium,
>> + &data.port_count);
>> +
>> + if (!data.port_count)
>> + igt_skip("No ports connected\n");
>> + /*
>> + * We don't cause any harm by plugging
>> + * discovered ports, just incase they are not plugged
>> + * we currently skip in test_setup
>> + */
>> + for(int i = 0; i < data.port_count; i++)
>> + chamelium_plug(data.chamelium, data.ports[i]);
>> +
>> + kmstest_set_vt_graphics_mode();
>> + }
>> +
>> + run_sharpness_filter_test(&data);
>> +
>> + igt_fixture {
>> + igt_display_fini(&data.display);
>> + drm_close_driver(data.drm_fd);
>> + }
>> +}
>> diff --git a/tests/meson.build b/tests/meson.build
>> index aac3b4e10..09f7ed24b 100644
>> --- a/tests/meson.build
>> +++ b/tests/meson.build
>> @@ -345,6 +345,7 @@ chamelium_progs = [
>> 'kms_chamelium_edid',
>> 'kms_chamelium_frames',
>> 'kms_chamelium_hpd',
>> + 'kms_chamelium_sharpness_filter',
>> ]
>> test_deps = [ igt_deps ]
>> @@ -370,6 +371,7 @@ extra_sources = {
>> 'kms_chamelium_edid': [ join_paths ('chamelium',
>> 'kms_chamelium_helper.c') ],
>> 'kms_chamelium_frames': [ join_paths ('chamelium',
>> 'kms_chamelium_helper.c') ],
>> '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') ],
^ permalink raw reply [flat|nested] 20+ messages in thread
* [PATCH i-g-t 10/11] lib/igt_core: Add igt_dynamic_subtest_name()
2025-02-21 16:57 [PATCH i-g-t 00/11] Add new test to validate adaptive sharpness filter Swati Sharma
` (8 preceding siblings ...)
2025-02-21 16:57 ` [PATCH i-g-t, v3 09/11] tests/chamelium/kms_chamelium_sharpness_filter: Add basic test Swati Sharma
@ 2025-02-21 16:57 ` Swati Sharma
2025-03-26 6:00 ` [i-g-t,10/11] " Joshi, Kunal1
2025-02-21 16:57 ` [PATCH i-g-t 11/11] lib/igt_frame: Use igt_dynamic_subtest_name() Swati Sharma
` (4 subsequent siblings)
14 siblings, 1 reply; 20+ messages in thread
From: Swati Sharma @ 2025-02-21 16:57 UTC (permalink / raw)
To: igt-dev; +Cc: ankit.k.nautiyal, Swati Sharma
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
---
lib/igt_core.c | 11 +++++++++++
lib/igt_core.h | 1 +
2 files changed, 12 insertions(+)
diff --git a/lib/igt_core.c b/lib/igt_core.c
index b95db1b25..c6b17fd35 100644
--- a/lib/igt_core.c
+++ b/lib/igt_core.c
@@ -1588,6 +1588,17 @@ const char *igt_subtest_name(void)
return in_subtest;
}
+/**
+ * igt_dynamic_subtest_name:
+ *
+ * Returns: The name of the currently executed dynamic subtest or NULL if called from
+ * outside a dynamic subtest block.
+ */
+const char *igt_dynamic_subtest_name(void)
+{
+ return in_dynamic_subtest;
+}
+
/**
* igt_only_list_subtests:
*
diff --git a/lib/igt_core.h b/lib/igt_core.h
index 0f2af950b..45170e215 100644
--- a/lib/igt_core.h
+++ b/lib/igt_core.h
@@ -380,6 +380,7 @@ bool __igt_run_dynamic_subtest(const char *dynamic_subtest_name);
__igt_dynamic_f(igt_unique(__tmpchar), f)
const char *igt_subtest_name(void);
+const char *igt_dynamic_subtest_name(void);
bool igt_only_list_subtests(void);
void __igt_subtest_group_save(int *, int *);
--
2.25.1
^ permalink raw reply related [flat|nested] 20+ messages in thread* [PATCH i-g-t 11/11] lib/igt_frame: Use igt_dynamic_subtest_name()
2025-02-21 16:57 [PATCH i-g-t 00/11] Add new test to validate adaptive sharpness filter Swati Sharma
` (9 preceding siblings ...)
2025-02-21 16:57 ` [PATCH i-g-t 10/11] lib/igt_core: Add igt_dynamic_subtest_name() Swati Sharma
@ 2025-02-21 16:57 ` Swati Sharma
2025-03-26 6:02 ` [i-g-t,11/11] " Joshi, Kunal1
2025-02-21 17:40 ` ✓ Xe.CI.BAT: success for Add new test to validate adaptive sharpness filter (rev12) Patchwork
` (3 subsequent siblings)
14 siblings, 1 reply; 20+ messages in thread
From: Swati Sharma @ 2025-02-21 16:57 UTC (permalink / raw)
To: igt-dev; +Cc: ankit.k.nautiyal, Swati Sharma
For dumped images, print dynamic subtest name too.
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
---
lib/igt_frame.c | 25 ++++++++++++++++---------
1 file changed, 16 insertions(+), 9 deletions(-)
diff --git a/lib/igt_frame.c b/lib/igt_frame.c
index 45523a79f..ff3597718 100644
--- a/lib/igt_frame.c
+++ b/lib/igt_frame.c
@@ -63,19 +63,22 @@ static void igt_write_frame_to_png(cairo_surface_t *surface, int fd,
char path[PATH_MAX];
const char *test_name;
const char *subtest_name;
+ const char *dynamic_subtest_name;
cairo_status_t status;
int index;
test_name = igt_test_name();
subtest_name = igt_subtest_name();
+ dynamic_subtest_name = igt_dynamic_subtest_name();
if (suffix)
- snprintf(path, PATH_MAX, "%s/frame-%s-%s-%s-%s.png",
- igt_frame_dump_path, test_name, subtest_name, qualifier,
- suffix);
+ snprintf(path, PATH_MAX, "%s/frame-%s-%s-%s-%s-%s.png",
+ igt_frame_dump_path, test_name, subtest_name,
+ dynamic_subtest_name, qualifier, suffix);
else
- snprintf(path, PATH_MAX, "%s/frame-%s-%s-%s.png",
- igt_frame_dump_path, test_name, subtest_name, qualifier);
+ snprintf(path, PATH_MAX, "%s/frame-%s-%s-%s-%s.png",
+ igt_frame_dump_path, test_name, subtest_name,
+ dynamic_subtest_name, qualifier);
igt_debug("Dumping %s frame to %s...\n", qualifier, path);
@@ -110,6 +113,7 @@ void igt_write_compared_frames_to_png(cairo_surface_t *reference,
char *id;
const char *test_name;
const char *subtest_name;
+ const char *dynamic_subtest_name;
char path[PATH_MAX];
int fd = -1;
@@ -120,13 +124,16 @@ void igt_write_compared_frames_to_png(cairo_surface_t *reference,
test_name = igt_test_name();
subtest_name = igt_subtest_name();
+ dynamic_subtest_name = igt_dynamic_subtest_name();
if (id)
- snprintf(path, PATH_MAX, "%s/frame-%s-%s-%s.txt",
- igt_frame_dump_path, test_name, subtest_name, id);
+ snprintf(path, PATH_MAX, "%s/frame-%s-%s-%s-%s.txt",
+ igt_frame_dump_path, test_name, subtest_name,
+ dynamic_subtest_name, id);
else
- snprintf(path, PATH_MAX, "%s/frame-%s-%s.txt",
- igt_frame_dump_path, test_name, subtest_name);
+ snprintf(path, PATH_MAX, "%s/frame-%s-%s-%s.txt",
+ igt_frame_dump_path, test_name, subtest_name,
+ dynamic_subtest_name);
fd = open(path, O_WRONLY | O_CREAT | O_TRUNC, 0644);
igt_assert(fd >= 0);
--
2.25.1
^ permalink raw reply related [flat|nested] 20+ messages in thread* ✓ Xe.CI.BAT: success for Add new test to validate adaptive sharpness filter (rev12)
2025-02-21 16:57 [PATCH i-g-t 00/11] Add new test to validate adaptive sharpness filter Swati Sharma
` (10 preceding siblings ...)
2025-02-21 16:57 ` [PATCH i-g-t 11/11] lib/igt_frame: Use igt_dynamic_subtest_name() Swati Sharma
@ 2025-02-21 17:40 ` Patchwork
2025-02-21 17:42 ` ✓ i915.CI.BAT: " Patchwork
` (2 subsequent siblings)
14 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2025-02-21 17:40 UTC (permalink / raw)
To: Swati Sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2734 bytes --]
== Series Details ==
Series: Add new test to validate adaptive sharpness filter (rev12)
URL : https://patchwork.freedesktop.org/series/130218/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8245_BAT -> XEIGTPW_12651_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (8 -> 8)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_12651_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_live_ktest@xe_dma_buf:
- bat-bmg-2: [PASS][1] -> [SKIP][2] ([Intel XE#4322]) +2 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/bat-bmg-2/igt@xe_live_ktest@xe_dma_buf.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/bat-bmg-2/igt@xe_live_ktest@xe_dma_buf.html
* igt@xe_live_ktest@xe_migrate:
- bat-bmg-1: [PASS][3] -> [SKIP][4] ([Intel XE#4322]) +2 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/bat-bmg-1/igt@xe_live_ktest@xe_migrate.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/bat-bmg-1/igt@xe_live_ktest@xe_migrate.html
- bat-lnl-1: [PASS][5] -> [SKIP][6] ([Intel XE#4322]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/bat-lnl-1/igt@xe_live_ktest@xe_migrate.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/bat-lnl-1/igt@xe_live_ktest@xe_migrate.html
#### Warnings ####
* igt@xe_live_ktest@xe_bo:
- bat-lnl-1: [SKIP][7] ([Intel XE#2229]) -> [SKIP][8] ([Intel XE#4322])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/bat-lnl-1/igt@xe_live_ktest@xe_bo.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/bat-lnl-1/igt@xe_live_ktest@xe_bo.html
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#4322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4322
Build changes
-------------
* IGT: IGT_8245 -> IGTPW_12651
* Linux: xe-2695-8554d5b7b4fded481a85ab11d75eeb97443450e2 -> xe-2698-a22ac320a08377d760e73fa530c27782f0b68b6d
IGTPW_12651: 00e2330301489d16888c5a1d3e75f03ac2cc7d90 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8245: 822e95b2560133bc21aa3065f70d7148f23f87cf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2695-8554d5b7b4fded481a85ab11d75eeb97443450e2: 8554d5b7b4fded481a85ab11d75eeb97443450e2
xe-2698-a22ac320a08377d760e73fa530c27782f0b68b6d: a22ac320a08377d760e73fa530c27782f0b68b6d
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/index.html
[-- Attachment #2: Type: text/html, Size: 3588 bytes --]
^ permalink raw reply [flat|nested] 20+ messages in thread* ✓ i915.CI.BAT: success for Add new test to validate adaptive sharpness filter (rev12)
2025-02-21 16:57 [PATCH i-g-t 00/11] Add new test to validate adaptive sharpness filter Swati Sharma
` (11 preceding siblings ...)
2025-02-21 17:40 ` ✓ Xe.CI.BAT: success for Add new test to validate adaptive sharpness filter (rev12) Patchwork
@ 2025-02-21 17:42 ` Patchwork
2025-02-21 19:58 ` ✗ i915.CI.Full: failure " Patchwork
2025-02-22 7:35 ` ✗ Xe.CI.Full: " Patchwork
14 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2025-02-21 17:42 UTC (permalink / raw)
To: Swati Sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2975 bytes --]
== Series Details ==
Series: Add new test to validate adaptive sharpness filter (rev12)
URL : https://patchwork.freedesktop.org/series/130218/
State : success
== Summary ==
CI Bug Log - changes from IGT_8245 -> IGTPW_12651
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/index.html
Participating hosts (44 -> 40)
------------------------------
Missing (4): bat-adls-6 fi-rkl-11600 fi-snb-2520m fi-pnv-d510
Known issues
------------
Here are the changes found in IGTPW_12651 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live:
- bat-twl-2: [PASS][1] -> [ABORT][2] ([i915#12919] / [i915#13503])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8245/bat-twl-2/igt@i915_selftest@live.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/bat-twl-2/igt@i915_selftest@live.html
* igt@i915_selftest@live@gt_engines:
- bat-twl-2: [PASS][3] -> [ABORT][4] ([i915#12919])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8245/bat-twl-2/igt@i915_selftest@live@gt_engines.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/bat-twl-2/igt@i915_selftest@live@gt_engines.html
* igt@i915_selftest@live@workarounds:
- bat-mtlp-6: [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8245/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@i915_selftest@live@workarounds:
- bat-arlh-2: [DMESG-FAIL][7] ([i915#12061]) -> [PASS][8] +1 other test pass
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8245/bat-arlh-2/igt@i915_selftest@live@workarounds.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/bat-arlh-2/igt@i915_selftest@live@workarounds.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919
[i915#13503]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13503
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8245 -> IGTPW_12651
* Linux: CI_DRM_16164 -> CI_DRM_16167
CI-20190529: 20190529
CI_DRM_16164: 8554d5b7b4fded481a85ab11d75eeb97443450e2 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_16167: a22ac320a08377d760e73fa530c27782f0b68b6d @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12651: 00e2330301489d16888c5a1d3e75f03ac2cc7d90 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8245: 822e95b2560133bc21aa3065f70d7148f23f87cf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/index.html
[-- Attachment #2: Type: text/html, Size: 3817 bytes --]
^ permalink raw reply [flat|nested] 20+ messages in thread* ✗ i915.CI.Full: failure for Add new test to validate adaptive sharpness filter (rev12)
2025-02-21 16:57 [PATCH i-g-t 00/11] Add new test to validate adaptive sharpness filter Swati Sharma
` (12 preceding siblings ...)
2025-02-21 17:42 ` ✓ i915.CI.BAT: " Patchwork
@ 2025-02-21 19:58 ` Patchwork
2025-02-22 7:35 ` ✗ Xe.CI.Full: " Patchwork
14 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2025-02-21 19:58 UTC (permalink / raw)
To: Swati Sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 131835 bytes --]
== Series Details ==
Series: Add new test to validate adaptive sharpness filter (rev12)
URL : https://patchwork.freedesktop.org/series/130218/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_16167_full -> IGTPW_12651_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12651_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12651_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_12651/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_12651_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-mtlp: [PASS][1] -> [FAIL][2] +2 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-mtlp-1/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-7/igt@kms_flip@flip-vs-absolute-wf_vblank.html
- shard-rkl: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-rkl-3/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-2/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-dg2: [PASS][5] -> [FAIL][6] +1 other test fail
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-dg2-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
- shard-tglu: [PASS][7] -> [FAIL][8] +1 other test fail
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-tglu-9/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-9/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-vga1:
- shard-snb: [PASS][9] -> [FAIL][10] +3 other tests fail
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-snb5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-vga1.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-snb5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-vga1.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1:
- shard-rkl: NOTRUN -> [FAIL][11]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-2/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1.html
* igt@kms_sharpness_filter@filter-formats (NEW):
- shard-dg2: NOTRUN -> [SKIP][12] +8 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-3/igt@kms_sharpness_filter@filter-formats.html
* igt@kms_sharpness_filter@filter-scaler-downscale (NEW):
- shard-rkl: NOTRUN -> [SKIP][13] +12 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-2/igt@kms_sharpness_filter@filter-scaler-downscale.html
- shard-dg1: NOTRUN -> [SKIP][14] +13 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-13/igt@kms_sharpness_filter@filter-scaler-downscale.html
* igt@kms_sharpness_filter@filter-suspend (NEW):
- shard-dg2-9: NOTRUN -> [SKIP][15] +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@kms_sharpness_filter@filter-suspend.html
* igt@kms_sharpness_filter@filter-toggle (NEW):
- shard-tglu: NOTRUN -> [SKIP][16] +13 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-6/igt@kms_sharpness_filter@filter-toggle.html
* igt@kms_sharpness_filter@invalid-filter-with-scaler (NEW):
- shard-mtlp: NOTRUN -> [SKIP][17] +10 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-4/igt@kms_sharpness_filter@invalid-filter-with-scaler.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@kms_dp_link_training@uhbr-sst}:
- shard-dg1: NOTRUN -> [SKIP][18]
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-13/igt@kms_dp_link_training@uhbr-sst.html
- shard-tglu: NOTRUN -> [SKIP][19]
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-8/igt@kms_dp_link_training@uhbr-sst.html
- shard-dg2-9: NOTRUN -> [SKIP][20]
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@kms_dp_link_training@uhbr-sst.html
New tests
---------
New tests have been introduced between CI_DRM_16167_full and IGTPW_12651_full:
### New IGT tests (17) ###
* igt@kms_chamelium_sharpness_filter@filter-basic:
- Statuses : 6 skip(s)
- Exec time: [0.0] s
* igt@kms_cursor_edge_walk@128x128-left-edge@pipe-a-vga-1:
- Statuses : 1 pass(s)
- Exec time: [3.42] s
* igt@kms_sharpness_filter@filter-basic:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_sharpness_filter@filter-dpms:
- Statuses : 7 skip(s)
- Exec time: [0.0, 0.00] s
* igt@kms_sharpness_filter@filter-formats:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.01] s
* igt@kms_sharpness_filter@filter-modifiers:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_sharpness_filter@filter-rotations:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.00] s
* igt@kms_sharpness_filter@filter-scaler-downscale:
- Statuses : 5 skip(s)
- Exec time: [0.0, 0.00] s
* igt@kms_sharpness_filter@filter-scaler-upscale:
- Statuses : 3 skip(s)
- Exec time: [0.0, 0.00] s
* igt@kms_sharpness_filter@filter-strength:
- Statuses : 6 skip(s)
- Exec time: [0.00, 0.01] s
* igt@kms_sharpness_filter@filter-suspend:
- Statuses : 5 skip(s)
- Exec time: [0.0, 0.00] s
* igt@kms_sharpness_filter@filter-tap:
- Statuses : 7 skip(s)
- Exec time: [0.0, 0.00] s
* igt@kms_sharpness_filter@filter-toggle:
- Statuses : 5 skip(s)
- Exec time: [0.0, 0.00] s
* igt@kms_sharpness_filter@invalid-filter-with-plane:
- Statuses : 7 skip(s)
- Exec time: [0.0, 0.00] s
* igt@kms_sharpness_filter@invalid-filter-with-scaler:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.00] s
* igt@kms_sharpness_filter@invalid-filter-with-scaling-mode:
- Statuses : 7 skip(s)
- Exec time: [0.0, 0.01] s
* igt@kms_sharpness_filter@invalid-plane-with-filter:
- Statuses : 6 skip(s)
- Exec time: [0.0, 0.00] s
Known issues
------------
Here are the changes found in IGTPW_12651_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-dg2-9: NOTRUN -> [SKIP][21] ([i915#8411]) +2 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@debugfs_test@basic-hwmon:
- shard-tglu: NOTRUN -> [SKIP][22] ([i915#9318])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-2/igt@debugfs_test@basic-hwmon.html
* igt@dmabuf@all-tests@dma_fence_chain:
- shard-rkl: [PASS][23] -> [DMESG-WARN][24] ([i915#12964]) +41 other tests dmesg-warn
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-rkl-8/igt@dmabuf@all-tests@dma_fence_chain.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-5/igt@dmabuf@all-tests@dma_fence_chain.html
* igt@drm_fdinfo@most-busy-check-all@bcs0:
- shard-dg2: NOTRUN -> [SKIP][25] ([i915#8414]) +10 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-6/igt@drm_fdinfo@most-busy-check-all@bcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@vecs1:
- shard-dg2-9: NOTRUN -> [SKIP][26] ([i915#8414]) +7 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html
* igt@drm_fdinfo@virtual-busy-hang-all:
- shard-mtlp: NOTRUN -> [SKIP][27] ([i915#8414])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-2/igt@drm_fdinfo@virtual-busy-hang-all.html
- shard-dg1: NOTRUN -> [SKIP][28] ([i915#8414])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-18/igt@drm_fdinfo@virtual-busy-hang-all.html
* igt@gem_basic@multigpu-create-close:
- shard-dg1: NOTRUN -> [SKIP][29] ([i915#7697])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-17/igt@gem_basic@multigpu-create-close.html
- shard-tglu: NOTRUN -> [SKIP][30] ([i915#7697])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-3/igt@gem_basic@multigpu-create-close.html
* igt@gem_busy@semaphore:
- shard-mtlp: NOTRUN -> [SKIP][31] ([i915#3936])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-6/igt@gem_busy@semaphore.html
* igt@gem_ccs@block-copy-compressed:
- shard-tglu: NOTRUN -> [SKIP][32] ([i915#3555] / [i915#9323])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-6/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: NOTRUN -> [INCOMPLETE][33] ([i915#13356])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-10/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][34] ([i915#12392] / [i915#13356])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-10/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_compute@compute-square:
- shard-dg2-9: NOTRUN -> [FAIL][35] ([i915#13665])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@gem_compute@compute-square.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2-9: NOTRUN -> [ABORT][36] ([i915#13427])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-set-pat:
- shard-tglu: NOTRUN -> [SKIP][37] ([i915#8562])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-3/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_persistence@engines-cleanup:
- shard-snb: NOTRUN -> [SKIP][38] ([i915#1099]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-snb7/igt@gem_ctx_persistence@engines-cleanup.html
* igt@gem_ctx_persistence@hang:
- shard-dg1: NOTRUN -> [SKIP][39] ([i915#8555])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-15/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-mtlp: NOTRUN -> [SKIP][40] ([i915#8555])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-3/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_ctx_sseu@invalid-args:
- shard-tglu: NOTRUN -> [SKIP][41] ([i915#280])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-7/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_eio@context-create:
- shard-mtlp: [PASS][42] -> [ABORT][43] ([i915#13193]) +3 other tests abort
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-mtlp-8/igt@gem_eio@context-create.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-7/igt@gem_eio@context-create.html
* igt@gem_eio@hibernate:
- shard-tglu: NOTRUN -> [ABORT][44] ([i915#7975])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-3/igt@gem_eio@hibernate.html
- shard-mtlp: NOTRUN -> [ABORT][45] ([i915#7975])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-7/igt@gem_eio@hibernate.html
* igt@gem_eio@kms:
- shard-mtlp: NOTRUN -> [ABORT][46] ([i915#13193]) +1 other test abort
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-7/igt@gem_eio@kms.html
- shard-dg1: NOTRUN -> [FAIL][47] ([i915#5784])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-14/igt@gem_eio@kms.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [PASS][48] -> [FAIL][49] ([i915#12714] / [i915#5784])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-dg1-12/igt@gem_eio@unwedge-stress.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-13/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@bonded-dual:
- shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4771])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-6/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@bonded-semaphore:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#4812])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-5/igt@gem_exec_balancer@bonded-semaphore.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-dg2-9: NOTRUN -> [SKIP][52] ([i915#4812]) +2 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@sliced:
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4812])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-1/igt@gem_exec_balancer@sliced.html
* igt@gem_exec_big@single:
- shard-tglu: NOTRUN -> [ABORT][54] ([i915#11713])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-9/igt@gem_exec_big@single.html
* igt@gem_exec_capture@capture@vecs0-lmem0:
- shard-dg2: NOTRUN -> [FAIL][55] ([i915#11965]) +4 other tests fail
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-8/igt@gem_exec_capture@capture@vecs0-lmem0.html
* igt@gem_exec_flush@basic-uc-pro-default:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#3539] / [i915#4852]) +3 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-8/igt@gem_exec_flush@basic-uc-pro-default.html
- shard-dg1: NOTRUN -> [SKIP][57] ([i915#3539] / [i915#4852]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-13/igt@gem_exec_flush@basic-uc-pro-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-dg2-9: NOTRUN -> [SKIP][58] ([i915#5107])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-cpu-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#3281]) +6 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-6/igt@gem_exec_reloc@basic-cpu-noreloc.html
* igt@gem_exec_reloc@basic-gtt-cpu:
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#3281]) +2 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-17/igt@gem_exec_reloc@basic-gtt-cpu.html
* igt@gem_exec_reloc@basic-gtt-wc-noreloc:
- shard-rkl: NOTRUN -> [SKIP][61] ([i915#3281])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
* igt@gem_exec_reloc@basic-softpin:
- shard-dg2-9: NOTRUN -> [SKIP][62] ([i915#3281]) +8 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@gem_exec_reloc@basic-softpin.html
* igt@gem_exec_reloc@basic-wc-gtt:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#3281]) +4 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-7/igt@gem_exec_reloc@basic-wc-gtt.html
* igt@gem_exec_schedule@deep@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4537])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-6/igt@gem_exec_schedule@deep@rcs0.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#4812])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-13/igt@gem_exec_schedule@preempt-queue-contexts.html
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#4537] / [i915#4812])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-6/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_exec_suspend@basic-s3@smem:
- shard-glk: NOTRUN -> [INCOMPLETE][67] ([i915#13196]) +1 other test incomplete
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-glk2/igt@gem_exec_suspend@basic-s3@smem.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-dg2: NOTRUN -> [ABORT][68] ([i915#7975]) +1 other test abort
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-6/igt@gem_exec_suspend@basic-s4-devices.html
* igt@gem_fence_thrash@bo-write-verify-y:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#4860]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-1/igt@gem_fence_thrash@bo-write-verify-y.html
- shard-dg1: NOTRUN -> [SKIP][70] ([i915#4860])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-19/igt@gem_fence_thrash@bo-write-verify-y.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible:
- shard-dg2-9: NOTRUN -> [SKIP][71] ([i915#4860]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html
* igt@gem_fenced_exec_thrash@too-many-fences:
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4860]) +2 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-4/igt@gem_fenced_exec_thrash@too-many-fences.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][73] ([i915#2190])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-5/igt@gem_huc_copy@huc-copy.html
- shard-glk: NOTRUN -> [SKIP][74] ([i915#2190])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-glk1/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-random:
- shard-glk: NOTRUN -> [SKIP][75] ([i915#4613]) +3 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-glk7/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-tglu-1: NOTRUN -> [SKIP][76] ([i915#4613])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-rkl: NOTRUN -> [SKIP][77] ([i915#4613])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-3/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-tglu: NOTRUN -> [SKIP][78] ([i915#4613]) +2 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-8/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@smem-oom:
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#4613]) +2 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-4/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2-9: NOTRUN -> [DMESG-WARN][80] ([i915#5493]) +1 other test dmesg-warn
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@gem_lmem_swapping@smem-oom@lmem0.html
- shard-dg1: NOTRUN -> [TIMEOUT][81] ([i915#5493]) +1 other test timeout
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_media_fill@media-fill:
- shard-dg2-9: NOTRUN -> [SKIP][82] ([i915#8289])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@gem_media_fill@media-fill.html
* igt@gem_mmap_gtt@basic-small-bo:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#4077]) +8 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-5/igt@gem_mmap_gtt@basic-small-bo.html
* igt@gem_mmap_gtt@basic-write-read:
- shard-mtlp: NOTRUN -> [SKIP][84] ([i915#4077]) +7 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-4/igt@gem_mmap_gtt@basic-write-read.html
* igt@gem_mmap_gtt@big-bo-tiledx:
- shard-dg2-9: NOTRUN -> [SKIP][85] ([i915#4077]) +5 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@gem_mmap_gtt@big-bo-tiledx.html
* igt@gem_mmap_gtt@big-copy-xy:
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#4077]) +3 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-14/igt@gem_mmap_gtt@big-copy-xy.html
* igt@gem_mmap_wc@bad-size:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#4083]) +2 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-3/igt@gem_mmap_wc@bad-size.html
* igt@gem_mmap_wc@read:
- shard-dg1: NOTRUN -> [SKIP][88] ([i915#4083]) +2 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-13/igt@gem_mmap_wc@read.html
* igt@gem_mmap_wc@read-write:
- shard-dg2-9: NOTRUN -> [SKIP][89] ([i915#4083]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@gem_mmap_wc@read-write.html
* igt@gem_mmap_wc@set-cache-level:
- shard-mtlp: NOTRUN -> [SKIP][90] ([i915#4083]) +3 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-2/igt@gem_mmap_wc@set-cache-level.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-dg1: NOTRUN -> [SKIP][91] ([i915#3282])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-13/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_pread@self:
- shard-dg2-9: NOTRUN -> [SKIP][92] ([i915#3282]) +2 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@gem_pread@self.html
* igt@gem_pwrite@basic-exhaustion:
- shard-rkl: NOTRUN -> [SKIP][93] ([i915#3282])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-6/igt@gem_pwrite@basic-exhaustion.html
- shard-snb: NOTRUN -> [WARN][94] ([i915#2658])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-snb2/igt@gem_pwrite@basic-exhaustion.html
- shard-glk: NOTRUN -> [WARN][95] ([i915#2658])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-glk4/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@create-regular-context-1:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#4270]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-4/igt@gem_pxp@create-regular-context-1.html
* igt@gem_pxp@create-valid-protected-context:
- shard-rkl: [PASS][97] -> [TIMEOUT][98] ([i915#12964])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-rkl-8/igt@gem_pxp@create-valid-protected-context.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-7/igt@gem_pxp@create-valid-protected-context.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg2-9: NOTRUN -> [SKIP][99] ([i915#4270]) +2 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@reject-modify-context-protection-off-3:
- shard-snb: NOTRUN -> [SKIP][100] +146 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-snb4/igt@gem_pxp@reject-modify-context-protection-off-3.html
- shard-dg1: NOTRUN -> [SKIP][101] ([i915#4270]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-15/igt@gem_pxp@reject-modify-context-protection-off-3.html
* igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
- shard-rkl: NOTRUN -> [TIMEOUT][102] ([i915#12917] / [i915#12964])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-4/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
* igt@gem_readwrite@beyond-eob:
- shard-dg2: NOTRUN -> [SKIP][103] ([i915#3282]) +2 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-1/igt@gem_readwrite@beyond-eob.html
* igt@gem_readwrite@write-bad-handle:
- shard-mtlp: NOTRUN -> [SKIP][104] ([i915#3282]) +2 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-6/igt@gem_readwrite@write-bad-handle.html
* igt@gem_render_copy@mixed-tiled-to-y-tiled-ccs:
- shard-dg2: NOTRUN -> [SKIP][105] ([i915#5190] / [i915#8428]) +4 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-8/igt@gem_render_copy@mixed-tiled-to-y-tiled-ccs.html
* igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
- shard-dg2-9: NOTRUN -> [SKIP][106] ([i915#5190] / [i915#8428]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
- shard-mtlp: NOTRUN -> [SKIP][107] ([i915#8428]) +5 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-6/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
* igt@gem_render_tiled_blits@basic:
- shard-mtlp: NOTRUN -> [SKIP][108] ([i915#4079])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-2/igt@gem_render_tiled_blits@basic.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2-9: NOTRUN -> [SKIP][109] ([i915#4079]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_softpin@evict-snoop:
- shard-dg2: NOTRUN -> [SKIP][110] ([i915#4885])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-6/igt@gem_softpin@evict-snoop.html
* igt@gem_tiled_pread_pwrite:
- shard-dg2: NOTRUN -> [SKIP][111] ([i915#4079])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-6/igt@gem_tiled_pread_pwrite.html
* igt@gem_tiled_swapping@non-threaded:
- shard-rkl: [PASS][112] -> [FAIL][113] ([i915#12941])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-rkl-2/igt@gem_tiled_swapping@non-threaded.html
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-5/igt@gem_tiled_swapping@non-threaded.html
- shard-tglu: [PASS][114] -> [FAIL][115] ([i915#12941])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-tglu-2/igt@gem_tiled_swapping@non-threaded.html
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-5/igt@gem_tiled_swapping@non-threaded.html
* igt@gem_unfence_active_buffers:
- shard-dg2: NOTRUN -> [SKIP][116] ([i915#4879])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-11/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-mtlp: NOTRUN -> [SKIP][117] ([i915#3297]) +1 other test skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-6/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#3297]) +1 other test skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-11/igt@gem_userptr_blits@readonly-unsync.html
- shard-dg1: NOTRUN -> [SKIP][119] ([i915#3297])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-17/igt@gem_userptr_blits@readonly-unsync.html
- shard-tglu: NOTRUN -> [SKIP][120] ([i915#3297]) +1 other test skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-3/igt@gem_userptr_blits@readonly-unsync.html
* igt@gem_userptr_blits@relocations:
- shard-dg2-9: NOTRUN -> [SKIP][121] ([i915#3281] / [i915#3297])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@gem_userptr_blits@relocations.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#3297] / [i915#4958])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-3/igt@gem_userptr_blits@sd-probe.html
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#3297] / [i915#4958])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-16/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-dg2-9: NOTRUN -> [SKIP][124] ([i915#3297])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@gem_userptr_blits@unsync-unmap.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-rkl: NOTRUN -> [SKIP][125] ([i915#3297]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-2/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gem_workarounds@suspend-resume-fd:
- shard-rkl: [PASS][126] -> [DMESG-FAIL][127] ([i915#12964]) +2 other tests dmesg-fail
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-rkl-4/igt@gem_workarounds@suspend-resume-fd.html
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-4/igt@gem_workarounds@suspend-resume-fd.html
* igt@gen3_render_mixed_blits:
- shard-dg2: NOTRUN -> [SKIP][128] +6 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-1/igt@gen3_render_mixed_blits.html
* igt@gen3_render_tiledy_blits:
- shard-mtlp: NOTRUN -> [SKIP][129] +13 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-7/igt@gen3_render_tiledy_blits.html
* igt@gen9_exec_parse@allowed-single:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#2856]) +2 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-10/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-tglu: NOTRUN -> [SKIP][131] ([i915#2527] / [i915#2856]) +2 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-6/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-tglu-1: NOTRUN -> [SKIP][132] ([i915#2527] / [i915#2856])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-1/igt@gen9_exec_parse@batch-invalid-length.html
- shard-dg1: NOTRUN -> [SKIP][133] ([i915#2527]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-13/igt@gen9_exec_parse@batch-invalid-length.html
- shard-mtlp: NOTRUN -> [SKIP][134] ([i915#2856]) +1 other test skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-6/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@bb-start-out:
- shard-rkl: NOTRUN -> [SKIP][135] ([i915#2527]) +1 other test skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-7/igt@gen9_exec_parse@bb-start-out.html
* igt@gen9_exec_parse@bb-start-param:
- shard-dg2-9: NOTRUN -> [SKIP][136] ([i915#2856]) +3 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@gen9_exec_parse@bb-start-param.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: [PASS][137] -> [ABORT][138] ([i915#9820])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-rkl-1/igt@i915_module_load@reload-with-fault-injection.html
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-2/igt@i915_module_load@reload-with-fault-injection.html
- shard-glk: NOTRUN -> [ABORT][139] ([i915#13592])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-glk2/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-tglu: NOTRUN -> [SKIP][140] ([i915#8399])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-9/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-tglu: NOTRUN -> [SKIP][141] ([i915#6590]) +1 other test skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-3/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- shard-rkl: NOTRUN -> [SKIP][142] +12 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-6/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglu: NOTRUN -> [WARN][143] ([i915#2681]) +1 other test warn
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_pm_rpm@debugfs-forcewake-user:
- shard-rkl: [PASS][144] -> [SKIP][145] ([i915#13328])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-rkl-3/igt@i915_pm_rpm@debugfs-forcewake-user.html
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-4/igt@i915_pm_rpm@debugfs-forcewake-user.html
- shard-glk: NOTRUN -> [DMESG-WARN][146] ([i915#118])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-glk9/igt@i915_pm_rpm@debugfs-forcewake-user.html
* igt@i915_pm_rps@basic-api:
- shard-mtlp: NOTRUN -> [SKIP][147] ([i915#11681] / [i915#6621])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-7/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_rps@thresholds-idle:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#11681])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-11/igt@i915_pm_rps@thresholds-idle.html
* igt@i915_pm_rps@thresholds-park:
- shard-dg2-9: NOTRUN -> [SKIP][149] ([i915#11681])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@i915_pm_rps@thresholds-park.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#4387])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-4/igt@i915_pm_sseu@full-enable.html
- shard-dg1: NOTRUN -> [SKIP][151] ([i915#4387])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-17/igt@i915_pm_sseu@full-enable.html
- shard-mtlp: NOTRUN -> [SKIP][152] ([i915#8437])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-7/igt@i915_pm_sseu@full-enable.html
* igt@i915_selftest@mock:
- shard-glk: NOTRUN -> [DMESG-WARN][153] ([i915#9311]) +1 other test dmesg-warn
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-glk8/igt@i915_selftest@mock.html
* igt@i915_selftest@mock@memory_region:
- shard-dg2: NOTRUN -> [DMESG-WARN][154] ([i915#9311]) +1 other test dmesg-warn
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-3/igt@i915_selftest@mock@memory_region.html
* igt@i915_suspend@debugfs-reader:
- shard-glk: NOTRUN -> [INCOMPLETE][155] ([i915#4817]) +1 other test incomplete
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-glk7/igt@i915_suspend@debugfs-reader.html
* igt@intel_hwmon@hwmon-write:
- shard-tglu: NOTRUN -> [SKIP][156] ([i915#7707])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-3/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-mtlp: NOTRUN -> [SKIP][157] ([i915#4212]) +1 other test skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-7/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#4212])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-5/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-tglu: NOTRUN -> [SKIP][159] ([i915#12454] / [i915#12712])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-2/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- shard-dg2-9: NOTRUN -> [SKIP][160] ([i915#4212])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-2-4-mc-ccs:
- shard-dg2-9: NOTRUN -> [SKIP][161] ([i915#8709]) +7 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-2-4-mc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][162] ([i915#8709]) +2 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg2-9: NOTRUN -> [SKIP][163] ([i915#1769] / [i915#3555])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_atomic_transition@plane-all-transition@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [DMESG-WARN][164] ([i915#12964]) +13 other tests dmesg-warn
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-2/igt@kms_atomic_transition@plane-all-transition@pipe-a-hdmi-a-1.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-tglu-1: NOTRUN -> [SKIP][165] ([i915#5286])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-1/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][166] ([i915#5286]) +3 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-4/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-dg1: NOTRUN -> [SKIP][167] ([i915#5286])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-16/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: NOTRUN -> [SKIP][168] ([i915#5286]) +4 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-dg1: NOTRUN -> [SKIP][169] ([i915#4538] / [i915#5286])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-mtlp: [PASS][170] -> [FAIL][171] ([i915#5138])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][172] ([i915#3638])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-6/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-dg2-9: NOTRUN -> [SKIP][173] +7 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][174] ([i915#4538] / [i915#5190]) +10 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-3/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-dg2-9: NOTRUN -> [SKIP][175] ([i915#4538] / [i915#5190]) +9 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][176] ([i915#4538]) +1 other test skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][177] ([i915#6095]) +113 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-19/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][178] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-8/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][179] ([i915#6095]) +54 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-6/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-dg2-9: NOTRUN -> [SKIP][180] ([i915#12313])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-3:
- shard-dg2: NOTRUN -> [SKIP][181] ([i915#10307] / [i915#6095]) +111 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-11/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-3.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2:
- shard-dg2-9: NOTRUN -> [SKIP][182] ([i915#10307] / [i915#6095]) +64 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][183] ([i915#12313])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-15/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][184] ([i915#12313]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#12313]) +2 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#6095]) +90 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][187] ([i915#6095]) +9 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-2:
- shard-dg2-9: NOTRUN -> [SKIP][188] ([i915#6095]) +4 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][189] ([i915#12796]) +3 other tests incomplete
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-glk8/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#6095]) +21 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][191] ([i915#6095]) +49 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#12313])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-rkl: NOTRUN -> [SKIP][193] ([i915#3742])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-7/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#11616] / [i915#7213]) +3 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-8/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][195] ([i915#4087]) +4 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-3/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html
* igt@kms_chamelium_edid@dp-edid-read:
- shard-dg2-9: NOTRUN -> [SKIP][196] ([i915#11151] / [i915#7828]) +4 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@kms_chamelium_edid@dp-edid-read.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-4k:
- shard-rkl: NOTRUN -> [SKIP][197] ([i915#11151] / [i915#7828]) +2 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-3/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-tglu-1: NOTRUN -> [SKIP][198] ([i915#11151] / [i915#7828]) +2 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-1/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#11151] / [i915#7828]) +4 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-6/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-dg1: NOTRUN -> [SKIP][200] ([i915#11151] / [i915#7828]) +1 other test skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-15/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:
- shard-mtlp: NOTRUN -> [SKIP][201] ([i915#11151] / [i915#7828]) +5 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-6/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
- shard-tglu: NOTRUN -> [SKIP][202] ([i915#11151] / [i915#7828]) +5 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-3/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
* igt@kms_content_protection@atomic:
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#7118] / [i915#9424])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-3/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#3299])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-4/igt@kms_content_protection@dp-mst-lic-type-1.html
- shard-dg1: NOTRUN -> [SKIP][205] ([i915#3299])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-17/igt@kms_content_protection@dp-mst-lic-type-1.html
- shard-tglu: NOTRUN -> [SKIP][206] ([i915#3116] / [i915#3299])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-2/igt@kms_content_protection@dp-mst-lic-type-1.html
- shard-mtlp: NOTRUN -> [SKIP][207] ([i915#3299])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-7/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#3116]) +1 other test skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-7/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-tglu-1: NOTRUN -> [SKIP][209] ([i915#3116] / [i915#3299])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-1/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy:
- shard-rkl: NOTRUN -> [SKIP][210] ([i915#7118] / [i915#9424])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-4/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@mei-interface:
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#9424])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-11/igt@kms_content_protection@mei-interface.html
- shard-dg1: NOTRUN -> [SKIP][212] ([i915#9424])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-17/igt@kms_content_protection@mei-interface.html
- shard-mtlp: NOTRUN -> [SKIP][213] ([i915#8063] / [i915#9433])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-4/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-mtlp: NOTRUN -> [SKIP][214] ([i915#6944])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-6/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-dg2-9: NOTRUN -> [SKIP][215] ([i915#7118] / [i915#9424]) +1 other test skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-mtlp: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#8814])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-4/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-dg2-9: NOTRUN -> [SKIP][217] ([i915#13049])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-tglu: [PASS][218] -> [FAIL][219] ([i915#13566]) +3 other tests fail
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-256x85.html
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][220] ([i915#13566])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-rkl: NOTRUN -> [SKIP][221] ([i915#3555]) +4 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-mtlp: NOTRUN -> [SKIP][222] ([i915#13049])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-7/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#13049])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-3/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-dg1: NOTRUN -> [SKIP][224] ([i915#13049])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-14/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-256x85:
- shard-tglu-1: NOTRUN -> [FAIL][225] ([i915#13566]) +1 other test fail
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-1/igt@kms_cursor_crc@cursor-random-256x85.html
* igt@kms_cursor_crc@cursor-rapid-movement-128x42:
- shard-mtlp: NOTRUN -> [SKIP][226] ([i915#8814]) +2 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-4/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-dg2-9: NOTRUN -> [SKIP][227] ([i915#3555]) +3 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-rkl: NOTRUN -> [SKIP][228] ([i915#13049])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-2/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-tglu: NOTRUN -> [FAIL][229] ([i915#13566]) +1 other test fail
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-6/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_crc@cursor-sliding-64x21:
- shard-rkl: [PASS][230] -> [FAIL][231] ([i915#13566]) +4 other tests fail
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-64x21.html
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-64x21.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
- shard-mtlp: NOTRUN -> [SKIP][232] ([i915#9809]) +3 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-7/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#13046] / [i915#5354]) +2 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-5/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
- shard-dg2-9: NOTRUN -> [SKIP][234] ([i915#13046] / [i915#5354]) +1 other test skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#4103] / [i915#4213])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipa-toggle:
- shard-rkl: [PASS][236] -> [DMESG-WARN][237] ([i915#12917] / [i915#12964])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-rkl-3/igt@kms_cursor_legacy@cursora-vs-flipa-toggle.html
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-2/igt@kms_cursor_legacy@cursora-vs-flipa-toggle.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-mtlp: NOTRUN -> [SKIP][238] ([i915#9067])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-dg2: NOTRUN -> [SKIP][239] ([i915#9067])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-dg1: NOTRUN -> [SKIP][240] ([i915#9067])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-19/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-mtlp: NOTRUN -> [SKIP][241] ([i915#4213]) +1 other test skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][242] ([i915#9723])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-4/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-dg1: NOTRUN -> [SKIP][243] ([i915#9723])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-16/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-tglu: NOTRUN -> [SKIP][244] ([i915#9723])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-9/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-dg2: NOTRUN -> [SKIP][245] ([i915#9833])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-3/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-dg2-9: NOTRUN -> [SKIP][246] ([i915#13691])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-rkl: NOTRUN -> [SKIP][247] ([i915#3555] / [i915#3804])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][248] ([i915#3804])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-dg2-9: NOTRUN -> [SKIP][249] ([i915#13707])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- shard-rkl: NOTRUN -> [SKIP][250] ([i915#13707])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-5/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-tglu: NOTRUN -> [SKIP][251] ([i915#3840])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-9/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-bpc:
- shard-tglu: NOTRUN -> [SKIP][252] ([i915#3555] / [i915#3840])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-10/igt@kms_dsc@dsc-with-bpc.html
- shard-mtlp: NOTRUN -> [SKIP][253] ([i915#3555] / [i915#3840])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-1/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][254] ([i915#3840] / [i915#9053])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-4/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2-9: NOTRUN -> [SKIP][255] ([i915#1839])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@psr2:
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#658])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-5/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-rkl: NOTRUN -> [SKIP][257] ([i915#9934]) +3 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-2/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg1: NOTRUN -> [SKIP][258] ([i915#8381])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-14/igt@kms_flip@2x-flip-vs-fences.html
- shard-tglu: NOTRUN -> [SKIP][259] ([i915#3637]) +3 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-9/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-panning-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][260] ([i915#3637])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-6/igt@kms_flip@2x-flip-vs-panning-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2:
- shard-glk: NOTRUN -> [INCOMPLETE][261] ([i915#4839])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-glk9/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][262] ([i915#3637])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-1/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-plain-flip:
- shard-dg2: NOTRUN -> [SKIP][263] ([i915#9934]) +2 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-11/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-dg2-9: NOTRUN -> [SKIP][264] ([i915#9934]) +5 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@flip-vs-fences:
- shard-mtlp: NOTRUN -> [SKIP][265] ([i915#8381])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-2/igt@kms_flip@flip-vs-fences.html
* igt@kms_flip@flip-vs-suspend:
- shard-rkl: NOTRUN -> [DMESG-FAIL][266] ([i915#12964]) +1 other test dmesg-fail
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-2/igt@kms_flip@flip-vs-suspend.html
- shard-glk: NOTRUN -> [INCOMPLETE][267] ([i915#12745] / [i915#4839]) +1 other test incomplete
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-glk3/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][268] ([i915#12745])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-glk3/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-tglu: NOTRUN -> [SKIP][269] ([i915#2672] / [i915#3555]) +1 other test skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-4/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][270] ([i915#2672] / [i915#3555]) +1 other test skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][271] ([i915#2672]) +1 other test skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-tglu: NOTRUN -> [SKIP][272] ([i915#2587] / [i915#2672] / [i915#3555]) +1 other test skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2-9: NOTRUN -> [SKIP][273] ([i915#2672] / [i915#3555] / [i915#5190])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-dg2-9: NOTRUN -> [SKIP][274] ([i915#2672])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][275] ([i915#2587] / [i915#2672]) +3 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][276] ([i915#2672] / [i915#3555]) +1 other test skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][277] ([i915#3555] / [i915#8813])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][278] ([i915#8810]) +1 other test skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-dg1: NOTRUN -> [SKIP][279] ([i915#2672] / [i915#3555]) +1 other test skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][280] ([i915#2587] / [i915#2672]) +1 other test skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][281] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][282] ([i915#3555] / [i915#8810])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][283] ([i915#2672]) +1 other test skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][284] ([i915#2672] / [i915#8813])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][285] ([i915#2672] / [i915#3555] / [i915#8813]) +4 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff:
- shard-mtlp: NOTRUN -> [SKIP][286] ([i915#1825]) +18 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-rte:
- shard-dg2: NOTRUN -> [SKIP][287] ([i915#5354]) +22 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-cpu:
- shard-snb: [PASS][288] -> [SKIP][289] +3 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-dg1: NOTRUN -> [SKIP][290] +21 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt:
- shard-dg2-9: NOTRUN -> [SKIP][291] ([i915#8708]) +13 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu:
- shard-dg2-9: [PASS][292] -> [FAIL][293] ([i915#6880])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite:
- shard-dg2-9: NOTRUN -> [FAIL][294] ([i915#6880])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary:
- shard-dg2: [PASS][295] -> [FAIL][296] ([i915#6880])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render:
- shard-dg2-9: NOTRUN -> [SKIP][297] ([i915#5354]) +24 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-tglu-1: NOTRUN -> [SKIP][298] +13 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][299] ([i915#8708]) +13 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite:
- shard-dg2-9: NOTRUN -> [SKIP][300] ([i915#3458]) +14 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render:
- shard-dg1: NOTRUN -> [SKIP][301] ([i915#3458]) +8 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-tglu: NOTRUN -> [SKIP][302] ([i915#5439])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-tglu: NOTRUN -> [SKIP][303] ([i915#9766])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-9/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][304] ([i915#8708]) +2 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][305] ([i915#3458]) +14 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][306] ([i915#8708]) +2 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff:
- shard-rkl: NOTRUN -> [SKIP][307] ([i915#1825]) +19 other tests skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-pwrite:
- shard-tglu: NOTRUN -> [SKIP][308] +73 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-modesetfrombusy:
- shard-rkl: NOTRUN -> [SKIP][309] ([i915#3023]) +14 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-dg2: [PASS][310] -> [SKIP][311] ([i915#3555] / [i915#8228])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-dg2-11/igt@kms_hdr@bpc-switch-dpms.html
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-3/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2: NOTRUN -> [SKIP][312] ([i915#3555] / [i915#8228]) +1 other test skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-11/igt@kms_hdr@invalid-hdr.html
- shard-dg1: NOTRUN -> [SKIP][313] ([i915#3555] / [i915#8228])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-17/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-tglu: NOTRUN -> [SKIP][314] ([i915#3555] / [i915#8228]) +1 other test skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-8/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2-9: NOTRUN -> [SKIP][315] ([i915#3555] / [i915#8228])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@kms_hdr@static-toggle-suspend.html
- shard-rkl: NOTRUN -> [SKIP][316] ([i915#3555] / [i915#8228]) +1 other test skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-5/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-big-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][317] ([i915#10656])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-1/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][318] ([i915#12394])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-10/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-mtlp: NOTRUN -> [SKIP][319] ([i915#13688])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-6/igt@kms_joiner@basic-max-non-joiner.html
- shard-dg2: NOTRUN -> [SKIP][320] ([i915#13688])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-5/igt@kms_joiner@basic-max-non-joiner.html
- shard-dg1: NOTRUN -> [SKIP][321] ([i915#13688])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-17/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][322] ([i915#12339])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-5/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][323] ([i915#10656])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-4/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-rkl: NOTRUN -> [SKIP][324] ([i915#6301])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-3/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2: NOTRUN -> [SKIP][325] ([i915#13705])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-6/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane_lowres@tiling-x:
- shard-mtlp: NOTRUN -> [SKIP][326] ([i915#11614] / [i915#3582]) +1 other test skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-4/igt@kms_plane_lowres@tiling-x.html
* igt@kms_plane_lowres@tiling-x@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][327] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-4/igt@kms_plane_lowres@tiling-x@pipe-a-edp-1.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: NOTRUN -> [SKIP][328] ([i915#6953] / [i915#9423])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-5/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d:
- shard-dg2-9: NOTRUN -> [SKIP][329] ([i915#12247]) +11 other tests skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- shard-dg2-9: NOTRUN -> [SKIP][330] ([i915#12247] / [i915#9423]) +2 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][331] ([i915#12247]) +13 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- shard-dg2: NOTRUN -> [SKIP][332] ([i915#12247] / [i915#9423])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][333] ([i915#12247]) +7 other tests skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c:
- shard-rkl: NOTRUN -> [SKIP][334] ([i915#12247])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
- shard-tglu: NOTRUN -> [SKIP][335] ([i915#12247] / [i915#6953])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5:
- shard-mtlp: NOTRUN -> [SKIP][336] ([i915#6953])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a:
- shard-mtlp: NOTRUN -> [SKIP][337] ([i915#12247]) +3 other tests skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-tglu-1: NOTRUN -> [SKIP][338] ([i915#12247] / [i915#3555])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
- shard-dg2: NOTRUN -> [SKIP][339] ([i915#12247] / [i915#3555] / [i915#9423])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a:
- shard-tglu-1: NOTRUN -> [SKIP][340] ([i915#12247]) +3 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][341] ([i915#12343])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-1/igt@kms_pm_backlight@brightness-with-dpms.html
- shard-dg2: NOTRUN -> [SKIP][342] ([i915#12343])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-8/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_dc@dc5-psr:
- shard-tglu: NOTRUN -> [SKIP][343] ([i915#9685])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-2/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg2-9: NOTRUN -> [SKIP][344] ([i915#3828])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2-9: NOTRUN -> [SKIP][345] ([i915#5978])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: [PASS][346] -> [SKIP][347] ([i915#9519])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-dg2-4/igt@kms_pm_rpm@dpms-lpsp.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-6/igt@kms_pm_rpm@dpms-lpsp.html
- shard-rkl: NOTRUN -> [SKIP][348] ([i915#9519])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-3/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-mtlp: NOTRUN -> [SKIP][349] ([i915#9519])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-7/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: NOTRUN -> [SKIP][350] ([i915#9519]) +2 other tests skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-3/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg1: NOTRUN -> [SKIP][351] ([i915#9519])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-13/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-tglu: NOTRUN -> [SKIP][352] ([i915#9519])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [PASS][353] -> [SKIP][354] ([i915#9519]) +2 other tests skip
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_prime@basic-crc-hybrid:
- shard-dg2: NOTRUN -> [SKIP][355] ([i915#6524] / [i915#6805])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-6/igt@kms_prime@basic-crc-hybrid.html
- shard-rkl: NOTRUN -> [SKIP][356] ([i915#6524])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-3/igt@kms_prime@basic-crc-hybrid.html
- shard-dg1: NOTRUN -> [SKIP][357] ([i915#6524])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-16/igt@kms_prime@basic-crc-hybrid.html
- shard-tglu: NOTRUN -> [SKIP][358] ([i915#6524])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-6/igt@kms_prime@basic-crc-hybrid.html
- shard-mtlp: NOTRUN -> [SKIP][359] ([i915#6524])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-6/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-dg2-9: NOTRUN -> [SKIP][360] ([i915#6524] / [i915#6805])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf:
- shard-rkl: NOTRUN -> [SKIP][361] ([i915#11520]) +6 other tests skip
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-2/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf:
- shard-snb: NOTRUN -> [SKIP][362] ([i915#11520]) +6 other tests skip
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-snb5/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-dg2-9: NOTRUN -> [SKIP][363] ([i915#11520]) +4 other tests skip
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][364] ([i915#11520]) +5 other tests skip
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-13/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
- shard-dg2: NOTRUN -> [SKIP][365] ([i915#11520]) +8 other tests skip
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-tglu: NOTRUN -> [SKIP][366] ([i915#11520]) +5 other tests skip
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-4/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
- shard-mtlp: NOTRUN -> [SKIP][367] ([i915#12316]) +4 other tests skip
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-4/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf:
- shard-tglu-1: NOTRUN -> [SKIP][368] ([i915#11520]) +1 other test skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-1/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][369] ([i915#11520]) +11 other tests skip
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-glk7/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-tglu-1: NOTRUN -> [SKIP][370] ([i915#9683])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-1/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2: NOTRUN -> [SKIP][371] ([i915#9683])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-6/igt@kms_psr2_su@page_flip-p010.html
- shard-dg1: NOTRUN -> [SKIP][372] ([i915#9683])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-13/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-pr-basic:
- shard-mtlp: NOTRUN -> [SKIP][373] ([i915#9688]) +15 other tests skip
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-5/igt@kms_psr@fbc-pr-basic.html
* igt@kms_psr@fbc-pr-sprite-render:
- shard-tglu-1: NOTRUN -> [SKIP][374] ([i915#9732]) +3 other tests skip
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-1/igt@kms_psr@fbc-pr-sprite-render.html
* igt@kms_psr@fbc-psr-primary-page-flip:
- shard-dg2-9: NOTRUN -> [SKIP][375] ([i915#1072] / [i915#9732]) +14 other tests skip
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@kms_psr@fbc-psr-primary-page-flip.html
* igt@kms_psr@fbc-psr2-no-drrs:
- shard-tglu: NOTRUN -> [SKIP][376] ([i915#9732]) +19 other tests skip
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-7/igt@kms_psr@fbc-psr2-no-drrs.html
* igt@kms_psr@psr2-primary-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][377] ([i915#1072] / [i915#9732]) +21 other tests skip
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-6/igt@kms_psr@psr2-primary-mmap-gtt.html
* igt@kms_psr@psr2-sprite-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][378] ([i915#4077] / [i915#9688]) +1 other test skip
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-6/igt@kms_psr@psr2-sprite-mmap-gtt.html
* igt@kms_psr@psr2-sprite-plane-onoff:
- shard-glk: NOTRUN -> [SKIP][379] +395 other tests skip
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-glk7/igt@kms_psr@psr2-sprite-plane-onoff.html
* igt@kms_psr@psr2-suspend:
- shard-rkl: NOTRUN -> [SKIP][380] ([i915#1072] / [i915#9732]) +13 other tests skip
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-4/igt@kms_psr@psr2-suspend.html
- shard-dg1: NOTRUN -> [SKIP][381] ([i915#1072] / [i915#9732]) +10 other tests skip
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-16/igt@kms_psr@psr2-suspend.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-tglu-1: NOTRUN -> [SKIP][382] ([i915#9685])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-mtlp: NOTRUN -> [SKIP][383] ([i915#12755])
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-4/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-dg2-9: NOTRUN -> [SKIP][384] ([i915#5190])
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
- shard-tglu: NOTRUN -> [SKIP][385] ([i915#5289])
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg1: NOTRUN -> [SKIP][386] ([i915#5289])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-15/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-mtlp: NOTRUN -> [SKIP][387] ([i915#5289])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-dg2: NOTRUN -> [SKIP][388] ([i915#5190])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-11/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg2-9: NOTRUN -> [SKIP][389] ([i915#12755] / [i915#5190])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-dg2: NOTRUN -> [SKIP][390] ([i915#12755])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-1/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-dg1: NOTRUN -> [SKIP][391] ([i915#3555]) +2 other tests skip
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-13/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-tglu: NOTRUN -> [SKIP][392] ([i915#3555]) +7 other tests skip
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-4/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_selftest@drm_framebuffer:
- shard-tglu: NOTRUN -> [ABORT][393] ([i915#13179]) +1 other test abort
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-9/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-tglu-1: NOTRUN -> [SKIP][394] ([i915#3555])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-1/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-9: NOTRUN -> [SKIP][395] ([i915#8623])
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@flipline:
- shard-mtlp: NOTRUN -> [SKIP][396] ([i915#3555] / [i915#8808])
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-6/igt@kms_vrr@flipline.html
- shard-dg2: NOTRUN -> [SKIP][397] ([i915#3555]) +1 other test skip
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-5/igt@kms_vrr@flipline.html
* igt@kms_vrr@lobf:
- shard-rkl: NOTRUN -> [SKIP][398] ([i915#11920])
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-2/igt@kms_vrr@lobf.html
* igt@kms_vrr@negative-basic:
- shard-dg2: [PASS][399] -> [SKIP][400] ([i915#3555] / [i915#9906])
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-dg2-10/igt@kms_vrr@negative-basic.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-8/igt@kms_vrr@negative-basic.html
- shard-tglu-1: NOTRUN -> [SKIP][401] ([i915#3555] / [i915#9906])
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-1/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-rkl: NOTRUN -> [SKIP][402] ([i915#9906])
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-2/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-dg2: NOTRUN -> [SKIP][403] ([i915#9906])
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-11/igt@kms_vrr@seamless-rr-switch-virtual.html
- shard-dg1: NOTRUN -> [SKIP][404] ([i915#9906])
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-17/igt@kms_vrr@seamless-rr-switch-virtual.html
- shard-mtlp: NOTRUN -> [SKIP][405] ([i915#8808] / [i915#9906])
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-4/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-dg2-9: NOTRUN -> [SKIP][406] ([i915#9906]) +1 other test skip
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-fb-id:
- shard-tglu: NOTRUN -> [SKIP][407] ([i915#2437])
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-5/igt@kms_writeback@writeback-fb-id.html
- shard-mtlp: NOTRUN -> [SKIP][408] ([i915#2437])
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-4/igt@kms_writeback@writeback-fb-id.html
- shard-dg2-9: NOTRUN -> [SKIP][409] ([i915#2437]) +1 other test skip
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-mtlp: NOTRUN -> [SKIP][410] ([i915#2437] / [i915#9412])
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-4/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-glk: NOTRUN -> [SKIP][411] ([i915#2437])
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-glk4/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@mi-rpc:
- shard-dg2-9: NOTRUN -> [SKIP][412] ([i915#2434])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@perf@mi-rpc.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2-9: NOTRUN -> [FAIL][413] ([i915#4349]) +4 other tests fail
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@frequency@gt0:
- shard-dg2-9: NOTRUN -> [FAIL][414] ([i915#12549] / [i915#6806]) +1 other test fail
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@perf_pmu@frequency@gt0.html
* igt@perf_pmu@invalid-init:
- shard-dg2-9: NOTRUN -> [FAIL][415] ([i915#13663])
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@perf_pmu@invalid-init.html
* igt@perf_pmu@most-busy-check-all:
- shard-rkl: [PASS][416] -> [FAIL][417] ([i915#4349]) +1 other test fail
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-rkl-6/igt@perf_pmu@most-busy-check-all.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-3/igt@perf_pmu@most-busy-check-all.html
* igt@perf_pmu@most-busy-idle-check-all@rcs0:
- shard-mtlp: [PASS][418] -> [FAIL][419] ([i915#11943]) +1 other test fail
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-mtlp-1/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-6/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
* igt@perf_pmu@rc6-all-gts:
- shard-dg2-9: NOTRUN -> [SKIP][420] ([i915#8516])
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@perf_pmu@rc6-all-gts.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg2: NOTRUN -> [SKIP][421] ([i915#8516])
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-6/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_vgem@basic-fence-read:
- shard-dg2: NOTRUN -> [SKIP][422] ([i915#3291] / [i915#3708]) +1 other test skip
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-6/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-write:
- shard-rkl: NOTRUN -> [SKIP][423] ([i915#3291] / [i915#3708])
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-7/igt@prime_vgem@basic-write.html
* igt@prime_vgem@fence-read-hang:
- shard-dg2: NOTRUN -> [SKIP][424] ([i915#3708])
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-6/igt@prime_vgem@fence-read-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2-9: NOTRUN -> [SKIP][425] ([i915#9917])
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-9/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-dg2: NOTRUN -> [SKIP][426] ([i915#9917])
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-11/igt@sriov_basic@enable-vfs-bind-unbind-each.html
#### Possible fixes ####
* igt@gem_eio@in-flight-immediate:
- shard-mtlp: [ABORT][427] ([i915#13193]) -> [PASS][428]
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-mtlp-7/igt@gem_eio@in-flight-immediate.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-4/igt@gem_eio@in-flight-immediate.html
* igt@gem_eio@kms:
- shard-tglu: [DMESG-WARN][429] ([i915#13363]) -> [PASS][430]
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-tglu-7/igt@gem_eio@kms.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-6/igt@gem_eio@kms.html
* igt@gem_eio@reset-stress:
- shard-dg1: [FAIL][431] ([i915#12543] / [i915#5784]) -> [PASS][432]
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-dg1-16/igt@gem_eio@reset-stress.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-12/igt@gem_eio@reset-stress.html
* igt@gem_softpin@noreloc-s3:
- shard-glk: [INCOMPLETE][433] -> [PASS][434]
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-glk7/igt@gem_softpin@noreloc-s3.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-glk7/igt@gem_softpin@noreloc-s3.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: [ABORT][435] ([i915#9820]) -> [PASS][436]
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-snb1/igt@i915_module_load@reload-with-fault-injection.html
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-snb4/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg1: [ABORT][437] ([i915#9820]) -> [PASS][438]
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-dg1-12/igt@i915_module_load@reload-with-fault-injection.html
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-15/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-dg1: [FAIL][439] ([i915#3591]) -> [PASS][440]
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle.html
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
- shard-dg1: [FAIL][441] ([i915#12739] / [i915#3591]) -> [PASS][442]
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-dg2: [DMESG-WARN][443] -> [PASS][444]
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-dg2-4/igt@i915_pm_rpm@system-suspend-execbuf.html
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-1/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_selftest@perf:
- shard-snb: [ABORT][445] ([i915#11703]) -> [PASS][446] +1 other test pass
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-snb6/igt@i915_selftest@perf.html
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-snb4/igt@i915_selftest@perf.html
* igt@kms_atomic_interruptible@legacy-dpms:
- shard-rkl: [DMESG-WARN][447] ([i915#12964]) -> [PASS][448] +34 other tests pass
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-rkl-1/igt@kms_atomic_interruptible@legacy-dpms.html
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-7/igt@kms_atomic_interruptible@legacy-dpms.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-dg1: [FAIL][449] ([i915#5956]) -> [PASS][450]
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-dg1-19/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-13/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_color@deep-color:
- shard-dg2: [SKIP][451] ([i915#3555]) -> [PASS][452]
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-dg2-3/igt@kms_color@deep-color.html
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-11/igt@kms_color@deep-color.html
* igt@kms_cursor_crc@cursor-random-128x42:
- shard-tglu: [FAIL][453] ([i915#13566]) -> [PASS][454] +1 other test pass
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-tglu-10/igt@kms_cursor_crc@cursor-random-128x42.html
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-6/igt@kms_cursor_crc@cursor-random-128x42.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [FAIL][455] -> [PASS][456] +1 other test pass
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-snb4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-snb4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_flip@dpms-off-confusion-interruptible:
- shard-snb: [INCOMPLETE][457] ([i915#12314]) -> [PASS][458] +1 other test pass
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-snb6/igt@kms_flip@dpms-off-confusion-interruptible.html
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-snb6/igt@kms_flip@dpms-off-confusion-interruptible.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible:
- shard-tglu: [FAIL][459] -> [PASS][460] +6 other tests pass
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-tglu-5/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-tglu-8/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
- shard-rkl: [FAIL][461] -> [PASS][462] +1 other test pass
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-rkl-5/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-3/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@plain-flip-fb-recreate@a-edp1:
- shard-mtlp: [FAIL][463] -> [PASS][464] +1 other test pass
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-mtlp-1/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-4/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-snb: [SKIP][465] -> [PASS][466] +1 other test pass
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-cpu.html
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_pm_rpm@drm-resources-equal:
- shard-dg1: [DMESG-WARN][467] ([i915#4423]) -> [PASS][468] +1 other test pass
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-dg1-15/igt@kms_pm_rpm@drm-resources-equal.html
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-15/igt@kms_pm_rpm@drm-resources-equal.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-rkl: [SKIP][469] ([i915#12916]) -> [PASS][470]
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-rkl-1/igt@kms_pm_rpm@modeset-lpsp.html
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-glk: [INCOMPLETE][471] ([i915#10553]) -> [PASS][472]
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-glk1/igt@kms_pm_rpm@system-suspend-modeset.html
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-glk8/igt@kms_pm_rpm@system-suspend-modeset.html
#### Warnings ####
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-rkl: [SKIP][473] ([i915#4270]) -> [TIMEOUT][474] ([i915#12917] / [i915#12964]) +1 other test timeout
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-rkl-3/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-7/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: [ABORT][475] ([i915#10131] / [i915#10887] / [i915#9820]) -> [ABORT][476] ([i915#10131])
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-7/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2: [FAIL][477] ([i915#7173]) -> [SKIP][478] ([i915#9424])
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-dg2-10/igt@kms_content_protection@lic-type-0.html
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-6/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@srm:
- shard-dg2: [FAIL][479] ([i915#7173]) -> [SKIP][480] ([i915#7118])
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-dg2-11/igt@kms_content_protection@srm.html
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-5/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-snb: [INCOMPLETE][481] ([i915#8816]) -> [SKIP][482]
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-snb4/igt@kms_content_protection@type1.html
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-snb7/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-snb: [SKIP][483] -> [INCOMPLETE][484] ([i915#8816])
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-snb5/igt@kms_content_protection@uevent.html
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-snb6/igt@kms_content_protection@uevent.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt:
- shard-dg1: [SKIP][485] ([i915#4423]) -> [SKIP][486]
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu:
- shard-dg2: [SKIP][487] ([i915#10433] / [i915#3458]) -> [SKIP][488] ([i915#3458])
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu.html
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
- shard-dg2: [SKIP][489] ([i915#3458]) -> [SKIP][490] ([i915#10433] / [i915#3458])
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
* igt@kms_hdr@brightness-with-hdr:
- shard-mtlp: [SKIP][491] ([i915#12713]) -> [SKIP][492] ([i915#1187] / [i915#12713])
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-mtlp-4/igt@kms_hdr@brightness-with-hdr.html
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-mtlp-1/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][493] ([i915#4816]) -> [SKIP][494] ([i915#4070] / [i915#4816])
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-rkl: [SKIP][495] ([i915#9519]) -> [DMESG-WARN][496] ([i915#12964])
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-rkl-1/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-pc8-residency-stress:
- shard-rkl: [SKIP][497] -> [SKIP][498] ([i915#12916])
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-rkl-2/igt@kms_pm_rpm@modeset-pc8-residency-stress.html
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-rkl-5/igt@kms_pm_rpm@modeset-pc8-residency-stress.html
* igt@kms_psr@pr-sprite-blt:
- shard-dg2: [INCOMPLETE][499] -> [SKIP][500] ([i915#1072] / [i915#9732])
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-dg2-4/igt@kms_psr@pr-sprite-blt.html
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12651/shard-dg2-5/igt@kms_psr@pr-sprite-blt.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
[i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226
[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#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614
[i915#11616]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11616
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11703]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11703
[i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713
[i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#11943]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11943
[i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394
[i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
[i915#12543]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12543
[i915#12549]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12549
[i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12714]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12714
[i915#12739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12739
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796
[i915#12916]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12916
[i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917
[i915#12941]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12941
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#13193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13193
[i915#13196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13196
[i915#13328]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13328
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13363]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363
[i915#13427]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13427
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13592]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13592
[i915#13663]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13663
[i915#13665]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13665
[i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
[i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
[i915#13705]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13705
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[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#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582
[i915#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591
[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#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4879
[i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
[i915#4958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958
[i915#5107]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
[i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784
[i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#5978]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5978
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
[i915#6806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6806
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213
[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#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975
[i915#8063]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8063
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289
[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#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8437
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8816
[i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311
[i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820
[i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833
[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_8245 -> IGTPW_12651
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_16167: a22ac320a08377d760e73fa530c27782f0b68b6d @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12651: 00e2330301489d16888c5a1d3e75f03ac2cc7d90 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8245: 822e95b2560133bc21aa3065f70d7148f23f87cf @ 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_12651/index.html
[-- Attachment #2: Type: text/html, Size: 166657 bytes --]
^ permalink raw reply [flat|nested] 20+ messages in thread* ✗ Xe.CI.Full: failure for Add new test to validate adaptive sharpness filter (rev12)
2025-02-21 16:57 [PATCH i-g-t 00/11] Add new test to validate adaptive sharpness filter Swati Sharma
` (13 preceding siblings ...)
2025-02-21 19:58 ` ✗ i915.CI.Full: failure " Patchwork
@ 2025-02-22 7:35 ` Patchwork
14 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2025-02-22 7:35 UTC (permalink / raw)
To: Swati Sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 148644 bytes --]
== Series Details ==
Series: Add new test to validate adaptive sharpness filter (rev12)
URL : https://patchwork.freedesktop.org/series/130218/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8245_full -> XEIGTPW_12651_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12651_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12651_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 (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12651_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [INCOMPLETE][1]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-7/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-a-dp-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4 (NEW):
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][2]
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html
* igt@kms_chamelium_sharpness_filter@filter-basic (NEW):
- shard-dg2-set2: NOTRUN -> [SKIP][3]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-436/igt@kms_chamelium_sharpness_filter@filter-basic.html
* igt@kms_sharpness_filter@filter-toggle (NEW):
- shard-lnl: NOTRUN -> [SKIP][4] +13 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-2/igt@kms_sharpness_filter@filter-toggle.html
* igt@kms_sharpness_filter@invalid-filter-with-scaling-mode (NEW):
- shard-bmg: NOTRUN -> [SKIP][5] +12 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-6/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html
* igt@xe_exercise_blt@fast-copy-emit@tile4-vram01-system-emit:
- shard-bmg: [PASS][6] -> [INCOMPLETE][7] +1 other test incomplete
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-6/igt@xe_exercise_blt@fast-copy-emit@tile4-vram01-system-emit.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-5/igt@xe_exercise_blt@fast-copy-emit@tile4-vram01-system-emit.html
#### Warnings ####
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [INCOMPLETE][8] ([Intel XE#1727]) -> [INCOMPLETE][9]
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
New tests
---------
New tests have been introduced between XEIGT_8245_full and XEIGTPW_12651_full:
### New IGT tests (488) ###
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-b-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-c-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-a-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-b-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-c-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-d-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-a-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-b-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-c-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-a-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-b-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-c-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-a-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-b-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-c-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-d-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs@pipe-c-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs@pipe-d-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-a-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-b-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-c-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-b-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-c-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-a-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-b-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-c-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-d-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs@pipe-a-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs@pipe-b-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs@pipe-c-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs@pipe-d-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [1.99] s
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-c-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-d-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [3.21] s
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.01] s
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.01] s
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.01] s
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [1.19] s
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-c-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-d-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-a-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-c-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-d-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-b-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-c-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-d-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-a-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-b-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-c-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-d-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-2:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-2:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-a-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-b-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-c-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-d-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-a-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-c-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-d-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-b-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-c-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-d-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [1.56] s
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [5.63] s
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [1.53] s
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [1.49] s
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-c-dp-4:
- Statuses : 1 pass(s)
- Exec time: [1.51] s
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [1.51] s
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-d-dp-4:
- Statuses : 1 pass(s)
- Exec time: [1.53] s
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [1.49] s
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.78] s
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [7.17] s
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.74] s
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.70] s
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.74] s
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.72] s
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.72] s
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.71] s
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [3.49] s
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.69] s
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.69] s
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.69] s
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-a-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-b-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-c-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-a-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-b-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-c-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-a-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-b-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [1.57] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [5.70] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [1.50] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [1.50] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-c-dp-4:
- Statuses : 1 pass(s)
- Exec time: [1.51] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [1.49] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-d-dp-4:
- Statuses : 1 pass(s)
- Exec time: [1.53] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [1.49] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.77] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [7.76] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.74] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.72] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.74] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.69] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.74] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.72] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.76] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [3.56] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.71] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.69] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.71] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.69] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-d-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.71] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.69] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-b-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-a-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-b-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-c-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-a-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-c-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-d-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-a-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-b-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-c-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-d-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs@pipe-a-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs@pipe-b-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs@pipe-c-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-b-hdmi-a-2:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-2:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-a-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-b-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-c-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.34] s
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.28] s
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.32] s
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.31] s
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-c-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.33] s
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.29] s
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-d-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.31] s
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.29] s
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.55] s
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [3.36] s
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.54] s
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.51] s
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.53] s
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.51] s
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.53] s
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.51] s
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.54] s
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [3.36] s
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.52] s
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.49] s
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-c-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.51] s
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.49] s
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-d-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.53] s
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.49] s
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-a-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-b-hdmi-a-2:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-c-hdmi-a-2:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-a-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-c-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-b-hdmi-a-2:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-2:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-a-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-b-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-c-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.00] s
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-a-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-b-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-c-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-d-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-a-hdmi-a-2:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-b-hdmi-a-2:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-c-hdmi-a-2:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-a-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-b-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-c-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc@pipe-c-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-c-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-d-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [2.83] s
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [2.80] s
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [2.85] s
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [2.81] s
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-4:
- Statuses : 1 dmesg-warn(s)
- Exec time: [50.38] s
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [2.83] s
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-6:
- Statuses : 1 incomplete(s)
- Exec time: [50.38] s
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4:
- Statuses : 1 incomplete(s)
- Exec time: [2.80] s
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [2.80] s
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-a-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-b-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-c-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-a-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-c-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-d-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-a-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-b-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-c-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-b-hdmi-a-2:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-2:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-2:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-b-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-c-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-6:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_chamelium_sharpness_filter@filter-basic:
- Statuses : 3 skip(s)
- Exec time: [0.0] s
* igt@kms_sharpness_filter@filter-basic:
- Statuses : 3 skip(s)
- Exec time: [0.00] s
* igt@kms_sharpness_filter@filter-dpms:
- Statuses : 3 skip(s)
- Exec time: [0.00] s
* igt@kms_sharpness_filter@filter-formats:
- Statuses : 3 skip(s)
- Exec time: [0.00, 0.01] s
* igt@kms_sharpness_filter@filter-modifiers:
- Statuses : 2 skip(s)
- Exec time: [0.00, 0.01] s
* igt@kms_sharpness_filter@filter-rotations:
- Statuses : 3 skip(s)
- Exec time: [0.00] s
* igt@kms_sharpness_filter@filter-scaler-downscale:
- Statuses : 3 skip(s)
- Exec time: [0.0, 0.00] s
* igt@kms_sharpness_filter@filter-scaler-upscale:
- Statuses : 3 skip(s)
- Exec time: [0.00] s
* igt@kms_sharpness_filter@filter-strength:
- Statuses : 3 skip(s)
- Exec time: [0.00, 0.01] s
* igt@kms_sharpness_filter@filter-suspend:
- Statuses : 3 skip(s)
- Exec time: [0.00] s
* igt@kms_sharpness_filter@filter-tap:
- Statuses :
- Exec time: [None] s
* igt@kms_sharpness_filter@filter-toggle:
- Statuses : 3 skip(s)
- Exec time: [0.00] s
* igt@kms_sharpness_filter@invalid-filter-with-plane:
- Statuses : 3 skip(s)
- Exec time: [0.00] s
* igt@kms_sharpness_filter@invalid-filter-with-scaler:
- Statuses :
- Exec time: [None] s
* igt@kms_sharpness_filter@invalid-filter-with-scaling-mode:
- Statuses : 3 skip(s)
- Exec time: [0.00, 0.01] s
* igt@kms_sharpness_filter@invalid-plane-with-filter:
- Statuses : 3 skip(s)
- Exec time: [0.00] s
Known issues
------------
Here are the changes found in XEIGTPW_12651_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#2550] / [Intel XE#3767]) +15 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-466/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs.html
* igt@kms_async_flips@test-cursor:
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#664])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-5/igt@kms_async_flips@test-cursor.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#3279])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-4/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2370])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#316]) +3 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-436/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2327]) +3 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-7/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-180:
- shard-bmg: NOTRUN -> [DMESG-WARN][16] ([Intel XE#4330]) +14 other tests dmesg-warn
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-3/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#3658])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1407]) +4 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-6/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][19] ([Intel XE#4330]) +17 other tests dmesg-warn
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-434/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-180:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1124]) +11 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-7/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#1124]) +11 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#1124]) +12 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-434/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#610])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-1/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#610])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-436/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-dg2-set2: [PASS][25] -> [SKIP][26] ([Intel XE#2191])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-432/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-464/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#2191]) +2 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-7/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2314] / [Intel XE#2894]) +2 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-1/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#2191]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-464/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-2-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#367]) +4 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-8/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#367]) +4 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-464/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
- shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#367]) +2 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-6/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2887]) +15 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-8/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#2887]) +19 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-5/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-2:
- shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#455] / [Intel XE#787]) +45 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-bmg: [PASS][36] -> [INCOMPLETE][37] ([Intel XE#4345])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-6/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-7/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6 (NEW):
- shard-dg2-set2: [SKIP][38] ([Intel XE#787]) -> [SKIP][39] ([Intel XE#455] / [Intel XE#787]) +7 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-466/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-464/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#2669]) +11 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-b-edp-1.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-6 (NEW):
- shard-dg2-set2: [SKIP][41] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][42] ([Intel XE#787]) +2 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-464/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-6.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-436/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-6.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#3432])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#3432])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#2907]) +3 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6 (NEW):
- shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#787]) +166 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-436/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [PASS][47] -> [INCOMPLETE][48] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-4 (NEW):
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][49] ([Intel XE#1727] / [Intel XE#3113])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-6 (NEW):
- shard-dg2-set2: [PASS][50] -> [INCOMPLETE][51] ([Intel XE#3124])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-6.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-6.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#306]) +2 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-433/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_color@ctm-max:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#306]) +3 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-7/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2325]) +2 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-7/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2252]) +6 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-8/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_hpd@hdmi-hpd:
- shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#373]) +9 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-432/igt@kms_chamelium_hpd@hdmi-hpd.html
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#373]) +9 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-5/igt@kms_chamelium_hpd@hdmi-hpd.html
* igt@kms_color@ctm-0-25@pipe-d-hdmi-a-3:
- shard-bmg: NOTRUN -> [DMESG-WARN][58] ([Intel XE#877])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-3/igt@kms_color@ctm-0-25@pipe-d-hdmi-a-3.html
* igt@kms_color@ctm-0-75@pipe-d-hdmi-a-3:
- shard-bmg: [PASS][59] -> [DMESG-WARN][60] ([Intel XE#877]) +6 other tests dmesg-warn
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-5/igt@kms_color@ctm-0-75@pipe-d-hdmi-a-3.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-3/igt@kms_color@ctm-0-75@pipe-d-hdmi-a-3.html
* igt@kms_color@ctm-negative:
- shard-bmg: [PASS][61] -> [DMESG-WARN][62] ([Intel XE#4330] / [Intel XE#877])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-6/igt@kms_color@ctm-negative.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-7/igt@kms_color@ctm-negative.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2390]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-5/igt@kms_content_protection@dp-mst-type-1.html
- shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#307]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-432/igt@kms_content_protection@dp-mst-type-1.html
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#307]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-3/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2341]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-6/igt@kms_content_protection@legacy.html
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#3278]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-1/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2-set2: NOTRUN -> [FAIL][68] ([Intel XE#1178])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-436/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][69] ([Intel XE#3304])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-436/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#2321]) +4 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-7/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#308]) +4 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-464/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2320]) +4 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-6/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-dg2-set2: NOTRUN -> [SKIP][73] ([Intel XE#455]) +37 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-464/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-128x42:
- shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1424]) +8 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-5/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html
* igt@kms_cursor_crc@cursor-sliding-128x128:
- shard-dg2-set2: [PASS][75] -> [DMESG-WARN][76] ([Intel XE#4330]) +38 other tests dmesg-warn
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-466/igt@kms_cursor_crc@cursor-sliding-128x128.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-434/igt@kms_cursor_crc@cursor-sliding-128x128.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2321]) +4 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-6/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#309]) +8 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-7/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
- shard-dg2-set2: [PASS][79] -> [SKIP][80] ([Intel XE#309])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-435/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-464/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-bmg: [PASS][81] -> [SKIP][82] ([Intel XE#2291]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-8/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2291]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#309]) +4 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-464/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-toggle:
- shard-bmg: [PASS][85] -> [DMESG-WARN][86] ([Intel XE#4330]) +28 other tests dmesg-warn
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#323]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#1508])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-3/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-bmg: [PASS][89] -> [SKIP][90] ([Intel XE#1340])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#4294])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2244]) +2 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-8/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-formats:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#2244]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-7/igt@kms_dsc@dsc-with-formats.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#4156])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-8/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#776]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-433/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2372])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-5/igt@kms_feature_discovery@chamelium.html
- shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#701])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-432/igt@kms_feature_discovery@chamelium.html
- shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#701])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-5/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-dg2-set2: [PASS][99] -> [SKIP][100] ([Intel XE#702])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-433/igt@kms_feature_discovery@display-2x.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-464/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-3x:
- shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#703])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-4/igt@kms_feature_discovery@display-3x.html
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#2373])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-3/igt@kms_feature_discovery@display-3x.html
- shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#703])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-434/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip@2x-dpms-vs-vblank-race-interruptible:
- shard-bmg: [PASS][104] -> [SKIP][105] ([Intel XE#2316])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-7/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-6/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ac-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][106] -> [FAIL][107] ([Intel XE#2882]) +3 other tests fail
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-433/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ac-hdmi-a6-dp4.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-434/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ac-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][108] ([Intel XE#3321]) +2 other tests fail
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][109] ([Intel XE#301] / [Intel XE#3321])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][110] ([Intel XE#301]) +9 other tests fail
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-dg2-set2: [PASS][111] -> [DMESG-WARN][112] ([Intel XE#2955] / [Intel XE#4330])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-463/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-434/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-dg2-set2: [PASS][113] -> [SKIP][114] ([Intel XE#310]) +4 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-433/igt@kms_flip@2x-plain-flip-fb-recreate.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-464/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#1421]) +4 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-1/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-bmg: [PASS][116] -> [DMESG-WARN][117] ([Intel XE#2955]) +1 other test dmesg-warn
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-3/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-3/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][118] ([Intel XE#2955])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-434/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a3:
- shard-bmg: [PASS][119] -> [FAIL][120] ([Intel XE#3321])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a3.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a3.html
* igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6:
- shard-dg2-set2: [PASS][121] -> [FAIL][122] ([Intel XE#301]) +2 other tests fail
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html
* igt@kms_flip@flip-vs-expired-vblank@c-dp4:
- shard-dg2-set2: [PASS][123] -> [FAIL][124] ([Intel XE#301] / [Intel XE#3321]) +2 other tests fail
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html
* igt@kms_flip@flip-vs-suspend:
- shard-bmg: [PASS][125] -> [INCOMPLETE][126] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-3/igt@kms_flip@flip-vs-suspend.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-3/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@c-dp4:
- shard-dg2-set2: [PASS][127] -> [INCOMPLETE][128] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-435/igt@kms_flip@flip-vs-suspend@c-dp4.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-433/igt@kms_flip@flip-vs-suspend@c-dp4.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@a-edp1:
- shard-lnl: [PASS][129] -> [FAIL][130] ([Intel XE#886]) +2 other tests fail
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-lnl-8/igt@kms_flip@wf_vblank-ts-check-interruptible@a-edp1.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-1/igt@kms_flip@wf_vblank-ts-check-interruptible@a-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#2293] / [Intel XE#2380]) +6 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#1397]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#2293]) +6 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#1401] / [Intel XE#1745]) +9 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#1401]) +9 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][137] ([Intel XE#2311]) +29 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#2312]) +9 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#651]) +39 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#4141]) +14 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#656]) +55 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
- shard-dg2-set2: [PASS][142] -> [SKIP][143] ([Intel XE#656]) +4 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt:
- shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#651]) +16 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][145] ([Intel XE#653]) +43 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#2313]) +33 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render:
- shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#656]) +13 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_hdmi_inject@inject-audio:
- shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#1470] / [Intel XE#2853])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-6/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@brightness-with-hdr:
- shard-lnl: NOTRUN -> [SKIP][149] ([Intel XE#3374] / [Intel XE#3544])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-1/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@static-toggle-dpms:
- shard-lnl: NOTRUN -> [SKIP][150] ([Intel XE#1503])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-5/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-lnl: NOTRUN -> [SKIP][151] ([Intel XE#346])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-8/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#2927]) +1 other test skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-434/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-bmg: NOTRUN -> [SKIP][153] ([Intel XE#2486]) +1 other test skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-7/igt@kms_panel_fitting@legacy.html
* igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256:
- shard-dg2-set2: NOTRUN -> [FAIL][154] ([Intel XE#616]) +2 other tests fail
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-434/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html
* igt@kms_plane_multiple@tiling-y:
- shard-bmg: NOTRUN -> [SKIP][155] ([Intel XE#2493])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-1/igt@kms_plane_multiple@tiling-y.html
- shard-lnl: NOTRUN -> [SKIP][156] ([Intel XE#2493])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-1/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-bmg: NOTRUN -> [SKIP][157] ([Intel XE#2571])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][158] ([Intel XE#4212]) +2 other tests dmesg-warn
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-436/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a:
- shard-dg2-set2: NOTRUN -> [SKIP][159] ([Intel XE#2763]) +2 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-434/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b:
- shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#2763]) +15 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d:
- shard-dg2-set2: NOTRUN -> [SKIP][161] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-434/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-bmg: NOTRUN -> [SKIP][162] ([Intel XE#2763]) +19 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][163] ([Intel XE#870])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-466/igt@kms_pm_backlight@fade-with-suspend.html
- shard-bmg: NOTRUN -> [SKIP][164] ([Intel XE#870])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-3/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: NOTRUN -> [FAIL][165] ([Intel XE#1430])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-1/igt@kms_pm_dc@dc6-psr.html
- shard-bmg: NOTRUN -> [SKIP][166] ([Intel XE#2392])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-1/igt@kms_pm_dc@dc6-psr.html
- shard-dg2-set2: NOTRUN -> [SKIP][167] ([Intel XE#1129])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-436/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@deep-pkgc:
- shard-bmg: NOTRUN -> [SKIP][168] ([Intel XE#2505])
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-6/igt@kms_pm_dc@deep-pkgc.html
- shard-lnl: NOTRUN -> [FAIL][169] ([Intel XE#2029])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-1/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][170] ([Intel XE#2499])
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-6/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][171] ([Intel XE#1439] / [Intel XE#836])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-6/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-dg2-set2: NOTRUN -> [SKIP][172] ([Intel XE#836])
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-464/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][173] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) +1 other test skip
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-6/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-dg2-set2: [PASS][174] -> [SKIP][175] ([Intel XE#836]) +1 other test skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-466/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-464/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][176] ([Intel XE#2893]) +4 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-6/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][177] ([Intel XE#1489]) +9 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][178] ([Intel XE#1489]) +12 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-432/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr@fbc-psr2-cursor-plane-move:
- shard-bmg: NOTRUN -> [SKIP][179] ([Intel XE#2234] / [Intel XE#2850]) +17 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-5/igt@kms_psr@fbc-psr2-cursor-plane-move.html
* igt@kms_psr@fbc-psr2-sprite-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][180] ([Intel XE#2850] / [Intel XE#929]) +17 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-433/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
* igt@kms_psr@pr-no-drrs:
- shard-lnl: NOTRUN -> [SKIP][181] ([Intel XE#1406]) +4 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-4/igt@kms_psr@pr-no-drrs.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg2-set2: NOTRUN -> [SKIP][182] ([Intel XE#2939]) +1 other test skip
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-432/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@bad-tiling:
- shard-lnl: NOTRUN -> [SKIP][183] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-3/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-dg2-set2: NOTRUN -> [SKIP][184] ([Intel XE#3414]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-434/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][185] ([Intel XE#2330])
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-dg2-set2: NOTRUN -> [SKIP][186] ([Intel XE#1127]) +1 other test skip
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-lnl: NOTRUN -> [SKIP][187] ([Intel XE#1127])
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-bmg: NOTRUN -> [SKIP][188] ([Intel XE#3414] / [Intel XE#3904])
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: NOTRUN -> [SKIP][189] ([Intel XE#2509])
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-dg2-set2: NOTRUN -> [SKIP][190] ([Intel XE#362])
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-464/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-lnl: NOTRUN -> [SKIP][191] ([Intel XE#362])
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_universal_plane@cursor-fb-leak:
- shard-bmg: [PASS][192] -> [FAIL][193] ([Intel XE#899]) +1 other test fail
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-8/igt@kms_universal_plane@cursor-fb-leak.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-8/igt@kms_universal_plane@cursor-fb-leak.html
* igt@kms_vrr@flip-basic-fastset:
- shard-bmg: NOTRUN -> [SKIP][194] ([Intel XE#1499])
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-6/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@lobf:
- shard-bmg: NOTRUN -> [SKIP][195] ([Intel XE#2168])
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-8/igt@kms_vrr@lobf.html
- shard-dg2-set2: NOTRUN -> [SKIP][196] ([Intel XE#2168]) +1 other test skip
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-464/igt@kms_vrr@lobf.html
- shard-lnl: NOTRUN -> [SKIP][197] ([Intel XE#1499])
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-5/igt@kms_vrr@lobf.html
* igt@kms_vrr@negative-basic:
- shard-dg2-set2: [PASS][198] -> [SKIP][199] ([Intel XE#455])
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-466/igt@kms_vrr@negative-basic.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-464/igt@kms_vrr@negative-basic.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-lnl: NOTRUN -> [SKIP][200] ([Intel XE#1091] / [Intel XE#2849])
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-5/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_compute_preempt@compute-preempt-many@engine-drm_xe_engine_class_compute:
- shard-lnl: [PASS][201] -> [FAIL][202] ([Intel XE#4278]) +1 other test fail
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-lnl-5/igt@xe_compute_preempt@compute-preempt-many@engine-drm_xe_engine_class_compute.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-3/igt@xe_compute_preempt@compute-preempt-many@engine-drm_xe_engine_class_compute.html
* igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute:
- shard-dg2-set2: NOTRUN -> [SKIP][203] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-464/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html
* igt@xe_copy_basic@mem-set-linear-0x3fff:
- shard-dg2-set2: NOTRUN -> [SKIP][204] ([Intel XE#1126]) +1 other test skip
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0x3fff.html
* igt@xe_eudebug@basic-connect:
- shard-lnl: NOTRUN -> [SKIP][205] ([Intel XE#2905]) +15 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-1/igt@xe_eudebug@basic-connect.html
* igt@xe_eudebug@basic-vm-bind-ufence-delay-ack:
- shard-dg2-set2: NOTRUN -> [SKIP][206] ([Intel XE#3889]) +1 other test skip
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-436/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html
- shard-lnl: NOTRUN -> [SKIP][207] ([Intel XE#3889])
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-1/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html
* igt@xe_eudebug@basic-vm-bind-ufence-reconnect:
- shard-bmg: NOTRUN -> [SKIP][208] ([Intel XE#3889]) +1 other test skip
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-5/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html
* igt@xe_eudebug_online@interrupt-other-debuggable:
- shard-dg2-set2: NOTRUN -> [SKIP][209] ([Intel XE#2905]) +8 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-466/igt@xe_eudebug_online@interrupt-other-debuggable.html
* igt@xe_eudebug_online@single-step:
- shard-bmg: NOTRUN -> [SKIP][210] ([Intel XE#2905]) +9 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-8/igt@xe_eudebug_online@single-step.html
* igt@xe_evict@evict-large-external-cm:
- shard-bmg: [PASS][211] -> [DMESG-WARN][212] ([Intel XE#1473] / [Intel XE#4330])
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-5/igt@xe_evict@evict-large-external-cm.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-6/igt@xe_evict@evict-large-external-cm.html
* igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-samefd:
- shard-lnl: NOTRUN -> [SKIP][213] ([Intel XE#688]) +4 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-5/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-samefd.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind:
- shard-dg2-set2: [PASS][214] -> [SKIP][215] ([Intel XE#1392]) +2 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-433/igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind.html
* igt@xe_exec_basic@multigpu-once-null-rebind:
- shard-bmg: NOTRUN -> [SKIP][216] ([Intel XE#2322]) +9 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-6/igt@xe_exec_basic@multigpu-once-null-rebind.html
* igt@xe_exec_basic@multigpu-once-userptr:
- shard-lnl: NOTRUN -> [SKIP][217] ([Intel XE#1392]) +12 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-4/igt@xe_exec_basic@multigpu-once-userptr.html
* igt@xe_exec_fault_mode@twice-userptr-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][218] ([Intel XE#288]) +30 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-prefetch.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
- shard-dg2-set2: NOTRUN -> [SKIP][219] ([Intel XE#2360])
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-434/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
* igt@xe_huc_copy@huc_copy:
- shard-dg2-set2: NOTRUN -> [SKIP][220] ([Intel XE#255])
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-434/igt@xe_huc_copy@huc_copy.html
* igt@xe_mmap@small-bar:
- shard-bmg: NOTRUN -> [SKIP][221] ([Intel XE#586])
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-3/igt@xe_mmap@small-bar.html
- shard-dg2-set2: NOTRUN -> [SKIP][222] ([Intel XE#512])
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-466/igt@xe_mmap@small-bar.html
- shard-lnl: NOTRUN -> [SKIP][223] ([Intel XE#512])
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-3/igt@xe_mmap@small-bar.html
* igt@xe_oa@oa-unit-exclusive-stream-sample-oa:
- shard-dg2-set2: NOTRUN -> [SKIP][224] ([Intel XE#2541] / [Intel XE#3573]) +12 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-436/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
* igt@xe_peer2peer@write:
- shard-bmg: NOTRUN -> [SKIP][225] ([Intel XE#2427])
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-5/igt@xe_peer2peer@write.html
- shard-dg2-set2: NOTRUN -> [SKIP][226] ([Intel XE#1061])
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-432/igt@xe_peer2peer@write.html
- shard-lnl: NOTRUN -> [SKIP][227] ([Intel XE#1061])
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-5/igt@xe_peer2peer@write.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-dg2-set2: NOTRUN -> [SKIP][228] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-436/igt@xe_pm@d3cold-mmap-vram.html
- shard-lnl: NOTRUN -> [SKIP][229] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-1/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_pm@d3cold-mocs:
- shard-dg2-set2: NOTRUN -> [SKIP][230] ([Intel XE#2284])
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-433/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-bmg: NOTRUN -> [SKIP][231] ([Intel XE#2284]) +1 other test skip
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-1/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pm@s3-exec-after:
- shard-bmg: [PASS][232] -> [DMESG-WARN][233] ([Intel XE#4330] / [Intel XE#569]) +2 other tests dmesg-warn
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-2/igt@xe_pm@s3-exec-after.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-7/igt@xe_pm@s3-exec-after.html
- shard-dg2-set2: [PASS][234] -> [DMESG-WARN][235] ([Intel XE#4330] / [Intel XE#569]) +1 other test dmesg-warn
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-436/igt@xe_pm@s3-exec-after.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-434/igt@xe_pm@s3-exec-after.html
* igt@xe_pm@s3-multiple-execs:
- shard-lnl: NOTRUN -> [SKIP][236] ([Intel XE#584])
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-1/igt@xe_pm@s3-multiple-execs.html
* igt@xe_pm@s4-basic:
- shard-lnl: NOTRUN -> [ABORT][237] ([Intel XE#4268])
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-6/igt@xe_pm@s4-basic.html
* igt@xe_pm@s4-exec-after:
- shard-dg2-set2: NOTRUN -> [ABORT][238] ([Intel XE#4268])
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-464/igt@xe_pm@s4-exec-after.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-dg2-set2: NOTRUN -> [SKIP][239] ([Intel XE#944]) +4 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-464/igt@xe_query@multigpu-query-invalid-extension.html
* igt@xe_query@multigpu-query-topology-l3-bank-mask:
- shard-lnl: NOTRUN -> [SKIP][240] ([Intel XE#944]) +4 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-1/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
* igt@xe_query@multigpu-query-uc-fw-version-huc:
- shard-bmg: NOTRUN -> [SKIP][241] ([Intel XE#944]) +3 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-6/igt@xe_query@multigpu-query-uc-fw-version-huc.html
* igt@xe_sriov_auto_provisioning@fair-allocation:
- shard-lnl: NOTRUN -> [SKIP][242] ([Intel XE#4130])
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-4/igt@xe_sriov_auto_provisioning@fair-allocation.html
- shard-bmg: NOTRUN -> [SKIP][243] ([Intel XE#4130])
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-8/igt@xe_sriov_auto_provisioning@fair-allocation.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs:
- shard-dg2-set2: NOTRUN -> [SKIP][244] ([Intel XE#4130])
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-436/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs.html
* igt@xe_sriov_flr@flr-twice:
- shard-dg2-set2: NOTRUN -> [SKIP][245] ([Intel XE#4273])
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-466/igt@xe_sriov_flr@flr-twice.html
* igt@xe_sriov_scheduling@equal-throughput:
- shard-dg2-set2: NOTRUN -> [SKIP][246] ([Intel XE#4351])
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-434/igt@xe_sriov_scheduling@equal-throughput.html
- shard-lnl: NOTRUN -> [SKIP][247] ([Intel XE#4351])
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-4/igt@xe_sriov_scheduling@equal-throughput.html
- shard-bmg: NOTRUN -> [SKIP][248] ([Intel XE#4351])
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-3/igt@xe_sriov_scheduling@equal-throughput.html
* igt@xe_wedged@wedged-mode-toggle:
- shard-dg2-set2: NOTRUN -> [ABORT][249] ([Intel XE#3075] / [Intel XE#3084])
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-433/igt@xe_wedged@wedged-mode-toggle.html
#### Possible fixes ####
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-bmg: [SKIP][250] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][251] +1 other test pass
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-8/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [INCOMPLETE][252] ([Intel XE#3862]) -> [PASS][253] +1 other test pass
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-bmg: [SKIP][254] ([Intel XE#2291]) -> [PASS][255] +2 other tests pass
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-3/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-dg2-set2: [SKIP][256] ([Intel XE#309]) -> [PASS][257] +2 other tests pass
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-464/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-436/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_feature_discovery@display-2x:
- shard-bmg: [SKIP][258] ([Intel XE#2373]) -> [PASS][259]
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-4/igt@kms_feature_discovery@display-2x.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-5/igt@kms_feature_discovery@display-2x.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-dg2-set2: [SKIP][260] ([Intel XE#310]) -> [PASS][261] +1 other test pass
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-464/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-434/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-bmg: [DMESG-WARN][262] ([Intel XE#2955]) -> [PASS][263]
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-1/igt@kms_flip@2x-modeset-vs-vblank-race.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-3/igt@kms_flip@2x-modeset-vs-vblank-race.html
- shard-dg2-set2: [DMESG-WARN][264] ([Intel XE#2955]) -> [PASS][265]
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-432/igt@kms_flip@2x-modeset-vs-vblank-race.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-434/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-bmg: [SKIP][266] ([Intel XE#2316]) -> [PASS][267] +4 other tests pass
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-4/igt@kms_flip@2x-plain-flip-fb-recreate.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-8/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [FAIL][268] ([Intel XE#301]) -> [PASS][269] +3 other tests pass
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip@flip-vs-expired-vblank@a-dp2:
- shard-bmg: [FAIL][270] ([Intel XE#3321]) -> [PASS][271] +1 other test pass
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank@a-dp2.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank@a-dp2.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [INCOMPLETE][272] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][273] +1 other test pass
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-7/igt@kms_flip@flip-vs-suspend-interruptible.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-1/igt@kms_flip@flip-vs-suspend-interruptible.html
- shard-dg2-set2: [INCOMPLETE][274] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][275] +1 other test pass
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-463/igt@kms_flip@flip-vs-suspend-interruptible.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-436/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@plain-flip-ts-check@a-edp1:
- shard-lnl: [FAIL][276] ([Intel XE#886]) -> [PASS][277] +1 other test pass
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-lnl-6/igt@kms_flip@plain-flip-ts-check@a-edp1.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-7/igt@kms_flip@plain-flip-ts-check@a-edp1.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-dg2-set2: [SKIP][278] ([Intel XE#656]) -> [PASS][279] +8 other tests pass
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary:
- shard-dg2-set2: [DMESG-WARN][280] ([Intel XE#4330]) -> [PASS][281] +20 other tests pass
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-dg2-set2: [INCOMPLETE][282] -> [PASS][283] +1 other test pass
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-435/igt@kms_hdr@bpc-switch-dpms.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-434/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-bmg: [SKIP][284] ([Intel XE#3012]) -> [PASS][285]
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_plane_lowres@tiling-x:
- shard-bmg: [DMESG-WARN][286] ([Intel XE#4091]) -> [PASS][287]
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-2/igt@kms_plane_lowres@tiling-x.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-7/igt@kms_plane_lowres@tiling-x.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-dg2-set2: [DMESG-WARN][288] ([Intel XE#2042] / [Intel XE#4330]) -> [PASS][289]
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-464/igt@kms_pm_rpm@system-suspend-modeset.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-464/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_vrr@flipline:
- shard-lnl: [FAIL][290] ([Intel XE#1522]) -> [PASS][291] +1 other test pass
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-lnl-5/igt@kms_vrr@flipline.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-lnl-3/igt@kms_vrr@flipline.html
* igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap:
- shard-dg2-set2: [SKIP][292] ([Intel XE#1392]) -> [PASS][293] +2 other tests pass
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-466/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html
* igt@xe_pm@s2idle-basic-exec:
- shard-bmg: [DMESG-WARN][294] ([Intel XE#4330]) -> [PASS][295] +28 other tests pass
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-2/igt@xe_pm@s2idle-basic-exec.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-3/igt@xe_pm@s2idle-basic-exec.html
* igt@xe_pm@s3-multiple-execs:
- shard-bmg: [DMESG-WARN][296] ([Intel XE#4330] / [Intel XE#569]) -> [PASS][297]
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-6/igt@xe_pm@s3-multiple-execs.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-6/igt@xe_pm@s3-multiple-execs.html
- shard-dg2-set2: [DMESG-WARN][298] ([Intel XE#4330] / [Intel XE#569]) -> [PASS][299]
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-432/igt@xe_pm@s3-multiple-execs.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-436/igt@xe_pm@s3-multiple-execs.html
#### Warnings ####
* igt@kms_async_flips@async-flip-suspend-resume@pipe-d-dp-4:
- shard-dg2-set2: [DMESG-WARN][300] ([Intel XE#4330]) -> [DMESG-FAIL][301] ([Intel XE#4330]) +1 other test dmesg-fail
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-433/igt@kms_async_flips@async-flip-suspend-resume@pipe-d-dp-4.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-434/igt@kms_async_flips@async-flip-suspend-resume@pipe-d-dp-4.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [INCOMPLETE][302] ([Intel XE#3862]) -> [DMESG-WARN][303] ([Intel XE#4199])
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-464/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_content_protection@atomic:
- shard-bmg: [FAIL][304] ([Intel XE#1178]) -> [SKIP][305] ([Intel XE#2341]) +1 other test skip
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-1/igt@kms_content_protection@atomic.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-6/igt@kms_content_protection@atomic.html
- shard-dg2-set2: [FAIL][306] ([Intel XE#1178]) -> [SKIP][307] ([Intel XE#455]) +1 other test skip
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-432/igt@kms_content_protection@atomic.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-464/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@uevent:
- shard-dg2-set2: [FAIL][308] ([Intel XE#1188]) -> [SKIP][309] ([Intel XE#455])
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-434/igt@kms_content_protection@uevent.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-464/igt@kms_content_protection@uevent.html
* igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw:
- shard-bmg: [SKIP][310] ([Intel XE#2311]) -> [SKIP][311] ([Intel XE#2312]) +8 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: [SKIP][312] ([Intel XE#656]) -> [SKIP][313] ([Intel XE#651]) +2 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-move:
- shard-dg2-set2: [SKIP][314] ([Intel XE#651]) -> [SKIP][315] ([Intel XE#656]) +10 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-move.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][316] ([Intel XE#2312]) -> [SKIP][317] ([Intel XE#4141]) +9 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][318] ([Intel XE#4141]) -> [SKIP][319] ([Intel XE#2312]) +2 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][320] ([Intel XE#2312]) -> [SKIP][321] ([Intel XE#2311]) +16 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt:
- shard-dg2-set2: [SKIP][322] ([Intel XE#656]) -> [SKIP][323] ([Intel XE#653]) +4 other tests skip
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render:
- shard-bmg: [SKIP][324] ([Intel XE#2312]) -> [SKIP][325] ([Intel XE#2313]) +12 other tests skip
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: [SKIP][326] ([Intel XE#653]) -> [SKIP][327] ([Intel XE#656]) +8 other tests skip
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][328] ([Intel XE#2313]) -> [SKIP][329] ([Intel XE#2312]) +8 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][330] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][331] ([Intel XE#3544])
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-2/igt@kms_hdr@brightness-with-hdr.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[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#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
[Intel XE#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[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#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493
[Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
[Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
[Intel XE#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550
[Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[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#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
[Intel XE#2955]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2955
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
[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#3075]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3075
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#3084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3084
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[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#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
[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#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767
[Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
[Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4091
[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#4199]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4199
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4268]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4268
[Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
[Intel XE#4278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4278
[Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
[Intel XE#4330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4330
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
[Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702
[Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8245 -> IGTPW_12651
* Linux: xe-2695-8554d5b7b4fded481a85ab11d75eeb97443450e2 -> xe-2698-a22ac320a08377d760e73fa530c27782f0b68b6d
IGTPW_12651: 00e2330301489d16888c5a1d3e75f03ac2cc7d90 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8245: 822e95b2560133bc21aa3065f70d7148f23f87cf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2695-8554d5b7b4fded481a85ab11d75eeb97443450e2: 8554d5b7b4fded481a85ab11d75eeb97443450e2
xe-2698-a22ac320a08377d760e73fa530c27782f0b68b6d: a22ac320a08377d760e73fa530c27782f0b68b6d
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12651/index.html
[-- Attachment #2: Type: text/html, Size: 179300 bytes --]
^ permalink raw reply [flat|nested] 20+ messages in thread