* [igt-dev] [v10 0/5] DSC Fractional BPP Val Support
@ 2023-09-18 5:49 Swati Sharma
2023-09-18 5:49 ` [igt-dev] [v10 1/5] lib/dsc: fix documentation style Swati Sharma
` (8 more replies)
0 siblings, 9 replies; 11+ messages in thread
From: Swati Sharma @ 2023-09-18 5:49 UTC (permalink / raw)
To: igt-dev
Existing i-g-t is extended to enable validation for dsc
fractional bpp.
This series is split from
https://patchwork.freedesktop.org/series/111342/
v2: addressed review comments from Ankit
v3: addressed review comments from Ankit
v5: fixed if() conditions and documentation (Ankit)
v6: fixed if() condition, tests were getting executed on non-dsc
panels (CI)
v7: rebase
v8: rebase
v9: rebase
v10: removed redundant doc
Swati Sharma (5):
lib/dsc: fix documentation style
lib/dsc: add helpers for vdsc fractional bpp debugfs entry
tests/intel/kms_dsc: enable validation for vdsc fractional bpp
tests/intel/kms_dsc: add test to validate fractional bpp with input
bpc
tests/intel/kms_dsc: remove redundant documentation
lib/igt_dsc.c | 123 ++++++++++++++++++++++++++++++++---
lib/igt_dsc.h | 6 ++
tests/intel/kms_dsc.c | 59 +++++++++++------
tests/intel/kms_dsc_helper.c | 57 ++++++++++++++++
tests/intel/kms_dsc_helper.h | 4 ++
5 files changed, 218 insertions(+), 31 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 11+ messages in thread* [igt-dev] [v10 1/5] lib/dsc: fix documentation style 2023-09-18 5:49 [igt-dev] [v10 0/5] DSC Fractional BPP Val Support Swati Sharma @ 2023-09-18 5:49 ` Swati Sharma 2023-09-18 5:49 ` [igt-dev] [v10 2/5] lib/dsc: add helpers for vdsc fractional bpp debugfs entry Swati Sharma ` (7 subsequent siblings) 8 siblings, 0 replies; 11+ messages in thread From: Swati Sharma @ 2023-09-18 5:49 UTC (permalink / raw) To: igt-dev Fix documentation style so that it can be detected by scripts to build IGT reference docs published at https://drm.pages.freedesktop.org/igt-gpu-tools/ Signed-off-by: Swati Sharma <swati2.sharma@intel.com> Reviewed-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> --- lib/igt_dsc.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/lib/igt_dsc.c b/lib/igt_dsc.c index 76a420c10..8cb293890 100644 --- a/lib/igt_dsc.c +++ b/lib/igt_dsc.c @@ -42,7 +42,7 @@ static int write_dsc_debugfs(int drmfd, char *connector_name, const char *file_n return ret; } -/* +/** * igt_is_dsc_supported_by_source: * @drmfd: A drm file descriptor * @@ -63,7 +63,7 @@ bool igt_is_dsc_supported_by_source(int drmfd) return res > 0 ? strstr(buf, "has_dsc: yes") : 0; } -/* +/** * igt_is_dsc_supported_by_sink: * @drmfd: A drm file descriptor * @connector_name: Name of the libdrm connector we're going to use @@ -75,7 +75,7 @@ bool igt_is_dsc_supported_by_sink(int drmfd, char *connector_name) return check_dsc_debugfs(drmfd, connector_name, "DSC_Sink_Support: yes"); } -/* +/** * igt_is_fec_supported: * @drmfd: A drm file descriptor * @connector_name: Name of the libdrm connector we're going to use @@ -87,7 +87,7 @@ bool igt_is_fec_supported(int drmfd, char *connector_name) return check_dsc_debugfs(drmfd, connector_name, "FEC_Sink_Support: yes"); } -/* +/** * igt_is_dsc_enabled: * @drmfd: A drm file descriptor * @connector_name: Name of the libdrm connector we're going to use @@ -99,7 +99,7 @@ bool igt_is_dsc_enabled(int drmfd, char *connector_name) return check_dsc_debugfs(drmfd, connector_name, "DSC_Enabled: yes"); } -/* +/** * igt_is_force_dsc_enabled: * @drmfd: A drm file descriptor * @connector_name: Name of the libdrm connector we're going to use @@ -112,7 +112,7 @@ bool igt_is_force_dsc_enabled(int drmfd, char *connector_name) return check_dsc_debugfs(drmfd, connector_name, "Force_DSC_Enable: yes"); } -/* +/** * igt_force_dsc_enable: * @drmfd: A drm file descriptor * @connector_name: Name of the libdrm connector we're going to use @@ -124,7 +124,7 @@ int igt_force_dsc_enable(int drmfd, char *connector_name) return write_dsc_debugfs(drmfd, connector_name, "i915_dsc_fec_support", "1"); } -/* +/** * igt_force_dsc_enable_bpc: * @drmfd: A drm file descriptor * @connector_name: Name of the libdrm connector we're going to use @@ -141,7 +141,7 @@ int igt_force_dsc_enable_bpc(int drmfd, char *connector_name, int bpc) return write_dsc_debugfs(drmfd, connector_name, "i915_dsc_bpc", buf); } -/* +/** * igt_get_dsc_debugfs_fd: * @drmfd: A drm file descriptor * @connector_name: Name of the libdrm connector we're going to use @@ -157,7 +157,7 @@ int igt_get_dsc_debugfs_fd(int drmfd, char *connector_name) return openat(igt_debugfs_dir(drmfd), file_name, O_WRONLY); } -/* +/** * igt_is_dsc_output_format_supported_by_sink: * @drmfd: A drm file descriptor * @connector_name: Name of the libdrm connector we're going to use @@ -188,7 +188,7 @@ bool igt_is_dsc_output_format_supported_by_sink(int drmfd, char *connector_name, return check_dsc_debugfs(drmfd, connector_name, check_str); } -/* +/** * igt_force_dsc_output_format: * @drmfd: A drm file descriptor * @connector_name: Name of the libdrm connector we're going to use -- 2.25.1 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* [igt-dev] [v10 2/5] lib/dsc: add helpers for vdsc fractional bpp debugfs entry 2023-09-18 5:49 [igt-dev] [v10 0/5] DSC Fractional BPP Val Support Swati Sharma 2023-09-18 5:49 ` [igt-dev] [v10 1/5] lib/dsc: fix documentation style Swati Sharma @ 2023-09-18 5:49 ` Swati Sharma 2023-09-18 5:49 ` [igt-dev] [v10 3/5] tests/intel/kms_dsc: enable validation for vdsc fractional bpp Swati Sharma ` (6 subsequent siblings) 8 siblings, 0 replies; 11+ messages in thread From: Swati Sharma @ 2023-09-18 5:49 UTC (permalink / raw) To: igt-dev Helper functions are added for getting/setting VDSC Fractional BPP debugfs entry. v2: -improved func description (Ankit) -increased buff size (Ankit) -asserted bpp_prec (Ankit) v3: -return 0 on success instead of 1 (Jouni) v4: -rebase v5: -alignment fixes (Ankit) v6: -fix documentation (Bhanu) Signed-off-by: Swati Sharma <swati2.sharma@intel.com> Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com> --- lib/igt_dsc.c | 103 ++++++++++++++++++++++++++++++++++++++++++++++++++ lib/igt_dsc.h | 6 +++ 2 files changed, 109 insertions(+) diff --git a/lib/igt_dsc.c b/lib/igt_dsc.c index 8cb293890..631763b11 100644 --- a/lib/igt_dsc.c +++ b/lib/igt_dsc.c @@ -205,3 +205,106 @@ int igt_force_dsc_output_format(int drmfd, char *connector_name, return write_dsc_debugfs(drmfd, connector_name, "i915_dsc_output_format", buf); } + +/* + * igt_get_dsc_fractional_bpp_supported: + * @drmfd: A drm file descriptor + * @connector_name: Name of the libdrm connector we're going to use + * + * Returns: DSC BPP precision supported by the sink. + * Precision value of + * 16 => 1/16 + * 8 => 1/8 + * 1 => fractional bpp not supported + */ +int igt_get_dsc_fractional_bpp_supported(int drmfd, char *connector_name) +{ + char file_name[128] = {0}; + char buf[512]; + char *start_loc; + int bpp_prec; + + sprintf(file_name, "%s/i915_dsc_fec_support", connector_name); + igt_debugfs_read(drmfd, file_name, buf); + + igt_assert(start_loc = strstr(buf, "DSC_Sink_BPP_Precision: ")); + igt_assert_eq(sscanf(start_loc, "DSC_Sink_BPP_Precision: %d", &bpp_prec), 1); + igt_assert(bpp_prec > 0); + + return bpp_prec; +} + +/* + * igt_is_dsc_fractional_bpp_supported_by_sink: + * @drmfd: A drm file descriptor + * @connector_name: Name of the libdrm connector we're going to use + * + * Returns: True if DSC fractional bpp is supported for the given connector, + * false otherwise. + */ +bool igt_is_dsc_fractional_bpp_supported_by_sink(int drmfd, char *connector_name) +{ + int bpp_prec; + + bpp_prec = igt_get_dsc_fractional_bpp_supported(drmfd, connector_name); + + if (bpp_prec == 1) + return false; + + return true; +} + +static bool check_dsc_fractional_bpp_debugfs(int drmfd, char *connector_name, + const char *check_str) +{ + char file_name[128] = {0}; + char buf[512]; + + sprintf(file_name, "%s/i915_dsc_fractional_bpp", connector_name); + + igt_debugfs_read(drmfd, file_name, buf); + + return strstr(buf, check_str); +} + +/** + * igt_is_force_dsc_fractional_bpp_enabled: + * @drmfd: A drm file descriptor + * @connector_name: Name of the libdrm connector we're going to use + * + * Returns: True if DSC Fractional BPP is force enabled (via debugfs) for the given connector, + * false otherwise. + */ +bool igt_is_force_dsc_fractional_bpp_enabled(int drmfd, char *connector_name) +{ + return check_dsc_fractional_bpp_debugfs(drmfd, connector_name, "Force_DSC_Fractional_BPP_Enable: yes"); +} + +/** + * igt_force_dsc_fractional_bpp_enable: + * @drmfd: A drm file descriptor + * @connector_name: Name of the libdrm connector we're going to use + * + * Returns: 0 on success or negative error code, in case of failure. + */ +int igt_force_dsc_fractional_bpp_enable(int drmfd, char *connector_name) +{ + return write_dsc_debugfs(drmfd, connector_name, "i915_dsc_fractional_bpp", "1"); +} + +/** + * igt_get_dsc_fractional_bpp_debugfs_fd: + * @drmfd: A drm file descriptor + * @connector_name: Name of the libdrm connector we're going to use + * + * Returns: fd of the DSC Fractional BPP debugfs for the given connector, + * else returns -1. + */ +int igt_get_dsc_fractional_bpp_debugfs_fd(int drmfd, char *connector_name) +{ + char file_name[128] = {0}; + + sprintf(file_name, "%s/i915_dsc_fractional_bpp", connector_name); + + return openat(igt_debugfs_dir(drmfd), file_name, O_WRONLY); +} diff --git a/lib/igt_dsc.h b/lib/igt_dsc.h index b58743b5f..7ab0917ec 100644 --- a/lib/igt_dsc.h +++ b/lib/igt_dsc.h @@ -8,6 +8,7 @@ #include "igt_fb.h" #include "igt_kms.h" +#include "igt_core.h" bool igt_is_dsc_supported_by_source(int drmfd); bool igt_is_dsc_supported_by_sink(int drmfd, char *connector_name); @@ -21,5 +22,10 @@ bool igt_is_dsc_output_format_supported_by_sink(int drmfd, char *connector_name, enum dsc_output_format output_format); int igt_force_dsc_output_format(int drmfd, char *connector_name, enum dsc_output_format output_format); +bool igt_is_dsc_fractional_bpp_supported_by_sink(int drmfd, char *connector_name); +int igt_get_dsc_fractional_bpp_supported(int drmfd, char *connector_name); +bool igt_is_force_dsc_fractional_bpp_enabled(int drmfd, char *connector_name); +int igt_force_dsc_fractional_bpp_enable(int drmfd, char *connector_name); +int igt_get_dsc_fractional_bpp_debugfs_fd(int drmfd, char *connector_name); #endif -- 2.25.1 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* [igt-dev] [v10 3/5] tests/intel/kms_dsc: enable validation for vdsc fractional bpp 2023-09-18 5:49 [igt-dev] [v10 0/5] DSC Fractional BPP Val Support Swati Sharma 2023-09-18 5:49 ` [igt-dev] [v10 1/5] lib/dsc: fix documentation style Swati Sharma 2023-09-18 5:49 ` [igt-dev] [v10 2/5] lib/dsc: add helpers for vdsc fractional bpp debugfs entry Swati Sharma @ 2023-09-18 5:49 ` Swati Sharma 2023-09-18 5:49 ` [igt-dev] [v10 4/5] tests/intel/kms_dsc: add test to validate fractional bpp with input bpc Swati Sharma ` (5 subsequent siblings) 8 siblings, 0 replies; 11+ messages in thread From: Swati Sharma @ 2023-09-18 5:49 UTC (permalink / raw) To: igt-dev Intel hardware supports fractional bpp from display_ver >= 14. To test fractional bpp, debugfs entry (force_dsc_fractional_bpp) is introduced. From the IGT; we are setting this debugfs entry. However, before setting this debugfs entry, we are checking capability i.e. fractional bpp is supported by platform and sink both. In driver, if force_dsc_fractional_bpp is set then while iterating over output bpp with fractional step size we will continue if output_bpp is computed as integer and allow DSC iff compressed bpp is fractional. v2: -change in igt_describe (Ankit) v3: -rebase v4: -add wrapper for source support of fractional bpp (Ankit) v5: -fix if() condition (Ankit) v6: -rebase v7: -rebase Signed-off-by: Swati Sharma <swati2.sharma@intel.com> Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com> --- tests/intel/kms_dsc.c | 36 +++++++++++++++++++---- tests/intel/kms_dsc_helper.c | 57 ++++++++++++++++++++++++++++++++++++ tests/intel/kms_dsc_helper.h | 4 +++ 3 files changed, 92 insertions(+), 5 deletions(-) diff --git a/tests/intel/kms_dsc.c b/tests/intel/kms_dsc.c index c7dfb509a..29bb21514 100644 --- a/tests/intel/kms_dsc.c +++ b/tests/intel/kms_dsc.c @@ -1,5 +1,5 @@ /* - * Copyright © 2018 Intel Corporation + * Copyright © 2018-2023 Intel Corporation * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -26,8 +26,8 @@ * subtest. * * Authors: - * Manasi Navare <manasi.d.navare@intel.com> - * + * Manasi Navare <manasi.d.navare@intel.com> + * Swati Sharma <swati2.sharma@intel.com> */ /** @@ -54,6 +54,7 @@ * @with-formats: DSC with default parameters and creating fb with diff formats * @with-output-formats: DSC and output format * @with-output-formats-with-bpc: DSC and output format with certain input BPC for the connector + * @fractional-bpp: DSC and fractional bpp with default parameters */ IGT_TEST_DESCRIPTION("Test to validate display stream compression"); @@ -65,6 +66,7 @@ IGT_TEST_DESCRIPTION("Test to validate display stream compression"); #define TEST_DSC_BPC (1<<0) #define TEST_DSC_FORMAT (1<<1) #define TEST_DSC_OUTPUT_FORMAT (1<<2) +#define TEST_DSC_FRACTIONAL_BPP (1<<3) /* * Starting from gen11, intel driver supports DSC1.1. For validating @@ -72,7 +74,7 @@ IGT_TEST_DESCRIPTION("Test to validate display stream compression"); * If the sink does support DSC, we will validate different * scenarios by forcing dsc. Outline of the tests is as follows: * (i) basic modeset (ii) input bpc (iii) pixel formats - * (iv) output formats + * (iv) output formats (v) fractional bpp * In the basic subtest, we perform modeset with default parameters. * Input bpc and pixel formats subtests, we perform modeset * with different input bpc (12/10/8) and pixel formats (YUV/RGB), @@ -81,9 +83,11 @@ IGT_TEST_DESCRIPTION("Test to validate display stream compression"); * However, in the output-format subtest, we verify different * output formats (RGB/YCBCR444/YCBCR420). Also, test is added to * validate output formats with different input bpc (12/10/8). + * Lastly, fractional bpp is tested with default parameters. + * In this, driver will ignore integer compressed bpp value and + * will do modeset with fractional bpp only. */ - typedef struct { int drm_fd; uint32_t devid; @@ -185,6 +189,12 @@ static void update_display(data_t *data, uint32_t test_type) force_dsc_output_format(data->drm_fd, data->output, data->output_format); } + if (test_type & TEST_DSC_FRACTIONAL_BPP) { + igt_debug("DSC fractional bpp is supported on %s\n", data->output->name); + save_force_dsc_fractional_bpp_en(data->drm_fd, data->output); + force_dsc_fractional_bpp_enable(data->drm_fd, data->output); + } + igt_output_set_pipe(output, data->pipe); primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); @@ -244,6 +254,7 @@ static void update_display(data_t *data, uint32_t test_type) enabled ? "ON" : "OFF"); restore_force_dsc_en(); + restore_force_dsc_fractional_bpp_en(); if (test_type & TEST_DSC_BPC) { current_bpc = igt_get_pipe_current_bpc(data->drm_fd, data->pipe); @@ -295,6 +306,11 @@ static void test_dsc(data_t *data, uint32_t test_type, int bpc, data->output, data->output_format))) continue; + if ((test_type & TEST_DSC_FRACTIONAL_BPP) && + (!is_dsc_fractional_bpp_supported(data->disp_ver, + data->drm_fd, data->output))) + continue; + if (test_type & TEST_DSC_OUTPUT_FORMAT) snprintf(&name[0][0], LEN, "-%s", kmstest_dsc_output_format_str(data->output_format)); if (test_type & TEST_DSC_FORMAT) @@ -405,6 +421,16 @@ igt_main_args("l", NULL, help_str, opt_handler, &data) } } + igt_describe("Tests fractional compressed bpp functionality if supported " + "by a connector by forcing fractional_bpp on all connectors that support it " + "with default parameter. While finding the optimum compressed bpp, driver will " + "skip over the compressed bpps with integer values. It will go ahead with DSC, " + "iff compressed bpp is fractional, failing in which, it will fail the commit."); + igt_subtest_with_dynamic("dsc-fractional-bpp") + test_dsc(&data, TEST_DSC_FRACTIONAL_BPP, + DEFAULT_BPC, DRM_FORMAT_XRGB8888, + DSC_FORMAT_RGB); + igt_fixture { igt_display_fini(&data.display); drm_close_driver(data.drm_fd); diff --git a/tests/intel/kms_dsc_helper.c b/tests/intel/kms_dsc_helper.c index 44edd5ca9..58057aca3 100644 --- a/tests/intel/kms_dsc_helper.c +++ b/tests/intel/kms_dsc_helper.c @@ -6,7 +6,9 @@ #include "kms_dsc_helper.h" static bool force_dsc_en_orig; +static bool force_dsc_fractional_bpp_en_orig; static int force_dsc_restore_fd = -1; +static int force_dsc_fractional_bpp_restore_fd = -1; void force_dsc_enable(int drmfd, igt_output_t *output) { @@ -51,6 +53,7 @@ void restore_force_dsc_en(void) void kms_dsc_exit_handler(int sig) { restore_force_dsc_en(); + restore_force_dsc_fractional_bpp_en(); } bool is_dsc_supported_by_source(int drmfd) @@ -144,3 +147,57 @@ bool is_dsc_output_format_supported(int drmfd, int disp_ver, igt_output_t *outpu return true; } + +void force_dsc_fractional_bpp_enable(int drmfd, igt_output_t *output) +{ + int ret; + + igt_debug("Forcing DSC Fractional BPP on %s\n", output->name); + ret = igt_force_dsc_fractional_bpp_enable(drmfd, output->name); + igt_assert_f(ret == 0, "forcing dsc fractional bpp debugfs_write failed\n"); +} + +void save_force_dsc_fractional_bpp_en(int drmfd, igt_output_t *output) +{ + force_dsc_fractional_bpp_en_orig = + igt_is_force_dsc_fractional_bpp_enabled(drmfd, output->name); + force_dsc_fractional_bpp_restore_fd = + igt_get_dsc_fractional_bpp_debugfs_fd(drmfd, output->name); + igt_assert(force_dsc_fractional_bpp_restore_fd >= 0); +} + +void restore_force_dsc_fractional_bpp_en(void) +{ + if (force_dsc_fractional_bpp_restore_fd < 0) + return; + + igt_debug("Restoring DSC Fractional BPP enable\n"); + igt_assert(write(force_dsc_fractional_bpp_restore_fd, force_dsc_fractional_bpp_en_orig ? "1" : "0", 1) == 1); + + close(force_dsc_fractional_bpp_restore_fd); + force_dsc_fractional_bpp_restore_fd = -1; +} + +/* DSC fractional bpp is supported on display version 14+ with DSC1.2a */ +static bool is_dsc_fractional_bpp_supported_by_source(int disp_ver) +{ + if (disp_ver < 14) { + igt_debug("DSC fractional bpp not supported on D13 and older platforms\n"); + return false; + } + + return true; +} + +bool is_dsc_fractional_bpp_supported(int disp_ver, int drmfd, igt_output_t *output) +{ + if (!is_dsc_fractional_bpp_supported_by_source(disp_ver)) + return false; + + if (!igt_is_dsc_fractional_bpp_supported_by_sink(drmfd, output->name)) { + igt_debug("DSC fractional bpp not supported on connector %s\n", output->name); + return false; + } + + return true; +} diff --git a/tests/intel/kms_dsc_helper.h b/tests/intel/kms_dsc_helper.h index 28ed56d83..4dbd88fe7 100644 --- a/tests/intel/kms_dsc_helper.h +++ b/tests/intel/kms_dsc_helper.h @@ -34,5 +34,9 @@ void force_dsc_output_format(int drmfd, igt_output_t *output, enum dsc_output_format output_format); bool is_dsc_output_format_supported(int disp_ver, int drmfd, igt_output_t *output, enum dsc_output_format output_format); +void force_dsc_fractional_bpp_enable(int drmfd, igt_output_t *output); +void save_force_dsc_fractional_bpp_en(int drmfd, igt_output_t *output); +void restore_force_dsc_fractional_bpp_en(void); +bool is_dsc_fractional_bpp_supported(int disp_ver, int drmfd, igt_output_t *output); #endif -- 2.25.1 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* [igt-dev] [v10 4/5] tests/intel/kms_dsc: add test to validate fractional bpp with input bpc 2023-09-18 5:49 [igt-dev] [v10 0/5] DSC Fractional BPP Val Support Swati Sharma ` (2 preceding siblings ...) 2023-09-18 5:49 ` [igt-dev] [v10 3/5] tests/intel/kms_dsc: enable validation for vdsc fractional bpp Swati Sharma @ 2023-09-18 5:49 ` Swati Sharma 2023-09-18 5:49 ` [igt-dev] [v10 5/5] tests/intel/kms_dsc: remove redundant documentation Swati Sharma ` (4 subsequent siblings) 8 siblings, 0 replies; 11+ messages in thread From: Swati Sharma @ 2023-09-18 5:49 UTC (permalink / raw) To: igt-dev New subtest is added to validate fractional bpp with different input bpc. v2: -rebase v3: -rebase Signed-off-by: Swati Sharma <swati2.sharma@intel.com> Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com> --- tests/intel/kms_dsc.c | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/tests/intel/kms_dsc.c b/tests/intel/kms_dsc.c index 29bb21514..9b137ef87 100644 --- a/tests/intel/kms_dsc.c +++ b/tests/intel/kms_dsc.c @@ -55,6 +55,7 @@ * @with-output-formats: DSC and output format * @with-output-formats-with-bpc: DSC and output format with certain input BPC for the connector * @fractional-bpp: DSC and fractional bpp with default parameters + * @fractional-bpp-with-bpc: DSC and fractional bpp with certain input BPC for the connector */ IGT_TEST_DESCRIPTION("Test to validate display stream compression"); @@ -85,7 +86,8 @@ IGT_TEST_DESCRIPTION("Test to validate display stream compression"); * validate output formats with different input bpc (12/10/8). * Lastly, fractional bpp is tested with default parameters. * In this, driver will ignore integer compressed bpp value and - * will do modeset with fractional bpp only. + * will do modeset with fractional bpp only. Test is added to + * validate fractional bpp with different input bpc (12/10/8). */ typedef struct { @@ -431,6 +433,16 @@ igt_main_args("l", NULL, help_str, opt_handler, &data) DEFAULT_BPC, DRM_FORMAT_XRGB8888, DSC_FORMAT_RGB); + igt_describe("Tests fractional compressed bpp functionality if supported " + "by a connector by forcing fractional_bpp on all connectors that support it " + "with certain input BPC for the connector."); + igt_subtest_with_dynamic("dsc-fractional-bpp-with-bpc") { + for (int j = 0; j < ARRAY_SIZE(bpc_list); j++) + test_dsc(&data, TEST_DSC_FRACTIONAL_BPP | TEST_DSC_BPC, + bpc_list[j], DRM_FORMAT_XRGB8888, + DSC_FORMAT_RGB); + } + igt_fixture { igt_display_fini(&data.display); drm_close_driver(data.drm_fd); -- 2.25.1 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* [igt-dev] [v10 5/5] tests/intel/kms_dsc: remove redundant documentation 2023-09-18 5:49 [igt-dev] [v10 0/5] DSC Fractional BPP Val Support Swati Sharma ` (3 preceding siblings ...) 2023-09-18 5:49 ` [igt-dev] [v10 4/5] tests/intel/kms_dsc: add test to validate fractional bpp with input bpc Swati Sharma @ 2023-09-18 5:49 ` Swati Sharma 2023-09-18 10:51 ` Juha-Pekka Heikkila 2023-09-18 8:41 ` [igt-dev] ✓ CI.xeBAT: success for DSC Fractional BPP Val Support (rev12) Patchwork ` (3 subsequent siblings) 8 siblings, 1 reply; 11+ messages in thread From: Swati Sharma @ 2023-09-18 5:49 UTC (permalink / raw) To: igt-dev With the introduction of testplan documentation, test documentation seems redundant. Remove it. Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- tests/intel/kms_dsc.c | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/tests/intel/kms_dsc.c b/tests/intel/kms_dsc.c index 9b137ef87..59a1e670b 100644 --- a/tests/intel/kms_dsc.c +++ b/tests/intel/kms_dsc.c @@ -69,27 +69,6 @@ IGT_TEST_DESCRIPTION("Test to validate display stream compression"); #define TEST_DSC_OUTPUT_FORMAT (1<<2) #define TEST_DSC_FRACTIONAL_BPP (1<<3) -/* - * Starting from gen11, intel driver supports DSC1.1. For validating - * DSC, the first step is to verify if the sink supports DSC. - * If the sink does support DSC, we will validate different - * scenarios by forcing dsc. Outline of the tests is as follows: - * (i) basic modeset (ii) input bpc (iii) pixel formats - * (iv) output formats (v) fractional bpp - * In the basic subtest, we perform modeset with default parameters. - * Input bpc and pixel formats subtests, we perform modeset - * with different input bpc (12/10/8) and pixel formats (YUV/RGB), - * respectively. From MTL+, we can verify DSC YCBCR420 output format. - * The tests are executed with the RGB444 output format by default. - * However, in the output-format subtest, we verify different - * output formats (RGB/YCBCR444/YCBCR420). Also, test is added to - * validate output formats with different input bpc (12/10/8). - * Lastly, fractional bpp is tested with default parameters. - * In this, driver will ignore integer compressed bpp value and - * will do modeset with fractional bpp only. Test is added to - * validate fractional bpp with different input bpc (12/10/8). - */ - typedef struct { int drm_fd; uint32_t devid; -- 2.25.1 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [igt-dev] [v10 5/5] tests/intel/kms_dsc: remove redundant documentation 2023-09-18 5:49 ` [igt-dev] [v10 5/5] tests/intel/kms_dsc: remove redundant documentation Swati Sharma @ 2023-09-18 10:51 ` Juha-Pekka Heikkila 0 siblings, 0 replies; 11+ messages in thread From: Juha-Pekka Heikkila @ 2023-09-18 10:51 UTC (permalink / raw) To: Swati Sharma, igt-dev Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> On 18.9.2023 8.49, Swati Sharma wrote: > With the introduction of testplan documentation, test documentation > seems redundant. Remove it. > > Signed-off-by: Swati Sharma <swati2.sharma@intel.com> > --- > tests/intel/kms_dsc.c | 21 --------------------- > 1 file changed, 21 deletions(-) > > diff --git a/tests/intel/kms_dsc.c b/tests/intel/kms_dsc.c > index 9b137ef87..59a1e670b 100644 > --- a/tests/intel/kms_dsc.c > +++ b/tests/intel/kms_dsc.c > @@ -69,27 +69,6 @@ IGT_TEST_DESCRIPTION("Test to validate display stream compression"); > #define TEST_DSC_OUTPUT_FORMAT (1<<2) > #define TEST_DSC_FRACTIONAL_BPP (1<<3) > > -/* > - * Starting from gen11, intel driver supports DSC1.1. For validating > - * DSC, the first step is to verify if the sink supports DSC. > - * If the sink does support DSC, we will validate different > - * scenarios by forcing dsc. Outline of the tests is as follows: > - * (i) basic modeset (ii) input bpc (iii) pixel formats > - * (iv) output formats (v) fractional bpp > - * In the basic subtest, we perform modeset with default parameters. > - * Input bpc and pixel formats subtests, we perform modeset > - * with different input bpc (12/10/8) and pixel formats (YUV/RGB), > - * respectively. From MTL+, we can verify DSC YCBCR420 output format. > - * The tests are executed with the RGB444 output format by default. > - * However, in the output-format subtest, we verify different > - * output formats (RGB/YCBCR444/YCBCR420). Also, test is added to > - * validate output formats with different input bpc (12/10/8). > - * Lastly, fractional bpp is tested with default parameters. > - * In this, driver will ignore integer compressed bpp value and > - * will do modeset with fractional bpp only. Test is added to > - * validate fractional bpp with different input bpc (12/10/8). > - */ > - > typedef struct { > int drm_fd; > uint32_t devid; ^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for DSC Fractional BPP Val Support (rev12) 2023-09-18 5:49 [igt-dev] [v10 0/5] DSC Fractional BPP Val Support Swati Sharma ` (4 preceding siblings ...) 2023-09-18 5:49 ` [igt-dev] [v10 5/5] tests/intel/kms_dsc: remove redundant documentation Swati Sharma @ 2023-09-18 8:41 ` Patchwork 2023-09-18 8:44 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork ` (2 subsequent siblings) 8 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2023-09-18 8:41 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1329 bytes --] == Series Details == Series: DSC Fractional BPP Val Support (rev12) URL : https://patchwork.freedesktop.org/series/117493/ State : success == Summary == CI Bug Log - changes from XEIGT_7492_BAT -> XEIGTPW_9811_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_9811_BAT that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1: - bat-adlp-7: [FAIL][1] ([Intel XE#480]) -> [PASS][2] +2 other tests pass [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7492/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9811/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1.html [Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480 Build changes ------------- * IGT: IGT_7492 -> IGTPW_9811 IGTPW_9811: 9811 IGT_7492: 7492 xe-376-9da40abcc0ccdf8fdfed4e21d76060bfcd35fe7d: 9da40abcc0ccdf8fdfed4e21d76060bfcd35fe7d == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9811/index.html [-- Attachment #2: Type: text/html, Size: 1891 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for DSC Fractional BPP Val Support (rev12) 2023-09-18 5:49 [igt-dev] [v10 0/5] DSC Fractional BPP Val Support Swati Sharma ` (5 preceding siblings ...) 2023-09-18 8:41 ` [igt-dev] ✓ CI.xeBAT: success for DSC Fractional BPP Val Support (rev12) Patchwork @ 2023-09-18 8:44 ` Patchwork 2023-09-19 9:24 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-09-20 5:01 ` Patchwork 8 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2023-09-18 8:44 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2982 bytes --] == Series Details == Series: DSC Fractional BPP Val Support (rev12) URL : https://patchwork.freedesktop.org/series/117493/ State : success == Summary == CI Bug Log - changes from CI_DRM_13645 -> IGTPW_9811 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/index.html Participating hosts (39 -> 37) ------------------------------ Missing (2): bat-dg2-8 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_9811 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - fi-hsw-4770: NOTRUN -> [SKIP][1] ([fdo#109271]) +13 other tests skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/fi-hsw-4770/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-adlp-9: NOTRUN -> [SKIP][2] ([i915#3546]) +2 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/bat-adlp-9/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-vga-1: - fi-hsw-4770: NOTRUN -> [DMESG-WARN][3] ([i915#8841]) +6 other tests dmesg-warn [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/fi-hsw-4770/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-vga-1.html * igt@kms_psr@sprite_plane_onoff: - fi-hsw-4770: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#1072]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/fi-hsw-4770/igt@kms_psr@sprite_plane_onoff.html #### Possible fixes #### * igt@i915_module_load@load: - bat-adlp-6: [DMESG-WARN][5] -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/bat-adlp-6/igt@i915_module_load@load.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/bat-adlp-6/igt@i915_module_load@load.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#7952]: https://gitlab.freedesktop.org/drm/intel/issues/7952 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7492 -> IGTPW_9811 CI-20190529: 20190529 CI_DRM_13645: b346b7d971380ab2420f4e0665365831001c0d68 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9811: 9811 IGT_7492: 7492 Testlist changes ---------------- +igt@kms_dsc@dsc-fractional-bpp +igt@kms_dsc@dsc-fractional-bpp-with-bpc == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/index.html [-- Attachment #2: Type: text/html, Size: 3696 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for DSC Fractional BPP Val Support (rev12) 2023-09-18 5:49 [igt-dev] [v10 0/5] DSC Fractional BPP Val Support Swati Sharma ` (6 preceding siblings ...) 2023-09-18 8:44 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork @ 2023-09-19 9:24 ` Patchwork 2023-09-20 5:01 ` Patchwork 8 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2023-09-19 9:24 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 98322 bytes --] == Series Details == Series: DSC Fractional BPP Val Support (rev12) URL : https://patchwork.freedesktop.org/series/117493/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13645_full -> IGTPW_9811_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9811_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9811_full, please notify your bug team (lgci.bug.filing@intel.com) 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_9811/index.html Participating hosts (9 -> 11) ------------------------------ Additional (2): shard-rkl0 shard-tglu0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9811_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_create@madvise@smem: - shard-snb: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-snb5/igt@gem_exec_create@madvise@smem.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-snb5/igt@gem_exec_create@madvise@smem.html * igt@kms_dsc@dsc-fractional-bpp (NEW): - shard-dg2: NOTRUN -> [SKIP][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-11/igt@kms_dsc@dsc-fractional-bpp.html - shard-rkl: NOTRUN -> [SKIP][4] +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-3/igt@kms_dsc@dsc-fractional-bpp.html - shard-dg1: NOTRUN -> [SKIP][5] +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-15/igt@kms_dsc@dsc-fractional-bpp.html - shard-tglu: NOTRUN -> [SKIP][6] +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-tglu-8/igt@kms_dsc@dsc-fractional-bpp.html New tests --------- New tests have been introduced between CI_DRM_13645_full and IGTPW_9811_full: ### New IGT tests (2) ### * igt@kms_dsc@dsc-fractional-bpp: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - Statuses : 6 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9811_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][7] ([i915#8411]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-11/igt@api_intel_bb@object-reloc-keep-cache.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#8411]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-4/igt@api_intel_bb@object-reloc-purge-cache.html * igt@api_intel_bb@render-ccs: - shard-dg2: NOTRUN -> [FAIL][9] ([i915#6122]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-3/igt@api_intel_bb@render-ccs.html * igt@debugfs_test@basic-hwmon: - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#9318]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-3/igt@debugfs_test@basic-hwmon.html * igt@drm_fdinfo@busy-hang@rcs0: - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#8414]) +25 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-2/igt@drm_fdinfo@busy-hang@rcs0.html * igt@drm_fdinfo@most-busy-idle-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][12] ([i915#8414]) +31 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-5/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html * igt@drm_fdinfo@virtual-busy: - shard-dg1: NOTRUN -> [SKIP][13] ([i915#8414]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-19/igt@drm_fdinfo@virtual-busy.html * igt@gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][14] ([i915#3936]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-5/igt@gem_busy@semaphore.html - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#3936]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-3/igt@gem_busy@semaphore.html * igt@gem_ccs@block-multicopy-inplace: - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#3555]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-1/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#9323]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-2/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][18] ([i915#7297]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-2/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html * igt@gem_close_race@multigpu-basic-process: - shard-mtlp: NOTRUN -> [SKIP][19] ([i915#7697]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-2/igt@gem_close_race@multigpu-basic-process.html - shard-dg2: NOTRUN -> [SKIP][20] ([i915#7697]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-1/igt@gem_close_race@multigpu-basic-process.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-dg2: [PASS][21] -> [TIMEOUT][22] ([i915#9192]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-dg2-1/igt@gem_ctx_exec@basic-nohangcheck.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-5/igt@gem_ctx_exec@basic-nohangcheck.html - shard-mtlp: NOTRUN -> [FAIL][23] ([i915#6121]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-1/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@file: - shard-snb: NOTRUN -> [SKIP][24] ([fdo#109271] / [i915#1099]) +4 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-snb4/igt@gem_ctx_persistence@file.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#8555]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-mtlp: NOTRUN -> [SKIP][26] ([i915#8555]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-2/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_sseu@invalid-args: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#280]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-1/igt@gem_ctx_sseu@invalid-args.html * igt@gem_eio@in-flight-suspend: - shard-snb: NOTRUN -> [DMESG-WARN][28] ([i915#8841]) +5 other tests dmesg-warn [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-snb5/igt@gem_eio@in-flight-suspend.html * igt@gem_eio@unwedge-stress: - shard-dg1: [PASS][29] -> [FAIL][30] ([i915#5784]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-dg1-19/igt@gem_eio@unwedge-stress.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-14/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-dual: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#4771]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-1/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#4812]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-2/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@bonded-pair: - shard-mtlp: NOTRUN -> [SKIP][33] ([i915#4771]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-8/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@bonded-true-hang: - shard-mtlp: NOTRUN -> [SKIP][34] ([i915#4812]) +2 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-1/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#4036]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-2/igt@gem_exec_balancer@invalid-bonds.html - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#4036]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-5/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@parallel-out-fence: - shard-rkl: NOTRUN -> [SKIP][37] ([i915#4525]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-6/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_exec_fair@basic-deadline: - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4473] / [i915#4771]) +4 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-2/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-rkl: [PASS][39] -> [FAIL][40] ([i915#2842]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-rkl-4/igt@gem_exec_fair@basic-none-share@rcs0.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-1/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-rkl: NOTRUN -> [FAIL][41] ([i915#2842]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-7/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-pace-solo: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#3539]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-7/igt@gem_exec_fair@basic-pace-solo.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg1: NOTRUN -> [SKIP][43] ([i915#3539] / [i915#4852]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-16/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_flush@basic-wb-prw-default: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#3539] / [i915#4852]) +8 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-11/igt@gem_exec_flush@basic-wb-prw-default.html * igt@gem_exec_params@rsvd2-dirt: - shard-dg1: NOTRUN -> [SKIP][45] ([fdo#109283]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-17/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_params@secure-non-root: - shard-mtlp: NOTRUN -> [SKIP][46] ([fdo#112283]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-5/igt@gem_exec_params@secure-non-root.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-rkl: NOTRUN -> [SKIP][47] ([i915#3281]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-gtt-read: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#3281]) +13 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-6/igt@gem_exec_reloc@basic-gtt-read.html * igt@gem_exec_reloc@basic-range: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#3281]) +18 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-4/igt@gem_exec_reloc@basic-range.html * igt@gem_exec_reloc@basic-wc-gtt-noreloc: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#3281]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-19/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html * igt@gem_exec_schedule@deep@rcs0: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4537]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-8/igt@gem_exec_schedule@deep@rcs0.html * igt@gem_exec_schedule@noreorder-priority@ccs0: - shard-mtlp: NOTRUN -> [DMESG-FAIL][52] ([i915#9121]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-4/igt@gem_exec_schedule@noreorder-priority@ccs0.html * igt@gem_exec_schedule@preempt-hang@vcs0: - shard-mtlp: [PASS][53] -> [ABORT][54] ([i915#9262]) +3 other tests abort [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-mtlp-6/igt@gem_exec_schedule@preempt-hang@vcs0.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-1/igt@gem_exec_schedule@preempt-hang@vcs0.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4537] / [i915#4812]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-6/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_exec_suspend@basic-s3@smem: - shard-mtlp: NOTRUN -> [ABORT][56] ([i915#9262]) +9 other tests abort [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-3/igt@gem_exec_suspend@basic-s3@smem.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg2: NOTRUN -> [ABORT][57] ([i915#7975] / [i915#8213]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-3/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_fence_thrash@bo-write-verify-threaded-none: - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4860]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-3/igt@gem_fence_thrash@bo-write-verify-threaded-none.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#4860]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-18/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#4860]) +3 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-3/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-apl: NOTRUN -> [SKIP][61] ([fdo#109271] / [i915#4613]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-apl3/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@massive: - shard-glk: NOTRUN -> [SKIP][62] ([fdo#109271] / [i915#4613]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-glk6/igt@gem_lmem_swapping@massive.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#4613]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-3/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [PASS][64] -> [DMESG-WARN][65] ([i915#4936] / [i915#5493]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-dg2-2/igt@gem_lmem_swapping@smem-oom@lmem0.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-11/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4613]) +6 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-6/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#8289]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-1/igt@gem_media_fill@media-fill.html * igt@gem_media_vme: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#284]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-3/igt@gem_media_vme.html * igt@gem_mmap@bad-size: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4083]) +8 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-6/igt@gem_mmap@bad-size.html * igt@gem_mmap_gtt@cpuset-big-copy-odd: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4077]) +14 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-2/igt@gem_mmap_gtt@cpuset-big-copy-odd.html * igt@gem_mmap_gtt@cpuset-medium-copy-odd: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4077]) +22 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-8/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html * igt@gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#4083]) +9 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-11/igt@gem_mmap_wc@copy.html * igt@gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-dg1: NOTRUN -> [SKIP][73] ([i915#4083]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-19/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt@gem_partial_pwrite_pread@reads-display: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#3282]) +8 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-1/igt@gem_partial_pwrite_pread@reads-display.html * igt@gem_pread@exhaustion: - shard-snb: NOTRUN -> [WARN][75] ([i915#2658]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-snb1/igt@gem_pread@exhaustion.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#3282]) +8 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-3/igt@gem_pread@snoop.html - shard-rkl: NOTRUN -> [SKIP][77] ([i915#3282]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-7/igt@gem_pread@snoop.html * igt@gem_pwrite@basic-exhaustion: - shard-apl: NOTRUN -> [WARN][78] ([i915#2658]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-apl3/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pwrite@basic-self: - shard-dg1: NOTRUN -> [SKIP][79] ([i915#3282]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-16/igt@gem_pwrite@basic-self.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#4270]) +3 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-1/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#4270]) +8 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-8/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#8428]) +7 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-1/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#4079]) +2 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#4079]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-8/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#4885]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-3/igt@gem_softpin@evict-snoop-interruptible.html - shard-dg1: NOTRUN -> [SKIP][86] ([i915#4885]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-19/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_spin_batch@spin-all-new: - shard-dg2: NOTRUN -> [FAIL][87] ([i915#5889]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-7/igt@gem_spin_batch@spin-all-new.html * igt@gem_tiled_blits@basic: - shard-dg1: NOTRUN -> [SKIP][88] ([i915#4077]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-15/igt@gem_tiled_blits@basic.html * igt@gem_unfence_active_buffers: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#4879]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-1/igt@gem_unfence_active_buffers.html - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#4879]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-2/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@dmabuf-sync: - shard-mtlp: NOTRUN -> [SKIP][91] ([i915#3297]) +4 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-3/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#3297]) +4 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-7/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#3297] / [i915#4880]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-11/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@nohangcheck: - shard-mtlp: [PASS][94] -> [FAIL][95] ([i915#9353]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-mtlp-5/igt@gem_userptr_blits@nohangcheck.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-7/igt@gem_userptr_blits@nohangcheck.html * igt@gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#3297] / [i915#4958]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-1/igt@gem_userptr_blits@sd-probe.html * igt@gen7_exec_parse@basic-allocation: - shard-dg2: NOTRUN -> [SKIP][97] ([fdo#109289]) +2 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-1/igt@gen7_exec_parse@basic-allocation.html * igt@gen7_exec_parse@cmd-crossing-page: - shard-mtlp: NOTRUN -> [SKIP][98] ([fdo#109289]) +3 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-5/igt@gen7_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@allowed-all: - shard-dg1: NOTRUN -> [SKIP][99] ([i915#2527]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-15/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@batch-zero-length: - shard-mtlp: NOTRUN -> [SKIP][100] ([i915#2856]) +5 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-8/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@unaligned-jump: - shard-rkl: NOTRUN -> [SKIP][101] ([i915#2527]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-2/igt@gen9_exec_parse@unaligned-jump.html * igt@gen9_exec_parse@valid-registers: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#2856]) +4 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-5/igt@gen9_exec_parse@valid-registers.html * igt@i915_hangman@gt-error-state-capture@vecs0: - shard-mtlp: NOTRUN -> [DMESG-WARN][103] ([i915#9262]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-6/igt@i915_hangman@gt-error-state-capture@vecs0.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [PASS][104] -> [DMESG-WARN][105] ([i915#8617]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-dg2-7/igt@i915_module_load@reload-with-fault-injection.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html - shard-mtlp: [PASS][106] -> [ABORT][107] ([i915#8489] / [i915#8668]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-reset: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#8399]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-6/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-dg1: [PASS][109] -> [SKIP][110] ([i915#1397]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-dg1-14/igt@i915_pm_rpm@dpms-non-lpsp.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-19/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-mtlp: NOTRUN -> [SKIP][111] ([fdo#109293]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-8/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_rpm@gem-pread: - shard-dg1: [PASS][112] -> [DMESG-WARN][113] ([i915#4423]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-dg1-14/igt@i915_pm_rpm@gem-pread.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-16/igt@i915_pm_rpm@gem-pread.html * igt@i915_pm_rpm@modeset-lpsp: - shard-dg1: NOTRUN -> [SKIP][114] ([i915#1397]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-15/igt@i915_pm_rpm@modeset-lpsp.html * igt@i915_pm_rpm@modeset-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#1397]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-7/igt@i915_pm_rpm@modeset-lpsp-stress.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-mtlp: NOTRUN -> [SKIP][116] ([i915#1397]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-5/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@i915_pm_rpm@modeset-pc8-residency-stress: - shard-dg2: NOTRUN -> [SKIP][117] ([fdo#109506]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-1/igt@i915_pm_rpm@modeset-pc8-residency-stress.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#6621]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-11/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@reset: - shard-snb: [PASS][119] -> [INCOMPLETE][120] ([i915#7790]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-snb7/igt@i915_pm_rps@reset.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-snb2/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds-idle@gt0: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#8925]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-5/igt@i915_pm_rps@thresholds-idle@gt0.html * igt@i915_query@query-topology-unsupported: - shard-mtlp: NOTRUN -> [SKIP][122] ([fdo#109302]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-2/igt@i915_query@query-topology-unsupported.html * igt@i915_query@test-query-geometry-subslices: - shard-dg1: NOTRUN -> [SKIP][123] ([i915#5723]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-17/igt@i915_query@test-query-geometry-subslices.html * igt@i915_selftest@live@gt_engines: - shard-mtlp: NOTRUN -> [FAIL][124] ([i915#9278] / [i915#9290]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-8/igt@i915_selftest@live@gt_engines.html * igt@i915_selftest@live@gt_pm: - shard-mtlp: NOTRUN -> [DMESG-FAIL][125] ([i915#9270]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-8/igt@i915_selftest@live@gt_pm.html * igt@i915_selftest@mock@memory_region: - shard-mtlp: NOTRUN -> [DMESG-WARN][126] ([i915#9311] / [i915#9312]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-8/igt@i915_selftest@mock@memory_region.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#4215] / [i915#5190]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-6/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: NOTRUN -> [SKIP][128] ([i915#3826]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_addfb_basic@tile-pitch-mismatch: - shard-dg1: NOTRUN -> [SKIP][129] ([i915#4212]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-14/igt@kms_addfb_basic@tile-pitch-mismatch.html - shard-mtlp: NOTRUN -> [SKIP][130] ([i915#4212]) +3 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-8/igt@kms_addfb_basic@tile-pitch-mismatch.html - shard-dg2: NOTRUN -> [SKIP][131] ([i915#4212] / [i915#5608]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-6/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc_ccs: - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#8502]) +11 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc_ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc_ccs: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#8502]) +7 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-15/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc_ccs.html * igt@kms_async_flips@crc@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][134] ([i915#8247]) +3 other tests fail [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-17/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-mtlp: NOTRUN -> [SKIP][135] ([i915#404]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-dg2: NOTRUN -> [SKIP][136] ([i915#404]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#1769] / [i915#3555]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][138] ([i915#4538] / [i915#5286]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-19/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-hflip: - shard-rkl: NOTRUN -> [SKIP][139] ([i915#5286]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: NOTRUN -> [FAIL][140] ([i915#5138]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][141] ([fdo#111614]) +7 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-7/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][142] ([fdo#111614] / [i915#3638]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-4/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][143] ([fdo#111614]) +4 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-7/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#5190]) +18 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-10/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [PASS][145] -> [FAIL][146] ([i915#3743]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-tglu-10/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#4538] / [i915#5190]) +6 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-6/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html - shard-rkl: NOTRUN -> [SKIP][148] ([fdo#110723]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-4/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#6187]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-2/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#4538]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-mtlp: NOTRUN -> [SKIP][151] ([fdo#111615]) +23 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_joiner@2x-modeset: - shard-mtlp: NOTRUN -> [SKIP][152] ([i915#2705]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-6/igt@kms_big_joiner@2x-modeset.html * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#3886] / [i915#6095]) +16 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-2/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: - shard-apl: NOTRUN -> [SKIP][154] ([fdo#109271] / [i915#3886]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-apl1/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][155] ([i915#3734] / [i915#5354] / [i915#6095]) +2 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-6/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_ccs.html * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs: - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#6095]) +60 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-6/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs.html * igt@kms_ccs@pipe-b-ccs-on-another-bo-4_tiled_mtl_rc_ccs: - shard-rkl: NOTRUN -> [SKIP][157] ([i915#5354] / [i915#6095]) +3 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-3/igt@kms_ccs@pipe-b-ccs-on-another-bo-4_tiled_mtl_rc_ccs.html * igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs: - shard-dg1: NOTRUN -> [SKIP][158] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) +3 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-19/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#5354]) +90 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-7/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#3689] / [i915#3886] / [i915#5354]) +12 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-7/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_mtl_mc_ccs: - shard-dg1: NOTRUN -> [SKIP][161] ([i915#5354] / [i915#6095]) +3 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-15/igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_mc_ccs: - shard-glk: NOTRUN -> [SKIP][162] ([fdo#109271]) +20 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-glk1/igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_rc_ccs: - shard-tglu: NOTRUN -> [SKIP][163] ([i915#3689] / [i915#5354] / [i915#6095]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-tglu-9/igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_rc_ccs_cc: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#3689] / [i915#5354]) +32 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-7/igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-d-crc-primary-basic-yf_tiled_ccs: - shard-dg1: NOTRUN -> [SKIP][165] ([i915#3689] / [i915#5354] / [i915#6095]) +3 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-16/igt@kms_ccs@pipe-d-crc-primary-basic-yf_tiled_ccs.html * igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][166] ([i915#5354]) +8 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-4/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#4087] / [i915#7213]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-3/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#4087]) +3 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-1/igt@kms_cdclk@plane-scaling@pipe-c-edp-1.html * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#4087]) +3 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-5/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-mtlp: NOTRUN -> [SKIP][170] ([fdo#111827]) +1 other test skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-1/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_color@ctm-max: - shard-dg2: NOTRUN -> [SKIP][171] ([fdo#111827]) +1 other test skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-1/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#7828]) +11 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-6/igt@kms_chamelium_frames@dp-crc-fast.html - shard-rkl: NOTRUN -> [SKIP][173] ([i915#7828]) +2 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-3/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_hpd@hdmi-hpd-fast: - shard-dg1: NOTRUN -> [SKIP][174] ([i915#7828]) +2 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-16/igt@kms_chamelium_hpd@hdmi-hpd-fast.html * igt@kms_chamelium_hpd@hdmi-hpd-storm: - shard-apl: NOTRUN -> [SKIP][175] ([fdo#109271]) +57 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-apl2/igt@kms_chamelium_hpd@hdmi-hpd-storm.html * igt@kms_chamelium_hpd@vga-hpd: - shard-mtlp: NOTRUN -> [SKIP][176] ([i915#7828]) +8 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-1/igt@kms_chamelium_hpd@vga-hpd.html * igt@kms_color@deep-color: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#3555]) +6 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-3/igt@kms_color@deep-color.html * igt@kms_color@deep-color@pipe-b-edp-1-degamma: - shard-mtlp: NOTRUN -> [FAIL][178] ([i915#6892]) +3 other tests fail [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-1/igt@kms_color@deep-color@pipe-b-edp-1-degamma.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-mtlp: NOTRUN -> [SKIP][179] ([i915#3299]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-3/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@lic: - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#6944]) +2 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-6/igt@kms_content_protection@lic.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][181] ([i915#3555]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-dg1: NOTRUN -> [SKIP][182] ([i915#3555]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-18/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-mtlp: NOTRUN -> [SKIP][183] ([i915#3359]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-7/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#3359]) +3 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-7/igt@kms_cursor_crc@cursor-random-512x512.html - shard-rkl: NOTRUN -> [SKIP][185] ([i915#3359]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-1/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-mtlp: NOTRUN -> [SKIP][186] ([i915#3555] / [i915#8814]) +7 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-7/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#4103] / [i915#4213] / [i915#5608]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#4213]) +1 other test skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#3546]) +8 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-3/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][190] ([fdo#111767] / [i915#3546]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-dg2: NOTRUN -> [SKIP][191] ([fdo#109274] / [i915#5354]) +6 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-3/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [PASS][192] -> [FAIL][193] ([i915#2346]) +1 other test fail [192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html - shard-apl: [PASS][194] -> [FAIL][195] ([i915#2346]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg1: NOTRUN -> [SKIP][196] ([i915#4103] / [i915#4213]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-15/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#4103] / [i915#4213]) +2 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-rkl: NOTRUN -> [SKIP][198] ([i915#4103]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#9227]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-10/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-1.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][200] ([i915#9227]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-18/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4.html * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#9226] / [i915#9261]) +1 other test skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-10/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1.html * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][202] ([i915#9226] / [i915#9261]) +1 other test skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-18/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][203] ([i915#3804]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][204] ([i915#8812]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-2/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#8812]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-10/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-basic: - shard-mtlp: NOTRUN -> [SKIP][206] ([i915#3555] / [i915#3840] / [i915#9159]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-7/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#3555] / [i915#3840]) +1 other test skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-10/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-mtlp: NOTRUN -> [SKIP][208] ([fdo#111767] / [i915#3637]) +2 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#8381]) +2 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-1/igt@kms_flip@2x-flip-vs-fences.html - shard-mtlp: NOTRUN -> [SKIP][210] ([i915#8381]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-3/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-panning-interruptible: - shard-dg2: NOTRUN -> [SKIP][211] ([fdo#109274]) +7 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-3/igt@kms_flip@2x-flip-vs-panning-interruptible.html * igt@kms_flip@2x-flip-vs-suspend: - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#3637]) +8 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-6/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-rkl: NOTRUN -> [SKIP][213] ([fdo#111825]) +2 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-3/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][214] ([i915#2587] / [i915#2672]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][215] ([i915#8810]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][216] ([i915#2672] / [i915#3555]) +1 other test skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][217] ([i915#2672]) +2 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#8810]) +2 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-2/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-dg2: NOTRUN -> [SKIP][219] ([i915#2672]) +3 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-dg2: NOTRUN -> [SKIP][220] ([fdo#109285]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-11/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-mtlp: NOTRUN -> [SKIP][221] ([i915#5274]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-6/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt: - shard-dg2: [PASS][222] -> [FAIL][223] ([i915#6880]) +1 other test fail [222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#8708]) +33 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][225] ([fdo#111825]) +18 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][226] ([i915#1825]) +50 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][227] ([fdo#111825] / [i915#1825]) +9 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][228] ([i915#8708]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][229] ([i915#3023]) +4 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][230] ([i915#3458]) +6 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][231] ([i915#8708]) +16 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][232] ([fdo#109280]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-tglu-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][233] ([fdo#110189]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-snb: NOTRUN -> [SKIP][234] ([fdo#109271]) +337 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-snb6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#3458]) +29 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html * igt@kms_hdr@bpc-switch: - shard-dg1: NOTRUN -> [SKIP][236] ([i915#3555] / [i915#8228]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-17/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@invalid-hdr: - shard-rkl: NOTRUN -> [SKIP][237] ([i915#3555] / [i915#8228]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-7/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@static-toggle: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#3555] / [i915#8228]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-5/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-suspend: - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#8228]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-4/igt@kms_hdr@static-toggle-suspend.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-mtlp: NOTRUN -> [SKIP][240] ([i915#4816]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-dg2: NOTRUN -> [SKIP][241] ([i915#4816]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes: - shard-mtlp: [PASS][242] -> [DMESG-WARN][243] ([i915#9262]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-mtlp-7/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-7/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html * igt@kms_plane_multiple@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#3555] / [i915#8806]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-10/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-mtlp: NOTRUN -> [SKIP][245] ([i915#6953]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-3/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-5@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][246] ([i915#5176]) +3 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-8/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-5@pipe-c-edp-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#5176]) +11 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-dp-4.html * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][248] ([i915#5176]) +7 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-1/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][249] ([i915#5176]) +23 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-15/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][250] ([i915#5235]) +5 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][251] ([i915#5235]) +23 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-edp-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][252] ([i915#5235]) +15 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-15/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-4.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#5235]) +23 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#6524] / [i915#6805]) +1 other test skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-2/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf: - shard-glk: NOTRUN -> [SKIP][255] ([fdo#109271] / [i915#658]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-glk7/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@overlay-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][256] ([i915#658]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-14/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#658]) +3 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-1/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-mtlp: NOTRUN -> [SKIP][258] ([i915#4348]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-p010: - shard-apl: NOTRUN -> [SKIP][259] ([fdo#109271] / [i915#658]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-apl6/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@cursor_blt: - shard-dg1: NOTRUN -> [SKIP][260] ([i915#1072]) +1 other test skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-19/igt@kms_psr@cursor_blt.html * igt@kms_psr@psr2_sprite_mmap_gtt: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#1072]) +12 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-1/igt@kms_psr@psr2_sprite_mmap_gtt.html * igt@kms_psr@sprite_blt: - shard-rkl: NOTRUN -> [SKIP][262] ([i915#1072]) +1 other test skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-4/igt@kms_psr@sprite_blt.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-mtlp: NOTRUN -> [SKIP][263] ([i915#5289]) +1 other test skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][264] ([i915#4235] / [i915#5190]) +2 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#4235]) +2 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-10/igt@kms_rotation_crc@sprite-rotation-90.html - shard-mtlp: NOTRUN -> [SKIP][266] ([i915#4235]) +3 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-4/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_selftest@drm_cmdline: - shard-glk: NOTRUN -> [SKIP][267] ([fdo#109271] / [i915#8661]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-glk6/igt@kms_selftest@drm_cmdline.html * igt@kms_selftest@drm_dp_mst: - shard-mtlp: NOTRUN -> [SKIP][268] ([i915#8661]) +2 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-3/igt@kms_selftest@drm_dp_mst.html * igt@kms_selftest@drm_format_helper: - shard-dg2: NOTRUN -> [SKIP][269] ([i915#8661]) +2 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-5/igt@kms_selftest@drm_format_helper.html - shard-snb: NOTRUN -> [SKIP][270] ([fdo#109271] / [i915#8661]) +2 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-snb5/igt@kms_selftest@drm_format_helper.html * igt@kms_selftest@framebuffer: - shard-dg1: NOTRUN -> [SKIP][271] ([i915#8661]) +1 other test skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-16/igt@kms_selftest@framebuffer.html * igt@kms_setmode@basic@pipe-a-vga-1: - shard-snb: NOTRUN -> [FAIL][272] ([i915#5465]) +1 other test fail [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-snb4/igt@kms_setmode@basic@pipe-a-vga-1.html * igt@kms_setmode@clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][273] ([i915#3555] / [i915#8809]) +1 other test skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-8/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][274] ([i915#3555] / [i915#8823]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-5/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#8623]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-3/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-mtlp: NOTRUN -> [SKIP][276] ([i915#8623]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vblank@pipe-c-ts-continuation-idle-hang: - shard-rkl: NOTRUN -> [SKIP][277] ([i915#4070] / [i915#6768]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-7/igt@kms_vblank@pipe-c-ts-continuation-idle-hang.html * igt@kms_vblank@pipe-d-query-busy: - shard-rkl: NOTRUN -> [SKIP][278] ([i915#4070] / [i915#533] / [i915#6768]) +1 other test skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-6/igt@kms_vblank@pipe-d-query-busy.html * igt@kms_vrr@flip-dpms: - shard-mtlp: NOTRUN -> [SKIP][279] ([i915#3555] / [i915#8808]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-6/igt@kms_vrr@flip-dpms.html * igt@kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][280] ([i915#2437]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-1/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-invalid-parameters: - shard-mtlp: NOTRUN -> [SKIP][281] ([i915#2437]) +1 other test skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-6/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-dg1: NOTRUN -> [SKIP][282] ([fdo#109289]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-16/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@polling@0-rcs0: - shard-mtlp: NOTRUN -> [FAIL][283] ([i915#9259]) +1 other test fail [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-4/igt@perf@polling@0-rcs0.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: NOTRUN -> [FAIL][284] ([i915#4349]) +3 other tests fail [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-3/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@event-wait@rcs0: - shard-dg2: NOTRUN -> [SKIP][285] ([fdo#112283]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-1/igt@perf_pmu@event-wait@rcs0.html * igt@perf_pmu@module-unload: - shard-dg2: NOTRUN -> [FAIL][286] ([i915#5793] / [i915#6121]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-6/igt@perf_pmu@module-unload.html * igt@perf_pmu@most-busy-check-all@rcs0: - shard-rkl: [PASS][287] -> [FAIL][288] ([i915#4349]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-rkl-4/igt@perf_pmu@most-busy-check-all@rcs0.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-3/igt@perf_pmu@most-busy-check-all@rcs0.html * igt@perf_pmu@most-busy-idle-check-all@vcs1: - shard-mtlp: NOTRUN -> [FAIL][289] ([i915#5234]) +12 other tests fail [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-7/igt@perf_pmu@most-busy-idle-check-all@vcs1.html * igt@perf_pmu@rc6@gt0: - shard-mtlp: NOTRUN -> [ABORT][290] ([i915#9268] / [i915#9335]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-2/igt@perf_pmu@rc6@gt0.html * igt@perf_pmu@rc6@other-idle-gt1: - shard-mtlp: NOTRUN -> [INCOMPLETE][291] ([i915#9268]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-2/igt@perf_pmu@rc6@other-idle-gt1.html * igt@perf_pmu@rc6@runtime-pm-long-gt1: - shard-mtlp: NOTRUN -> [DMESG-WARN][292] ([i915#9335]) +5 other tests dmesg-warn [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-2/igt@perf_pmu@rc6@runtime-pm-long-gt1.html * igt@perf_pmu@semaphore-busy@rcs0: - shard-mtlp: NOTRUN -> [FAIL][293] ([i915#4349]) +5 other tests fail [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-6/igt@perf_pmu@semaphore-busy@rcs0.html * igt@prime_vgem@basic-fence-blt: - shard-mtlp: NOTRUN -> [FAIL][294] ([i915#8445]) +1 other test fail [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-3/igt@prime_vgem@basic-fence-blt.html * igt@prime_vgem@basic-fence-mmap: - shard-dg2: NOTRUN -> [SKIP][295] ([i915#3708] / [i915#4077]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-11/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][296] ([i915#3291] / [i915#3708]) +1 other test skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-5/igt@prime_vgem@basic-fence-read.html - shard-mtlp: NOTRUN -> [SKIP][297] ([i915#3708]) +1 other test skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-3/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][298] ([i915#3708]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-1/igt@prime_vgem@fence-read-hang.html * igt@syncobj_wait@wait-delayed-signal: - shard-dg1: [PASS][299] -> [DMESG-WARN][300] ([i915#1982]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-dg1-19/igt@syncobj_wait@wait-delayed-signal.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-15/igt@syncobj_wait@wait-delayed-signal.html * igt@sysfs_preempt_timeout@timeout@vecs0: - shard-mtlp: NOTRUN -> [TIMEOUT][301] ([i915#8521]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-1/igt@sysfs_preempt_timeout@timeout@vecs0.html * igt@v3d/v3d_job_submission@threaded-job-submission: - shard-tglu: NOTRUN -> [SKIP][302] ([fdo#109315] / [i915#2575]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-tglu-5/igt@v3d/v3d_job_submission@threaded-job-submission.html * igt@v3d/v3d_mmap@mmap-bo: - shard-rkl: NOTRUN -> [SKIP][303] ([fdo#109315]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-1/igt@v3d/v3d_mmap@mmap-bo.html * igt@v3d/v3d_submit_cl@bad-multisync-out-sync: - shard-dg2: NOTRUN -> [SKIP][304] ([i915#2575]) +17 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-10/igt@v3d/v3d_submit_cl@bad-multisync-out-sync.html * igt@v3d/v3d_submit_csd@single-out-sync: - shard-dg1: NOTRUN -> [SKIP][305] ([i915#2575]) +1 other test skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-19/igt@v3d/v3d_submit_csd@single-out-sync.html * igt@v3d/v3d_wait_bo@used-bo: - shard-mtlp: NOTRUN -> [SKIP][306] ([i915#2575]) +23 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-2/igt@v3d/v3d_wait_bo@used-bo.html * igt@vc4/vc4_dmabuf_poll@poll-read-waits-until-write-done: - shard-rkl: NOTRUN -> [SKIP][307] ([i915#7711]) +1 other test skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-6/igt@vc4/vc4_dmabuf_poll@poll-read-waits-until-write-done.html * igt@vc4/vc4_mmap@mmap-bo: - shard-dg2: NOTRUN -> [SKIP][308] ([i915#7711]) +12 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-7/igt@vc4/vc4_mmap@mmap-bo.html * igt@vc4/vc4_purgeable_bo@free-purged-bo: - shard-mtlp: NOTRUN -> [SKIP][309] ([i915#7711]) +12 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-7/igt@vc4/vc4_purgeable_bo@free-purged-bo.html * igt@vc4/vc4_wait_bo@bad-bo: - shard-dg1: NOTRUN -> [SKIP][310] ([i915#7711]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-15/igt@vc4/vc4_wait_bo@bad-bo.html #### Possible fixes #### * igt@gem_ctx_persistence@legacy-engines-hostile@vebox: - shard-mtlp: [FAIL][311] ([i915#2410]) -> [PASS][312] +2 other tests pass [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-mtlp-7/igt@gem_ctx_persistence@legacy-engines-hostile@vebox.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-7/igt@gem_ctx_persistence@legacy-engines-hostile@vebox.html * igt@gem_eio@in-flight-suspend: - shard-mtlp: [ABORT][313] ([i915#7892] / [i915#9262]) -> [PASS][314] [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-mtlp-5/igt@gem_eio@in-flight-suspend.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-1/igt@gem_eio@in-flight-suspend.html * igt@gem_eio@kms: - shard-dg2: [FAIL][315] ([i915#5784]) -> [PASS][316] [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-dg2-7/igt@gem_eio@kms.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-5/igt@gem_eio@kms.html * igt@gem_eio@reset-stress: - shard-dg1: [FAIL][317] ([i915#5784]) -> [PASS][318] [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-dg1-19/igt@gem_eio@reset-stress.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-17/igt@gem_eio@reset-stress.html * igt@gem_exec_endless@dispatch@rcs0: - shard-rkl: [TIMEOUT][319] ([i915#3778]) -> [PASS][320] [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-rkl-3/igt@gem_exec_endless@dispatch@rcs0.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-4/igt@gem_exec_endless@dispatch@rcs0.html * igt@gem_exec_fair@basic-flow@rcs0: - shard-tglu: [FAIL][321] ([i915#2842]) -> [PASS][322] [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-tglu-2/igt@gem_exec_fair@basic-flow@rcs0.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-tglu-10/igt@gem_exec_fair@basic-flow@rcs0.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: [FAIL][323] ([i915#2842]) -> [PASS][324] +1 other test pass [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-rkl-3/igt@gem_exec_fair@basic-none@bcs0.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-3/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_workarounds@suspend-resume-fd: - shard-dg2: [FAIL][325] ([fdo#103375]) -> [PASS][326] +1 other test pass [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-dg2-1/igt@gem_workarounds@suspend-resume-fd.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-2/igt@gem_workarounds@suspend-resume-fd.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [ABORT][327] ([i915#5566]) -> [PASS][328] [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-apl7/igt@gen9_exec_parse@allowed-single.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-apl7/igt@gen9_exec_parse@allowed-single.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-dg1: [FAIL][329] ([i915#3591]) -> [PASS][330] [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg1: [SKIP][331] ([i915#1397]) -> [PASS][332] +1 other test pass [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-14/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [SKIP][333] ([i915#1397]) -> [PASS][334] +2 other tests pass [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-dg2-10/igt@i915_pm_rpm@modeset-non-lpsp-stress.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-2/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@i915_power@sanity: - shard-mtlp: [ABORT][335] ([i915#9262]) -> [PASS][336] +2 other tests pass [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-mtlp-8/igt@i915_power@sanity.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-2/igt@i915_power@sanity.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [FAIL][337] ([i915#3743]) -> [PASS][338] [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-tglu-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-tglu-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1: - shard-tglu: [INCOMPLETE][339] -> [PASS][340] [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-tglu-2/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-tglu-10/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1: - shard-apl: [FAIL][341] ([i915#79]) -> [PASS][342] [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-apl7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-apl7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1.html * igt@kms_sysfs_edid_timing: - shard-dg2: [FAIL][343] ([IGT#2]) -> [PASS][344] [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-dg2-10/igt@kms_sysfs_edid_timing.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-11/igt@kms_sysfs_edid_timing.html * igt@kms_universal_plane@cursor-fb-leak-pipe-a: - shard-glk: [FAIL][345] ([i915#9196]) -> [PASS][346] [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-glk4/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-glk3/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html * igt@perf_pmu@busy-idle@bcs0: - shard-mtlp: [FAIL][347] ([i915#4349]) -> [PASS][348] +2 other tests pass [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-mtlp-4/igt@perf_pmu@busy-idle@bcs0.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-4/igt@perf_pmu@busy-idle@bcs0.html #### Warnings #### * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-tglu: [FAIL][349] ([i915#2681] / [i915#3591]) -> [WARN][350] ([i915#2681]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@kms_content_protection@mei_interface: - shard-rkl: [SKIP][351] ([i915#7118]) -> [SKIP][352] ([fdo#109300]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-rkl-3/igt@kms_content_protection@mei_interface.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-3/igt@kms_content_protection@mei_interface.html - shard-dg1: [SKIP][353] ([i915#7116]) -> [SKIP][354] ([fdo#109300]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-dg1-14/igt@kms_content_protection@mei_interface.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-17/igt@kms_content_protection@mei_interface.html - shard-tglu: [SKIP][355] ([i915#6944] / [i915#7116] / [i915#7118]) -> [SKIP][356] ([fdo#109300]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-tglu-3/igt@kms_content_protection@mei_interface.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-tglu-6/igt@kms_content_protection@mei_interface.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite: - shard-dg1: [SKIP][357] ([fdo#111825] / [i915#4423]) -> [SKIP][358] ([fdo#111825]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_psr@cursor_plane_move: - shard-dg1: [SKIP][359] ([i915#1072]) -> [SKIP][360] ([i915#1072] / [i915#4078]) +1 other test skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-dg1-19/igt@kms_psr@cursor_plane_move.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-16/igt@kms_psr@cursor_plane_move.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [CRASH][361] ([i915#9351]) -> [INCOMPLETE][362] ([i915#5493]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-dg2-3/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-10/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3778]: https://gitlab.freedesktop.org/drm/intel/issues/3778 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608 [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5793]: https://gitlab.freedesktop.org/drm/intel/issues/5793 [i915#5889]: https://gitlab.freedesktop.org/drm/intel/issues/5889 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121 [i915#6122]: https://gitlab.freedesktop.org/drm/intel/issues/6122 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6892]: https://gitlab.freedesktop.org/drm/intel/issues/6892 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7892]: https://gitlab.freedesktop.org/drm/intel/issues/7892 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8445]: https://gitlab.freedesktop.org/drm/intel/issues/8445 [i915#8489]: https://gitlab.freedesktop.org/drm/intel/issues/8489 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8521]: https://gitlab.freedesktop.org/drm/intel/issues/8521 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8617]: https://gitlab.freedesktop.org/drm/intel/issues/8617 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8823]: https://gitlab.freedesktop.org/drm/intel/issues/8823 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053 [i915#9121]: https://gitlab.freedesktop.org/drm/intel/issues/9121 [i915#9159]: https://gitlab.freedesktop.org/drm/intel/issues/9159 [i915#9192]: https://gitlab.freedesktop.org/drm/intel/issues/9192 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9226]: https://gitlab.freedesktop.org/drm/intel/issues/9226 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9259]: https://gitlab.freedesktop.org/drm/intel/issues/9259 [i915#9261]: https://gitlab.freedesktop.org/drm/intel/issues/9261 [i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262 [i915#9268]: https://gitlab.freedesktop.org/drm/intel/issues/9268 [i915#9270]: https://gitlab.freedesktop.org/drm/intel/issues/9270 [i915#9278]: https://gitlab.freedesktop.org/drm/intel/issues/9278 [i915#9290]: https://gitlab.freedesktop.org/drm/intel/issues/9290 [i915#9292]: https://gitlab.freedesktop.org/drm/intel/issues/9292 [i915#9298]: https://gitlab.freedesktop.org/drm/intel/issues/9298 [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311 [i915#9312]: https://gitlab.freedesktop.org/drm/intel/issues/9312 [i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [i915#9335]: https://gitlab.freedesktop.org/drm/intel/issues/9335 [i915#9351]: https://gitlab.freedesktop.org/drm/intel/issues/9351 [i915#9353]: https://gitlab.freedesktop.org/drm/intel/issues/9353 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7492 -> IGTPW_9811 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13645: b346b7d971380ab2420f4e0665365831001c0d68 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9811: 9811 IGT_7492: 7492 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/index.html [-- Attachment #2: Type: text/html, Size: 120291 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for DSC Fractional BPP Val Support (rev12) 2023-09-18 5:49 [igt-dev] [v10 0/5] DSC Fractional BPP Val Support Swati Sharma ` (7 preceding siblings ...) 2023-09-19 9:24 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-09-20 5:01 ` Patchwork 8 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2023-09-20 5:01 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 98404 bytes --] == Series Details == Series: DSC Fractional BPP Val Support (rev12) URL : https://patchwork.freedesktop.org/series/117493/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13645_full -> IGTPW_9811_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9811_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9811_full, please notify your bug team (lgci.bug.filing@intel.com) 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_9811/index.html Participating hosts (9 -> 11) ------------------------------ Additional (2): shard-rkl0 shard-tglu0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9811_full: ### IGT changes ### #### Possible regressions #### * igt@kms_dsc@dsc-fractional-bpp (NEW): - shard-dg2: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-11/igt@kms_dsc@dsc-fractional-bpp.html - shard-rkl: NOTRUN -> [SKIP][2] +1 other test skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-3/igt@kms_dsc@dsc-fractional-bpp.html - shard-dg1: NOTRUN -> [SKIP][3] +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-15/igt@kms_dsc@dsc-fractional-bpp.html - shard-tglu: NOTRUN -> [SKIP][4] +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-tglu-8/igt@kms_dsc@dsc-fractional-bpp.html New tests --------- New tests have been introduced between CI_DRM_13645_full and IGTPW_9811_full: ### New IGT tests (2) ### * igt@kms_dsc@dsc-fractional-bpp: - Statuses : 6 skip(s) - Exec time: [0.0] s * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - Statuses : 6 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9811_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][5] ([i915#8411]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-11/igt@api_intel_bb@object-reloc-keep-cache.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][6] ([i915#8411]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-4/igt@api_intel_bb@object-reloc-purge-cache.html * igt@api_intel_bb@render-ccs: - shard-dg2: NOTRUN -> [FAIL][7] ([i915#6122]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-3/igt@api_intel_bb@render-ccs.html * igt@debugfs_test@basic-hwmon: - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#9318]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-3/igt@debugfs_test@basic-hwmon.html * igt@drm_fdinfo@busy-hang@rcs0: - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#8414]) +25 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-2/igt@drm_fdinfo@busy-hang@rcs0.html * igt@drm_fdinfo@most-busy-idle-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#8414]) +31 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-5/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html * igt@drm_fdinfo@virtual-busy: - shard-dg1: NOTRUN -> [SKIP][11] ([i915#8414]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-19/igt@drm_fdinfo@virtual-busy.html * igt@gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][12] ([i915#3936]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-5/igt@gem_busy@semaphore.html - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#3936]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-3/igt@gem_busy@semaphore.html * igt@gem_ccs@block-multicopy-inplace: - shard-mtlp: NOTRUN -> [SKIP][14] ([i915#3555]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-1/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#9323]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-2/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][16] ([i915#7297]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-2/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html * igt@gem_close_race@multigpu-basic-process: - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#7697]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-2/igt@gem_close_race@multigpu-basic-process.html - shard-dg2: NOTRUN -> [SKIP][18] ([i915#7697]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-1/igt@gem_close_race@multigpu-basic-process.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-dg2: [PASS][19] -> [TIMEOUT][20] ([i915#9192]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-dg2-1/igt@gem_ctx_exec@basic-nohangcheck.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-5/igt@gem_ctx_exec@basic-nohangcheck.html - shard-mtlp: NOTRUN -> [FAIL][21] ([i915#6121]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-1/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@file: - shard-snb: NOTRUN -> [SKIP][22] ([fdo#109271] / [i915#1099]) +4 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-snb4/igt@gem_ctx_persistence@file.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#8555]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-mtlp: NOTRUN -> [SKIP][24] ([i915#8555]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-2/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_sseu@invalid-args: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#280]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-1/igt@gem_ctx_sseu@invalid-args.html * igt@gem_eio@in-flight-suspend: - shard-snb: NOTRUN -> [DMESG-WARN][26] ([i915#8841]) +5 other tests dmesg-warn [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-snb5/igt@gem_eio@in-flight-suspend.html * igt@gem_eio@unwedge-stress: - shard-dg1: [PASS][27] -> [FAIL][28] ([i915#5784]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-dg1-19/igt@gem_eio@unwedge-stress.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-14/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-dual: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#4771]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-1/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#4812]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-2/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@bonded-pair: - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#4771]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-8/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@bonded-true-hang: - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#4812]) +2 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-1/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#4036]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-2/igt@gem_exec_balancer@invalid-bonds.html - shard-mtlp: NOTRUN -> [SKIP][34] ([i915#4036]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-5/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@parallel-out-fence: - shard-rkl: NOTRUN -> [SKIP][35] ([i915#4525]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-6/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_exec_create@madvise@smem: - shard-snb: [PASS][36] -> [ABORT][37] ([i915#8852]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-snb5/igt@gem_exec_create@madvise@smem.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-snb5/igt@gem_exec_create@madvise@smem.html * igt@gem_exec_fair@basic-deadline: - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4473] / [i915#4771]) +4 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-2/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-rkl: [PASS][39] -> [FAIL][40] ([i915#2842]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-rkl-4/igt@gem_exec_fair@basic-none-share@rcs0.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-1/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-rkl: NOTRUN -> [FAIL][41] ([i915#2842]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-7/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-pace-solo: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#3539]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-7/igt@gem_exec_fair@basic-pace-solo.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg1: NOTRUN -> [SKIP][43] ([i915#3539] / [i915#4852]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-16/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_flush@basic-wb-prw-default: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#3539] / [i915#4852]) +8 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-11/igt@gem_exec_flush@basic-wb-prw-default.html * igt@gem_exec_params@rsvd2-dirt: - shard-dg1: NOTRUN -> [SKIP][45] ([fdo#109283]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-17/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_params@secure-non-root: - shard-mtlp: NOTRUN -> [SKIP][46] ([fdo#112283]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-5/igt@gem_exec_params@secure-non-root.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-rkl: NOTRUN -> [SKIP][47] ([i915#3281]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-gtt-read: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#3281]) +13 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-6/igt@gem_exec_reloc@basic-gtt-read.html * igt@gem_exec_reloc@basic-range: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#3281]) +18 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-4/igt@gem_exec_reloc@basic-range.html * igt@gem_exec_reloc@basic-wc-gtt-noreloc: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#3281]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-19/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html * igt@gem_exec_schedule@deep@rcs0: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4537]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-8/igt@gem_exec_schedule@deep@rcs0.html * igt@gem_exec_schedule@noreorder-priority@ccs0: - shard-mtlp: NOTRUN -> [DMESG-FAIL][52] ([i915#9121]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-4/igt@gem_exec_schedule@noreorder-priority@ccs0.html * igt@gem_exec_schedule@preempt-hang@vcs0: - shard-mtlp: [PASS][53] -> [ABORT][54] ([i915#9262]) +3 other tests abort [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-mtlp-6/igt@gem_exec_schedule@preempt-hang@vcs0.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-1/igt@gem_exec_schedule@preempt-hang@vcs0.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4537] / [i915#4812]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-6/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_exec_suspend@basic-s3@smem: - shard-mtlp: NOTRUN -> [ABORT][56] ([i915#9262]) +9 other tests abort [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-3/igt@gem_exec_suspend@basic-s3@smem.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg2: NOTRUN -> [ABORT][57] ([i915#7975] / [i915#8213]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-3/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_fence_thrash@bo-write-verify-threaded-none: - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4860]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-3/igt@gem_fence_thrash@bo-write-verify-threaded-none.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#4860]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-18/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#4860]) +3 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-3/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-apl: NOTRUN -> [SKIP][61] ([fdo#109271] / [i915#4613]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-apl3/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@massive: - shard-glk: NOTRUN -> [SKIP][62] ([fdo#109271] / [i915#4613]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-glk6/igt@gem_lmem_swapping@massive.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#4613]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-3/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [PASS][64] -> [DMESG-WARN][65] ([i915#4936] / [i915#5493]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-dg2-2/igt@gem_lmem_swapping@smem-oom@lmem0.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-11/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4613]) +6 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-6/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#8289]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-1/igt@gem_media_fill@media-fill.html * igt@gem_media_vme: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#284]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-3/igt@gem_media_vme.html * igt@gem_mmap@bad-size: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4083]) +8 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-6/igt@gem_mmap@bad-size.html * igt@gem_mmap_gtt@cpuset-big-copy-odd: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4077]) +14 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-2/igt@gem_mmap_gtt@cpuset-big-copy-odd.html * igt@gem_mmap_gtt@cpuset-medium-copy-odd: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4077]) +22 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-8/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html * igt@gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#4083]) +9 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-11/igt@gem_mmap_wc@copy.html * igt@gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-dg1: NOTRUN -> [SKIP][73] ([i915#4083]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-19/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt@gem_partial_pwrite_pread@reads-display: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#3282]) +8 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-1/igt@gem_partial_pwrite_pread@reads-display.html * igt@gem_pread@exhaustion: - shard-snb: NOTRUN -> [WARN][75] ([i915#2658]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-snb1/igt@gem_pread@exhaustion.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#3282]) +8 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-3/igt@gem_pread@snoop.html - shard-rkl: NOTRUN -> [SKIP][77] ([i915#3282]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-7/igt@gem_pread@snoop.html * igt@gem_pwrite@basic-exhaustion: - shard-apl: NOTRUN -> [WARN][78] ([i915#2658]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-apl3/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pwrite@basic-self: - shard-dg1: NOTRUN -> [SKIP][79] ([i915#3282]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-16/igt@gem_pwrite@basic-self.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#4270]) +3 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-1/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#4270]) +8 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-8/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#8428]) +7 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-1/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#4079]) +2 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#4079]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-8/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#4885]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-3/igt@gem_softpin@evict-snoop-interruptible.html - shard-dg1: NOTRUN -> [SKIP][86] ([i915#4885]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-19/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_spin_batch@spin-all-new: - shard-dg2: NOTRUN -> [FAIL][87] ([i915#5889]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-7/igt@gem_spin_batch@spin-all-new.html * igt@gem_tiled_blits@basic: - shard-dg1: NOTRUN -> [SKIP][88] ([i915#4077]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-15/igt@gem_tiled_blits@basic.html * igt@gem_unfence_active_buffers: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#4879]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-1/igt@gem_unfence_active_buffers.html - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#4879]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-2/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@dmabuf-sync: - shard-mtlp: NOTRUN -> [SKIP][91] ([i915#3297]) +4 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-3/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#3297]) +4 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-7/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#3297] / [i915#4880]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-11/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@nohangcheck: - shard-mtlp: [PASS][94] -> [FAIL][95] ([i915#9353]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-mtlp-5/igt@gem_userptr_blits@nohangcheck.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-7/igt@gem_userptr_blits@nohangcheck.html * igt@gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#3297] / [i915#4958]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-1/igt@gem_userptr_blits@sd-probe.html * igt@gen7_exec_parse@basic-allocation: - shard-dg2: NOTRUN -> [SKIP][97] ([fdo#109289]) +2 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-1/igt@gen7_exec_parse@basic-allocation.html * igt@gen7_exec_parse@cmd-crossing-page: - shard-mtlp: NOTRUN -> [SKIP][98] ([fdo#109289]) +3 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-5/igt@gen7_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@allowed-all: - shard-dg1: NOTRUN -> [SKIP][99] ([i915#2527]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-15/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@batch-zero-length: - shard-mtlp: NOTRUN -> [SKIP][100] ([i915#2856]) +5 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-8/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@unaligned-jump: - shard-rkl: NOTRUN -> [SKIP][101] ([i915#2527]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-2/igt@gen9_exec_parse@unaligned-jump.html * igt@gen9_exec_parse@valid-registers: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#2856]) +4 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-5/igt@gen9_exec_parse@valid-registers.html * igt@i915_hangman@gt-error-state-capture@vecs0: - shard-mtlp: NOTRUN -> [DMESG-WARN][103] ([i915#9262]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-6/igt@i915_hangman@gt-error-state-capture@vecs0.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [PASS][104] -> [DMESG-WARN][105] ([i915#8617]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-dg2-7/igt@i915_module_load@reload-with-fault-injection.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html - shard-mtlp: [PASS][106] -> [ABORT][107] ([i915#8489] / [i915#8668]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-reset: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#8399]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-6/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-dg1: [PASS][109] -> [SKIP][110] ([i915#1397]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-dg1-14/igt@i915_pm_rpm@dpms-non-lpsp.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-19/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-mtlp: NOTRUN -> [SKIP][111] ([fdo#109293]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-8/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_rpm@gem-pread: - shard-dg1: [PASS][112] -> [DMESG-WARN][113] ([i915#4423]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-dg1-14/igt@i915_pm_rpm@gem-pread.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-16/igt@i915_pm_rpm@gem-pread.html * igt@i915_pm_rpm@modeset-lpsp: - shard-dg1: NOTRUN -> [SKIP][114] ([i915#1397]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-15/igt@i915_pm_rpm@modeset-lpsp.html * igt@i915_pm_rpm@modeset-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#1397]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-7/igt@i915_pm_rpm@modeset-lpsp-stress.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-mtlp: NOTRUN -> [SKIP][116] ([i915#1397]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-5/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@i915_pm_rpm@modeset-pc8-residency-stress: - shard-dg2: NOTRUN -> [SKIP][117] ([fdo#109506]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-1/igt@i915_pm_rpm@modeset-pc8-residency-stress.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#6621]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-11/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@reset: - shard-snb: [PASS][119] -> [INCOMPLETE][120] ([i915#7790]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-snb7/igt@i915_pm_rps@reset.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-snb2/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds-idle@gt0: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#8925]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-5/igt@i915_pm_rps@thresholds-idle@gt0.html * igt@i915_query@query-topology-unsupported: - shard-mtlp: NOTRUN -> [SKIP][122] ([fdo#109302]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-2/igt@i915_query@query-topology-unsupported.html * igt@i915_query@test-query-geometry-subslices: - shard-dg1: NOTRUN -> [SKIP][123] ([i915#5723]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-17/igt@i915_query@test-query-geometry-subslices.html * igt@i915_selftest@live@gt_engines: - shard-mtlp: NOTRUN -> [FAIL][124] ([i915#9278] / [i915#9290]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-8/igt@i915_selftest@live@gt_engines.html * igt@i915_selftest@live@gt_pm: - shard-mtlp: NOTRUN -> [DMESG-FAIL][125] ([i915#9270]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-8/igt@i915_selftest@live@gt_pm.html * igt@i915_selftest@mock@memory_region: - shard-mtlp: NOTRUN -> [DMESG-WARN][126] ([i915#9311] / [i915#9312]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-8/igt@i915_selftest@mock@memory_region.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#4215] / [i915#5190]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-6/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: NOTRUN -> [SKIP][128] ([i915#3826]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_addfb_basic@tile-pitch-mismatch: - shard-dg1: NOTRUN -> [SKIP][129] ([i915#4212]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-14/igt@kms_addfb_basic@tile-pitch-mismatch.html - shard-mtlp: NOTRUN -> [SKIP][130] ([i915#4212]) +3 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-8/igt@kms_addfb_basic@tile-pitch-mismatch.html - shard-dg2: NOTRUN -> [SKIP][131] ([i915#4212] / [i915#5608]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-6/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc_ccs: - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#8502]) +11 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc_ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc_ccs: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#8502]) +7 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-15/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc_ccs.html * igt@kms_async_flips@crc@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][134] ([i915#8247]) +3 other tests fail [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-17/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-mtlp: NOTRUN -> [SKIP][135] ([i915#404]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-dg2: NOTRUN -> [SKIP][136] ([i915#404]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#1769] / [i915#3555]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][138] ([i915#4538] / [i915#5286]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-19/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-hflip: - shard-rkl: NOTRUN -> [SKIP][139] ([i915#5286]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: NOTRUN -> [FAIL][140] ([i915#5138]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][141] ([fdo#111614]) +7 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-7/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][142] ([fdo#111614] / [i915#3638]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-4/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][143] ([fdo#111614]) +4 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-7/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#5190]) +18 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-10/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [PASS][145] -> [FAIL][146] ([i915#3743]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-tglu-10/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#4538] / [i915#5190]) +6 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-6/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html - shard-rkl: NOTRUN -> [SKIP][148] ([fdo#110723]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-4/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#6187]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-2/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#4538]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-mtlp: NOTRUN -> [SKIP][151] ([fdo#111615]) +23 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_joiner@2x-modeset: - shard-mtlp: NOTRUN -> [SKIP][152] ([i915#2705]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-6/igt@kms_big_joiner@2x-modeset.html * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#3886] / [i915#6095]) +16 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-2/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: - shard-apl: NOTRUN -> [SKIP][154] ([fdo#109271] / [i915#3886]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-apl1/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][155] ([i915#3734] / [i915#5354] / [i915#6095]) +2 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-6/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_ccs.html * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs: - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#6095]) +60 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-6/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs.html * igt@kms_ccs@pipe-b-ccs-on-another-bo-4_tiled_mtl_rc_ccs: - shard-rkl: NOTRUN -> [SKIP][157] ([i915#5354] / [i915#6095]) +3 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-3/igt@kms_ccs@pipe-b-ccs-on-another-bo-4_tiled_mtl_rc_ccs.html * igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs: - shard-dg1: NOTRUN -> [SKIP][158] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) +3 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-19/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#5354]) +90 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-7/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#3689] / [i915#3886] / [i915#5354]) +12 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-7/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_mtl_mc_ccs: - shard-dg1: NOTRUN -> [SKIP][161] ([i915#5354] / [i915#6095]) +3 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-15/igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_mc_ccs: - shard-glk: NOTRUN -> [SKIP][162] ([fdo#109271]) +20 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-glk1/igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_rc_ccs: - shard-tglu: NOTRUN -> [SKIP][163] ([i915#3689] / [i915#5354] / [i915#6095]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-tglu-9/igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_rc_ccs_cc: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#3689] / [i915#5354]) +32 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-7/igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-d-crc-primary-basic-yf_tiled_ccs: - shard-dg1: NOTRUN -> [SKIP][165] ([i915#3689] / [i915#5354] / [i915#6095]) +3 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-16/igt@kms_ccs@pipe-d-crc-primary-basic-yf_tiled_ccs.html * igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][166] ([i915#5354]) +8 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-4/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#4087] / [i915#7213]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-3/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#4087]) +3 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-1/igt@kms_cdclk@plane-scaling@pipe-c-edp-1.html * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#4087]) +3 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-5/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-mtlp: NOTRUN -> [SKIP][170] ([fdo#111827]) +1 other test skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-1/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_color@ctm-max: - shard-dg2: NOTRUN -> [SKIP][171] ([fdo#111827]) +1 other test skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-1/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#7828]) +11 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-6/igt@kms_chamelium_frames@dp-crc-fast.html - shard-rkl: NOTRUN -> [SKIP][173] ([i915#7828]) +2 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-3/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_hpd@hdmi-hpd-fast: - shard-dg1: NOTRUN -> [SKIP][174] ([i915#7828]) +2 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-16/igt@kms_chamelium_hpd@hdmi-hpd-fast.html * igt@kms_chamelium_hpd@hdmi-hpd-storm: - shard-apl: NOTRUN -> [SKIP][175] ([fdo#109271]) +57 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-apl2/igt@kms_chamelium_hpd@hdmi-hpd-storm.html * igt@kms_chamelium_hpd@vga-hpd: - shard-mtlp: NOTRUN -> [SKIP][176] ([i915#7828]) +8 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-1/igt@kms_chamelium_hpd@vga-hpd.html * igt@kms_color@deep-color: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#3555]) +6 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-3/igt@kms_color@deep-color.html * igt@kms_color@deep-color@pipe-b-edp-1-degamma: - shard-mtlp: NOTRUN -> [FAIL][178] ([i915#6892]) +3 other tests fail [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-1/igt@kms_color@deep-color@pipe-b-edp-1-degamma.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-mtlp: NOTRUN -> [SKIP][179] ([i915#3299]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-3/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@lic: - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#6944]) +2 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-6/igt@kms_content_protection@lic.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][181] ([i915#3555]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-dg1: NOTRUN -> [SKIP][182] ([i915#3555]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-18/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-mtlp: NOTRUN -> [SKIP][183] ([i915#3359]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-7/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#3359]) +3 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-7/igt@kms_cursor_crc@cursor-random-512x512.html - shard-rkl: NOTRUN -> [SKIP][185] ([i915#3359]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-1/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-mtlp: NOTRUN -> [SKIP][186] ([i915#3555] / [i915#8814]) +7 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-7/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#4103] / [i915#4213] / [i915#5608]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#4213]) +1 other test skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#3546]) +8 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-3/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][190] ([fdo#111767] / [i915#3546]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-dg2: NOTRUN -> [SKIP][191] ([fdo#109274] / [i915#5354]) +6 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-3/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [PASS][192] -> [FAIL][193] ([i915#2346]) +1 other test fail [192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html - shard-apl: [PASS][194] -> [FAIL][195] ([i915#2346]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg1: NOTRUN -> [SKIP][196] ([i915#4103] / [i915#4213]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-15/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#4103] / [i915#4213]) +2 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-rkl: NOTRUN -> [SKIP][198] ([i915#4103]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#9227]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-10/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-1.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][200] ([i915#9227]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-18/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4.html * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#9226] / [i915#9261]) +1 other test skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-10/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1.html * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][202] ([i915#9226] / [i915#9261]) +1 other test skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-18/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][203] ([i915#3804]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][204] ([i915#8812]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-2/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#8812]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-10/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-basic: - shard-mtlp: NOTRUN -> [SKIP][206] ([i915#3555] / [i915#3840] / [i915#9159]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-7/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#3555] / [i915#3840]) +1 other test skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-10/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-mtlp: NOTRUN -> [SKIP][208] ([fdo#111767] / [i915#3637]) +2 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#8381]) +2 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-1/igt@kms_flip@2x-flip-vs-fences.html - shard-mtlp: NOTRUN -> [SKIP][210] ([i915#8381]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-3/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-panning-interruptible: - shard-dg2: NOTRUN -> [SKIP][211] ([fdo#109274]) +7 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-3/igt@kms_flip@2x-flip-vs-panning-interruptible.html * igt@kms_flip@2x-flip-vs-suspend: - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#3637]) +8 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-6/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-rkl: NOTRUN -> [SKIP][213] ([fdo#111825]) +2 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-3/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][214] ([i915#2587] / [i915#2672]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][215] ([i915#8810]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][216] ([i915#2672] / [i915#3555]) +1 other test skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][217] ([i915#2672]) +2 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#8810]) +2 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-2/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-dg2: NOTRUN -> [SKIP][219] ([i915#2672]) +3 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-dg2: NOTRUN -> [SKIP][220] ([fdo#109285]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-11/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-mtlp: NOTRUN -> [SKIP][221] ([i915#5274]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-6/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt: - shard-dg2: [PASS][222] -> [FAIL][223] ([i915#6880]) +1 other test fail [222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#8708]) +33 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][225] ([fdo#111825]) +18 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][226] ([i915#1825]) +50 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][227] ([fdo#111825] / [i915#1825]) +9 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][228] ([i915#8708]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][229] ([i915#3023]) +4 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][230] ([i915#3458]) +6 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][231] ([i915#8708]) +16 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][232] ([fdo#109280]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-tglu-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][233] ([fdo#110189]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-snb: NOTRUN -> [SKIP][234] ([fdo#109271]) +337 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-snb6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#3458]) +29 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html * igt@kms_hdr@bpc-switch: - shard-dg1: NOTRUN -> [SKIP][236] ([i915#3555] / [i915#8228]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-17/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@invalid-hdr: - shard-rkl: NOTRUN -> [SKIP][237] ([i915#3555] / [i915#8228]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-7/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@static-toggle: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#3555] / [i915#8228]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-5/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-suspend: - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#8228]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-4/igt@kms_hdr@static-toggle-suspend.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-mtlp: NOTRUN -> [SKIP][240] ([i915#4816]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-dg2: NOTRUN -> [SKIP][241] ([i915#4816]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes: - shard-mtlp: [PASS][242] -> [DMESG-WARN][243] ([i915#9262]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-mtlp-7/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-7/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html * igt@kms_plane_multiple@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#3555] / [i915#8806]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-10/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-mtlp: NOTRUN -> [SKIP][245] ([i915#6953]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-3/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-5@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][246] ([i915#5176]) +3 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-8/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-5@pipe-c-edp-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#5176]) +11 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-dp-4.html * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][248] ([i915#5176]) +7 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-1/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][249] ([i915#5176]) +23 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-15/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][250] ([i915#5235]) +5 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][251] ([i915#5235]) +23 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-edp-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][252] ([i915#5235]) +15 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-15/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-hdmi-a-4.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#5235]) +23 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#6524] / [i915#6805]) +1 other test skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-2/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf: - shard-glk: NOTRUN -> [SKIP][255] ([fdo#109271] / [i915#658]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-glk7/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@overlay-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][256] ([i915#658]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-14/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#658]) +3 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-1/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-mtlp: NOTRUN -> [SKIP][258] ([i915#4348]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-p010: - shard-apl: NOTRUN -> [SKIP][259] ([fdo#109271] / [i915#658]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-apl6/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@cursor_blt: - shard-dg1: NOTRUN -> [SKIP][260] ([i915#1072]) +1 other test skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-19/igt@kms_psr@cursor_blt.html * igt@kms_psr@psr2_sprite_mmap_gtt: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#1072]) +12 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-1/igt@kms_psr@psr2_sprite_mmap_gtt.html * igt@kms_psr@sprite_blt: - shard-rkl: NOTRUN -> [SKIP][262] ([i915#1072]) +1 other test skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-4/igt@kms_psr@sprite_blt.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-mtlp: NOTRUN -> [SKIP][263] ([i915#5289]) +1 other test skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][264] ([i915#4235] / [i915#5190]) +2 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#4235]) +2 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-10/igt@kms_rotation_crc@sprite-rotation-90.html - shard-mtlp: NOTRUN -> [SKIP][266] ([i915#4235]) +3 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-4/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_selftest@drm_cmdline: - shard-glk: NOTRUN -> [SKIP][267] ([fdo#109271] / [i915#8661]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-glk6/igt@kms_selftest@drm_cmdline.html * igt@kms_selftest@drm_dp_mst: - shard-mtlp: NOTRUN -> [SKIP][268] ([i915#8661]) +2 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-3/igt@kms_selftest@drm_dp_mst.html * igt@kms_selftest@drm_format_helper: - shard-dg2: NOTRUN -> [SKIP][269] ([i915#8661]) +2 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-5/igt@kms_selftest@drm_format_helper.html - shard-snb: NOTRUN -> [SKIP][270] ([fdo#109271] / [i915#8661]) +2 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-snb5/igt@kms_selftest@drm_format_helper.html * igt@kms_selftest@framebuffer: - shard-dg1: NOTRUN -> [SKIP][271] ([i915#8661]) +1 other test skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-16/igt@kms_selftest@framebuffer.html * igt@kms_setmode@basic@pipe-a-vga-1: - shard-snb: NOTRUN -> [FAIL][272] ([i915#5465]) +1 other test fail [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-snb4/igt@kms_setmode@basic@pipe-a-vga-1.html * igt@kms_setmode@clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][273] ([i915#3555] / [i915#8809]) +1 other test skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-8/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][274] ([i915#3555] / [i915#8823]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-5/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#8623]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-3/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-mtlp: NOTRUN -> [SKIP][276] ([i915#8623]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vblank@pipe-c-ts-continuation-idle-hang: - shard-rkl: NOTRUN -> [SKIP][277] ([i915#4070] / [i915#6768]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-7/igt@kms_vblank@pipe-c-ts-continuation-idle-hang.html * igt@kms_vblank@pipe-d-query-busy: - shard-rkl: NOTRUN -> [SKIP][278] ([i915#4070] / [i915#533] / [i915#6768]) +1 other test skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-6/igt@kms_vblank@pipe-d-query-busy.html * igt@kms_vrr@flip-dpms: - shard-mtlp: NOTRUN -> [SKIP][279] ([i915#3555] / [i915#8808]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-6/igt@kms_vrr@flip-dpms.html * igt@kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][280] ([i915#2437]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-1/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-invalid-parameters: - shard-mtlp: NOTRUN -> [SKIP][281] ([i915#2437]) +1 other test skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-6/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-dg1: NOTRUN -> [SKIP][282] ([fdo#109289]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-16/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@polling@0-rcs0: - shard-mtlp: NOTRUN -> [FAIL][283] ([i915#9259]) +1 other test fail [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-4/igt@perf@polling@0-rcs0.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: NOTRUN -> [FAIL][284] ([i915#4349]) +3 other tests fail [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-3/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@event-wait@rcs0: - shard-dg2: NOTRUN -> [SKIP][285] ([fdo#112283]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-1/igt@perf_pmu@event-wait@rcs0.html * igt@perf_pmu@module-unload: - shard-dg2: NOTRUN -> [FAIL][286] ([i915#5793] / [i915#6121]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-6/igt@perf_pmu@module-unload.html * igt@perf_pmu@most-busy-check-all@rcs0: - shard-rkl: [PASS][287] -> [FAIL][288] ([i915#4349]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-rkl-4/igt@perf_pmu@most-busy-check-all@rcs0.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-3/igt@perf_pmu@most-busy-check-all@rcs0.html * igt@perf_pmu@most-busy-idle-check-all@vcs1: - shard-mtlp: NOTRUN -> [FAIL][289] ([i915#5234]) +12 other tests fail [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-7/igt@perf_pmu@most-busy-idle-check-all@vcs1.html * igt@perf_pmu@rc6@gt0: - shard-mtlp: NOTRUN -> [ABORT][290] ([i915#9268] / [i915#9335]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-2/igt@perf_pmu@rc6@gt0.html * igt@perf_pmu@rc6@other-idle-gt1: - shard-mtlp: NOTRUN -> [INCOMPLETE][291] ([i915#9268]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-2/igt@perf_pmu@rc6@other-idle-gt1.html * igt@perf_pmu@rc6@runtime-pm-long-gt1: - shard-mtlp: NOTRUN -> [DMESG-WARN][292] ([i915#9335]) +5 other tests dmesg-warn [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-2/igt@perf_pmu@rc6@runtime-pm-long-gt1.html * igt@perf_pmu@semaphore-busy@rcs0: - shard-mtlp: NOTRUN -> [FAIL][293] ([i915#4349]) +5 other tests fail [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-6/igt@perf_pmu@semaphore-busy@rcs0.html * igt@prime_vgem@basic-fence-blt: - shard-mtlp: NOTRUN -> [FAIL][294] ([i915#8445]) +1 other test fail [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-3/igt@prime_vgem@basic-fence-blt.html * igt@prime_vgem@basic-fence-mmap: - shard-dg2: NOTRUN -> [SKIP][295] ([i915#3708] / [i915#4077]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-11/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][296] ([i915#3291] / [i915#3708]) +1 other test skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-5/igt@prime_vgem@basic-fence-read.html - shard-mtlp: NOTRUN -> [SKIP][297] ([i915#3708]) +1 other test skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-3/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][298] ([i915#3708]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-1/igt@prime_vgem@fence-read-hang.html * igt@syncobj_wait@wait-delayed-signal: - shard-dg1: [PASS][299] -> [DMESG-WARN][300] ([i915#1982]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-dg1-19/igt@syncobj_wait@wait-delayed-signal.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-15/igt@syncobj_wait@wait-delayed-signal.html * igt@sysfs_preempt_timeout@timeout@vecs0: - shard-mtlp: NOTRUN -> [TIMEOUT][301] ([i915#8521]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-1/igt@sysfs_preempt_timeout@timeout@vecs0.html * igt@v3d/v3d_job_submission@threaded-job-submission: - shard-tglu: NOTRUN -> [SKIP][302] ([fdo#109315] / [i915#2575]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-tglu-5/igt@v3d/v3d_job_submission@threaded-job-submission.html * igt@v3d/v3d_mmap@mmap-bo: - shard-rkl: NOTRUN -> [SKIP][303] ([fdo#109315]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-1/igt@v3d/v3d_mmap@mmap-bo.html * igt@v3d/v3d_submit_cl@bad-multisync-out-sync: - shard-dg2: NOTRUN -> [SKIP][304] ([i915#2575]) +17 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-10/igt@v3d/v3d_submit_cl@bad-multisync-out-sync.html * igt@v3d/v3d_submit_csd@single-out-sync: - shard-dg1: NOTRUN -> [SKIP][305] ([i915#2575]) +1 other test skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-19/igt@v3d/v3d_submit_csd@single-out-sync.html * igt@v3d/v3d_wait_bo@used-bo: - shard-mtlp: NOTRUN -> [SKIP][306] ([i915#2575]) +23 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-2/igt@v3d/v3d_wait_bo@used-bo.html * igt@vc4/vc4_dmabuf_poll@poll-read-waits-until-write-done: - shard-rkl: NOTRUN -> [SKIP][307] ([i915#7711]) +1 other test skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-6/igt@vc4/vc4_dmabuf_poll@poll-read-waits-until-write-done.html * igt@vc4/vc4_mmap@mmap-bo: - shard-dg2: NOTRUN -> [SKIP][308] ([i915#7711]) +12 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-7/igt@vc4/vc4_mmap@mmap-bo.html * igt@vc4/vc4_purgeable_bo@free-purged-bo: - shard-mtlp: NOTRUN -> [SKIP][309] ([i915#7711]) +12 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-7/igt@vc4/vc4_purgeable_bo@free-purged-bo.html * igt@vc4/vc4_wait_bo@bad-bo: - shard-dg1: NOTRUN -> [SKIP][310] ([i915#7711]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-15/igt@vc4/vc4_wait_bo@bad-bo.html #### Possible fixes #### * igt@gem_ctx_persistence@legacy-engines-hostile@vebox: - shard-mtlp: [FAIL][311] ([i915#2410]) -> [PASS][312] +2 other tests pass [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-mtlp-7/igt@gem_ctx_persistence@legacy-engines-hostile@vebox.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-7/igt@gem_ctx_persistence@legacy-engines-hostile@vebox.html * igt@gem_eio@in-flight-suspend: - shard-mtlp: [ABORT][313] ([i915#7892] / [i915#9262]) -> [PASS][314] [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-mtlp-5/igt@gem_eio@in-flight-suspend.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-1/igt@gem_eio@in-flight-suspend.html * igt@gem_eio@kms: - shard-dg2: [FAIL][315] ([i915#5784]) -> [PASS][316] [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-dg2-7/igt@gem_eio@kms.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-5/igt@gem_eio@kms.html * igt@gem_eio@reset-stress: - shard-dg1: [FAIL][317] ([i915#5784]) -> [PASS][318] [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-dg1-19/igt@gem_eio@reset-stress.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-17/igt@gem_eio@reset-stress.html * igt@gem_exec_endless@dispatch@rcs0: - shard-rkl: [TIMEOUT][319] ([i915#3778]) -> [PASS][320] [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-rkl-3/igt@gem_exec_endless@dispatch@rcs0.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-4/igt@gem_exec_endless@dispatch@rcs0.html * igt@gem_exec_fair@basic-flow@rcs0: - shard-tglu: [FAIL][321] ([i915#2842]) -> [PASS][322] [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-tglu-2/igt@gem_exec_fair@basic-flow@rcs0.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-tglu-10/igt@gem_exec_fair@basic-flow@rcs0.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: [FAIL][323] ([i915#2842]) -> [PASS][324] +1 other test pass [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-rkl-3/igt@gem_exec_fair@basic-none@bcs0.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-3/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_workarounds@suspend-resume-fd: - shard-dg2: [FAIL][325] ([fdo#103375]) -> [PASS][326] +1 other test pass [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-dg2-1/igt@gem_workarounds@suspend-resume-fd.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-2/igt@gem_workarounds@suspend-resume-fd.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [ABORT][327] ([i915#5566]) -> [PASS][328] [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-apl7/igt@gen9_exec_parse@allowed-single.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-apl7/igt@gen9_exec_parse@allowed-single.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-dg1: [FAIL][329] ([i915#3591]) -> [PASS][330] [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg1: [SKIP][331] ([i915#1397]) -> [PASS][332] +1 other test pass [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-14/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [SKIP][333] ([i915#1397]) -> [PASS][334] +2 other tests pass [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-dg2-10/igt@i915_pm_rpm@modeset-non-lpsp-stress.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-2/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@i915_power@sanity: - shard-mtlp: [ABORT][335] ([i915#9262]) -> [PASS][336] +2 other tests pass [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-mtlp-8/igt@i915_power@sanity.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-2/igt@i915_power@sanity.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [FAIL][337] ([i915#3743]) -> [PASS][338] [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-tglu-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-tglu-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1: - shard-tglu: [INCOMPLETE][339] -> [PASS][340] [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-tglu-2/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-tglu-10/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1: - shard-apl: [FAIL][341] ([i915#79]) -> [PASS][342] [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-apl7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-apl7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1.html * igt@kms_sysfs_edid_timing: - shard-dg2: [FAIL][343] ([IGT#2]) -> [PASS][344] [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-dg2-10/igt@kms_sysfs_edid_timing.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-11/igt@kms_sysfs_edid_timing.html * igt@kms_universal_plane@cursor-fb-leak-pipe-a: - shard-glk: [FAIL][345] ([i915#9196]) -> [PASS][346] [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-glk4/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-glk3/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html * igt@perf_pmu@busy-idle@bcs0: - shard-mtlp: [FAIL][347] ([i915#4349]) -> [PASS][348] +2 other tests pass [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-mtlp-4/igt@perf_pmu@busy-idle@bcs0.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-mtlp-4/igt@perf_pmu@busy-idle@bcs0.html #### Warnings #### * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-tglu: [FAIL][349] ([i915#2681] / [i915#3591]) -> [WARN][350] ([i915#2681]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@kms_content_protection@mei_interface: - shard-rkl: [SKIP][351] ([i915#7118]) -> [SKIP][352] ([fdo#109300]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-rkl-3/igt@kms_content_protection@mei_interface.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-rkl-3/igt@kms_content_protection@mei_interface.html - shard-dg1: [SKIP][353] ([i915#7116]) -> [SKIP][354] ([fdo#109300]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-dg1-14/igt@kms_content_protection@mei_interface.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-17/igt@kms_content_protection@mei_interface.html - shard-tglu: [SKIP][355] ([i915#6944] / [i915#7116] / [i915#7118]) -> [SKIP][356] ([fdo#109300]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-tglu-3/igt@kms_content_protection@mei_interface.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-tglu-6/igt@kms_content_protection@mei_interface.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite: - shard-dg1: [SKIP][357] ([fdo#111825] / [i915#4423]) -> [SKIP][358] ([fdo#111825]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_psr@cursor_plane_move: - shard-dg1: [SKIP][359] ([i915#1072]) -> [SKIP][360] ([i915#1072] / [i915#4078]) +1 other test skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-dg1-19/igt@kms_psr@cursor_plane_move.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg1-16/igt@kms_psr@cursor_plane_move.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [CRASH][361] ([i915#9351]) -> [INCOMPLETE][362] ([i915#5493]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13645/shard-dg2-3/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/shard-dg2-10/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3778]: https://gitlab.freedesktop.org/drm/intel/issues/3778 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608 [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5793]: https://gitlab.freedesktop.org/drm/intel/issues/5793 [i915#5889]: https://gitlab.freedesktop.org/drm/intel/issues/5889 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121 [i915#6122]: https://gitlab.freedesktop.org/drm/intel/issues/6122 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6892]: https://gitlab.freedesktop.org/drm/intel/issues/6892 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7892]: https://gitlab.freedesktop.org/drm/intel/issues/7892 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8445]: https://gitlab.freedesktop.org/drm/intel/issues/8445 [i915#8489]: https://gitlab.freedesktop.org/drm/intel/issues/8489 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8521]: https://gitlab.freedesktop.org/drm/intel/issues/8521 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8617]: https://gitlab.freedesktop.org/drm/intel/issues/8617 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8823]: https://gitlab.freedesktop.org/drm/intel/issues/8823 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8852]: https://gitlab.freedesktop.org/drm/intel/issues/8852 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053 [i915#9121]: https://gitlab.freedesktop.org/drm/intel/issues/9121 [i915#9159]: https://gitlab.freedesktop.org/drm/intel/issues/9159 [i915#9192]: https://gitlab.freedesktop.org/drm/intel/issues/9192 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9226]: https://gitlab.freedesktop.org/drm/intel/issues/9226 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9259]: https://gitlab.freedesktop.org/drm/intel/issues/9259 [i915#9261]: https://gitlab.freedesktop.org/drm/intel/issues/9261 [i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262 [i915#9268]: https://gitlab.freedesktop.org/drm/intel/issues/9268 [i915#9270]: https://gitlab.freedesktop.org/drm/intel/issues/9270 [i915#9278]: https://gitlab.freedesktop.org/drm/intel/issues/9278 [i915#9290]: https://gitlab.freedesktop.org/drm/intel/issues/9290 [i915#9292]: https://gitlab.freedesktop.org/drm/intel/issues/9292 [i915#9298]: https://gitlab.freedesktop.org/drm/intel/issues/9298 [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311 [i915#9312]: https://gitlab.freedesktop.org/drm/intel/issues/9312 [i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [i915#9335]: https://gitlab.freedesktop.org/drm/intel/issues/9335 [i915#9351]: https://gitlab.freedesktop.org/drm/intel/issues/9351 [i915#9353]: https://gitlab.freedesktop.org/drm/intel/issues/9353 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7492 -> IGTPW_9811 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13645: b346b7d971380ab2420f4e0665365831001c0d68 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9811: 9811 IGT_7492: 7492 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9811/index.html [-- Attachment #2: Type: text/html, Size: 120370 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2023-09-20 5:01 UTC | newest] Thread overview: 11+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-09-18 5:49 [igt-dev] [v10 0/5] DSC Fractional BPP Val Support Swati Sharma 2023-09-18 5:49 ` [igt-dev] [v10 1/5] lib/dsc: fix documentation style Swati Sharma 2023-09-18 5:49 ` [igt-dev] [v10 2/5] lib/dsc: add helpers for vdsc fractional bpp debugfs entry Swati Sharma 2023-09-18 5:49 ` [igt-dev] [v10 3/5] tests/intel/kms_dsc: enable validation for vdsc fractional bpp Swati Sharma 2023-09-18 5:49 ` [igt-dev] [v10 4/5] tests/intel/kms_dsc: add test to validate fractional bpp with input bpc Swati Sharma 2023-09-18 5:49 ` [igt-dev] [v10 5/5] tests/intel/kms_dsc: remove redundant documentation Swati Sharma 2023-09-18 10:51 ` Juha-Pekka Heikkila 2023-09-18 8:41 ` [igt-dev] ✓ CI.xeBAT: success for DSC Fractional BPP Val Support (rev12) Patchwork 2023-09-18 8:44 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork 2023-09-19 9:24 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-09-20 5:01 ` Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox