* [igt-dev] [v7 0/3] DSC Fractional BPP Val Support
@ 2023-08-17 18:17 Swati Sharma
2023-08-17 18:17 ` [igt-dev] [v7 1/3] lib/dsc: add helpers for vdsc fractional bpp debugfs entry Swati Sharma
` (5 more replies)
0 siblings, 6 replies; 7+ messages in thread
From: Swati Sharma @ 2023-08-17 18:17 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
7/10 patches merged. 3/10 remaining.
Swati Sharma (3):
lib/dsc: add helpers for vdsc fractional bpp debugfs entry
tests/i915/kms_dsc: enable validation for vdsc fractional bpp
tests/i915/kms_dsc: add test to validate fractional bpp with input bpc
lib/igt_dsc.c | 103 ++++++++++++++++++++++++++++++++++++
lib/igt_dsc.h | 6 +++
tests/i915/kms_dsc.c | 42 ++++++++++++++-
tests/i915/kms_dsc_helper.c | 57 ++++++++++++++++++++
tests/i915/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] [v7 1/3] lib/dsc: add helpers for vdsc fractional bpp debugfs entry
2023-08-17 18:17 [igt-dev] [v7 0/3] DSC Fractional BPP Val Support Swati Sharma
@ 2023-08-17 18:17 ` Swati Sharma
2023-08-17 18:17 ` [igt-dev] [v7 2/3] tests/i915/kms_dsc: enable validation for vdsc fractional bpp Swati Sharma
` (4 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Swati Sharma @ 2023-08-17 18:17 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
* [igt-dev] [v7 2/3] tests/i915/kms_dsc: enable validation for vdsc fractional bpp
2023-08-17 18:17 [igt-dev] [v7 0/3] DSC Fractional BPP Val Support Swati Sharma
2023-08-17 18:17 ` [igt-dev] [v7 1/3] lib/dsc: add helpers for vdsc fractional bpp debugfs entry Swati Sharma
@ 2023-08-17 18:17 ` Swati Sharma
2023-08-17 18:17 ` [igt-dev] [v7 3/3] tests/i915/kms_dsc: add test to validate fractional bpp with input bpc Swati Sharma
` (3 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Swati Sharma @ 2023-08-17 18:17 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
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
tests/i915/kms_dsc.c | 29 ++++++++++++++++++-
tests/i915/kms_dsc_helper.c | 57 +++++++++++++++++++++++++++++++++++++
tests/i915/kms_dsc_helper.h | 4 +++
3 files changed, 89 insertions(+), 1 deletion(-)
diff --git a/tests/i915/kms_dsc.c b/tests/i915/kms_dsc.c
index 21f0c5a32..59cd4a63d 100644
--- a/tests/i915/kms_dsc.c
+++ b/tests/i915/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/i915/kms_dsc_helper.c b/tests/i915/kms_dsc_helper.c
index 44edd5ca9..58057aca3 100644
--- a/tests/i915/kms_dsc_helper.c
+++ b/tests/i915/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/i915/kms_dsc_helper.h b/tests/i915/kms_dsc_helper.h
index 28ed56d83..4dbd88fe7 100644
--- a/tests/i915/kms_dsc_helper.h
+++ b/tests/i915/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] [v7 3/3] tests/i915/kms_dsc: add test to validate fractional bpp with input bpc
2023-08-17 18:17 [igt-dev] [v7 0/3] DSC Fractional BPP Val Support Swati Sharma
2023-08-17 18:17 ` [igt-dev] [v7 1/3] lib/dsc: add helpers for vdsc fractional bpp debugfs entry Swati Sharma
2023-08-17 18:17 ` [igt-dev] [v7 2/3] tests/i915/kms_dsc: enable validation for vdsc fractional bpp Swati Sharma
@ 2023-08-17 18:17 ` Swati Sharma
2023-08-17 22:18 ` [igt-dev] ✓ Fi.CI.BAT: success for DSC Fractional BPP Val Support (rev9) Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Swati Sharma @ 2023-08-17 18:17 UTC (permalink / raw)
To: igt-dev
New subtest is added to validate fractional bpp with different
input bpc.
v2: -rebase
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
---
tests/i915/kms_dsc.c | 15 +++++++++++++--
1 file changed, 13 insertions(+), 2 deletions(-)
diff --git a/tests/i915/kms_dsc.c b/tests/i915/kms_dsc.c
index 59cd4a63d..ba1171c8d 100644
--- a/tests/i915/kms_dsc.c
+++ b/tests/i915/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 (rev9)
2023-08-17 18:17 [igt-dev] [v7 0/3] DSC Fractional BPP Val Support Swati Sharma
` (2 preceding siblings ...)
2023-08-17 18:17 ` [igt-dev] [v7 3/3] tests/i915/kms_dsc: add test to validate fractional bpp with input bpc Swati Sharma
@ 2023-08-17 22:18 ` Patchwork
2023-08-17 22:31 ` [igt-dev] ○ CI.xeBAT: info " Patchwork
2023-08-18 19:15 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2023-08-17 22:18 UTC (permalink / raw)
To: Swati Sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 4879 bytes --]
== Series Details ==
Series: DSC Fractional BPP Val Support (rev9)
URL : https://patchwork.freedesktop.org/series/117493/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13533 -> IGTPW_9616
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/index.html
Participating hosts (38 -> 37)
------------------------------
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_9616 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live@execlists:
- fi-bsw-n3050: [PASS][1] -> [ABORT][2] ([i915#7911] / [i915#7913])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/fi-bsw-n3050/igt@i915_selftest@live@execlists.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/fi-bsw-n3050/igt@i915_selftest@live@execlists.html
* igt@i915_selftest@live@migrate:
- bat-mtlp-8: [PASS][3] -> [DMESG-FAIL][4] ([i915#7699])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/bat-mtlp-8/igt@i915_selftest@live@migrate.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/bat-mtlp-8/igt@i915_selftest@live@migrate.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- bat-rpls-2: NOTRUN -> [SKIP][5] ([i915#1845])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/bat-rpls-2/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_psr@primary_mmap_gtt:
- bat-rplp-1: NOTRUN -> [ABORT][6] ([i915#8442] / [i915#8469] / [i915#8668])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/bat-rplp-1/igt@kms_psr@primary_mmap_gtt.html
* igt@kms_psr@sprite_plane_onoff:
- bat-rplp-1: NOTRUN -> [SKIP][7] ([i915#1072])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/bat-rplp-1/igt@kms_psr@sprite_plane_onoff.html
#### Possible fixes ####
* igt@i915_selftest@live@mman:
- bat-rpls-2: [TIMEOUT][8] ([i915#6794] / [i915#7392]) -> [PASS][9]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/bat-rpls-2/igt@i915_selftest@live@mman.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/bat-rpls-2/igt@i915_selftest@live@mman.html
* igt@i915_suspend@basic-s2idle-without-i915:
- bat-rpls-2: [WARN][10] ([i915#8747]) -> [PASS][11]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/bat-rpls-2/igt@i915_suspend@basic-s2idle-without-i915.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/bat-rpls-2/igt@i915_suspend@basic-s2idle-without-i915.html
* igt@i915_suspend@basic-s3-without-i915:
- bat-rpls-2: [ABORT][12] ([i915#6687] / [i915#7978] / [i915#8668]) -> [PASS][13]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/bat-rpls-2/igt@i915_suspend@basic-s3-without-i915.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/bat-rpls-2/igt@i915_suspend@basic-s3-without-i915.html
#### Warnings ####
* igt@kms_psr@cursor_plane_move:
- bat-rplp-1: [ABORT][14] -> [SKIP][15] ([i915#1072])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/bat-rplp-1/igt@kms_psr@cursor_plane_move.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/bat-rplp-1/igt@kms_psr@cursor_plane_move.html
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687
[i915#6794]: https://gitlab.freedesktop.org/drm/intel/issues/6794
[i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392
[i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699
[i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911
[i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
[i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978
[i915#8442]: https://gitlab.freedesktop.org/drm/intel/issues/8442
[i915#8469]: https://gitlab.freedesktop.org/drm/intel/issues/8469
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
[i915#8747]: https://gitlab.freedesktop.org/drm/intel/issues/8747
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7443 -> IGTPW_9616
CI-20190529: 20190529
CI_DRM_13533: 49921a9fbaaf428bcfab14d5e4b7f1ce23d30633 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9616: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/index.html
IGT_7443: 953448dbf2e63918a8eced9707f65fc0a19a9c85 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
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_9616/index.html
[-- Attachment #2: Type: text/html, Size: 5814 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ○ CI.xeBAT: info for DSC Fractional BPP Val Support (rev9)
2023-08-17 18:17 [igt-dev] [v7 0/3] DSC Fractional BPP Val Support Swati Sharma
` (3 preceding siblings ...)
2023-08-17 22:18 ` [igt-dev] ✓ Fi.CI.BAT: success for DSC Fractional BPP Val Support (rev9) Patchwork
@ 2023-08-17 22:31 ` Patchwork
2023-08-18 19:15 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2023-08-17 22:31 UTC (permalink / raw)
To: Swati Sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 325 bytes --]
== Series Details ==
Series: DSC Fractional BPP Val Support (rev9)
URL : https://patchwork.freedesktop.org/series/117493/
State : info
== Summary ==
Participating hosts:
bat-atsm-2
bat-dg2-oem2
bat-adlp-7
Missing hosts results[0]:
Results: [IGTPW_9616](https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9616/index.html)
[-- Attachment #2: Type: text/html, Size: 835 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for DSC Fractional BPP Val Support (rev9)
2023-08-17 18:17 [igt-dev] [v7 0/3] DSC Fractional BPP Val Support Swati Sharma
` (4 preceding siblings ...)
2023-08-17 22:31 ` [igt-dev] ○ CI.xeBAT: info " Patchwork
@ 2023-08-18 19:15 ` Patchwork
5 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2023-08-18 19:15 UTC (permalink / raw)
To: Swati Sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 79810 bytes --]
== Series Details ==
Series: DSC Fractional BPP Val Support (rev9)
URL : https://patchwork.freedesktop.org/series/117493/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13533_full -> IGTPW_9616_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_9616_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_9616_full, please notify your bug team 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_9616/index.html
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_9616_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_dsc@dsc-fractional-bpp (NEW):
- shard-dg2: NOTRUN -> [SKIP][1] +1 similar issue
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-6/igt@kms_dsc@dsc-fractional-bpp.html
- shard-rkl: NOTRUN -> [SKIP][2] +1 similar issue
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-4/igt@kms_dsc@dsc-fractional-bpp.html
- shard-dg1: NOTRUN -> [SKIP][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg1-14/igt@kms_dsc@dsc-fractional-bpp.html
- shard-tglu: NOTRUN -> [SKIP][4] +1 similar issue
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-tglu-7/igt@kms_dsc@dsc-fractional-bpp.html
- shard-mtlp: NOTRUN -> [SKIP][5] +1 similar issue
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-mtlp-4/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@b-dp1:
- shard-apl: [PASS][6] -> [DMESG-WARN][7] +7 similar issues
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-apl2/igt@kms_flip@wf_vblank-ts-check-interruptible@b-dp1.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-apl3/igt@kms_flip@wf_vblank-ts-check-interruptible@b-dp1.html
New tests
---------
New tests have been introduced between CI_DRM_13533_full and IGTPW_9616_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_9616_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@device_reset@cold-reset-bound:
- shard-mtlp: NOTRUN -> [SKIP][8] ([i915#7701])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-mtlp-7/igt@device_reset@cold-reset-bound.html
* igt@drm_fdinfo@busy@vcs0:
- shard-mtlp: NOTRUN -> [SKIP][9] ([i915#8414]) +5 similar issues
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-mtlp-3/igt@drm_fdinfo@busy@vcs0.html
* igt@drm_fdinfo@isolation@bcs0:
- shard-dg2: NOTRUN -> [SKIP][10] ([i915#8414]) +10 similar issues
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-1/igt@drm_fdinfo@isolation@bcs0.html
* igt@drm_fdinfo@virtual-busy:
- shard-dg1: NOTRUN -> [SKIP][11] ([i915#8414])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg1-19/igt@drm_fdinfo@virtual-busy.html
* igt@drm_read@empty-nonblock:
- shard-apl: [PASS][12] -> [DMESG-WARN][13] ([i915#1982]) +1 similar issue
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-apl6/igt@drm_read@empty-nonblock.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-apl3/igt@drm_read@empty-nonblock.html
* igt@feature_discovery@display-3x:
- shard-dg1: NOTRUN -> [SKIP][14] ([i915#1839])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg1-19/igt@feature_discovery@display-3x.html
* igt@feature_discovery@display-4x:
- shard-dg2: NOTRUN -> [SKIP][15] ([i915#1839])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-6/igt@feature_discovery@display-4x.html
- shard-rkl: NOTRUN -> [SKIP][16] ([i915#1839])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-7/igt@feature_discovery@display-4x.html
* igt@gem_barrier_race@remote-request@rcs0:
- shard-glk: [PASS][17] -> [ABORT][18] ([i915#7461] / [i915#8190])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-glk1/igt@gem_barrier_race@remote-request@rcs0.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-glk9/igt@gem_barrier_race@remote-request@rcs0.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: NOTRUN -> [ABORT][19] ([i915#7461])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-6/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-set-pat:
- shard-dg1: NOTRUN -> [SKIP][20] ([i915#8562])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg1-19/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-tglu: [PASS][21] -> [FAIL][22] ([i915#6268])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-tglu-10/igt@gem_ctx_exec@basic-nohangcheck.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-tglu-4/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg2: NOTRUN -> [SKIP][23] ([i915#8555]) +2 similar issues
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_persistence@saturated-hostile@vecs0:
- shard-mtlp: [PASS][24] -> [FAIL][25] ([i915#7816]) +2 similar issues
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-mtlp-2/igt@gem_ctx_persistence@saturated-hostile@vecs0.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-mtlp-5/igt@gem_ctx_persistence@saturated-hostile@vecs0.html
* igt@gem_ctx_sseu@engines:
- shard-rkl: NOTRUN -> [SKIP][26] ([i915#280])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-4/igt@gem_ctx_sseu@engines.html
- shard-tglu: NOTRUN -> [SKIP][27] ([i915#280])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-tglu-10/igt@gem_ctx_sseu@engines.html
* igt@gem_eio@in-flight-10ms:
- shard-mtlp: [PASS][28] -> [ABORT][29] ([i915#8503])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-mtlp-6/igt@gem_eio@in-flight-10ms.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-mtlp-6/igt@gem_eio@in-flight-10ms.html
* igt@gem_exec_balancer@bonded-pair:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#4771])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-10/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@hog:
- shard-dg1: NOTRUN -> [SKIP][31] ([i915#4812])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg1-19/igt@gem_exec_balancer@hog.html
* igt@gem_exec_fair@basic-deadline:
- shard-dg1: NOTRUN -> [SKIP][32] ([i915#3539] / [i915#4852])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg1-17/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-apl: [PASS][33] -> [FAIL][34] ([i915#2842])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-apl1/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-apl1/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_fair@basic-throttle:
- shard-dg2: NOTRUN -> [SKIP][35] ([i915#3539]) +1 similar issue
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-6/igt@gem_exec_fair@basic-throttle.html
* igt@gem_exec_fence@submit3:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#4812])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-11/igt@gem_exec_fence@submit3.html
* igt@gem_exec_flush@basic-batch-kernel-default-uc:
- shard-mtlp: [PASS][37] -> [DMESG-FAIL][38] ([i915#8962] / [i915#9121])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-mtlp-8/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-mtlp-4/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
* igt@gem_exec_flush@basic-wb-rw-default:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#3539] / [i915#4852]) +2 similar issues
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-10/igt@gem_exec_flush@basic-wb-rw-default.html
* igt@gem_exec_reloc@basic-gtt-wc-noreloc:
- shard-rkl: NOTRUN -> [SKIP][40] ([i915#3281]) +3 similar issues
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
* igt@gem_exec_reloc@basic-wc-cpu-noreloc:
- shard-dg1: NOTRUN -> [SKIP][41] ([i915#3281]) +2 similar issues
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg1-14/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html
* igt@gem_exec_reloc@basic-wc-gtt:
- shard-dg2: NOTRUN -> [SKIP][42] ([i915#3281]) +9 similar issues
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-1/igt@gem_exec_reloc@basic-wc-gtt.html
* igt@gem_exec_schedule@reorder-wide:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#4537] / [i915#4812]) +1 similar issue
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-12/igt@gem_exec_schedule@reorder-wide.html
* igt@gem_lmem_swapping@heavy-multi:
- shard-rkl: NOTRUN -> [SKIP][44] ([i915#4613])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-2/igt@gem_lmem_swapping@heavy-multi.html
- shard-tglu: NOTRUN -> [SKIP][45] ([i915#4613])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-tglu-2/igt@gem_lmem_swapping@heavy-multi.html
* igt@gem_lmem_swapping@heavy-random:
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4613])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-mtlp-4/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][47] ([i915#4565])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg1-14/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [PASS][48] -> [DMESG-WARN][49] ([i915#4936] / [i915#5493])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-dg2-11/igt@gem_lmem_swapping@smem-oom@lmem0.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-6/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_media_fill@media-fill:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#8289])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-6/igt@gem_media_fill@media-fill.html
* igt@gem_media_vme:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#284])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-6/igt@gem_media_vme.html
* igt@gem_mmap@big-bo:
- shard-dg1: NOTRUN -> [SKIP][52] ([i915#4083])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg1-18/igt@gem_mmap@big-bo.html
* igt@gem_mmap@short-mmap:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#4083]) +1 similar issue
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-6/igt@gem_mmap@short-mmap.html
* igt@gem_mmap_wc@coherency:
- shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4083])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-mtlp-7/igt@gem_mmap_wc@coherency.html
* igt@gem_pread@exhaustion:
- shard-tglu: NOTRUN -> [WARN][55] ([i915#2658])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-tglu-6/igt@gem_pread@exhaustion.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#4270]) +2 similar issues
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-6/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4270]) +1 similar issue
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-mtlp-4/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_readwrite@beyond-eob:
- shard-rkl: NOTRUN -> [SKIP][58] ([i915#3282]) +5 similar issues
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-2/igt@gem_readwrite@beyond-eob.html
* igt@gem_readwrite@write-bad-handle:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#3282]) +3 similar issues
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-10/igt@gem_readwrite@write-bad-handle.html
* igt@gem_render_copy@linear-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][60] ([i915#8428])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-mtlp-2/igt@gem_render_copy@linear-to-vebox-y-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#4079]) +2 similar issues
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-12/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
- shard-rkl: NOTRUN -> [SKIP][62] ([i915#8411]) +1 similar issue
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-4/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_tiling_max_stride:
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#4077]) +1 similar issue
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg1-18/igt@gem_tiling_max_stride.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#3297]) +1 similar issue
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-6/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-rkl: NOTRUN -> [SKIP][65] ([i915#3297])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-2/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#3297] / [i915#4880]) +1 similar issue
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-6/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@vma-merge:
- shard-rkl: NOTRUN -> [FAIL][67] ([i915#3318])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-4/igt@gem_userptr_blits@vma-merge.html
- shard-tglu: NOTRUN -> [FAIL][68] ([i915#3318])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-tglu-7/igt@gem_userptr_blits@vma-merge.html
* igt@gen3_mixed_blits:
- shard-rkl: NOTRUN -> [SKIP][69] ([fdo#109289]) +1 similar issue
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-2/igt@gen3_mixed_blits.html
* igt@gen7_exec_parse@basic-offset:
- shard-dg1: NOTRUN -> [SKIP][70] ([fdo#109289]) +1 similar issue
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg1-14/igt@gen7_exec_parse@basic-offset.html
* igt@gen9_exec_parse@bb-large:
- shard-mtlp: NOTRUN -> [SKIP][71] ([i915#2856])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-mtlp-2/igt@gen9_exec_parse@bb-large.html
* igt@gen9_exec_parse@unaligned-access:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#2856]) +3 similar issues
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-1/igt@gen9_exec_parse@unaligned-access.html
- shard-rkl: NOTRUN -> [SKIP][73] ([i915#2527])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-2/igt@gen9_exec_parse@unaligned-access.html
* igt@i915_hangman@detector@vcs0:
- shard-mtlp: NOTRUN -> [FAIL][74] ([i915#8456]) +2 similar issues
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-mtlp-6/igt@i915_hangman@detector@vcs0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: [PASS][75] -> [ABORT][76] ([i915#4528] / [i915#8668])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-snb4/igt@i915_module_load@reload-with-fault-injection.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-snb5/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: [PASS][77] -> [ABORT][78] ([i915#8489] / [i915#8668])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_backlight@fade-with-dpms:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#5354] / [i915#7561])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-12/igt@i915_pm_backlight@fade-with-dpms.html
* igt@i915_pm_dc@dc6-dpms:
- shard-dg1: NOTRUN -> [SKIP][80] ([i915#3361])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg1-16/igt@i915_pm_dc@dc6-dpms.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglu: [PASS][81] -> [WARN][82] ([i915#2681])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-fence.html
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_pm_rc6_residency@rc6-idle@rcs0:
- shard-dg1: [PASS][83] -> [FAIL][84] ([i915#3591])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
* igt@i915_pm_rpm@dpms-non-lpsp:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#1397])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-10/igt@i915_pm_rpm@dpms-non-lpsp.html
* igt@i915_pm_rpm@fences-dpms:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#4077]) +16 similar issues
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-1/igt@i915_pm_rpm@fences-dpms.html
* igt@i915_pm_rpm@modeset-lpsp:
- shard-rkl: NOTRUN -> [SKIP][87] ([i915#1397])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-2/igt@i915_pm_rpm@modeset-lpsp.html
* igt@i915_pm_rpm@modeset-non-lpsp:
- shard-rkl: [PASS][88] -> [SKIP][89] ([i915#1397])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-rkl-4/igt@i915_pm_rpm@modeset-non-lpsp.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp.html
- shard-mtlp: NOTRUN -> [SKIP][90] ([i915#1397])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-mtlp-3/igt@i915_pm_rpm@modeset-non-lpsp.html
* igt@i915_pm_sseu@full-enable:
- shard-rkl: NOTRUN -> [SKIP][91] ([i915#4387])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-7/igt@i915_pm_sseu@full-enable.html
- shard-tglu: NOTRUN -> [SKIP][92] ([i915#4387])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-tglu-3/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@query-topology-unsupported:
- shard-dg2: NOTRUN -> [SKIP][93] ([fdo#109302])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-6/igt@i915_query@query-topology-unsupported.html
- shard-rkl: NOTRUN -> [SKIP][94] ([fdo#109302])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-7/igt@i915_query@query-topology-unsupported.html
* igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#4212])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-12/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-4-rc_ccs-cc:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#8709]) +11 similar issues
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-4-rc_ccs-cc.html
* igt@kms_async_flips@crc@pipe-b-hdmi-a-1:
- shard-snb: NOTRUN -> [FAIL][97] ([i915#8247]) +1 similar issue
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-snb1/igt@kms_async_flips@crc@pipe-b-hdmi-a-1.html
* igt@kms_async_flips@crc@pipe-c-hdmi-a-1:
- shard-dg1: NOTRUN -> [FAIL][98] ([i915#8247]) +3 similar issues
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg1-19/igt@kms_async_flips@crc@pipe-c-hdmi-a-1.html
* igt@kms_async_flips@crc@pipe-d-dp-4:
- shard-dg2: NOTRUN -> [FAIL][99] ([i915#8247]) +3 similar issues
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-11/igt@kms_async_flips@crc@pipe-d-dp-4.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][100] ([i915#5286]) +2 similar issues
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-4/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][101] ([fdo#111614])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-mtlp-7/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-dg1: NOTRUN -> [SKIP][102] ([i915#4538] / [i915#5286]) +1 similar issue
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-tglu: NOTRUN -> [SKIP][103] ([fdo#111615] / [i915#5286])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-tglu-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][104] ([fdo#111614]) +1 similar issue
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-12/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][105] ([fdo#111614] / [i915#3638])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-4/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
- shard-tglu: NOTRUN -> [SKIP][106] ([fdo#111614])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-tglu-7/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-mtlp: [PASS][107] -> [FAIL][108] ([i915#3743])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-mtlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-mtlp-8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2: NOTRUN -> [SKIP][109] ([i915#5190]) +12 similar issues
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-6/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][110] ([i915#4538] / [i915#5190]) +3 similar issues
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-1/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][111] ([i915#4538])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg1-17/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][112] ([fdo#111615])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-tglu-4/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-rkl: NOTRUN -> [SKIP][113] ([fdo#110723]) +1 similar issue
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_joiner@basic:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#2705])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-1/igt@kms_big_joiner@basic.html
* igt@kms_big_joiner@invalid-modeset:
- shard-dg1: NOTRUN -> [SKIP][115] ([i915#2705])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg1-19/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_ccs:
- shard-dg2: NOTRUN -> [SKIP][116] ([i915#3689] / [i915#5354]) +21 similar issues
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-2/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_ccs.html
* igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_dg2_rc_ccs_cc:
- shard-tglu: NOTRUN -> [SKIP][117] ([i915#5354] / [i915#6095]) +5 similar issues
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-tglu-4/igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_dg2_rc_ccs_cc.html
* igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_mtl_mc_ccs:
- shard-rkl: NOTRUN -> [SKIP][118] ([i915#5354] / [i915#6095]) +6 similar issues
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-4/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_mtl_mc_ccs.html
* igt@kms_ccs@pipe-a-missing-ccs-buffer-4_tiled_mtl_mc_ccs:
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#5354]) +38 similar issues
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-6/igt@kms_ccs@pipe-a-missing-ccs-buffer-4_tiled_mtl_mc_ccs.html
* igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_dg2_rc_ccs_cc:
- shard-mtlp: NOTRUN -> [SKIP][120] ([i915#6095]) +3 similar issues
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-mtlp-1/igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_dg2_rc_ccs_cc.html
* igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_rc_ccs_cc:
- shard-dg2: NOTRUN -> [SKIP][121] ([i915#3689] / [i915#3886] / [i915#5354]) +7 similar issues
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-10/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
- shard-rkl: NOTRUN -> [SKIP][122] ([i915#3886] / [i915#5354] / [i915#6095])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-2/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-b-crc-sprite-planes-basic-yf_tiled_ccs:
- shard-rkl: NOTRUN -> [SKIP][123] ([i915#3734] / [i915#5354] / [i915#6095]) +1 similar issue
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-4/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-yf_tiled_ccs.html
* igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs_cc:
- shard-rkl: NOTRUN -> [SKIP][124] ([i915#5354]) +12 similar issues
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-2/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs_cc.html
* igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs:
- shard-tglu: NOTRUN -> [SKIP][125] ([i915#3689] / [i915#5354] / [i915#6095]) +3 similar issues
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-tglu-10/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_mc_ccs.html
* igt@kms_ccs@pipe-d-ccs-on-another-bo-4_tiled_mtl_rc_ccs_cc:
- shard-dg1: NOTRUN -> [SKIP][126] ([i915#5354] / [i915#6095]) +1 similar issue
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg1-17/igt@kms_ccs@pipe-d-ccs-on-another-bo-4_tiled_mtl_rc_ccs_cc.html
* igt@kms_ccs@pipe-d-crc-primary-basic-yf_tiled_ccs:
- shard-dg1: NOTRUN -> [SKIP][127] ([i915#3689] / [i915#5354] / [i915#6095]) +6 similar issues
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg1-19/igt@kms_ccs@pipe-d-crc-primary-basic-yf_tiled_ccs.html
* igt@kms_ccs@pipe-d-missing-ccs-buffer-yf_tiled_ccs:
- shard-tglu: NOTRUN -> [SKIP][128] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) +1 similar issue
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-tglu-6/igt@kms_ccs@pipe-d-missing-ccs-buffer-yf_tiled_ccs.html
* igt@kms_cdclk@mode-transition@pipe-a-dp-2:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#4087] / [i915#7213]) +3 similar issues
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-12/igt@kms_cdclk@mode-transition@pipe-a-dp-2.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-rkl: NOTRUN -> [SKIP][130] ([fdo#111827])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-4/igt@kms_chamelium_color@ctm-blue-to-red.html
- shard-tglu: NOTRUN -> [SKIP][131] ([fdo#111827])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-tglu-10/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-dg2: NOTRUN -> [SKIP][132] ([fdo#111827]) +1 similar issue
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-6/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k:
- shard-dg2: NOTRUN -> [SKIP][133] ([i915#7828]) +4 similar issues
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-11/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-mtlp: NOTRUN -> [SKIP][134] ([i915#7828])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-mtlp-2/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-dg1: NOTRUN -> [SKIP][135] ([i915#7828]) +1 similar issue
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg1-17/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][136] ([i915#7828]) +2 similar issues
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-1/igt@kms_chamelium_hpd@vga-hpd-fast.html
- shard-tglu: NOTRUN -> [SKIP][137] ([i915#7828]) +1 similar issue
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-tglu-4/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_content_protection@lic@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][138] ([i915#7173]) +1 similar issue
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-11/igt@kms_content_protection@lic@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-rkl: NOTRUN -> [SKIP][139] ([i915#3555]) +1 similar issue
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-2/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-rkl: NOTRUN -> [SKIP][140] ([i915#3359])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-2/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-tglu: NOTRUN -> [SKIP][141] ([i915#3359])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-tglu-10/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#3359])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-11/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-dg1: NOTRUN -> [SKIP][143] ([i915#3359])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg1-16/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-mtlp: NOTRUN -> [SKIP][144] ([i915#3359])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-mtlp-8/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_crc@cursor-sliding-max-size:
- shard-dg1: NOTRUN -> [SKIP][145] ([i915#3555])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg1-18/igt@kms_cursor_crc@cursor-sliding-max-size.html
* igt@kms_cursor_edge_walk@128x128-left-edge@pipe-c-dp-1:
- shard-apl: [PASS][146] -> [DMESG-WARN][147] ([i915#180] / [i915#7634])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-apl4/igt@kms_cursor_edge_walk@128x128-left-edge@pipe-c-dp-1.html
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-apl3/igt@kms_cursor_edge_walk@128x128-left-edge@pipe-c-dp-1.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][148] ([i915#3546]) +2 similar issues
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-mtlp-3/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
- shard-rkl: NOTRUN -> [SKIP][149] ([fdo#111825])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-dg2: NOTRUN -> [SKIP][150] ([fdo#109274] / [i915#5354]) +3 similar issues
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-10/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-rkl: NOTRUN -> [SKIP][151] ([fdo#111767] / [fdo#111825])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
- shard-tglu: NOTRUN -> [SKIP][152] ([fdo#109274] / [fdo#111767])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-tglu-9/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [PASS][153] -> [FAIL][154] ([i915#2346])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2: NOTRUN -> [SKIP][155] ([i915#4103] / [i915#4213]) +1 similar issue
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#4103])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_display_modes@extended-mode-basic:
- shard-tglu: NOTRUN -> [SKIP][157] ([i915#3555])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-tglu-4/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][158] ([i915#3804])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_aux_dev:
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#1257])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-7/igt@kms_dp_aux_dev.html
* igt@kms_dsc@dsc-basic:
- shard-dg2: NOTRUN -> [SKIP][160] ([i915#3555] / [i915#3840])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-6/igt@kms_dsc@dsc-basic.html
* {igt@kms_dsc@dsc-fractional-bpp-with-bpc} (NEW):
- shard-apl: NOTRUN -> [SKIP][161] ([fdo#109271]) +1 similar issue
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-apl2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
- shard-glk: NOTRUN -> [SKIP][162] ([fdo#109271]) +1 similar issue
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-glk7/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible:
- shard-dg2: NOTRUN -> [SKIP][163] ([fdo#109274]) +5 similar issues
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-11/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-dg2: NOTRUN -> [SKIP][164] ([fdo#109274] / [fdo#111767])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-11/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2:
- shard-glk: [PASS][165] -> [FAIL][166] ([i915#79])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-glk7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-glk7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg1: NOTRUN -> [SKIP][167] ([i915#8381])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg1-18/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#8381])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-2/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#2672])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
- shard-tglu: NOTRUN -> [SKIP][170] ([i915#2587] / [i915#2672])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][171] ([i915#2672])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#2672]) +6 similar issues
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][173] ([i915#2587] / [i915#2672])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][174] ([i915#8708]) +2 similar issues
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][175] ([fdo#111825]) +7 similar issues
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][176] ([i915#8708]) +4 similar issues
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-linear:
- shard-dg2: [PASS][177] -> [FAIL][178] ([i915#6880]) +1 similar issue
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#8708]) +17 similar issues
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][180] ([i915#3458]) +1 similar issue
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][181] ([fdo#111825] / [i915#1825]) +11 similar issues
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-pwrite:
- shard-mtlp: NOTRUN -> [SKIP][182] ([i915#1825]) +3 similar issues
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt:
- shard-snb: NOTRUN -> [SKIP][183] ([fdo#109271]) +130 similar issues
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-snb6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][184] ([fdo#110189]) +5 similar issues
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][185] ([i915#3023]) +7 similar issues
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-rte:
- shard-dg2: NOTRUN -> [SKIP][186] ([i915#3458]) +9 similar issues
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][187] ([fdo#109280]) +7 similar issues
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#3555] / [i915#8228])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-6/igt@kms_hdr@static-toggle-suspend.html
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#8228]) +1 similar issue
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-7/igt@kms_hdr@static-toggle-suspend.html
- shard-tglu: NOTRUN -> [SKIP][190] ([i915#3555] / [i915#8228])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-tglu-6/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_panel_fitting@legacy:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#6301])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-12/igt@kms_panel_fitting@legacy.html
* igt@kms_plane@pixel-format@pipe-b-planes:
- shard-mtlp: [PASS][192] -> [FAIL][193] ([i915#1623])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-mtlp-5/igt@kms_plane@pixel-format@pipe-b-planes.html
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-mtlp-8/igt@kms_plane@pixel-format@pipe-b-planes.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#8806])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-12/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][195] ([i915#3555] / [i915#8806])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-2/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [FAIL][196] ([i915#8292])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-11/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
- shard-dg1: NOTRUN -> [FAIL][197] ([i915#8292])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg1-19/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][198] ([i915#8292])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-4/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-dp-4:
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#5176]) +7 similar issues
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-d-dp-4.html
* igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][200] ([i915#5176]) +9 similar issues
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-1/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][201] ([i915#5176]) +15 similar issues
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg1-17/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][202] ([i915#5235]) +11 similar issues
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#5235]) +15 similar issues
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][204] ([i915#5235]) +11 similar issues
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg1-18/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
- shard-rkl: NOTRUN -> [SKIP][205] ([i915#658]) +1 similar issue
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-4/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][206] ([i915#658]) +3 similar issues
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-10/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@psr2_cursor_mmap_gtt:
- shard-rkl: NOTRUN -> [SKIP][207] ([i915#1072]) +2 similar issues
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-1/igt@kms_psr@psr2_cursor_mmap_gtt.html
* igt@kms_psr@psr2_cursor_plane_onoff:
- shard-dg1: NOTRUN -> [SKIP][208] ([i915#1072])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg1-19/igt@kms_psr@psr2_cursor_plane_onoff.html
* igt@kms_psr@psr2_sprite_blt:
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#1072]) +6 similar issues
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-1/igt@kms_psr@psr2_sprite_blt.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg2: NOTRUN -> [SKIP][210] ([i915#4235])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-11/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-dg1: NOTRUN -> [SKIP][211] ([i915#5289])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg1-17/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-mtlp: NOTRUN -> [SKIP][212] ([i915#5289])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-mtlp-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][213] ([i915#4235] / [i915#5190])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-11/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_selftest@drm_format:
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#8661]) +2 similar issues
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-12/igt@kms_selftest@drm_format.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-1:
- shard-snb: NOTRUN -> [FAIL][215] ([i915#5465]) +1 similar issue
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-snb1/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-rkl: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#4098]) +1 similar issue
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-2/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#3555]) +5 similar issues
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-6/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: [PASS][218] -> [FAIL][219] ([IGT#2])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-dg2-11/igt@kms_sysfs_edid_timing.html
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-6/igt@kms_sysfs_edid_timing.html
* igt@kms_tv_load_detect@load-detect:
- shard-dg1: NOTRUN -> [SKIP][220] ([fdo#109309])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg1-18/igt@kms_tv_load_detect@load-detect.html
* igt@kms_universal_plane@universal-plane-pipe-c-functional:
- shard-rkl: NOTRUN -> [SKIP][221] ([i915#4070] / [i915#6768]) +4 similar issues
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-2/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
* igt@kms_vblank@pipe-d-query-busy:
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#4070] / [i915#533] / [i915#6768]) +1 similar issue
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-7/igt@kms_vblank@pipe-d-query-busy.html
* igt@kms_writeback@writeback-fb-id:
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#2437])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-7/igt@kms_writeback@writeback-fb-id.html
- shard-tglu: NOTRUN -> [SKIP][224] ([i915#2437])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-tglu-6/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-dg1: NOTRUN -> [SKIP][225] ([i915#2437])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg1-16/igt@kms_writeback@writeback-invalid-parameters.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-dg2: NOTRUN -> [SKIP][226] ([i915#2437])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-11/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@per-context-mode-unprivileged:
- shard-dg2: NOTRUN -> [SKIP][227] ([fdo#109289]) +5 similar issues
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-10/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: NOTRUN -> [FAIL][228] ([i915#4349]) +3 similar issues
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-10/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@cpu-hotplug:
- shard-rkl: NOTRUN -> [SKIP][229] ([i915#8850])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-4/igt@perf_pmu@cpu-hotplug.html
- shard-tglu: NOTRUN -> [SKIP][230] ([i915#8850])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-tglu-10/igt@perf_pmu@cpu-hotplug.html
* igt@prime_vgem@basic-fence-flip:
- shard-dg1: NOTRUN -> [SKIP][231] ([i915#3708])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg1-18/igt@prime_vgem@basic-fence-flip.html
* igt@syncobj_timeline@reset-during-wait-for-submit:
- shard-apl: [PASS][232] -> [DMESG-WARN][233] ([i915#180] / [i915#1982] / [i915#7634]) +1 similar issue
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-apl4/igt@syncobj_timeline@reset-during-wait-for-submit.html
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-apl3/igt@syncobj_timeline@reset-during-wait-for-submit.html
* igt@v3d/v3d_get_param@get-bad-param:
- shard-dg1: NOTRUN -> [SKIP][234] ([i915#2575]) +2 similar issues
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg1-18/igt@v3d/v3d_get_param@get-bad-param.html
* igt@v3d/v3d_job_submission@array-job-submission:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#2575]) +8 similar issues
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-2/igt@v3d/v3d_job_submission@array-job-submission.html
- shard-rkl: NOTRUN -> [SKIP][236] ([fdo#109315]) +2 similar issues
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-2/igt@v3d/v3d_job_submission@array-job-submission.html
* igt@v3d/v3d_perfmon@get-values-invalid-pointer:
- shard-mtlp: NOTRUN -> [SKIP][237] ([i915#2575])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-mtlp-6/igt@v3d/v3d_perfmon@get-values-invalid-pointer.html
* igt@v3d/v3d_submit_cl@bad-extension:
- shard-tglu: NOTRUN -> [SKIP][238] ([fdo#109315] / [i915#2575])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-tglu-10/igt@v3d/v3d_submit_cl@bad-extension.html
* igt@vc4/vc4_label_bo@set-kernel-name:
- shard-dg1: NOTRUN -> [SKIP][239] ([i915#7711])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg1-18/igt@vc4/vc4_label_bo@set-kernel-name.html
* igt@vc4/vc4_label_bo@set-label:
- shard-mtlp: NOTRUN -> [SKIP][240] ([i915#7711])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-mtlp-3/igt@vc4/vc4_label_bo@set-label.html
* igt@vc4/vc4_tiling@get-after-free:
- shard-tglu: NOTRUN -> [SKIP][241] ([i915#2575])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-tglu-10/igt@vc4/vc4_tiling@get-after-free.html
* igt@vc4/vc4_tiling@get-bad-handle:
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#7711]) +8 similar issues
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-6/igt@vc4/vc4_tiling@get-bad-handle.html
- shard-rkl: NOTRUN -> [SKIP][243] ([i915#7711]) +2 similar issues
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-4/igt@vc4/vc4_tiling@get-bad-handle.html
#### Possible fixes ####
* igt@drm_fdinfo@most-busy-check-all@rcs0:
- shard-rkl: [FAIL][244] ([i915#7742]) -> [PASS][245]
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-rkl-1/igt@drm_fdinfo@most-busy-check-all@rcs0.html
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all@rcs0.html
* igt@gem_ctx_persistence@engines-hostile@vcs0:
- shard-mtlp: [FAIL][246] ([i915#2410]) -> [PASS][247] +4 similar issues
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-mtlp-5/igt@gem_ctx_persistence@engines-hostile@vcs0.html
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-mtlp-6/igt@gem_ctx_persistence@engines-hostile@vcs0.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [FAIL][248] ([i915#5784]) -> [PASS][249]
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-dg1-17/igt@gem_eio@unwedge-stress.html
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg1-19/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_capture@pi@bcs0:
- shard-mtlp: [FAIL][250] ([i915#4475] / [i915#7765]) -> [PASS][251]
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-mtlp-4/igt@gem_exec_capture@pi@bcs0.html
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-mtlp-2/igt@gem_exec_capture@pi@bcs0.html
* igt@gem_exec_capture@pi@vcs0:
- shard-mtlp: [FAIL][252] ([i915#4475]) -> [PASS][253]
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-mtlp-4/igt@gem_exec_capture@pi@vcs0.html
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-mtlp-2/igt@gem_exec_capture@pi@vcs0.html
* igt@gem_exec_fair@basic-flow@rcs0:
- shard-tglu: [FAIL][254] ([i915#2842]) -> [PASS][255]
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-tglu-10/igt@gem_exec_fair@basic-flow@rcs0.html
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-tglu-6/igt@gem_exec_fair@basic-flow@rcs0.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-rkl: [FAIL][256] ([i915#2842]) -> [PASS][257]
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-rkl-1/igt@gem_exec_fair@basic-none-share@rcs0.html
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-1/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [FAIL][258] ([i915#2842]) -> [PASS][259]
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@i915_pm_dc@dc9-dpms:
- shard-apl: [SKIP][260] ([fdo#109271]) -> [PASS][261]
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-apl4/igt@i915_pm_dc@dc9-dpms.html
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-apl1/igt@i915_pm_dc@dc9-dpms.html
* igt@i915_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2: [SKIP][262] ([i915#1397]) -> [PASS][263] +1 similar issue
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-dg2-1/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-10/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [SKIP][264] ([i915#1397]) -> [PASS][265]
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-4/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html
- shard-dg1: [SKIP][266] ([i915#1397]) -> [PASS][267] +2 similar issues
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-dg1-19/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg1-14/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1:
- shard-mtlp: [FAIL][268] ([i915#2521]) -> [PASS][269]
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-mtlp-2/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-mtlp-3/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-2:
- shard-glk: [FAIL][270] ([i915#2521]) -> [PASS][271]
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-glk9/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-2.html
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-glk5/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-2.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-mtlp: [FAIL][272] ([i915#5138]) -> [PASS][273]
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-mtlp-3/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-mtlp-2/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-mtlp: [FAIL][274] ([i915#3743]) -> [PASS][275]
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-mtlp-5/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-mtlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_cursor_legacy@cursor-vs-flip-toggle:
- shard-mtlp: [FAIL][276] ([i915#8248]) -> [PASS][277]
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-mtlp-5/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-mtlp-5/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-apl: [FAIL][278] ([i915#2346]) -> [PASS][279]
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a3:
- shard-dg2: [FAIL][280] ([i915#79]) -> [PASS][281]
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-dg2-6/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a3.html
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-6/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a3.html
* igt@kms_flip@wf_vblank-ts-check@b-vga1:
- shard-snb: [ABORT][282] ([i915#8865]) -> [PASS][283]
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-snb7/igt@kms_flip@wf_vblank-ts-check@b-vga1.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-snb1/igt@kms_flip@wf_vblank-ts-check@b-vga1.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt:
- shard-dg2: [FAIL][284] ([i915#6880]) -> [PASS][285] +2 similar issues
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_plane@pixel-format-source-clamping@pipe-b-planes:
- shard-mtlp: [FAIL][286] ([i915#1623]) -> [PASS][287]
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-mtlp-1/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-mtlp-7/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html
* igt@kms_psr@psr2_cursor_blt:
- shard-mtlp: [DMESG-WARN][288] ([i915#2017]) -> [PASS][289]
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-mtlp-8/igt@kms_psr@psr2_cursor_blt.html
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-mtlp-5/igt@kms_psr@psr2_cursor_blt.html
* igt@perf_pmu@most-busy-idle-check-all@rcs0:
- shard-dg2: [FAIL][290] ([i915#5234]) -> [PASS][291]
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-dg2-11/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg2-6/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
* igt@sysfs_heartbeat_interval@precise@vecs0:
- shard-mtlp: [FAIL][292] ([i915#8332]) -> [PASS][293]
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-mtlp-6/igt@sysfs_heartbeat_interval@precise@vecs0.html
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-mtlp-4/igt@sysfs_heartbeat_interval@precise@vecs0.html
#### Warnings ####
* igt@i915_pm_rc6_residency@rc6-idle@bcs0:
- shard-tglu: [WARN][294] ([i915#2681]) -> [FAIL][295] ([i915#2681] / [i915#3591])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-tglu-8/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-mtlp: [FAIL][296] ([i915#2346]) -> [DMESG-FAIL][297] ([i915#2017] / [i915#5954])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-mtlp-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-mtlp-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: [SKIP][298] ([i915#3955]) -> [SKIP][299] ([fdo#110189] / [i915#3955])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-rkl-4/igt@kms_fbcon_fbt@psr.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-1/igt@kms_fbcon_fbt@psr.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][300] ([i915#4816]) -> [SKIP][301] ([i915#4070] / [i915#4816])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-rkl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_psr@primary_page_flip:
- shard-dg1: [SKIP][302] ([i915#1072]) -> [SKIP][303] ([i915#1072] / [i915#4078])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-dg1-19/igt@kms_psr@primary_page_flip.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-dg1-16/igt@kms_psr@primary_page_flip.html
* igt@runner@aborted:
- shard-snb: [FAIL][304] ([i915#7812]) -> ([FAIL][305], [FAIL][306]) ([i915#7812] / [i915#8848])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13533/shard-snb1/igt@runner@aborted.html
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-snb7/igt@runner@aborted.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/shard-snb7/igt@runner@aborted.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#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#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#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1623]: https://gitlab.freedesktop.org/drm/intel/issues/1623
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017
[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#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#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#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[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#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#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
[i915#4475]: https://gitlab.freedesktop.org/drm/intel/issues/4475
[i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528
[i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
[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#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[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#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#5954]: https://gitlab.freedesktop.org/drm/intel/issues/5954
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
[i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
[i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461
[i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
[i915#7634]: https://gitlab.freedesktop.org/drm/intel/issues/7634
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[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#7812]: https://gitlab.freedesktop.org/drm/intel/issues/7812
[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#8190]: https://gitlab.freedesktop.org/drm/intel/issues/8190
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
[i915#8248]: https://gitlab.freedesktop.org/drm/intel/issues/8248
[i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289
[i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
[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#8456]: https://gitlab.freedesktop.org/drm/intel/issues/8456
[i915#8489]: https://gitlab.freedesktop.org/drm/intel/issues/8489
[i915#8503]: https://gitlab.freedesktop.org/drm/intel/issues/8503
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562
[i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
[i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806
[i915#8848]: https://gitlab.freedesktop.org/drm/intel/issues/8848
[i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850
[i915#8865]: https://gitlab.freedesktop.org/drm/intel/issues/8865
[i915#8962]: https://gitlab.freedesktop.org/drm/intel/issues/8962
[i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053
[i915#9121]: https://gitlab.freedesktop.org/drm/intel/issues/9121
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7443 -> IGTPW_9616
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_13533: 49921a9fbaaf428bcfab14d5e4b7f1ce23d30633 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9616: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/index.html
IGT_7443: 953448dbf2e63918a8eced9707f65fc0a19a9c85 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9616/index.html
[-- Attachment #2: Type: text/html, Size: 97601 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2023-08-18 19:15 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-17 18:17 [igt-dev] [v7 0/3] DSC Fractional BPP Val Support Swati Sharma
2023-08-17 18:17 ` [igt-dev] [v7 1/3] lib/dsc: add helpers for vdsc fractional bpp debugfs entry Swati Sharma
2023-08-17 18:17 ` [igt-dev] [v7 2/3] tests/i915/kms_dsc: enable validation for vdsc fractional bpp Swati Sharma
2023-08-17 18:17 ` [igt-dev] [v7 3/3] tests/i915/kms_dsc: add test to validate fractional bpp with input bpc Swati Sharma
2023-08-17 22:18 ` [igt-dev] ✓ Fi.CI.BAT: success for DSC Fractional BPP Val Support (rev9) Patchwork
2023-08-17 22:31 ` [igt-dev] ○ CI.xeBAT: info " Patchwork
2023-08-18 19:15 ` [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