* [igt-dev] [v8 0/3] DSC Fractional BPP Val Support
@ 2023-09-05 8:33 Swati Sharma
2023-09-05 8:33 ` [igt-dev] [v8 1/3] lib/dsc: add helpers for vdsc fractional bpp debugfs entry Swati Sharma
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Swati Sharma @ 2023-09-05 8:33 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
7/10 patches merged. 3/10 remaining.
Swati Sharma (3):
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
lib/igt_dsc.c | 103 +++++++++++++++++++++++++++++++++++
lib/igt_dsc.h | 6 ++
tests/intel/kms_dsc.c | 42 +++++++++++++-
tests/intel/kms_dsc_helper.c | 57 +++++++++++++++++++
tests/intel/kms_dsc_helper.h | 4 ++
5 files changed, 210 insertions(+), 2 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 7+ messages in thread* [igt-dev] [v8 1/3] lib/dsc: add helpers for vdsc fractional bpp debugfs entry 2023-09-05 8:33 [igt-dev] [v8 0/3] DSC Fractional BPP Val Support Swati Sharma @ 2023-09-05 8:33 ` Swati Sharma 2023-09-05 13:41 ` Modem, Bhanuprakash 2023-09-05 8:33 ` [igt-dev] [v8 2/3] tests/intel/kms_dsc: enable validation for vdsc fractional bpp Swati Sharma ` (3 subsequent siblings) 4 siblings, 1 reply; 7+ messages in thread From: Swati Sharma @ 2023-09-05 8:33 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) 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 76a420c10..61d619a4a 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] 7+ messages in thread
* Re: [igt-dev] [v8 1/3] lib/dsc: add helpers for vdsc fractional bpp debugfs entry 2023-09-05 8:33 ` [igt-dev] [v8 1/3] lib/dsc: add helpers for vdsc fractional bpp debugfs entry Swati Sharma @ 2023-09-05 13:41 ` Modem, Bhanuprakash 0 siblings, 0 replies; 7+ messages in thread From: Modem, Bhanuprakash @ 2023-09-05 13:41 UTC (permalink / raw) To: Swati Sharma, igt-dev Hi Swati, On Tue-05-09-2023 02:03 pm, Swati Sharma wrote: > 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) > > 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 76a420c10..61d619a4a 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); > } > + > +/* Please fix the documentation (second '*' is missing), otherwise scripts will treat it as simple multiline comment. it should start with /** - Bhanu > + * 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 ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] [v8 2/3] tests/intel/kms_dsc: enable validation for vdsc fractional bpp 2023-09-05 8:33 [igt-dev] [v8 0/3] DSC Fractional BPP Val Support Swati Sharma 2023-09-05 8:33 ` [igt-dev] [v8 1/3] lib/dsc: add helpers for vdsc fractional bpp debugfs entry Swati Sharma @ 2023-09-05 8:33 ` Swati Sharma 2023-09-05 8:33 ` [igt-dev] [v8 3/3] tests/intel/kms_dsc: add test to validate fractional bpp with input bpc Swati Sharma ` (2 subsequent siblings) 4 siblings, 0 replies; 7+ messages in thread From: Swati Sharma @ 2023-09-05 8:33 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 | 29 +++++++++++++++++- tests/intel/kms_dsc_helper.c | 57 ++++++++++++++++++++++++++++++++++++ tests/intel/kms_dsc_helper.h | 4 +++ 3 files changed, 89 insertions(+), 1 deletion(-) diff --git a/tests/intel/kms_dsc.c b/tests/intel/kms_dsc.c index 41e1d9519..388fc6eed 100644 --- a/tests/intel/kms_dsc.c +++ b/tests/intel/kms_dsc.c @@ -55,6 +55,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"); @@ -66,6 +67,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 @@ -73,7 +75,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), @@ -82,6 +84,9 @@ 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. */ @@ -186,6 +191,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); @@ -245,6 +256,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); @@ -296,6 +308,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) @@ -406,6 +423,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] 7+ messages in thread
* [igt-dev] [v8 3/3] tests/intel/kms_dsc: add test to validate fractional bpp with input bpc 2023-09-05 8:33 [igt-dev] [v8 0/3] DSC Fractional BPP Val Support Swati Sharma 2023-09-05 8:33 ` [igt-dev] [v8 1/3] lib/dsc: add helpers for vdsc fractional bpp debugfs entry Swati Sharma 2023-09-05 8:33 ` [igt-dev] [v8 2/3] tests/intel/kms_dsc: enable validation for vdsc fractional bpp Swati Sharma @ 2023-09-05 8:33 ` Swati Sharma 2023-09-05 14:04 ` [igt-dev] ✓ Fi.CI.BAT: success for DSC Fractional BPP Val Support (rev10) Patchwork 2023-09-05 15:56 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Swati Sharma @ 2023-09-05 8:33 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 | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/tests/intel/kms_dsc.c b/tests/intel/kms_dsc.c index 388fc6eed..ebfaa9c35 100644 --- a/tests/intel/kms_dsc.c +++ b/tests/intel/kms_dsc.c @@ -56,6 +56,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"); @@ -86,10 +87,10 @@ 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 { int drm_fd; uint32_t devid; @@ -433,6 +434,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] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for DSC Fractional BPP Val Support (rev10) 2023-09-05 8:33 [igt-dev] [v8 0/3] DSC Fractional BPP Val Support Swati Sharma ` (2 preceding siblings ...) 2023-09-05 8:33 ` [igt-dev] [v8 3/3] tests/intel/kms_dsc: add test to validate fractional bpp with input bpc Swati Sharma @ 2023-09-05 14:04 ` Patchwork 2023-09-05 15:56 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-09-05 14:04 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3742 bytes --] == Series Details == Series: DSC Fractional BPP Val Support (rev10) URL : https://patchwork.freedesktop.org/series/117493/ State : success == Summary == CI Bug Log - changes from CI_DRM_13597 -> IGTPW_9717 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/index.html Participating hosts (39 -> 37) ------------------------------ Additional (1): fi-kbl-soraka Missing (3): bat-dg2-8 fi-snb-2520m fi-hsw-4770 Known issues ------------ Here are the changes found in IGTPW_9717 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_suspend@basic-s0@lmem0: - bat-dg2-9: [PASS][1] -> [INCOMPLETE][2] ([i915#6311]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/bat-dg2-9/igt@gem_exec_suspend@basic-s0@lmem0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/bat-dg2-9/igt@gem_exec_suspend@basic-s0@lmem0.html * igt@gem_huc_copy@huc-copy: - fi-kbl-soraka: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#2190]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-kbl-soraka: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#4613]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html * igt@i915_selftest@live@gt_pm: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][5] ([i915#1886] / [i915#7913]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - fi-kbl-soraka: NOTRUN -> [SKIP][6] ([fdo#109271]) +8 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/fi-kbl-soraka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-adlp-9: NOTRUN -> [SKIP][7] ([i915#3546]) +2 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/bat-adlp-9/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html #### Warnings #### * igt@kms_psr@primary_page_flip: - bat-rplp-1: [SKIP][8] ([i915#1072]) -> [ABORT][9] ([i915#8860]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/bat-rplp-1/igt@kms_psr@primary_page_flip.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/bat-rplp-1/igt@kms_psr@primary_page_flip.html [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#6311]: https://gitlab.freedesktop.org/drm/intel/issues/6311 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#8860]: https://gitlab.freedesktop.org/drm/intel/issues/8860 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7468 -> IGTPW_9717 CI-20190529: 20190529 CI_DRM_13597: 0bcdef3ce42624f34849ce20818bc54425df56c5 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9717: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/index.html IGT_7468: 7468 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_9717/index.html [-- Attachment #2: Type: text/html, Size: 4632 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for DSC Fractional BPP Val Support (rev10) 2023-09-05 8:33 [igt-dev] [v8 0/3] DSC Fractional BPP Val Support Swati Sharma ` (3 preceding siblings ...) 2023-09-05 14:04 ` [igt-dev] ✓ Fi.CI.BAT: success for DSC Fractional BPP Val Support (rev10) Patchwork @ 2023-09-05 15:56 ` Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2023-09-05 15:56 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 91386 bytes --] == Series Details == Series: DSC Fractional BPP Val Support (rev10) URL : https://patchwork.freedesktop.org/series/117493/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13597_full -> IGTPW_9717_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9717_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9717_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_9717/index.html Participating hosts (10 -> 9) ------------------------------ Missing (1): shard-rkl0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9717_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_schedule@wide@rcs0: - shard-glk: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-glk8/igt@gem_exec_schedule@wide@rcs0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-glk1/igt@gem_exec_schedule@wide@rcs0.html * igt@i915_pm_rps@waitboost: - shard-dg2: [PASS][3] -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-dg2-10/igt@i915_pm_rps@waitboost.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-1/igt@i915_pm_rps@waitboost.html * igt@kms_dsc@dsc-fractional-bpp (NEW): - shard-dg2: NOTRUN -> [SKIP][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-3/igt@kms_dsc@dsc-fractional-bpp.html - shard-rkl: NOTRUN -> [SKIP][6] +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-1/igt@kms_dsc@dsc-fractional-bpp.html - shard-dg1: NOTRUN -> [SKIP][7] +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg1-13/igt@kms_dsc@dsc-fractional-bpp.html - shard-tglu: NOTRUN -> [SKIP][8] +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-tglu-8/igt@kms_dsc@dsc-fractional-bpp.html - shard-mtlp: NOTRUN -> [SKIP][9] +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-7/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_frontbuffer_tracking@basic: - shard-snb: [PASS][10] -> [INCOMPLETE][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-snb1/igt@kms_frontbuffer_tracking@basic.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-snb1/igt@kms_frontbuffer_tracking@basic.html New tests --------- New tests have been introduced between CI_DRM_13597_full and IGTPW_9717_full: ### New IGT tests (2) ### * igt@kms_dsc@dsc-fractional-bpp: - Statuses : 8 skip(s) - Exec time: [0.0] s * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - Statuses : 7 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9717_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#8411]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-7/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@render-ccs: - shard-dg2: NOTRUN -> [FAIL][13] ([i915#6122]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-2/igt@api_intel_bb@render-ccs.html * igt@drm_fdinfo@busy@vcs0: - shard-mtlp: NOTRUN -> [SKIP][14] ([i915#8414]) +6 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-4/igt@drm_fdinfo@busy@vcs0.html * igt@drm_fdinfo@virtual-busy-hang-all: - shard-dg2: NOTRUN -> [SKIP][15] ([i915#8414]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-10/igt@drm_fdinfo@virtual-busy-hang-all.html * igt@feature_discovery@display-4x: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#1839]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-2/igt@feature_discovery@display-4x.html * igt@feature_discovery@psr1: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#658]) +2 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-10/igt@feature_discovery@psr1.html * igt@feature_discovery@psr2: - shard-rkl: NOTRUN -> [SKIP][18] ([i915#658]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-1/igt@feature_discovery@psr2.html - shard-tglu: NOTRUN -> [SKIP][19] ([i915#658]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-tglu-10/igt@feature_discovery@psr2.html * igt@gem_bad_reloc@negative-reloc-bltcopy: - shard-mtlp: NOTRUN -> [SKIP][20] ([i915#3281]) +7 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-8/igt@gem_bad_reloc@negative-reloc-bltcopy.html * igt@gem_basic@multigpu-create-close: - shard-rkl: NOTRUN -> [SKIP][21] ([i915#7697]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-1/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@block-multicopy-inplace: - shard-mtlp: NOTRUN -> [SKIP][22] ([i915#3555] / [i915#5325]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-8/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: NOTRUN -> [SKIP][23] ([i915#4098] / [i915#5325]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-1/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#7697]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-1/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#8562]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-10/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [PASS][26] -> [FAIL][27] ([i915#6268]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-6/igt@gem_ctx_exec@basic-nohangcheck.html - shard-tglu: [PASS][28] -> [FAIL][29] ([i915#6268]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-tglu-10/igt@gem_ctx_exec@basic-nohangcheck.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-tglu-8/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_freq@sysfs@gt0: - shard-dg2: NOTRUN -> [FAIL][30] ([i915#6786]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-10/igt@gem_ctx_freq@sysfs@gt0.html * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-snb: NOTRUN -> [DMESG-WARN][31] ([i915#8841]) +7 other tests dmesg-warn [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-snb2/igt@gem_ctx_isolation@preservation-s3@rcs0.html * igt@gem_ctx_persistence@engines-hostile@vcs0: - shard-mtlp: NOTRUN -> [FAIL][32] ([i915#2410]) +2 other tests fail [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-5/igt@gem_ctx_persistence@engines-hostile@vcs0.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-mtlp: NOTRUN -> [SKIP][33] ([i915#8555]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-2/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_persistence@heartbeat-many: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#8555]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_persistence@legacy-engines-persistence: - shard-snb: NOTRUN -> [SKIP][35] ([fdo#109271] / [i915#1099]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-snb7/igt@gem_ctx_persistence@legacy-engines-persistence.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#280]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-1/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_ctx_sseu@mmap-args: - shard-mtlp: NOTRUN -> [SKIP][37] ([i915#280]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-4/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@hibernate: - shard-rkl: NOTRUN -> [ABORT][38] ([i915#7975] / [i915#8213]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-1/igt@gem_eio@hibernate.html * igt@gem_eio@kms: - shard-dg2: [PASS][39] -> [FAIL][40] ([i915#5784]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-dg2-10/igt@gem_eio@kms.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-2/igt@gem_eio@kms.html - shard-dg1: NOTRUN -> [FAIL][41] ([i915#5784]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg1-16/igt@gem_eio@kms.html * igt@gem_exec_balancer@bonded-dual: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#4771]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-11/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@bonded-true-hang: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4812]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-4/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_balancer@hog: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#4812]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-10/igt@gem_exec_balancer@hog.html * igt@gem_exec_balancer@parallel-contexts: - shard-rkl: NOTRUN -> [SKIP][45] ([i915#4525]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-2/igt@gem_exec_balancer@parallel-contexts.html * igt@gem_exec_capture@pi@ccs0: - shard-mtlp: [PASS][46] -> [FAIL][47] ([i915#7765]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-6/igt@gem_exec_capture@pi@ccs0.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-3/igt@gem_exec_capture@pi@ccs0.html * igt@gem_exec_endless@dispatch@ccs0: - shard-dg2: [PASS][48] -> [TIMEOUT][49] ([i915#7016]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-dg2-2/igt@gem_exec_endless@dispatch@ccs0.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-1/igt@gem_exec_endless@dispatch@ccs0.html * igt@gem_exec_fair@basic-none-rrul: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4473] / [i915#4771]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-6/igt@gem_exec_fair@basic-none-rrul.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-rkl: [PASS][51] -> [FAIL][52] ([i915#2842]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-rkl-2/igt@gem_exec_fair@basic-pace@vecs0.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-2/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_fence@syncobj-backward-timeline-chain-engines: - shard-snb: NOTRUN -> [SKIP][53] ([fdo#109271]) +270 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-snb6/igt@gem_exec_fence@syncobj-backward-timeline-chain-engines.html * igt@gem_exec_flush@basic-wb-ro-before-default: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#3539] / [i915#4852]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-10/igt@gem_exec_flush@basic-wb-ro-before-default.html * igt@gem_exec_reloc@basic-gtt-cpu: - shard-rkl: NOTRUN -> [SKIP][55] ([i915#3281]) +2 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-1/igt@gem_exec_reloc@basic-gtt-cpu.html * igt@gem_exec_reloc@basic-wc-read: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#3281]) +9 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-11/igt@gem_exec_reloc@basic-wc-read.html * igt@gem_exec_schedule@noreorder@ccs0: - shard-mtlp: [PASS][57] -> [DMESG-FAIL][58] ([i915#9121]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-8/igt@gem_exec_schedule@noreorder@ccs0.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-4/igt@gem_exec_schedule@noreorder@ccs0.html * igt@gem_exec_schedule@preempt-queue: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4537] / [i915#4812]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-2/igt@gem_exec_schedule@preempt-queue.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4860]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-3/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-tglu: NOTRUN -> [SKIP][61] ([i915#4613]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-tglu-7/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@smem-oom: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4613]) +2 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-1/igt@gem_lmem_swapping@smem-oom.html - shard-glk: NOTRUN -> [SKIP][63] ([fdo#109271] / [i915#4613]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-glk3/igt@gem_lmem_swapping@smem-oom.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_13597/shard-dg2-10/igt@gem_lmem_swapping@smem-oom@lmem0.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-10/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify-ccs: - shard-rkl: NOTRUN -> [SKIP][66] ([i915#4613]) +3 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-4/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_madvise@dontneed-before-exec: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#3282]) +4 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-7/igt@gem_madvise@dontneed-before-exec.html * igt@gem_mmap_gtt@cpuset-big-copy: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#4077]) +12 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-3/igt@gem_mmap_gtt@cpuset-big-copy.html * igt@gem_mmap_gtt@flink-race: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4077]) +5 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-6/igt@gem_mmap_gtt@flink-race.html * igt@gem_mmap_wc@close: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4083]) +4 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-10/igt@gem_mmap_wc@close.html * igt@gem_mmap_wc@read-write: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4083]) +3 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-3/igt@gem_mmap_wc@read-write.html * igt@gem_pwrite@basic-random: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#3282]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-3/igt@gem_pwrite@basic-random.html * igt@gem_pxp@display-protected-crc: - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#4270]) +2 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-3/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#4270]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-10/igt@gem_pxp@verify-pxp-stale-buf-execution.html - shard-rkl: NOTRUN -> [SKIP][75] ([i915#4270]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-2/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][76] ([i915#8428]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-4/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html * igt@gem_set_tiling_vs_gtt: - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#4079]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-7/igt@gem_set_tiling_vs_gtt.html - shard-dg2: NOTRUN -> [SKIP][78] ([i915#4079]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-2/igt@gem_set_tiling_vs_gtt.html * igt@gem_spin_batch@user-each: - shard-mtlp: [PASS][79] -> [DMESG-FAIL][80] ([i915#8962] / [i915#9121]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-6/igt@gem_spin_batch@user-each.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-4/igt@gem_spin_batch@user-each.html * igt@gem_userptr_blits@coherency-unsync: - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#3297]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-8/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#3297]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-3/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gen7_exec_parse@cmd-crossing-page: - shard-rkl: NOTRUN -> [SKIP][83] ([fdo#109289]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-6/igt@gen7_exec_parse@cmd-crossing-page.html - shard-tglu: NOTRUN -> [SKIP][84] ([fdo#109289]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-tglu-10/igt@gen7_exec_parse@cmd-crossing-page.html * igt@gen7_exec_parse@load-register-reg: - shard-mtlp: NOTRUN -> [SKIP][85] ([fdo#109289]) +4 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-5/igt@gen7_exec_parse@load-register-reg.html - shard-dg2: NOTRUN -> [SKIP][86] ([fdo#109289]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-2/igt@gen7_exec_parse@load-register-reg.html * igt@gen9_exec_parse@batch-zero-length: - shard-rkl: NOTRUN -> [SKIP][87] ([i915#2527]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-6/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#2856]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-6/igt@gen9_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@secure-batches: - shard-mtlp: NOTRUN -> [SKIP][89] ([i915#2856]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-5/igt@gen9_exec_parse@secure-batches.html * igt@i915_module_load@load: - shard-tglu: NOTRUN -> [SKIP][90] ([i915#6227]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-tglu-3/igt@i915_module_load@load.html - shard-rkl: NOTRUN -> [SKIP][91] ([i915#6227]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-1/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [PASS][92] -> [DMESG-WARN][93] ([i915#7061] / [i915#8617]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-dg2-5/igt@i915_module_load@reload-with-fault-injection.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#7091]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-10/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html * igt@i915_pm_backlight@basic-brightness: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#5354] / [i915#7561]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-5/igt@i915_pm_backlight@basic-brightness.html * igt@i915_pm_dc@dc9-dpms: - shard-tglu: [PASS][96] -> [SKIP][97] ([i915#4281]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-tglu-2/igt@i915_pm_dc@dc9-dpms.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-tglu-7/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_lpsp@screens-disabled: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#1902]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-3/igt@i915_pm_lpsp@screens-disabled.html * igt@i915_pm_rc6_residency@rc6-idle@vcs0: - shard-dg1: [PASS][99] -> [FAIL][100] ([i915#3591]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html * igt@i915_pm_rpm@dpms-mode-unset-lpsp: - shard-dg1: [PASS][101] -> [SKIP][102] ([i915#1397]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg1-12/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: NOTRUN -> [SKIP][103] ([i915#1397]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-tglu: NOTRUN -> [SKIP][104] ([fdo#111644] / [i915#1397]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-tglu-3/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_pm_rpm@modeset-lpsp-stress: - shard-rkl: [PASS][105] -> [SKIP][106] ([i915#1397]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-rkl-7/igt@i915_pm_rpm@modeset-lpsp-stress.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-2/igt@i915_pm_rpm@modeset-lpsp-stress.html * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#1397]) +2 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-3/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@i915_pm_rpm@modeset-pc8-residency-stress: - shard-rkl: NOTRUN -> [SKIP][108] ([fdo#109506]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-2/igt@i915_pm_rpm@modeset-pc8-residency-stress.html * igt@i915_pm_rpm@pc8-residency: - shard-dg2: NOTRUN -> [SKIP][109] ([fdo#109506]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-10/igt@i915_pm_rpm@pc8-residency.html * igt@i915_pm_rps@waitboost: - shard-dg1: [PASS][110] -> [FAIL][111] ([i915#8229]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-dg1-15/igt@i915_pm_rps@waitboost.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg1-16/igt@i915_pm_rps@waitboost.html * igt@i915_power@sanity: - shard-rkl: NOTRUN -> [SKIP][112] ([i915#7984]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-4/igt@i915_power@sanity.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#6188]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-11/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_query@query-topology-unsupported: - shard-mtlp: NOTRUN -> [SKIP][114] ([fdo#109302]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-6/igt@i915_query@query-topology-unsupported.html * igt@i915_suspend@basic-s3-without-i915: - shard-dg2: [PASS][115] -> [FAIL][116] ([fdo#103375]) +1 other test fail [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-dg2-11/igt@i915_suspend@basic-s3-without-i915.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-5/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-mtlp: NOTRUN -> [SKIP][117] ([i915#4212]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-6/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#4212]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-11/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-4-4-mc_ccs: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#8709]) +11 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-11/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-4-4-mc_ccs.html * igt@kms_async_flips@crc@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [FAIL][120] ([i915#8247]) +3 other tests fail [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-10/igt@kms_async_flips@crc@pipe-b-hdmi-a-1.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-mtlp: NOTRUN -> [SKIP][121] ([i915#404]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-dg1: NOTRUN -> [SKIP][122] ([i915#404]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg1-12/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][123] ([i915#5286]) +2 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html - shard-mtlp: [PASS][124] -> [FAIL][125] ([i915#5138]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-3/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-async-flip: - shard-mtlp: NOTRUN -> [FAIL][126] ([i915#3743]) +1 other test fail [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][127] ([fdo#111614] / [i915#3638]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-1/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][128] ([fdo#111614]) +6 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-11/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][129] ([fdo#111614]) +2 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-4/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-mtlp: [PASS][130] -> [FAIL][131] ([i915#3743]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#3638]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg1-13/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#5190]) +12 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][134] ([fdo#111615]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-tglu-8/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html - shard-rkl: NOTRUN -> [SKIP][135] ([fdo#110723]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-1/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180: - shard-mtlp: NOTRUN -> [SKIP][136] ([fdo#111615]) +6 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#4538] / [i915#5190]) +5 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_ccs@pipe-a-bad-aux-stride-yf_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][138] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) +2 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-tglu-2/igt@kms_ccs@pipe-a-bad-aux-stride-yf_tiled_ccs.html * igt@kms_ccs@pipe-a-ccs-on-another-bo-yf_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][139] ([i915#3734] / [i915#5354] / [i915#6095]) +2 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-7/igt@kms_ccs@pipe-a-ccs-on-another-bo-yf_tiled_ccs.html * igt@kms_ccs@pipe-a-crc-primary-basic-yf_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#3689] / [i915#5354]) +15 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-11/igt@kms_ccs@pipe-a-crc-primary-basic-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-ccs-on-another-bo-4_tiled_mtl_rc_ccs: - shard-rkl: NOTRUN -> [SKIP][141] ([i915#5354] / [i915#6095]) +9 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-4/igt@kms_ccs@pipe-b-ccs-on-another-bo-4_tiled_mtl_rc_ccs.html * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs: - shard-mtlp: NOTRUN -> [SKIP][142] ([i915#6095]) +29 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-5/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][143] ([i915#3886] / [i915#6095]) +4 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-4/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-dg1: NOTRUN -> [SKIP][144] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg1-17/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#3689] / [i915#3886] / [i915#5354]) +6 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-10/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc: - shard-dg1: NOTRUN -> [SKIP][146] ([i915#5354] / [i915#6095]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg1-15/igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: - shard-glk: NOTRUN -> [SKIP][147] ([fdo#109271] / [i915#3886]) +2 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-glk9/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_mc_ccs: - shard-glk: NOTRUN -> [SKIP][148] ([fdo#109271]) +51 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-glk4/igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][149] ([i915#3689] / [i915#5354] / [i915#6095]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-tglu-10/igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][150] ([i915#5354]) +11 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-6/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_mc_ccs.html - shard-tglu: NOTRUN -> [SKIP][151] ([i915#5354] / [i915#6095]) +4 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-tglu-5/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#5354]) +45 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-2/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs.html * igt@kms_cdclk@mode-transition@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#7213] / [i915#9010]) +3 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-7/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#4087]) +3 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-5/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html * igt@kms_chamelium_color@ctm-0-75: - shard-tglu: NOTRUN -> [SKIP][155] ([fdo#111827]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-tglu-10/igt@kms_chamelium_color@ctm-0-75.html - shard-rkl: NOTRUN -> [SKIP][156] ([fdo#111827]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-6/igt@kms_chamelium_color@ctm-0-75.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-mtlp: NOTRUN -> [SKIP][157] ([fdo#111827]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-8/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_color@ctm-max: - shard-dg2: NOTRUN -> [SKIP][158] ([fdo#111827]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-5/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#7828]) +9 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-10/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_frames@hdmi-aspect-ratio: - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#7828]) +3 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-5/igt@kms_chamelium_frames@hdmi-aspect-ratio.html * igt@kms_chamelium_frames@hdmi-crc-multiple: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#7828]) +4 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-1/igt@kms_chamelium_frames@hdmi-crc-multiple.html * igt@kms_chamelium_hpd@hdmi-hpd: - shard-tglu: NOTRUN -> [SKIP][162] ([i915#7828]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-tglu-9/igt@kms_chamelium_hpd@hdmi-hpd.html * igt@kms_content_protection@dp-mst-type-0: - shard-mtlp: NOTRUN -> [SKIP][163] ([i915#3299]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-5/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#3299]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-5/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][165] ([i915#7173]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-11/igt@kms_content_protection@legacy@pipe-a-dp-4.html * igt@kms_content_protection@lic: - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#6944]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-4/igt@kms_content_protection@lic.html * igt@kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#7118]) +2 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-2/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#3359]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-1/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-mtlp: NOTRUN -> [SKIP][169] ([i915#3555] / [i915#8814]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-rkl: NOTRUN -> [SKIP][170] ([i915#3359]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#3555]) +4 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-10/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][172] ([fdo#103375]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-5/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-3.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-tglu: NOTRUN -> [SKIP][173] ([fdo#109274]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-tglu-4/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][174] ([i915#4103]) +1 other test skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - shard-tglu: NOTRUN -> [SKIP][175] ([i915#4103]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-tglu-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursor-vs-flip-toggle: - shard-mtlp: [PASS][176] -> [FAIL][177] ([i915#8248]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-5/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-5/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-dg2: NOTRUN -> [SKIP][178] ([fdo#109274] / [i915#5354]) +4 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-mtlp: NOTRUN -> [SKIP][179] ([i915#3546]) +2 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-4/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-rkl: NOTRUN -> [SKIP][180] ([fdo#111825]) +4 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [PASS][181] -> [FAIL][182] ([i915#2346]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg1: NOTRUN -> [SKIP][183] ([i915#4103] / [i915#4213]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg1-17/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html - shard-mtlp: NOTRUN -> [SKIP][184] ([i915#4213]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_cursor_legacy@single-move@all-pipes: - shard-mtlp: [PASS][185] -> [DMESG-WARN][186] ([i915#2017]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-3/igt@kms_cursor_legacy@single-move@all-pipes.html [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-4/igt@kms_cursor_legacy@single-move@all-pipes.html * igt@kms_dsc@dsc-basic: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#3555] / [i915#3840]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-10/igt@kms_dsc@dsc-basic.html - shard-rkl: NOTRUN -> [SKIP][188] ([i915#3555] / [i915#3840]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-4/igt@kms_dsc@dsc-basic.html * {igt@kms_dsc@dsc-fractional-bpp-with-bpc} (NEW): - shard-apl: NOTRUN -> [SKIP][189] ([fdo#109271]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-apl2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#3469]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-6/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][191] ([fdo#109274] / [i915#3637]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-tglu-3/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-mtlp: NOTRUN -> [SKIP][192] ([fdo#111767] / [i915#3637]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a1-hdmi-a2: - shard-glk: [PASS][193] -> [FAIL][194] ([i915#79]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-glk1/igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a1-hdmi-a2.html [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-glk5/igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#8381]) +2 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-2/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-dg2: NOTRUN -> [SKIP][196] ([fdo#109274]) +5 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-10/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-mtlp: NOTRUN -> [SKIP][197] ([i915#3637]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-6/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1: - shard-glk: NOTRUN -> [FAIL][198] ([i915#79]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-glk6/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#2672]) +1 other test skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#2672]) +4 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html - shard-rkl: NOTRUN -> [SKIP][201] ([i915#2672]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#2672] / [i915#3555]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite: - shard-dg2: [PASS][203] -> [FAIL][204] ([i915#6880]) +1 other test fail [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][205] ([fdo#111825] / [i915#1825]) +14 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][206] ([i915#1825]) +31 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][207] ([i915#8708]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][208] ([i915#3023]) +11 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#3458]) +15 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][210] ([i915#8708]) +15 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt: - shard-dg1: NOTRUN -> [SKIP][211] ([fdo#111825]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][212] ([fdo#110189]) +3 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][213] ([fdo#109280]) +4 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][214] ([i915#8708]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu: NOTRUN -> [SKIP][215] ([i915#3555] / [i915#8228]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-tglu-5/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@invalid-metadata-sizes: - shard-rkl: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#8228]) +1 other test skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-4/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#8228]) +3 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-6/igt@kms_hdr@static-toggle.html - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#8228]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-8/igt@kms_hdr@static-toggle.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#3555] / [i915#8821]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-3/igt@kms_plane_lowres@tiling-yf.html - shard-mtlp: NOTRUN -> [SKIP][220] ([i915#3555] / [i915#8821]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-7/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@tiling-y: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#8806]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-5/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#5176]) +7 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-8/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-edp-1.html * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#5176]) +3 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][224] ([i915#5176]) +27 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg1-17/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][225] ([i915#5176]) +5 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][226] ([i915#5235]) +3 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][227] ([i915#5235]) +7 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#5235]) +11 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-dp-4.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][229] ([i915#5235]) +3 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a-edp-1.html * igt@kms_prime@basic-crc-hybrid: - shard-mtlp: NOTRUN -> [SKIP][230] ([i915#6524]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-1/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@d3hot: - shard-dg2: NOTRUN -> [SKIP][231] ([i915#6524] / [i915#6805]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-6/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][232] ([fdo#111068] / [i915#658]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-6/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html * igt@kms_psr@sprite_blt: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#1072]) +5 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-3/igt@kms_psr@sprite_blt.html * igt@kms_psr@sprite_mmap_gtt: - shard-rkl: NOTRUN -> [SKIP][234] ([i915#1072]) +2 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-4/igt@kms_psr@sprite_mmap_gtt.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-mtlp: NOTRUN -> [SKIP][235] ([i915#4235]) +2 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#4235] / [i915#5190]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-rkl: NOTRUN -> [SKIP][237] ([fdo#111615] / [i915#5289]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_selftest@drm_format_helper: - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#8661]) +1 other test skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-4/igt@kms_selftest@drm_format_helper.html * igt@kms_selftest@drm_plane: - shard-dg2: NOTRUN -> [SKIP][239] ([i915#8661]) +2 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-10/igt@kms_selftest@drm_plane.html - shard-snb: NOTRUN -> [SKIP][240] ([fdo#109271] / [i915#8661]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-snb4/igt@kms_selftest@drm_plane.html * igt@kms_sysfs_edid_timing: - shard-dg2: NOTRUN -> [FAIL][241] ([IGT#2]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-1/igt@kms_sysfs_edid_timing.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2: NOTRUN -> [SKIP][242] ([i915#8623]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-11/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tv_load_detect@load-detect: - shard-dg2: NOTRUN -> [SKIP][243] ([fdo#109309]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-3/igt@kms_tv_load_detect@load-detect.html * igt@kms_vblank@pipe-c-ts-continuation-modeset: - shard-rkl: NOTRUN -> [SKIP][244] ([i915#4070] / [i915#6768]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-1/igt@kms_vblank@pipe-c-ts-continuation-modeset.html * igt@kms_vblank@pipe-d-ts-continuation-suspend: - shard-rkl: NOTRUN -> [SKIP][245] ([i915#4070] / [i915#533] / [i915#6768]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-2/igt@kms_vblank@pipe-d-ts-continuation-suspend.html * igt@kms_vrr@flip-basic: - shard-rkl: NOTRUN -> [SKIP][246] ([i915#3555]) +2 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-1/igt@kms_vrr@flip-basic.html - shard-tglu: NOTRUN -> [SKIP][247] ([i915#3555]) +1 other test skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-tglu-10/igt@kms_vrr@flip-basic.html * igt@kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#2437]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-11/igt@kms_writeback@writeback-check-output.html - shard-rkl: NOTRUN -> [SKIP][249] ([i915#2437]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-7/igt@kms_writeback@writeback-check-output.html * igt@perf@enable-disable@0-rcs0: - shard-dg2: [PASS][250] -> [FAIL][251] ([i915#8724]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-dg2-5/igt@perf@enable-disable@0-rcs0.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-11/igt@perf@enable-disable@0-rcs0.html * igt@perf_pmu@cpu-hotplug: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#8850]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-1/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@faulting-read@gtt: - shard-mtlp: NOTRUN -> [SKIP][253] ([i915#8440]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-6/igt@perf_pmu@faulting-read@gtt.html * igt@perf_pmu@render-node-busy-idle@vcs1: - shard-dg2: [PASS][254] -> [FAIL][255] ([i915#4349]) +7 other tests fail [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-dg2-2/igt@perf_pmu@render-node-busy-idle@vcs1.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-5/igt@perf_pmu@render-node-busy-idle@vcs1.html * igt@perf_pmu@semaphore-busy@vcs1: - shard-dg1: [PASS][256] -> [FAIL][257] ([i915#4349]) +5 other tests fail [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-dg1-19/igt@perf_pmu@semaphore-busy@vcs1.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg1-17/igt@perf_pmu@semaphore-busy@vcs1.html - shard-mtlp: [PASS][258] -> [FAIL][259] ([i915#4349]) +4 other tests fail [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-7/igt@perf_pmu@semaphore-busy@vcs1.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-5/igt@perf_pmu@semaphore-busy@vcs1.html * igt@perf_pmu@semaphore-busy@vecs0: - shard-dg2: NOTRUN -> [FAIL][260] ([i915#4349]) +7 other tests fail [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-11/igt@perf_pmu@semaphore-busy@vecs0.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#3291] / [i915#3708]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-2/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-gtt: - shard-mtlp: NOTRUN -> [SKIP][262] ([i915#3708] / [i915#4077]) +2 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-7/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@fence-read-hang: - shard-mtlp: NOTRUN -> [SKIP][263] ([i915#3708]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-5/igt@prime_vgem@fence-read-hang.html * igt@sysfs_heartbeat_interval@precise@vecs0: - shard-mtlp: [PASS][264] -> [FAIL][265] ([i915#8332]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-3/igt@sysfs_heartbeat_interval@precise@vecs0.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-8/igt@sysfs_heartbeat_interval@precise@vecs0.html * igt@v3d/v3d_job_submission@array-job-submission: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#2575]) +12 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-5/igt@v3d/v3d_job_submission@array-job-submission.html * igt@v3d/v3d_submit_csd@bad-pad: - shard-rkl: NOTRUN -> [SKIP][267] ([fdo#109315]) +6 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-6/igt@v3d/v3d_submit_csd@bad-pad.html * igt@v3d/v3d_submit_csd@multiple-job-submission: - shard-tglu: NOTRUN -> [SKIP][268] ([fdo#109315] / [i915#2575]) +2 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-tglu-9/igt@v3d/v3d_submit_csd@multiple-job-submission.html * igt@v3d/v3d_wait_bo@map-bo-0ns: - shard-mtlp: NOTRUN -> [SKIP][269] ([i915#2575]) +5 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-7/igt@v3d/v3d_wait_bo@map-bo-0ns.html * igt@vc4/vc4_dmabuf_poll@poll-write-waits-until-write-done: - shard-rkl: NOTRUN -> [SKIP][270] ([i915#7711]) +3 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-6/igt@vc4/vc4_dmabuf_poll@poll-write-waits-until-write-done.html * igt@vc4/vc4_label_bo@set-bad-handle: - shard-mtlp: NOTRUN -> [SKIP][271] ([i915#7711]) +5 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-4/igt@vc4/vc4_label_bo@set-bad-handle.html * igt@vc4/vc4_tiling@get-bad-handle: - shard-dg2: NOTRUN -> [SKIP][272] ([i915#7711]) +9 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-5/igt@vc4/vc4_tiling@get-bad-handle.html * igt@vc4/vc4_wait_bo@unused-bo-0ns: - shard-tglu: NOTRUN -> [SKIP][273] ([i915#2575]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-tglu-3/igt@vc4/vc4_wait_bo@unused-bo-0ns.html #### Possible fixes #### * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [FAIL][274] ([i915#7742]) -> [PASS][275] +1 other test pass [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@gem_ctx_param@invalid-size-get: - shard-mtlp: [DMESG-WARN][276] ([i915#2017]) -> [PASS][277] +2 other tests pass [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-6/igt@gem_ctx_param@invalid-size-get.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-6/igt@gem_ctx_param@invalid-size-get.html * igt@gem_ctx_persistence@legacy-engines-hostile@vebox: - shard-mtlp: [FAIL][278] ([i915#2410]) -> [PASS][279] +2 other tests pass [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-3/igt@gem_ctx_persistence@legacy-engines-hostile@vebox.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-1/igt@gem_ctx_persistence@legacy-engines-hostile@vebox.html * igt@gem_ctx_persistence@saturated-hostile@vecs0: - shard-mtlp: [FAIL][280] ([i915#7816]) -> [PASS][281] +2 other tests pass [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-7/igt@gem_ctx_persistence@saturated-hostile@vecs0.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-7/igt@gem_ctx_persistence@saturated-hostile@vecs0.html * igt@gem_eio@reset-stress: - shard-dg1: [FAIL][282] ([i915#5784]) -> [PASS][283] [282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-dg1-17/igt@gem_eio@reset-stress.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg1-19/igt@gem_eio@reset-stress.html * igt@gem_exec_capture@pi@bcs0: - shard-mtlp: [FAIL][284] ([i915#4475] / [i915#7765]) -> [PASS][285] [284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-6/igt@gem_exec_capture@pi@bcs0.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-3/igt@gem_exec_capture@pi@bcs0.html * igt@gem_exec_fair@basic-deadline: - shard-glk: [FAIL][286] ([i915#2846]) -> [PASS][287] [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-glk1/igt@gem_exec_fair@basic-deadline.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-glk1/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none@vecs0: - shard-rkl: [FAIL][288] ([i915#2842]) -> [PASS][289] [288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-rkl-7/igt@gem_exec_fair@basic-none@vecs0.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-1/igt@gem_exec_fair@basic-none@vecs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][290] ([i915#2842]) -> [PASS][291] +2 other tests pass [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html - shard-tglu: [FAIL][292] ([i915#2842]) -> [PASS][293] [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-tglu-5/igt@gem_exec_fair@basic-pace-share@rcs0.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-tglu-9/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_schedule@preempt-engines@ccs0: - shard-mtlp: [FAIL][294] ([i915#9119]) -> [PASS][295] +4 other tests pass [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-4/igt@gem_exec_schedule@preempt-engines@ccs0.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-7/igt@gem_exec_schedule@preempt-engines@ccs0.html * igt@gem_exec_schedule@preempt-engines@rcs0: - shard-mtlp: [DMESG-FAIL][296] ([i915#8962] / [i915#9121]) -> [PASS][297] [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-4/igt@gem_exec_schedule@preempt-engines@rcs0.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-7/igt@gem_exec_schedule@preempt-engines@rcs0.html * igt@gem_exec_schedule@preemptive-hang@vcs0: - shard-mtlp: [FAIL][298] ([i915#9051]) -> [PASS][299] [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-6/igt@gem_exec_schedule@preemptive-hang@vcs0.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-8/igt@gem_exec_schedule@preemptive-hang@vcs0.html * igt@i915_hangman@gt-engine-error@vcs0: - shard-mtlp: [FAIL][300] ([i915#7069]) -> [PASS][301] [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-3/igt@i915_hangman@gt-engine-error@vcs0.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-4/igt@i915_hangman@gt-engine-error@vcs0.html * igt@i915_module_load@reload: - shard-dg1: [DMESG-WARN][302] ([i915#4391] / [i915#4423]) -> [PASS][303] [302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-dg1-17/igt@i915_module_load@reload.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg1-19/igt@i915_module_load@reload.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: - shard-dg1: [SKIP][304] ([i915#1937]) -> [PASS][305] [304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-dg1-14/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg1-19/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg1: [SKIP][306] ([i915#1397]) -> [PASS][307] +1 other test pass [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg1-12/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: [SKIP][308] ([i915#1397]) -> [PASS][309] [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-rkl-2/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-7/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@i915_selftest@live@client: - shard-mtlp: [ABORT][310] -> [PASS][311] [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-2/igt@i915_selftest@live@client.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-6/igt@i915_selftest@live@client.html * igt@i915_selftest@live@gt_heartbeat: - shard-apl: [DMESG-FAIL][312] ([i915#5334]) -> [PASS][313] [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-apl1/igt@i915_selftest@live@gt_heartbeat.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-apl1/igt@i915_selftest@live@gt_heartbeat.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: [FAIL][314] ([i915#5138]) -> [PASS][315] [314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-mtlp: [FAIL][316] ([i915#3743]) -> [PASS][317] [316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-5/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-apl: [FAIL][318] ([i915#2346]) -> [PASS][319] [318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy: - shard-dg1: [DMESG-WARN][320] ([i915#4423]) -> [PASS][321] [320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-dg1-17/igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg1-17/igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: [FAIL][322] ([i915#2122]) -> [PASS][323] [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-glk4/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-glk9/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@flip-vs-suspend-interruptible@c-dp4: - shard-dg2: [FAIL][324] ([fdo#103375]) -> [PASS][325] [324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-dg2-11/igt@kms_flip@flip-vs-suspend-interruptible@c-dp4.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-11/igt@kms_flip@flip-vs-suspend-interruptible@c-dp4.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite: - shard-dg2: [FAIL][326] ([i915#6880]) -> [PASS][327] +1 other test pass [326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html * igt@perf_pmu@busy-double-start@vcs1: - shard-mtlp: [FAIL][328] ([i915#4349]) -> [PASS][329] +2 other tests pass [328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-5/igt@perf_pmu@busy-double-start@vcs1.html [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-5/igt@perf_pmu@busy-double-start@vcs1.html * igt@perf_pmu@most-busy-idle-check-all@rcs0: - shard-dg1: [FAIL][330] ([i915#5234]) -> [PASS][331] [330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-dg1-17/igt@perf_pmu@most-busy-idle-check-all@rcs0.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg1-19/igt@perf_pmu@most-busy-idle-check-all@rcs0.html - shard-mtlp: [FAIL][332] ([i915#5234]) -> [PASS][333] [332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-6/igt@perf_pmu@most-busy-idle-check-all@rcs0.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-7/igt@perf_pmu@most-busy-idle-check-all@rcs0.html * igt@syncobj_wait@single-wait-submitted: - shard-dg1: [DMESG-WARN][334] ([i915#1982] / [i915#4423]) -> [PASS][335] [334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-dg1-17/igt@syncobj_wait@single-wait-submitted.html [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg1-15/igt@syncobj_wait@single-wait-submitted.html * igt@sysfs_heartbeat_interval@mixed@ccs0: - shard-mtlp: [INCOMPLETE][336] -> [PASS][337] [336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-4/igt@sysfs_heartbeat_interval@mixed@ccs0.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-5/igt@sysfs_heartbeat_interval@mixed@ccs0.html * igt@sysfs_heartbeat_interval@mixed@vecs0: - shard-mtlp: [FAIL][338] ([i915#1731]) -> [PASS][339] [338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-4/igt@sysfs_heartbeat_interval@mixed@vecs0.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-5/igt@sysfs_heartbeat_interval@mixed@vecs0.html * igt@sysfs_timeslice_duration@timeout@vecs0: - shard-mtlp: [TIMEOUT][340] ([i915#6950]) -> [PASS][341] [340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-2/igt@sysfs_timeslice_duration@timeout@vecs0.html [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-4/igt@sysfs_timeslice_duration@timeout@vecs0.html #### Warnings #### * igt@i915_pm_rc6_residency@rc6-idle@vecs0: - shard-tglu: [FAIL][342] ([i915#2681] / [i915#3591]) -> [WARN][343] ([i915#2681]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html * igt@kms_color@degamma@pipe-a: - shard-mtlp: [DMESG-FAIL][344] ([i915#2017]) -> [FAIL][345] ([i915#9257]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-mtlp-6/igt@kms_color@degamma@pipe-a.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-mtlp-4/igt@kms_color@degamma@pipe-a.html * igt@kms_content_protection@mei_interface: - shard-rkl: [SKIP][346] ([i915#7118]) -> [SKIP][347] ([fdo#109300]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-rkl-6/igt@kms_content_protection@mei_interface.html [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-1/igt@kms_content_protection@mei_interface.html - shard-dg1: [SKIP][348] ([i915#7116]) -> [SKIP][349] ([fdo#109300]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-dg1-17/igt@kms_content_protection@mei_interface.html [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg1-16/igt@kms_content_protection@mei_interface.html - shard-tglu: [SKIP][350] ([i915#6944] / [i915#7116] / [i915#7118]) -> [SKIP][351] ([fdo#109300]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-tglu-2/igt@kms_content_protection@mei_interface.html [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-tglu-3/igt@kms_content_protection@mei_interface.html * igt@kms_fbcon_fbt@psr: - shard-rkl: [SKIP][352] ([fdo#110189] / [i915#3955]) -> [SKIP][353] ([i915#3955]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-rkl-2/igt@kms_fbcon_fbt@psr.html [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-6/igt@kms_fbcon_fbt@psr.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][354] ([i915#4816]) -> [SKIP][355] ([i915#4070] / [i915#4816]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_psr@cursor_plane_move: - shard-dg1: [SKIP][356] ([i915#1072] / [i915#4078]) -> [SKIP][357] ([i915#1072]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-dg1-16/igt@kms_psr@cursor_plane_move.html [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg1-14/igt@kms_psr@cursor_plane_move.html * igt@kms_psr@primary_page_flip: - shard-dg1: [SKIP][358] ([i915#1072]) -> [SKIP][359] ([i915#1072] / [i915#4078]) +1 other test skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13597/shard-dg1-19/igt@kms_psr@primary_page_flip.html [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/shard-dg1-16/igt@kms_psr@primary_page_flip.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#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [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#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644 [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 [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#1731]: https://gitlab.freedesktop.org/drm/intel/issues/1731 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#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#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#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#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4475]: https://gitlab.freedesktop.org/drm/intel/issues/4475 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#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#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [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#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6122]: https://gitlab.freedesktop.org/drm/intel/issues/6122 [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6786]: https://gitlab.freedesktop.org/drm/intel/issues/6786 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6950]: https://gitlab.freedesktop.org/drm/intel/issues/6950 [i915#7016]: https://gitlab.freedesktop.org/drm/intel/issues/7016 [i915#7061]: https://gitlab.freedesktop.org/drm/intel/issues/7061 [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 [i915#7091]: https://gitlab.freedesktop.org/drm/intel/issues/7091 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7765]: https://gitlab.freedesktop.org/drm/intel/issues/7765 [i915#7816]: https://gitlab.freedesktop.org/drm/intel/issues/7816 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#7984]: https://gitlab.freedesktop.org/drm/intel/issues/7984 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8229]: https://gitlab.freedesktop.org/drm/intel/issues/8229 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8248]: https://gitlab.freedesktop.org/drm/intel/issues/8248 [i915#8332]: https://gitlab.freedesktop.org/drm/intel/issues/8332 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8440]: https://gitlab.freedesktop.org/drm/intel/issues/8440 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562 [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#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8724]: https://gitlab.freedesktop.org/drm/intel/issues/8724 [i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850 [i915#8962]: https://gitlab.freedesktop.org/drm/intel/issues/8962 [i915#9010]: https://gitlab.freedesktop.org/drm/intel/issues/9010 [i915#9051]: https://gitlab.freedesktop.org/drm/intel/issues/9051 [i915#9119]: https://gitlab.freedesktop.org/drm/intel/issues/9119 [i915#9121]: https://gitlab.freedesktop.org/drm/intel/issues/9121 [i915#9257]: https://gitlab.freedesktop.org/drm/intel/issues/9257 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7468 -> IGTPW_9717 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13597: 0bcdef3ce42624f34849ce20818bc54425df56c5 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9717: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/index.html IGT_7468: 7468 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9717/index.html [-- Attachment #2: Type: text/html, Size: 111198 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2023-09-05 15:56 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-09-05 8:33 [igt-dev] [v8 0/3] DSC Fractional BPP Val Support Swati Sharma 2023-09-05 8:33 ` [igt-dev] [v8 1/3] lib/dsc: add helpers for vdsc fractional bpp debugfs entry Swati Sharma 2023-09-05 13:41 ` Modem, Bhanuprakash 2023-09-05 8:33 ` [igt-dev] [v8 2/3] tests/intel/kms_dsc: enable validation for vdsc fractional bpp Swati Sharma 2023-09-05 8:33 ` [igt-dev] [v8 3/3] tests/intel/kms_dsc: add test to validate fractional bpp with input bpc Swati Sharma 2023-09-05 14:04 ` [igt-dev] ✓ Fi.CI.BAT: success for DSC Fractional BPP Val Support (rev10) Patchwork 2023-09-05 15:56 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox