* [igt-dev] [PATCH i-g-t v9 0/4] Testcases for dirtyfb ioctl
@ 2023-08-24 10:40 Jouni Högander
2023-08-24 10:40 ` [igt-dev] [PATCH i-g-t v9 1/4] lib/i915/fbc: Add fbc helpers Jouni Högander
` (10 more replies)
0 siblings, 11 replies; 13+ messages in thread
From: Jouni Högander @ 2023-08-24 10:40 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
This patchset is adding new testcases for dirtyfb ioctl with features
like FBC, PSR and DRRS.
Also some helpers are split from kms_frontbuffer_tracking to be shared
with a new testcases.
v9:
- Handle stolen memory not initialised
v8:
- Add new style documentation
v7:
- Split kms_frontbuffer_tracking changes into separate patch
- Xe spinner changes already merged
v6:
- Perform igt_display_reset in prepare
v5:
- Modifications to support Xe as well
v4:
- Document library interface functions
- Check connector type is eDP when PSR is tested
v3:
- Use spinner
- Drop allocating big frambuffers
v2:
- Move fbc and drrs into libigt
- Change testcase license comment
- Move disable_features and do not apply for FEATURE_DEFAULT
Cc: Kunal Joshi <kunal1.joshi@intel.com>
Jouni Högander (4):
lib/i915/fbc: Add fbc helpers
lib/i915/drrs: Add drrs helpers
tests/i915/kms_frontbuffer_tracking: Utilize added fbc and drrs
helpers
tests/kms_dirtyfb: Add new test for dirtyfb ioctl
lib/i915/intel_drrs.c | 133 +++++++++++
lib/i915/intel_drrs.h | 17 ++
lib/i915/intel_fbc.c | 97 ++++++++
lib/i915/intel_fbc.h | 18 ++
lib/meson.build | 2 +
tests/i915/kms_dirtyfb.c | 318 ++++++++++++++++++++++++++
tests/i915/kms_frontbuffer_tracking.c | 141 ++----------
tests/meson.build | 1 +
8 files changed, 603 insertions(+), 124 deletions(-)
create mode 100644 lib/i915/intel_drrs.c
create mode 100644 lib/i915/intel_drrs.h
create mode 100644 lib/i915/intel_fbc.c
create mode 100644 lib/i915/intel_fbc.h
create mode 100644 tests/i915/kms_dirtyfb.c
--
2.34.1
^ permalink raw reply [flat|nested] 13+ messages in thread* [igt-dev] [PATCH i-g-t v9 1/4] lib/i915/fbc: Add fbc helpers 2023-08-24 10:40 [igt-dev] [PATCH i-g-t v9 0/4] Testcases for dirtyfb ioctl Jouni Högander @ 2023-08-24 10:40 ` Jouni Högander 2023-08-24 10:40 ` [igt-dev] [PATCH i-g-t v9 2/4] lib/i915/drrs: Add drrs helpers Jouni Högander ` (9 subsequent siblings) 10 siblings, 0 replies; 13+ messages in thread From: Jouni Högander @ 2023-08-24 10:40 UTC (permalink / raw) To: igt-dev; +Cc: Kunal Joshi Add some fbc helpes into a library to be used by kms_frontbuffer_tracking and other tests as well. v5: Handle stolen memory not initialised v4: Split testcase modification into a separate patch v3: Add library function descriptions v2: Moved into libigt instead of static kms_fbc_helper Signed-off-by: Jouni Högander <jouni.hogander@intel.com> Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com> --- lib/i915/intel_fbc.c | 97 ++++++++++++++++++++++++++++++++++++++++++++ lib/i915/intel_fbc.h | 18 ++++++++ lib/meson.build | 1 + 3 files changed, 116 insertions(+) create mode 100644 lib/i915/intel_fbc.c create mode 100644 lib/i915/intel_fbc.h diff --git a/lib/i915/intel_fbc.c b/lib/i915/intel_fbc.c new file mode 100644 index 000000000..3fac60087 --- /dev/null +++ b/lib/i915/intel_fbc.c @@ -0,0 +1,97 @@ +/* SPDX-License-Identifier: MIT */ +/* + * Copyright © 2023 Intel Corporation + */ + +#include <fcntl.h> + +#include "igt.h" + +#include "intel_fbc.h" + +#define FBC_STATUS_BUF_LEN 128 + +/** + * intel_fbc_supported_on_chipset: + * @device: fd of the device + * @pipe: Display pipe + * + * Check if FBC is supported by chipset on given pipe. + * + * Returns: + * true if FBC is supported and false otherwise. + */ +bool intel_fbc_supported_on_chipset(int device, enum pipe pipe) +{ + char buf[FBC_STATUS_BUF_LEN]; + int dir; + + dir = igt_debugfs_pipe_dir(device, pipe, O_DIRECTORY); + igt_require_fd(dir); + igt_debugfs_simple_read(dir, "i915_fbc_status", buf, sizeof(buf)); + close(dir); + if (*buf == '\0') + return false; + + return !strstr(buf, "FBC unsupported on this chipset\n") && + !strstr(buf, "stolen memory not initialised\n"); +} + +static bool _intel_fbc_is_enabled(int device, enum pipe pipe, int log_level, char *last_fbc_buf) +{ + char buf[FBC_STATUS_BUF_LEN]; + bool print = true; + int dir; + + dir = igt_debugfs_pipe_dir(device, pipe, O_DIRECTORY); + igt_require_fd(dir); + igt_debugfs_simple_read(dir, "i915_fbc_status", buf, sizeof(buf)); + close(dir); + if (log_level != IGT_LOG_DEBUG) + last_fbc_buf[0] = '\0'; + else if (strcmp(last_fbc_buf, buf)) + strcpy(last_fbc_buf, buf); + else + print = false; + + if (print) + igt_log(IGT_LOG_DOMAIN, log_level, "fbc_is_enabled():\n%s\n", buf); + + return strstr(buf, "FBC enabled\n"); +} + +/** + * intel_fbc_is_enabled: + * @device: fd of the device + * @pipe: Display pipe + * @log_level: Wanted loglevel + * + * Check if FBC is enabled on given pipe. Loglevel can be used to + * control at which loglevel current state is printed out. + * + * Returns: + * true if FBC is enabled. + */ +bool intel_fbc_is_enabled(int device, enum pipe pipe, int log_level) +{ + char last_fbc_buf[FBC_STATUS_BUF_LEN] = {'\0'}; + + return _intel_fbc_is_enabled(device, pipe, log_level, last_fbc_buf); +} + +/** + * intel_fbc_wait_until_enabled: + * @device: fd of the device + * @pipe: Display pipe + * + * Wait until fbc is enabled. Used timeout is constant 2 seconds. + * + * Returns: + * true if FBC got enabled. + */ +bool intel_fbc_wait_until_enabled(int device, enum pipe pipe) +{ + char last_fbc_buf[FBC_STATUS_BUF_LEN] = {'\0'}; + + return igt_wait(_intel_fbc_is_enabled(device, pipe, IGT_LOG_DEBUG, last_fbc_buf), 2000, 1); +} diff --git a/lib/i915/intel_fbc.h b/lib/i915/intel_fbc.h new file mode 100644 index 000000000..995dc7f1e --- /dev/null +++ b/lib/i915/intel_fbc.h @@ -0,0 +1,18 @@ +/* SPDX-License-Identifier: MIT */ +/* + * Copyright © 2022 Intel Corporation + */ + +#ifndef INTEL_FBC_H +#define INTEL_FBC_H + +#include "igt.h" + +#define intel_fbc_enable(device) igt_set_module_param_int(device, "enable_fbc", 1) +#define intel_fbc_disable(device) igt_set_module_param_int(device, "enable_fbc", 0) + +bool intel_fbc_supported_on_chipset(int device, enum pipe pipe); +bool intel_fbc_wait_until_enabled(int device, enum pipe pipe); +bool intel_fbc_is_enabled(int device, enum pipe pipe, int log_level); + +#endif diff --git a/lib/meson.build b/lib/meson.build index b7bfcf4f0..748667c10 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -12,6 +12,7 @@ lib_sources = [ 'i915/gem_mman.c', 'i915/gem_vm.c', 'i915/intel_decode.c', + 'i915/intel_fbc.c', 'i915/intel_memory_region.c', 'i915/i915_crc.c', 'igt_collection.c', -- 2.34.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* [igt-dev] [PATCH i-g-t v9 2/4] lib/i915/drrs: Add drrs helpers 2023-08-24 10:40 [igt-dev] [PATCH i-g-t v9 0/4] Testcases for dirtyfb ioctl Jouni Högander 2023-08-24 10:40 ` [igt-dev] [PATCH i-g-t v9 1/4] lib/i915/fbc: Add fbc helpers Jouni Högander @ 2023-08-24 10:40 ` Jouni Högander 2023-08-24 10:40 ` [igt-dev] [PATCH i-g-t v9 3/4] tests/i915/kms_frontbuffer_tracking: Utilize added fbc and " Jouni Högander ` (8 subsequent siblings) 10 siblings, 0 replies; 13+ messages in thread From: Jouni Högander @ 2023-08-24 10:40 UTC (permalink / raw) To: igt-dev; +Cc: Kunal Joshi Add drrs handling into a library to be used by kms_frontbuffer_tracking and other tests as well. v4: Split testcase modification into a separate patch v3: Add library function descriptions v2: Moved into libigt instead of static kms_drrs_helper Signed-off-by: Jouni Högander <jouni.hogander@intel.com> Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com> --- lib/i915/intel_drrs.c | 133 ++++++++++++++++++++++++++++++++++++++++++ lib/i915/intel_drrs.h | 17 ++++++ lib/meson.build | 1 + 3 files changed, 151 insertions(+) create mode 100644 lib/i915/intel_drrs.c create mode 100644 lib/i915/intel_drrs.h diff --git a/lib/i915/intel_drrs.c b/lib/i915/intel_drrs.c new file mode 100644 index 000000000..2f83e1394 --- /dev/null +++ b/lib/i915/intel_drrs.c @@ -0,0 +1,133 @@ +/* SPDX-License-Identifier: MIT */ +/* + * Copyright © 2023 Intel Corporation + */ + +#include <fcntl.h> + +#include "igt.h" +#include "igt_sysfs.h" + +#include "intel_drrs.h" + +/** + * intel_is_drrs_supported: + * @device: fd of the device + * @pipe: Display pipe + * + * Check if DRRS is supported on given pipe. + * + * Returns: + * true if DRRS is supported and false otherwise. + */ +bool intel_is_drrs_supported(int device, enum pipe pipe) +{ + char buf[256]; + int dir; + + dir = igt_debugfs_pipe_dir(device, pipe, O_DIRECTORY); + igt_require_fd(dir); + igt_debugfs_simple_read(dir, "i915_drrs_status", buf, sizeof(buf)); + close(dir); + if (*buf == '\0') + return false; + + return !strcasestr(buf, "DRRS enabled:"); +} + +/** + * intel_output_has_drrs + * @device: fd of the device + * @output: Display output + * + * Check if drrs used on given output. + * + * Returns: + * true if DRRS is used and false otherwise. + */ +bool intel_output_has_drrs(int device, igt_output_t *output) +{ + char buf[256]; + int dir; + + dir = igt_debugfs_connector_dir(device, output->name, O_DIRECTORY); + igt_require_fd(dir); + igt_debugfs_simple_read(dir, "i915_drrs_type", buf, sizeof(buf)); + close(dir); + + return strstr(buf, "seamless"); +} + +static void drrs_set(int device, enum pipe pipe, unsigned int val) +{ + char buf[2]; + int dir, ret; + + igt_debug("Manually %sabling DRRS. %u\n", val ? "en" : "dis", val); + snprintf(buf, sizeof(buf), "%d", val); + + dir = igt_debugfs_pipe_dir(device, pipe, O_DIRECTORY); + igt_require_fd(dir); + ret = igt_sysfs_write(dir, "i915_drrs_ctl", buf, sizeof(buf) - 1); + + /* + * drrs_enable() is called on DRRS capable platform only, + * whereas drrs_disable() is called on all platforms. + * So handle the failure of debugfs_write only for drrs_enable(). + */ + if (val) + igt_assert_f(ret == (sizeof(buf) - 1), "debugfs_write failed"); +} + +/** + * intel_drrs_enable: + * @device: fd of the device + * @pipe: Display pipe + * + * Enable DRRS on given pipe + * + * Returns: + * none + */ +void intel_drrs_enable(int device, enum pipe pipe) +{ + drrs_set(device, pipe, 1); +} + +/** + * intel_drrs_disable: + * @device: fd of the device + * @pipe: Display pipe + * + * Disable DRRS on given pipe + * + * Returns: + * none + */ +void intel_drrs_disable(int device, enum pipe pipe) +{ + drrs_set(device, pipe, 0); +} + +/** + * intel_is_drrs_inactive: + * @device: fd of the device + * @pipe: Display pipe + * + * Check if drrs is inactive on given pipe + * + * Returns: + * true if inactive and false otherwise + */ +bool intel_is_drrs_inactive(int device, enum pipe pipe) +{ + char buf[256]; + int dir; + + dir = igt_debugfs_pipe_dir(device, pipe, O_DIRECTORY); + igt_require_fd(dir); + igt_debugfs_simple_read(dir, "i915_drrs_status", buf, sizeof(buf)); + close(dir); + + return strstr(buf, "DRRS active: no"); +} diff --git a/lib/i915/intel_drrs.h b/lib/i915/intel_drrs.h new file mode 100644 index 000000000..d4d27a5f9 --- /dev/null +++ b/lib/i915/intel_drrs.h @@ -0,0 +1,17 @@ +/* SPDX-License-Identifier: MIT */ +/* + * Copyright © 2022 Intel Corporation + */ + +#ifndef INTEL_DRRS_H +#define INTEL_DRRS_H + +#include "igt.h" + +bool intel_is_drrs_supported(int device, enum pipe pipe); +bool intel_output_has_drrs(int device, igt_output_t *output); +void intel_drrs_enable(int device, enum pipe pipe); +void intel_drrs_disable(int device, enum pipe pipe); +bool intel_is_drrs_inactive(int device, enum pipe pipe); + +#endif diff --git a/lib/meson.build b/lib/meson.build index 748667c10..21ea9d5ac 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -12,6 +12,7 @@ lib_sources = [ 'i915/gem_mman.c', 'i915/gem_vm.c', 'i915/intel_decode.c', + 'i915/intel_drrs.c', 'i915/intel_fbc.c', 'i915/intel_memory_region.c', 'i915/i915_crc.c', -- 2.34.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* [igt-dev] [PATCH i-g-t v9 3/4] tests/i915/kms_frontbuffer_tracking: Utilize added fbc and drrs helpers 2023-08-24 10:40 [igt-dev] [PATCH i-g-t v9 0/4] Testcases for dirtyfb ioctl Jouni Högander 2023-08-24 10:40 ` [igt-dev] [PATCH i-g-t v9 1/4] lib/i915/fbc: Add fbc helpers Jouni Högander 2023-08-24 10:40 ` [igt-dev] [PATCH i-g-t v9 2/4] lib/i915/drrs: Add drrs helpers Jouni Högander @ 2023-08-24 10:40 ` Jouni Högander 2023-08-24 10:40 ` [igt-dev] [PATCH i-g-t v9 4/4] tests/kms_dirtyfb: Add new test for dirtyfb ioctl Jouni Högander ` (7 subsequent siblings) 10 siblings, 0 replies; 13+ messages in thread From: Jouni Högander @ 2023-08-24 10:40 UTC (permalink / raw) To: igt-dev; +Cc: Kunal Joshi We have now helper functions for fbc and drrs in igt library. Use these instead of own implementations. Signed-off-by: Jouni Högander <jouni.hogander@intel.com> Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com> --- tests/i915/kms_frontbuffer_tracking.c | 141 ++++---------------------- 1 file changed, 17 insertions(+), 124 deletions(-) diff --git a/tests/i915/kms_frontbuffer_tracking.c b/tests/i915/kms_frontbuffer_tracking.c index 136426204..40b3d4cb5 100644 --- a/tests/i915/kms_frontbuffer_tracking.c +++ b/tests/i915/kms_frontbuffer_tracking.c @@ -37,6 +37,8 @@ #include "i915/gem.h" #include "i915/gem_create.h" +#include "i915/intel_drrs.h" +#include "i915/intel_fbc.h" #include "igt.h" #include "igt_sysfs.h" #include "igt_psr.h" @@ -750,75 +752,10 @@ static void __debugfs_read_crtc(const char *param, char *buf, int len) close(dir); } -static int __debugfs_write_crtc(const char *param, const char *buf, int len) -{ - int dir, ret; - enum pipe pipe; - - pipe = prim_mode_params.pipe; - dir = igt_debugfs_pipe_dir(drm.fd, pipe, O_DIRECTORY); - igt_require_fd(dir); - ret = igt_sysfs_write(dir, param, buf, len - 1); - close(dir); - - return ret; -} - -static void __debugfs_read_connector(const char *param, char *buf, int len) -{ - int dir; - igt_output_t *output; - - output = prim_mode_params.output; - dir = igt_debugfs_connector_dir(drm.fd, output->name, O_DIRECTORY); - igt_require_fd(dir); - igt_debugfs_simple_read(dir, param, buf, len); - close(dir); -} - #define debugfs_read_crtc(p, arr) __debugfs_read_crtc(p, arr, sizeof(arr)) #define debugfs_write_crtc(p, arr) __debugfs_write_crtc(p, arr, sizeof(arr)) #define debugfs_read_connector(p, arr) __debugfs_read_connector(p, arr, sizeof(arr)) -static char last_fbc_buf[128]; - -static bool fbc_is_enabled(int lvl) -{ - char buf[128]; - bool print = true; - - debugfs_read_crtc("i915_fbc_status", buf); - if (lvl != IGT_LOG_DEBUG) - last_fbc_buf[0] = '\0'; - else if (strcmp(last_fbc_buf, buf)) - strcpy(last_fbc_buf, buf); - else - print = false; - - if (print) - igt_log(IGT_LOG_DOMAIN, lvl, "fbc_is_enabled()?\n%s", buf); - - return strstr(buf, "FBC enabled\n"); -} - -static void drrs_set(unsigned int val) -{ - char buf[2]; - int ret; - - igt_debug("Manually %sabling DRRS. %u\n", val ? "en" : "dis", val); - snprintf(buf, sizeof(buf), "%d", val); - ret = debugfs_write_crtc("i915_drrs_ctl", buf); - - /* - * drrs_enable() is called on DRRS capable platform only, - * whereas drrs_disable() is called on all platforms. - * So handle the failure of debugfs_write only for drrs_enable(). - */ - if (val) - igt_assert_f(ret == (sizeof(buf) - 1), "debugfs_write failed"); -} - static bool is_drrs_high(void) { char buf[MAX_DRRS_STATUS_BUF_LEN]; @@ -835,22 +772,6 @@ static bool is_drrs_low(void) return strstr(buf, "DRRS refresh rate: low"); } -static bool is_drrs_supported(void) -{ - char buf[MAX_DRRS_STATUS_BUF_LEN]; - - debugfs_read_crtc("i915_drrs_status", buf); - return strcasestr(buf, "DRRS enabled:"); -} - -static bool is_drrs_inactive(void) -{ - char buf[MAX_DRRS_STATUS_BUF_LEN]; - - debugfs_read_crtc("i915_drrs_status", buf); - return strstr(buf, "DRRS active: no"); -} - static void drrs_print_status(void) { char buf[MAX_DRRS_STATUS_BUF_LEN]; @@ -859,14 +780,6 @@ static void drrs_print_status(void) igt_info("DRRS STATUS :\n%s\n", buf); } -static bool output_has_drrs(void) -{ - char buf[MAX_DRRS_STATUS_BUF_LEN]; - - debugfs_read_connector("i915_drrs_type", buf); - return strstr(buf, "seamless"); -} - static struct timespec fbc_get_last_action(void) { struct timespec ret = { 0, 0 }; @@ -975,23 +888,11 @@ static bool fbc_mode_too_large(void) return strstr(buf, "FBC disabled: mode too large for compression\n"); } -static bool fbc_wait_until_enabled(void) -{ - last_fbc_buf[0] = '\0'; - - return igt_wait(fbc_is_enabled(IGT_LOG_DEBUG), 2000, 1); -} - static bool drrs_wait_until_rr_switch_to_low(void) { return igt_wait(is_drrs_low(), 5000, 1); } -#define fbc_enable() igt_set_module_param_int(drm.fd, "enable_fbc", 1) -#define fbc_disable() igt_set_module_param_int(drm.fd, "enable_fbc", 0) -#define drrs_enable() drrs_set(1) -#define drrs_disable() drrs_set(0) - static struct rect pat1_get_rect(struct fb_region *fb, int r) { struct rect rect; @@ -1193,8 +1094,9 @@ static bool disable_features(const struct test_mode *t) if (t->feature == FEATURE_DEFAULT) return false; - fbc_disable(); - drrs_disable(); + intel_fbc_disable(drm.fd); + intel_drrs_disable(drm.fd, prim_mode_params.pipe); + return psr.can_test ? psr_disable(drm.fd, drm.debugfs) : false; } @@ -1436,21 +1338,9 @@ static void teardown_crcs(void) igt_pipe_crc_free(pipe_crc); } -static bool fbc_supported_on_chipset(void) -{ - char buf[128]; - - debugfs_read_crtc("i915_fbc_status", buf); - if (*buf == '\0') - return false; - - return !strstr(buf, "FBC unsupported on this chipset\n") && - !strstr(buf, "stolen memory not initialised\n"); -} - static void setup_fbc(void) { - if (!fbc_supported_on_chipset()) { + if (!intel_fbc_supported_on_chipset(drm.fd, prim_mode_params.pipe)) { igt_info("Can't test FBC: not supported on this chipset\n"); return; } @@ -1485,12 +1375,12 @@ static void teardown_psr(void) static void setup_drrs(void) { - if (!output_has_drrs()) { + if (!intel_output_has_drrs(drm.fd, prim_mode_params.output)) { igt_info("Can't test DRRS: no usable screen.\n"); return; } - if (!is_drrs_supported()) { + if (!intel_is_drrs_supported(drm.fd, prim_mode_params.pipe)) { igt_info("Can't test DRRS: Not supported.\n"); return; } @@ -1648,7 +1538,7 @@ static void do_status_assertions(int flags) igt_assert_f(false, "DRRS LOW\n"); } } else if (flags & ASSERT_DRRS_INACTIVE) { - if (!is_drrs_inactive()) { + if (!intel_is_drrs_inactive(drm.fd, prim_mode_params.pipe)) { drrs_print_status(); igt_assert_f(false, "DRRS INACTIVE\n"); } @@ -1658,15 +1548,18 @@ static void do_status_assertions(int flags) igt_require(!fbc_not_enough_stolen()); igt_require(!fbc_stride_not_supported()); igt_require(!fbc_mode_too_large()); - if (!fbc_wait_until_enabled()) { - igt_assert_f(fbc_is_enabled(IGT_LOG_WARN), + if (!intel_fbc_wait_until_enabled(drm.fd, prim_mode_params.pipe)) { + igt_assert_f(intel_fbc_is_enabled(drm.fd, + prim_mode_params.pipe, + IGT_LOG_WARN), "FBC disabled\n"); } if (opt.fbc_check_compression) igt_assert(fbc_wait_for_compression()); } else if (flags & ASSERT_FBC_DISABLED) { - igt_assert(!fbc_wait_until_enabled()); + igt_assert(!intel_fbc_wait_until_enabled(drm.fd, + prim_mode_params.pipe)); } if (flags & ASSERT_PSR_ENABLED) @@ -1806,11 +1699,11 @@ static bool enable_features_for_test(const struct test_mode *t) return false; if (t->feature & FEATURE_FBC) - fbc_enable(); + intel_fbc_enable(drm.fd); if (t->feature & FEATURE_PSR) ret = psr_enable(drm.fd, drm.debugfs, PSR_MODE_1); if (t->feature & FEATURE_DRRS) - drrs_enable(); + intel_drrs_enable(drm.fd, prim_mode_params.pipe); return ret; } -- 2.34.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* [igt-dev] [PATCH i-g-t v9 4/4] tests/kms_dirtyfb: Add new test for dirtyfb ioctl 2023-08-24 10:40 [igt-dev] [PATCH i-g-t v9 0/4] Testcases for dirtyfb ioctl Jouni Högander ` (2 preceding siblings ...) 2023-08-24 10:40 ` [igt-dev] [PATCH i-g-t v9 3/4] tests/i915/kms_frontbuffer_tracking: Utilize added fbc and " Jouni Högander @ 2023-08-24 10:40 ` Jouni Högander 2023-08-24 11:49 ` [igt-dev] ✗ GitLab.Pipeline: warning for Testcases " Patchwork ` (6 subsequent siblings) 10 siblings, 0 replies; 13+ messages in thread From: Jouni Högander @ 2023-08-24 10:40 UTC (permalink / raw) To: igt-dev; +Cc: Kunal Joshi Add new test to validate dirtyfb ioctl is working properly with GPU frontbuffer rendering. Create big framebuffer and use only lower right corner for the plane. Initiate GPU drawing for a rectangle over the whole framebuffer and perform dirtyfb ioctl. Then wait for the drawing to complete and collect crc and check that it matches with expected. v7: - Add new style documentation v6: - Perform igt_display_reset in prepare v5: - Modifiations to support Xe as well v4: - Check connector type when PSR is tested v3: - Use spinner - Drop allocating big frambuffers v2: - Change license comment - Move disable_features and do not apply for FEATURE_DEFAULT Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com> Signed-off-by: Jouni Högander <jouni.hogander@intel.com> Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com> --- tests/i915/kms_dirtyfb.c | 318 +++++++++++++++++++++++++++++++++++++++ tests/meson.build | 1 + 2 files changed, 319 insertions(+) create mode 100644 tests/i915/kms_dirtyfb.c diff --git a/tests/i915/kms_dirtyfb.c b/tests/i915/kms_dirtyfb.c new file mode 100644 index 000000000..cc9529178 --- /dev/null +++ b/tests/i915/kms_dirtyfb.c @@ -0,0 +1,318 @@ +/* SPDX-License-Identifier: MIT */ +/* + * Copyright © 2023 Intel Corporation + */ + +#include <sys/types.h> + +#include "igt.h" +#include "igt_psr.h" + +#include "i915/intel_drrs.h" +#include "i915/intel_fbc.h" + +#include "xe/xe_query.h" + +IGT_TEST_DESCRIPTION("Test the DIRTYFB ioctl is working properly with " + "its related features: FBC, PSR and DRRS"); + +/** + * TEST: kms dirtyfb + * Category: Display + * Description: Test DIRTYFB ioctl functionality. + * + * SUBTEST: dirtyfb-ioctl + * Description: Test DIRTYFB ioctl is working properly using GPU + * frontbuffer rendering with features like FBC, PSR + * and DRRS. + * Driver requirement: i915, xe + * Functionality: dirtyfb, fbc, psr, drrs + * Mega feature: General Display Features + * Test category: functionality test + */ + +#ifndef PAGE_ALIGN +#ifndef PAGE_SIZE +#define PAGE_SIZE 4096 +#endif +#define PAGE_ALIGN(x) ALIGN(x, PAGE_SIZE) +#endif + +typedef struct { + int drm_fd; + int debugfs_fd; + igt_display_t display; + drmModeModeInfo *mode; + igt_output_t *output; + igt_pipe_crc_t *pipe_crc; + enum pipe pipe; + + struct igt_fb fbs[3]; + + igt_crc_t ref_crc; + + struct buf_ops *bops; + enum { + FEATURE_NONE = 0, + FEATURE_PSR = 1, + FEATURE_FBC = 2, + FEATURE_DRRS = 4, + FEATURE_COUNT = 8, + FEATURE_DEFAULT = 8, + } feature; +} data_t; + +static const char *feature_str(int feature) +{ + switch (feature) { + case FEATURE_NONE: + return "nop"; + case FEATURE_FBC: + return "fbc"; + case FEATURE_PSR: + return "psr"; + case FEATURE_DRRS: + return "drrs"; + case FEATURE_DEFAULT: + return "default"; + default: + igt_assert(false); + } +} + +static bool check_support(data_t *data) +{ + switch (data->feature) { + case FEATURE_NONE: + return true; + case FEATURE_FBC: + return intel_fbc_supported_on_chipset(data->drm_fd, data->pipe); + case FEATURE_PSR: + if (data->output->config.connector->connector_type != + DRM_MODE_CONNECTOR_eDP) + return false; + return psr_sink_support(data->drm_fd, data->debugfs_fd, + PSR_MODE_1); + case FEATURE_DRRS: + return intel_is_drrs_supported(data->drm_fd, data->pipe) && + intel_output_has_drrs(data->drm_fd, data->output); + case FEATURE_DEFAULT: + return true; + default: + igt_assert(false); + } +} + +static void enable_feature(data_t *data) +{ + switch (data->feature) { + case FEATURE_NONE: + break; + case FEATURE_FBC: + intel_fbc_enable(data->drm_fd); + break; + case FEATURE_PSR: + psr_enable(data->drm_fd, data->debugfs_fd, PSR_MODE_1); + break; + case FEATURE_DRRS: + intel_drrs_enable(data->drm_fd, data->pipe); + break; + case FEATURE_DEFAULT: + break; + default: + igt_assert(false); + } +} + +static void check_feature(data_t *data) +{ + switch (data->feature) { + case FEATURE_NONE: + break; + case FEATURE_FBC: + igt_assert_f(intel_fbc_wait_until_enabled(data->drm_fd, + data->pipe), + "FBC still disabled"); + break; + case FEATURE_PSR: + igt_assert_f(psr_wait_entry(data->debugfs_fd, PSR_MODE_1), + "PSR still disabled\n"); + break; + case FEATURE_DRRS: + igt_assert_f(intel_is_drrs_inactive(data->drm_fd, data->pipe), + "DRRS INACTIVE\n"); + break; + case FEATURE_DEFAULT: + break; + default: + igt_assert(false); + } +} + +static void disable_features(data_t *data) +{ + intel_fbc_disable(data->drm_fd); + psr_disable(data->drm_fd, data->debugfs_fd); + intel_drrs_disable(data->drm_fd, data->pipe); +} + +static void prepare(data_t *data) +{ + igt_plane_t *primary; + + igt_skip_on(!check_support(data)); + + igt_display_reset(&data->display); + + data->mode = igt_output_get_mode(data->output); + + igt_output_set_pipe(data->output, data->pipe); + + data->pipe_crc = igt_pipe_crc_new(data->drm_fd, data->pipe, + IGT_PIPE_CRC_SOURCE_AUTO); + + igt_create_color_fb(data->drm_fd, data->mode->hdisplay, + data->mode->vdisplay, DRM_FORMAT_XRGB8888, + DRM_FORMAT_MOD_LINEAR, 0.0, 1.0, 0.0, + &data->fbs[0]); + + igt_draw_rect_fb(data->drm_fd, data->bops, 0, &data->fbs[0], + IGT_DRAW_RENDER, 0, 0, data->fbs[0].width, + data->fbs[0].height, 0xFF); + + primary = igt_output_get_plane_type(data->output, + DRM_PLANE_TYPE_PRIMARY); + + igt_plane_set_fb(primary, &data->fbs[0]); + + if (data->feature != FEATURE_DEFAULT) + disable_features(data); + + igt_display_commit2(&data->display, COMMIT_ATOMIC); + + igt_pipe_crc_collect_crc(data->pipe_crc, &data->ref_crc); + + igt_create_color_fb(data->drm_fd, data->mode->hdisplay, + data->mode->vdisplay, DRM_FORMAT_XRGB8888, + DRM_FORMAT_MOD_LINEAR, 0.0, 1.0, 0.0, + &data->fbs[1]); + igt_draw_rect_fb(data->drm_fd, data->bops, 0, &data->fbs[1], + IGT_DRAW_RENDER, 0, 0, data->fbs[1].width, + data->fbs[1].height, 0xFF); + + igt_create_color_fb(data->drm_fd, data->mode->hdisplay, + data->mode->vdisplay, DRM_FORMAT_XRGB8888, + DRM_FORMAT_MOD_LINEAR, 0.0, 1.0, 0.0, + &data->fbs[2]); + + igt_plane_set_fb(primary, &data->fbs[2]); + + enable_feature(data); + + igt_display_commit2(&data->display, COMMIT_ATOMIC); + + check_feature(data); +} + +static void cleanup(data_t *data) +{ + igt_remove_fb(data->drm_fd, &data->fbs[0]); + igt_remove_fb(data->drm_fd, &data->fbs[1]); + igt_remove_fb(data->drm_fd, &data->fbs[2]); + + igt_pipe_crc_free(data->pipe_crc); + + igt_output_set_pipe(data->output, PIPE_NONE); + + igt_display_commit2(&data->display, COMMIT_ATOMIC); +} + +static void run_test(data_t *data) +{ + igt_crc_t crc; + struct intel_buf *src, *dst; + struct intel_bb *ibb; + igt_spin_t *spin; + uint32_t devid = intel_get_drm_devid(data->drm_fd); + igt_render_copyfunc_t rendercopy = igt_get_render_copyfunc(devid); + int r; + + igt_skip_on(!rendercopy); + + src = intel_buf_create_full(data->bops, data->fbs[1].gem_handle, + data->fbs[1].width, + data->fbs[1].height, + igt_drm_format_to_bpp(data->fbs[1].drm_format), + 0, + igt_fb_mod_to_tiling(data->fbs[1].modifier), + 0, 0, 0, is_xe_device(data->drm_fd) ? + system_memory(data->drm_fd) : 0); + dst = intel_buf_create_full(data->bops, data->fbs[2].gem_handle, + data->fbs[2].width, + data->fbs[2].height, + igt_drm_format_to_bpp(data->fbs[2].drm_format), + 0, igt_fb_mod_to_tiling(data->fbs[2].modifier), + 0, 0, 0, is_xe_device(data->drm_fd) ? + system_memory(data->drm_fd) : 0); + ibb = intel_bb_create(data->drm_fd, PAGE_SIZE); + + spin = igt_spin_new(data->drm_fd, .ahnd = ibb->allocator_handle); + igt_spin_set_timeout(spin, NSEC_PER_SEC); + + rendercopy(ibb, src, 0, 0, data->fbs[2].width, data->fbs[2].height, dst, 0, 0); + + /* Perfom dirtyfb right after initiating rendercopy */ + r = drmModeDirtyFB(data->drm_fd, data->fbs[2].fb_id, NULL, 0); + igt_assert(r == 0 || r == -ENOSYS); + + /* Ensure rendercopy is complete */ + intel_bb_sync(ibb); + + igt_pipe_crc_collect_crc(data->pipe_crc, &crc); + igt_assert_crc_equal(&crc, &data->ref_crc); + + igt_spin_free(data->drm_fd, spin); + intel_bb_destroy(ibb); + intel_buf_destroy(src); + intel_buf_destroy(dst); +} + +igt_main +{ + data_t data = {}; + + igt_fixture { + data.drm_fd = drm_open_driver_master(DRIVER_INTEL | DRIVER_XE); + data.debugfs_fd = igt_debugfs_dir(data.drm_fd); + kmstest_set_vt_graphics_mode(); + + igt_display_require(&data.display, data.drm_fd); + + data.bops = buf_ops_create(data.drm_fd); + + igt_display_reset(&data.display); + } + + igt_describe("Test dirtyFB ioctl"); + igt_subtest_with_dynamic("dirtyfb-ioctl") { + data.pipe = PIPE_A; + for_each_valid_output_on_pipe(&data.display, data.pipe, + data.output) { + for (data.feature = FEATURE_DEFAULT; data.feature > 0; + data.feature = data.feature >> 1) { + igt_dynamic_f("%s-%s", feature_str(data.feature), + igt_output_name(data.output)) { + prepare(&data); + run_test(&data); + cleanup(&data); + } + } + } + } + + igt_fixture { + buf_ops_destroy(data.bops); + igt_display_fini(&data.display); + close(data.drm_fd); + } +} diff --git a/tests/meson.build b/tests/meson.build index 4d325bed1..c683e468d 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -240,6 +240,7 @@ i915_progs = [ 'kms_busy', 'kms_ccs', 'kms_cdclk', + 'kms_dirtyfb', 'kms_draw_crc', 'kms_dsc', 'kms_fb_coherency', -- 2.34.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* [igt-dev] ✗ GitLab.Pipeline: warning for Testcases for dirtyfb ioctl 2023-08-24 10:40 [igt-dev] [PATCH i-g-t v9 0/4] Testcases for dirtyfb ioctl Jouni Högander ` (3 preceding siblings ...) 2023-08-24 10:40 ` [igt-dev] [PATCH i-g-t v9 4/4] tests/kms_dirtyfb: Add new test for dirtyfb ioctl Jouni Högander @ 2023-08-24 11:49 ` Patchwork 2023-08-24 12:25 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork ` (5 subsequent siblings) 10 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2023-08-24 11:49 UTC (permalink / raw) To: Hogander, Jouni; +Cc: igt-dev == Series Details == Series: Testcases for dirtyfb ioctl URL : https://patchwork.freedesktop.org/series/122833/ State : warning == Summary == Pipeline status: FAILED. see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/969526 for the overview. build-containers:build-debian has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/47978416): time="2023-08-24T11:44:53Z" level=fatal msg="Invalid status code returned when fetching blob 500 (Internal Server Error)" Building! STEP 1: FROM debian:buster Getting image source signatures Copying blob sha256:d6b7393fb4f375905c31c483d81ce2a2905f88aba8cb198874da2b54035bc41d Copying config sha256:de08540e8ff0e470ff7956df4bed403725a5f45c186e9bf495da5344ff8fbe84 Writing manifest to image destination Storing signatures STEP 2: RUN apt-get update error running container: error creating container for [/bin/sh -c apt-get update]: time="2023-08-24T11:44:58Z" level=warning msg="signal: killed" time="2023-08-24T11:44:58Z" level=error msg="container_linux.go:346: starting container process caused \"process_linux.go:297: applying cgroup configuration for process caused \\\"mountpoint for cgroup not found\\\"\"\n" container_linux.go:346: starting container process caused "process_linux.go:297: applying cgroup configuration for process caused \"mountpoint for cgroup not found\"" : exit status 1 Error: error building at STEP "RUN apt-get update": error while running runtime: exit status 1 section_end:1692877499:step_script section_start:1692877499:cleanup_file_variables Cleaning up project directory and file based variables section_end:1692877500:cleanup_file_variables ERROR: Job failed: exit code 1 build-containers:build-debian-arm64 has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/47978418): time="2023-08-24T11:44:53Z" level=fatal msg="Invalid status code returned when fetching blob 500 (Internal Server Error)" Building! STEP 1: FROM debian:buster Getting image source signatures Copying blob sha256:d6b7393fb4f375905c31c483d81ce2a2905f88aba8cb198874da2b54035bc41d Copying config sha256:de08540e8ff0e470ff7956df4bed403725a5f45c186e9bf495da5344ff8fbe84 Writing manifest to image destination Storing signatures STEP 2: RUN apt-get update error running container: error creating container for [/bin/sh -c apt-get update]: time="2023-08-24T11:44:59Z" level=warning msg="signal: killed" time="2023-08-24T11:44:59Z" level=error msg="container_linux.go:346: starting container process caused \"process_linux.go:297: applying cgroup configuration for process caused \\\"mountpoint for cgroup not found\\\"\"\n" container_linux.go:346: starting container process caused "process_linux.go:297: applying cgroup configuration for process caused \"mountpoint for cgroup not found\"" : exit status 1 Error: error building at STEP "RUN apt-get update": error while running runtime: exit status 1 section_end:1692877499:step_script section_start:1692877499:cleanup_file_variables Cleaning up project directory and file based variables section_end:1692877500:cleanup_file_variables ERROR: Job failed: exit code 1 build-containers:build-debian-armhf has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/47978417): time="2023-08-24T11:44:52Z" level=fatal msg="Invalid status code returned when fetching blob 500 (Internal Server Error)" Building! STEP 1: FROM debian:buster Getting image source signatures Copying blob sha256:d6b7393fb4f375905c31c483d81ce2a2905f88aba8cb198874da2b54035bc41d Copying config sha256:de08540e8ff0e470ff7956df4bed403725a5f45c186e9bf495da5344ff8fbe84 Writing manifest to image destination Storing signatures STEP 2: RUN apt-get update error running container: error creating container for [/bin/sh -c apt-get update]: time="2023-08-24T11:44:57Z" level=warning msg="signal: killed" time="2023-08-24T11:44:57Z" level=error msg="container_linux.go:346: starting container process caused \"process_linux.go:297: applying cgroup configuration for process caused \\\"mountpoint for cgroup not found\\\"\"\n" container_linux.go:346: starting container process caused "process_linux.go:297: applying cgroup configuration for process caused \"mountpoint for cgroup not found\"" : exit status 1 Error: error building at STEP "RUN apt-get update": error while running runtime: exit status 1 section_end:1692877498:step_script section_start:1692877498:cleanup_file_variables Cleaning up project directory and file based variables section_end:1692877498:cleanup_file_variables ERROR: Job failed: exit code 1 build-containers:build-debian-mips has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/47978419): time="2023-08-24T11:44:53Z" level=fatal msg="Invalid status code returned when fetching blob 500 (Internal Server Error)" Building! STEP 1: FROM debian:buster Getting image source signatures Copying blob sha256:d6b7393fb4f375905c31c483d81ce2a2905f88aba8cb198874da2b54035bc41d Copying config sha256:de08540e8ff0e470ff7956df4bed403725a5f45c186e9bf495da5344ff8fbe84 Writing manifest to image destination Storing signatures STEP 2: RUN apt-get update error running container: error creating container for [/bin/sh -c apt-get update]: time="2023-08-24T11:44:58Z" level=warning msg="signal: killed" time="2023-08-24T11:44:58Z" level=error msg="container_linux.go:346: starting container process caused \"process_linux.go:297: applying cgroup configuration for process caused \\\"mountpoint for cgroup not found\\\"\"\n" container_linux.go:346: starting container process caused "process_linux.go:297: applying cgroup configuration for process caused \"mountpoint for cgroup not found\"" : exit status 1 Error: error building at STEP "RUN apt-get update": error while running runtime: exit status 1 section_end:1692877499:step_script section_start:1692877499:cleanup_file_variables Cleaning up project directory and file based variables section_end:1692877499:cleanup_file_variables ERROR: Job failed: exit code 1 build-containers:build-fedora has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/47978420): time="2023-08-24T11:44:54Z" level=fatal msg="Invalid status code returned when fetching blob 500 (Internal Server Error)" Building! STEP 1: FROM fedora:31 Getting image source signatures Copying blob sha256:854946d575a439a894349addd141568875d7c1e673d3286b08250f3dde002e6a Copying config sha256:7e94ed77b448a8d2ff08b92d3ca743e4e862c744892d6886c73487581eb5863a Writing manifest to image destination Storing signatures STEP 2: RUN dnf install -y gcc flex bison libatomic meson ninja-build xdotool 'pkgconfig(libdrm)' 'pkgconfig(pciaccess)' 'pkgconfig(libkmod)' 'pkgconfig(libprocps)' 'pkgconfig(libunwind)' 'pkgconfig(libdw)' 'pkgconfig(pixman-1)' 'pkgconfig(valgrind)' 'pkgconfig(cairo)' 'pkgconfig(libudev)' 'pkgconfig(glib-2.0)' 'pkgconfig(gsl)' 'pkgconfig(alsa)' 'pkgconfig(xmlrpc)' 'pkgconfig(xmlrpc_util)' 'pkgconfig(xmlrpc_client)' 'pkgconfig(json-c)' 'pkgconfig(gtk-doc)' 'pkgconfig(xv)' 'pkgconfig(xrandr)' python3-docutils error running container: error creating container for [/bin/sh -c dnf install -y gcc flex bison libatomic meson ninja-build xdotool 'pkgconfig(libdrm)' 'pkgconfig(pciaccess)' 'pkgconfig(libkmod)' 'pkgconfig(libprocps)' 'pkgconfig(libunwind)' 'pkgconfig(libdw)' 'pkgconfig(pixman-1)' 'pkgconfig(valgrind)' 'pkgconfig(cairo)' 'pkgconfig(libudev)' 'pkgconfig(glib-2.0)' 'pkgconfig(gsl)' 'pkgconfig(alsa)' 'pkgconfig(xmlrpc)' 'pkgconfig(xmlrpc_util)' 'pkgconfig(xmlrpc_client)' 'pkgconfig(json-c)' 'pkgconfig(gtk-doc)' 'pkgconfig(xv)' 'pkgconfig(xrandr)' python3-docutils]: time="2023-08-24T11:44:59Z" level=warning msg="signal: killed" time="2023-08-24T11:44:59Z" level=error msg="container_linux.go:346: starting container process caused \"process_linux.go:297: applying cgroup configuration for process caused \\\"mountpoint for cgroup not found\\\"\"\n" container_linux.go:346: starting container process caused "process_linux.go:297: applying cgroup configuration for process caused \"mountpoint for cgroup not found\"" : exit status 1 Error: error building at STEP "RUN dnf install -y gcc flex bison libatomic meson ninja-build xdotool 'pkgconfig(libdrm)' 'pkgconfig(pciaccess)' 'pkgconfig(libkmod)' 'pkgconfig(libprocps)' 'pkgconfig(libunwind)' 'pkgconfig(libdw)' 'pkgconfig(pixman-1)' 'pkgconfig(valgrind)' 'pkgconfig(cairo)' 'pkgconfig(libudev)' 'pkgconfig(glib-2.0)' 'pkgconfig(gsl)' 'pkgconfig(alsa)' 'pkgconfig(xmlrpc)' 'pkgconfig(xmlrpc_util)' 'pkgconfig(xmlrpc_client)' 'pkgconfig(json-c)' 'pkgconfig(gtk-doc)' 'pkgconfig(xv)' 'pkgconfig(xrandr)' python3-docutils": error while running runtime: exit status 1 section_end:1692877500:step_script section_start:1692877500:cleanup_file_variables Cleaning up project directory and file based variables section_end:1692877501:cleanup_file_variables ERROR: Job failed: exit code 1 == Logs == For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/969526 ^ permalink raw reply [flat|nested] 13+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Testcases for dirtyfb ioctl 2023-08-24 10:40 [igt-dev] [PATCH i-g-t v9 0/4] Testcases for dirtyfb ioctl Jouni Högander ` (4 preceding siblings ...) 2023-08-24 11:49 ` [igt-dev] ✗ GitLab.Pipeline: warning for Testcases " Patchwork @ 2023-08-24 12:25 ` Patchwork 2023-08-24 21:28 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork ` (4 subsequent siblings) 10 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2023-08-24 12:25 UTC (permalink / raw) To: Hogander, Jouni; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 6188 bytes --] == Series Details == Series: Testcases for dirtyfb ioctl URL : https://patchwork.freedesktop.org/series/122833/ State : success == Summary == CI Bug Log - changes from CI_DRM_13560 -> IGTPW_9647 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/index.html Participating hosts (40 -> 40) ------------------------------ Additional (1): fi-kbl-soraka Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_9647 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@dmabuf@all-tests@dma_fence: - bat-dg2-11: [PASS][1] -> [DMESG-FAIL][2] ([i915#8189]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/bat-dg2-11/igt@dmabuf@all-tests@dma_fence.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/bat-dg2-11/igt@dmabuf@all-tests@dma_fence.html * igt@dmabuf@all-tests@sanitycheck: - bat-dg2-11: [PASS][3] -> [ABORT][4] ([i915#7699]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/bat-dg2-11/igt@dmabuf@all-tests@sanitycheck.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/bat-dg2-11/igt@dmabuf@all-tests@sanitycheck.html * igt@gem_huc_copy@huc-copy: - fi-kbl-soraka: NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#2190]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-kbl-soraka: NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#4613]) +3 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html * igt@i915_selftest@live@gt_heartbeat: - fi-apl-guc: [PASS][7] -> [DMESG-FAIL][8] ([i915#5334]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@gt_pm: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][9] ([i915#1886] / [i915#7913]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - fi-kbl-soraka: NOTRUN -> [SKIP][10] ([fdo#109271]) +8 similar issues [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/fi-kbl-soraka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_psr@primary_page_flip: - bat-rplp-1: NOTRUN -> [SKIP][11] ([i915#1072]) +1 similar issue [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/bat-rplp-1/igt@kms_psr@primary_page_flip.html * igt@kms_psr@sprite_plane_onoff: - bat-rplp-1: NOTRUN -> [ABORT][12] ([i915#8442] / [i915#8668] / [i915#8712]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/bat-rplp-1/igt@kms_psr@sprite_plane_onoff.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s0@lmem0: - bat-dg2-9: [INCOMPLETE][13] ([i915#6311]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/bat-dg2-9/igt@gem_exec_suspend@basic-s0@lmem0.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/bat-dg2-9/igt@gem_exec_suspend@basic-s0@lmem0.html * igt@i915_selftest@live@mman: - bat-rpls-2: [TIMEOUT][15] ([i915#6794] / [i915#7392]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/bat-rpls-2/igt@i915_selftest@live@mman.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/bat-rpls-2/igt@i915_selftest@live@mman.html * igt@i915_suspend@basic-s2idle-without-i915: - bat-rpls-2: [WARN][17] ([i915#8747]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/bat-rpls-2/igt@i915_suspend@basic-s2idle-without-i915.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/bat-rpls-2/igt@i915_suspend@basic-s2idle-without-i915.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1: - bat-rplp-1: [ABORT][19] ([i915#8442] / [i915#8668]) -> [PASS][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#6311]: https://gitlab.freedesktop.org/drm/intel/issues/6311 [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#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#8189]: https://gitlab.freedesktop.org/drm/intel/issues/8189 [i915#8442]: https://gitlab.freedesktop.org/drm/intel/issues/8442 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8712]: https://gitlab.freedesktop.org/drm/intel/issues/8712 [i915#8747]: https://gitlab.freedesktop.org/drm/intel/issues/8747 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7451 -> IGTPW_9647 CI-20190529: 20190529 CI_DRM_13560: a97a1944cae417ddc185aa52f27aa1f90000ddad @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9647: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/index.html IGT_7451: 5d48d1fb231f449fe2f80cda14ea7a1ecfda59fa @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@kms_dirtyfb@dirtyfb-ioctl == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/index.html [-- Attachment #2: Type: text/html, Size: 7359 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for Testcases for dirtyfb ioctl 2023-08-24 10:40 [igt-dev] [PATCH i-g-t v9 0/4] Testcases for dirtyfb ioctl Jouni Högander ` (5 preceding siblings ...) 2023-08-24 12:25 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork @ 2023-08-24 21:28 ` Patchwork 2023-08-25 8:18 ` [igt-dev] ✗ GitLab.Pipeline: warning for Testcases for dirtyfb ioctl (rev2) Patchwork ` (3 subsequent siblings) 10 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2023-08-24 21:28 UTC (permalink / raw) To: Hogander, Jouni; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 87801 bytes --] == Series Details == Series: Testcases for dirtyfb ioctl URL : https://patchwork.freedesktop.org/series/122833/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13560_full -> IGTPW_9647_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9647_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9647_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_9647/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_9647_full: ### IGT changes ### #### Possible regressions #### * {igt@kms_dirtyfb@dirtyfb-ioctl@drrs-edp-1} (NEW): - shard-mtlp: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-7/igt@kms_dirtyfb@dirtyfb-ioctl@drrs-edp-1.html * {igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-3} (NEW): - shard-dg2: NOTRUN -> [SKIP][2] +2 similar issues [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-8/igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-3.html * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1 (NEW): - shard-rkl: NOTRUN -> [SKIP][3] +2 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-7/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1.html - shard-tglu: NOTRUN -> [SKIP][4] +2 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-tglu-9/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1.html * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4 (NEW): - shard-dg1: NOTRUN -> [SKIP][5] +2 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg1-16/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4.html * igt@kms_draw_crc@draw-method-blt@xrgb8888-ytiled: - shard-glk: [PASS][6] -> [DMESG-WARN][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-glk5/igt@kms_draw_crc@draw-method-blt@xrgb8888-ytiled.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-glk7/igt@kms_draw_crc@draw-method-blt@xrgb8888-ytiled.html * igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3: - shard-dg2: [PASS][8] -> [INCOMPLETE][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-dg2-5/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-5/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3.html New tests --------- New tests have been introduced between CI_DRM_13560_full and IGTPW_9647_full: ### New IGT tests (25) ### * igt@kms_dirtyfb@dirtyfb-ioctl: - Statuses : - Exec time: [None] s * igt@kms_dirtyfb@dirtyfb-ioctl@default-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@default-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@default-hdmi-a-1: - Statuses : 4 pass(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@default-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@default-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@default-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-dp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-edp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-1: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-dp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-1: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@psr-dp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@psr-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4: - Statuses : 1 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9647_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#8411]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-1/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][11] ([i915#6230]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-2/igt@api_intel_bb@crc32.html * igt@device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][12] ([i915#7701]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-2/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@busy@vcs1: - shard-dg1: NOTRUN -> [SKIP][13] ([i915#8414]) +4 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg1-17/igt@drm_fdinfo@busy@vcs1.html * igt@drm_fdinfo@most-busy-check-all@bcs0: - shard-dg2: NOTRUN -> [SKIP][14] ([i915#8414]) +20 similar issues [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-1/igt@drm_fdinfo@most-busy-check-all@bcs0.html * igt@feature_discovery@display-4x: - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#1839]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-8/igt@feature_discovery@display-4x.html * igt@gem_bad_reloc@negative-reloc: - shard-rkl: NOTRUN -> [SKIP][16] ([i915#3281]) +1 similar issue [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-6/igt@gem_bad_reloc@negative-reloc.html * igt@gem_caching@writes: - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#4873]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-6/igt@gem_caching@writes.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglu: [PASS][18] -> [FAIL][19] ([i915#6268]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-tglu-10/igt@gem_ctx_exec@basic-nohangcheck.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-tglu-10/igt@gem_ctx_exec@basic-nohangcheck.html - shard-mtlp: [PASS][20] -> [FAIL][21] ([i915#6121]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-mtlp-5/igt@gem_ctx_exec@basic-nohangcheck.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-3/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@engines-cleanup: - shard-snb: NOTRUN -> [SKIP][22] ([fdo#109271] / [i915#1099]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-snb5/igt@gem_ctx_persistence@engines-cleanup.html * igt@gem_ctx_persistence@hang: - shard-mtlp: NOTRUN -> [SKIP][23] ([i915#8555]) +1 similar issue [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-3/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#8555]) +1 similar issue [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_sseu@invalid-args: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#280]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-11/igt@gem_ctx_sseu@invalid-args.html * igt@gem_exec_capture@capture-recoverable: - shard-rkl: NOTRUN -> [SKIP][26] ([i915#6344]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-2/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_capture@pi@ccs0: - shard-mtlp: [PASS][27] -> [FAIL][28] ([i915#7765]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-mtlp-6/igt@gem_exec_capture@pi@ccs0.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-2/igt@gem_exec_capture@pi@ccs0.html * igt@gem_exec_capture@pi@rcs0: - shard-mtlp: [PASS][29] -> [FAIL][30] ([i915#4475]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-mtlp-6/igt@gem_exec_capture@pi@rcs0.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-2/igt@gem_exec_capture@pi@rcs0.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-glk: [PASS][31] -> [FAIL][32] ([i915#2842]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-glk5/igt@gem_exec_fair@basic-none-share@rcs0.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-glk4/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-pace: - shard-mtlp: NOTRUN -> [SKIP][33] ([i915#4473] / [i915#4771]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-7/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-rkl: [PASS][34] -> [FAIL][35] ([i915#2842]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-rkl-2/igt@gem_exec_fair@basic-pace@rcs0.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-7/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_fair@basic-sync: - shard-dg1: NOTRUN -> [SKIP][36] ([i915#3539]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg1-17/igt@gem_exec_fair@basic-sync.html * igt@gem_exec_fence@concurrent: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#4812]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-2/igt@gem_exec_fence@concurrent.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#3539]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-12/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_flush@basic-wb-rw-before-default: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#3539] / [i915#4852]) +3 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-1/igt@gem_exec_flush@basic-wb-rw-before-default.html * igt@gem_exec_gttfill@multigpu-basic: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#7697]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-3/igt@gem_exec_gttfill@multigpu-basic.html * igt@gem_exec_params@secure-non-master: - shard-dg2: NOTRUN -> [SKIP][41] ([fdo#112283]) +1 similar issue [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-11/igt@gem_exec_params@secure-non-master.html * igt@gem_exec_reloc@basic-wc-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#3281]) +5 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-5/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#4537] / [i915#4812]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-6/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_schedule@reorder-wide: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4812]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-2/igt@gem_exec_schedule@reorder-wide.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#4860]) +1 similar issue [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-11/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_lmem_swapping@heavy-multi: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4613]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-2/igt@gem_lmem_swapping@heavy-multi.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-rkl: NOTRUN -> [SKIP][47] ([i915#4613]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-7/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_mmap@big-bo: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4083]) +1 similar issue [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-12/igt@gem_mmap@big-bo.html * igt@gem_mmap_gtt@basic-copy: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#4077]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg1-13/igt@gem_mmap_gtt@basic-copy.html * igt@gem_mmap_gtt@basic-write-read: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4077]) +3 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-3/igt@gem_mmap_gtt@basic-write-read.html * igt@gem_mmap_wc@write-cpu-read-wc: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4083]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-1/igt@gem_mmap_wc@write-cpu-read-wc.html * igt@gem_pread@bench: - shard-rkl: NOTRUN -> [SKIP][52] ([i915#3282]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-4/igt@gem_pread@bench.html * igt@gem_pread@display: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#3282]) +4 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-1/igt@gem_pread@display.html * igt@gem_pread@snoop: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#3282]) +1 similar issue [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg1-17/igt@gem_pread@snoop.html * igt@gem_pwrite@basic-exhaustion: - shard-snb: NOTRUN -> [WARN][55] ([i915#2658]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-snb7/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4270]) +2 similar issues [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-6/igt@gem_pxp@regular-baseline-src-copy-readible.html - shard-rkl: NOTRUN -> [SKIP][57] ([i915#4270]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-2/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#4270]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg1-15/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4270]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-5/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_readwrite@write-bad-handle: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#3282]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-5/igt@gem_readwrite@write-bad-handle.html * igt@gem_render_copy@y-tiled-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#8428]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-6/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#4079]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-8/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#4077]) +12 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-11/igt@gem_tiled_blits@basic.html * igt@gem_userptr_blits@dmabuf-sync: - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#3297]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-7/igt@gem_userptr_blits@dmabuf-sync.html - shard-apl: NOTRUN -> [SKIP][65] ([fdo#109271] / [i915#3323]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-apl1/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@relocations: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#3281]) +7 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-6/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@unsync-overlap: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#3297]) +2 similar issues [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-12/igt@gem_userptr_blits@unsync-overlap.html - shard-rkl: NOTRUN -> [SKIP][68] ([i915#3297]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-2/igt@gem_userptr_blits@unsync-overlap.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-dg1: NOTRUN -> [SKIP][69] ([i915#3297]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg1-19/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gem_userptr_blits@vma-merge: - shard-dg2: NOTRUN -> [FAIL][70] ([i915#3318]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-11/igt@gem_userptr_blits@vma-merge.html * igt@gen3_render_mixed_blits: - shard-dg1: NOTRUN -> [SKIP][71] ([fdo#109289]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg1-13/igt@gen3_render_mixed_blits.html * igt@gen3_render_tiledy_blits: - shard-rkl: NOTRUN -> [SKIP][72] ([fdo#109289]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-7/igt@gen3_render_tiledy_blits.html * igt@gen7_exec_parse@chained-batch: - shard-dg2: NOTRUN -> [SKIP][73] ([fdo#109289]) +5 similar issues [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-12/igt@gen7_exec_parse@chained-batch.html * igt@gen9_exec_parse@allowed-single: - shard-tglu: NOTRUN -> [SKIP][74] ([i915#2527] / [i915#2856]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-tglu-4/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@secure-batches: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#2856]) +2 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-8/igt@gen9_exec_parse@secure-batches.html - shard-rkl: NOTRUN -> [SKIP][76] ([i915#2527]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-7/igt@gen9_exec_parse@secure-batches.html * igt@gen9_exec_parse@valid-registers: - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#2856]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-4/igt@gen9_exec_parse@valid-registers.html * igt@i915_fb_tiling: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#4881]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-8/igt@i915_fb_tiling.html * igt@i915_module_load@resize-bar: - shard-tglu: NOTRUN -> [SKIP][79] ([i915#6412]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-tglu-7/igt@i915_module_load@resize-bar.html * igt@i915_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#7091]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-5/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html * igt@i915_pm_backlight@bad-brightness: - shard-rkl: NOTRUN -> [SKIP][81] ([i915#7561]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-1/igt@i915_pm_backlight@bad-brightness.html * igt@i915_pm_backlight@fade-with-dpms: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#5354] / [i915#7561]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-6/igt@i915_pm_backlight@fade-with-dpms.html * igt@i915_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#3361]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-7/igt@i915_pm_dc@dc9-dpms.html - shard-apl: [PASS][84] -> [SKIP][85] ([fdo#109271]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-apl4/igt@i915_pm_dc@dc9-dpms.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-apl2/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: - shard-rkl: [PASS][86] -> [SKIP][87] ([i915#1937]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-rkl-7/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-6/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html - shard-dg1: NOTRUN -> [SKIP][88] ([i915#1937]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg1-14/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][89] ([i915#1397]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-4/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@modeset-lpsp: - shard-dg1: [PASS][90] -> [SKIP][91] ([i915#1397]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-dg1-19/igt@i915_pm_rpm@modeset-lpsp.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg1-14/igt@i915_pm_rpm@modeset-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp: - shard-dg2: [PASS][92] -> [SKIP][93] ([i915#1397]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-dg2-6/igt@i915_pm_rpm@modeset-non-lpsp.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-12/igt@i915_pm_rpm@modeset-non-lpsp.html - shard-rkl: [PASS][94] -> [SKIP][95] ([i915#1397]) +1 similar issue [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-rkl-2/igt@i915_pm_rpm@modeset-non-lpsp.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#1397]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-12/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@i915_pm_rps@thresholds-idle-park@gt0: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#8925]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-12/igt@i915_pm_rps@thresholds-idle-park@gt0.html * igt@i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#4387]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-5/igt@i915_pm_sseu@full-enable.html - shard-rkl: NOTRUN -> [SKIP][99] ([i915#4387]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-2/igt@i915_pm_sseu@full-enable.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#6188]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-2/igt@i915_query@query-topology-coherent-slice-mask.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#4212]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-2/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#4215] / [i915#5190]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-3/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc_ccs: - shard-dg1: NOTRUN -> [SKIP][103] ([i915#8502]) +7 similar issues [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg1-13/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc_ccs.html * igt@kms_async_flips@crc@pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][104] ([i915#8247]) +3 similar issues [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg1-13/igt@kms_async_flips@crc@pipe-b-hdmi-a-3.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#1769]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][106] ([i915#4538] / [i915#5286]) +1 similar issue [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg1-17/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-tglu: NOTRUN -> [SKIP][107] ([fdo#111615] / [i915#5286]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-tglu-9/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#5286]) +1 similar issue [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@linear-16bpp-rotate-0: - shard-mtlp: [PASS][109] -> [DMESG-WARN][110] ([i915#1982]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-mtlp-3/igt@kms_big_fb@linear-16bpp-rotate-0.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-4/igt@kms_big_fb@linear-16bpp-rotate-0.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][111] ([i915#3638]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg1-15/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][112] ([fdo#111614]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-tglu-7/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][113] ([fdo#111614] / [i915#3638]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-2/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][114] ([fdo#111614]) +2 similar issues [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-8/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][115] ([fdo#111614]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-4/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#5190]) +13 similar issues [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-2/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-mtlp: NOTRUN -> [SKIP][117] ([fdo#111615]) +3 similar issues [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#4538] / [i915#5190]) +4 similar issues [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-5/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#4538]) +1 similar issue [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg1-19/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-rkl: NOTRUN -> [SKIP][120] ([fdo#111615]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-6/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-rkl: NOTRUN -> [SKIP][121] ([fdo#110723]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_joiner@2x-modeset: - shard-mtlp: NOTRUN -> [SKIP][122] ([i915#2705]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-6/igt@kms_big_joiner@2x-modeset.html * igt@kms_big_joiner@basic: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#2705]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-3/igt@kms_big_joiner@basic.html * igt@kms_ccs@pipe-a-bad-aux-stride-yf_tiled_ccs: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#3689] / [i915#5354] / [i915#6095]) +5 similar issues [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg1-19/igt@kms_ccs@pipe-a-bad-aux-stride-yf_tiled_ccs.html * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#3886] / [i915#5354] / [i915#6095]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-7/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_rc_ccs_cc: - shard-mtlp: NOTRUN -> [SKIP][126] ([i915#3886] / [i915#6095]) +5 similar issues [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-7/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-a-missing-ccs-buffer-4_tiled_mtl_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#5354]) +50 similar issues [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-5/igt@kms_ccs@pipe-a-missing-ccs-buffer-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc: - shard-apl: NOTRUN -> [SKIP][128] ([fdo#109271] / [i915#3886]) +3 similar issues [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-apl1/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_dg2_rc_ccs: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#5354] / [i915#6095]) +7 similar issues [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-1/igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#3734] / [i915#5354] / [i915#6095]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-7/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_ccs.html * igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs: - shard-mtlp: NOTRUN -> [SKIP][131] ([i915#6095]) +5 similar issues [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-5/igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#3689] / [i915#3886] / [i915#5354]) +5 similar issues [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-6/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_mtl_rc_ccs: - shard-tglu: NOTRUN -> [SKIP][133] ([i915#5354] / [i915#6095]) +4 similar issues [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-tglu-10/igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_mtl_rc_ccs.html * igt@kms_ccs@pipe-c-missing-ccs-buffer-4_tiled_mtl_rc_ccs_cc: - shard-dg1: NOTRUN -> [SKIP][134] ([i915#5354] / [i915#6095]) +6 similar issues [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg1-19/igt@kms_ccs@pipe-c-missing-ccs-buffer-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#5354]) +9 similar issues [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-2/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_gen12_rc_ccs: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#3689] / [i915#5354]) +24 similar issues [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-8/igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_gen12_rc_ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#4087] / [i915#7213]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-6/igt@kms_cdclk@mode-transition-all-outputs.html - shard-rkl: NOTRUN -> [SKIP][138] ([i915#3742]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-7/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling@pipe-b-dp-4: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#4087]) +3 similar issues [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html * igt@kms_chamelium_color@ctm-0-25: - shard-dg2: NOTRUN -> [SKIP][140] ([fdo#111827]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-2/igt@kms_chamelium_color@ctm-0-25.html - shard-rkl: NOTRUN -> [SKIP][141] ([fdo#111827]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-1/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_color@ctm-max: - shard-dg1: NOTRUN -> [SKIP][142] ([fdo#111827]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg1-13/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-dg1: NOTRUN -> [SKIP][143] ([i915#7828]) +1 similar issue [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg1-15/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_frames@dp-crc-single: - shard-mtlp: NOTRUN -> [SKIP][144] ([i915#7828]) +3 similar issues [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-4/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#7828]) +8 similar issues [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-1/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt@kms_chamelium_hpd@dp-hpd-storm: - shard-tglu: NOTRUN -> [SKIP][146] ([i915#7828]) +1 similar issue [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-tglu-9/igt@kms_chamelium_hpd@dp-hpd-storm.html * igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode: - shard-rkl: NOTRUN -> [SKIP][147] ([i915#7828]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-7/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html * igt@kms_content_protection@lic@pipe-a-dp-2: - shard-dg2: NOTRUN -> [TIMEOUT][148] ([i915#7173]) +1 similar issue [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-12/igt@kms_content_protection@lic@pipe-a-dp-2.html * igt@kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#7118]) +1 similar issue [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-6/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][150] ([i915#1339]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-11/igt@kms_content_protection@uevent@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][151] ([fdo#109279] / [i915#3359]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-tglu-4/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#3359]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#3359]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-8/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-mtlp: NOTRUN -> [SKIP][154] ([i915#8814]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-7/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-dg1: NOTRUN -> [SKIP][155] ([i915#3359]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg1-16/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-tglu: NOTRUN -> [SKIP][156] ([fdo#109274] / [fdo#111767]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-tglu-3/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#3546]) +1 similar issue [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-2/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg1: NOTRUN -> [SKIP][158] ([i915#4103] / [i915#4213]) +1 similar issue [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg1-18/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursor-vs-flip-toggle: - shard-mtlp: [PASS][159] -> [FAIL][160] ([i915#8248]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-mtlp-5/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-5/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-tglu: NOTRUN -> [SKIP][161] ([fdo#109274]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-tglu-10/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-snb: NOTRUN -> [SKIP][162] ([fdo#109271] / [fdo#111767]) +1 similar issue [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-snb5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-dg2: NOTRUN -> [SKIP][163] ([fdo#109274] / [i915#5354]) +2 similar issues [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [PASS][164] -> [FAIL][165] ([i915#2346]) +1 similar issue [164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [PASS][166] -> [FAIL][167] ([i915#2346]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#4103] / [i915#4213]) +1 similar issue [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-tglu: NOTRUN -> [SKIP][169] ([i915#4103]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-tglu-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2 (NEW): - shard-glk: NOTRUN -> [SKIP][170] ([fdo#109271]) +5 similar issues [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-glk9/igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#8588]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-6/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][172] ([i915#3804]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#3555]) +5 similar issues [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-6/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_dsc@dsc-with-output-formats: - shard-tglu: NOTRUN -> [SKIP][174] ([i915#3555] / [i915#3840]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-tglu-9/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@psr-suspend: - shard-tglu: NOTRUN -> [SKIP][175] ([i915#3469]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-tglu-2/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-dg2: NOTRUN -> [SKIP][176] ([fdo#109274]) +5 similar issues [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-6/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg2: NOTRUN -> [SKIP][177] ([fdo#109274] / [fdo#111767]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-2/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-tglu: NOTRUN -> [SKIP][178] ([fdo#109274] / [fdo#111767] / [i915#3637]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-tglu-4/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-rkl: NOTRUN -> [SKIP][179] ([fdo#111825]) +2 similar issues [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-7/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@2x-plain-flip: - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#3637]) +1 similar issue [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-6/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][181] ([i915#8381]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-4/igt@kms_flip@flip-vs-fences.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a3: - shard-dg2: [PASS][182] -> [FAIL][183] ([fdo#103375]) +2 similar issues [182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-dg2-5/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a3.html [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-5/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a3.html * igt@kms_flip@plain-flip-ts-check-interruptible@a-vga1: - shard-snb: [PASS][184] -> [ABORT][185] ([i915#8865]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-snb2/igt@kms_flip@plain-flip-ts-check-interruptible@a-vga1.html [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-snb7/igt@kms_flip@plain-flip-ts-check-interruptible@a-vga1.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][186] ([i915#8810]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#2672]) +3 similar issues [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-12/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#2672]) +2 similar issues [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [FAIL][189] ([i915#6880]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-12/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite: - shard-dg2: [PASS][190] -> [FAIL][191] ([i915#6880]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#8708]) +24 similar issues [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][193] ([fdo#111825] / [i915#1825]) +14 similar issues [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][194] ([i915#3023]) +10 similar issues [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move: - shard-dg1: NOTRUN -> [SKIP][195] ([i915#3458]) +3 similar issues [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite: - shard-apl: NOTRUN -> [SKIP][196] ([fdo#109271]) +43 similar issues [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-apl1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move: - shard-tglu: NOTRUN -> [SKIP][197] ([fdo#109280]) +3 similar issues [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-tglu-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][198] ([fdo#110189]) +5 similar issues [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-tglu-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#5460]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][200] ([i915#8708]) +3 similar issues [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][201] ([fdo#111825]) +10 similar issues [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][202] ([i915#8708]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite: - shard-mtlp: NOTRUN -> [SKIP][203] ([i915#1825]) +4 similar issues [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#3458]) +19 similar issues [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_hdr@bpc-switch-suspend@pipe-a-edp-1: - shard-mtlp: [PASS][205] -> [ABORT][206] ([i915#6311] / [i915#8466]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-mtlp-7/igt@kms_hdr@bpc-switch-suspend@pipe-a-edp-1.html [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-1/igt@kms_hdr@bpc-switch-suspend@pipe-a-edp-1.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#3555] / [i915#8228]) +2 similar issues [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-8/igt@kms_hdr@static-toggle-suspend.html - shard-tglu: NOTRUN -> [SKIP][208] ([i915#3555] / [i915#8228]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-tglu-7/igt@kms_hdr@static-toggle-suspend.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-mtlp: NOTRUN -> [SKIP][209] ([i915#4816]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1: - shard-snb: NOTRUN -> [DMESG-WARN][210] ([i915#8841]) +2 similar issues [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-snb1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html * igt@kms_plane@pixel-format@pipe-b-planes: - shard-rkl: [PASS][211] -> [ABORT][212] ([i915#8311]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-rkl-1/igt@kms_plane@pixel-format@pipe-b-planes.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-4/igt@kms_plane@pixel-format@pipe-b-planes.html - shard-mtlp: [PASS][213] -> [FAIL][214] ([i915#1623]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-mtlp-4/igt@kms_plane@pixel-format@pipe-b-planes.html [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-4/igt@kms_plane@pixel-format@pipe-b-planes.html * igt@kms_plane_lowres@tiling-y: - shard-mtlp: NOTRUN -> [SKIP][215] ([i915#8821]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-4/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#6953]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-5/igt@kms_plane_scaling@intel-max-src-size.html - shard-mtlp: NOTRUN -> [SKIP][217] ([i915#6953]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-4/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][218] ([i915#8292]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-7/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-4: - shard-dg1: NOTRUN -> [FAIL][219] ([i915#8292]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg1-17/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-c-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#5176]) +7 similar issues [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-c-hdmi-a-2.html * igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-a-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][221] ([i915#5176]) +3 similar issues [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg1-19/igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][222] ([i915#5176]) +1 similar issue [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][223] ([i915#5235]) +11 similar issues [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg1-16/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#5235]) +15 similar issues [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1: - shard-snb: NOTRUN -> [SKIP][225] ([fdo#109271]) +149 similar issues [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-snb4/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][226] ([i915#5235]) +1 similar issue [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_prime@basic-crc-vgem: - shard-dg1: NOTRUN -> [SKIP][227] ([i915#6524]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg1-15/igt@kms_prime@basic-crc-vgem.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf: - shard-apl: NOTRUN -> [SKIP][228] ([fdo#109271] / [i915#658]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-apl3/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb: - shard-dg2: NOTRUN -> [SKIP][229] ([i915#658]) +1 similar issue [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-11/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html - shard-rkl: NOTRUN -> [SKIP][230] ([i915#658]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-6/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr@psr2_dpms: - shard-dg2: NOTRUN -> [SKIP][231] ([i915#1072]) +6 similar issues [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-12/igt@kms_psr@psr2_dpms.html * igt@kms_psr@psr2_primary_page_flip: - shard-dg1: NOTRUN -> [SKIP][232] ([i915#1072]) +1 similar issue [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg1-19/igt@kms_psr@psr2_primary_page_flip.html * igt@kms_psr@sprite_blt: - shard-rkl: NOTRUN -> [SKIP][233] ([i915#1072]) +1 similar issue [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-2/igt@kms_psr@sprite_blt.html * igt@kms_rotation_crc@bad-pixel-format: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#4235]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-12/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-rkl: [PASS][235] -> [ABORT][236] ([i915#8178]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-rkl-6/igt@kms_rotation_crc@sprite-rotation-90.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-1/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_scaling_modes@scaling-mode-none: - shard-rkl: NOTRUN -> [SKIP][237] ([i915#3555]) +1 similar issue [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-7/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_selftest@drm_dp_mst: - shard-snb: NOTRUN -> [SKIP][238] ([fdo#109271] / [i915#8661]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-snb5/igt@kms_selftest@drm_dp_mst.html * igt@kms_selftest@drm_format: - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#8661]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-3/igt@kms_selftest@drm_format.html * igt@kms_tiled_display@basic-test-pattern: - shard-rkl: NOTRUN -> [SKIP][240] ([i915#8623]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-1/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vblank@pipe-d-ts-continuation-idle: - shard-rkl: NOTRUN -> [SKIP][241] ([i915#4070] / [i915#533] / [i915#6768]) +1 similar issue [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-7/igt@kms_vblank@pipe-d-ts-continuation-idle.html * igt@kms_vrr@flip-dpms: - shard-dg1: NOTRUN -> [SKIP][242] ([i915#3555]) +1 similar issue [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg1-16/igt@kms_vrr@flip-dpms.html * igt@kms_writeback@writeback-invalid-parameters: - shard-mtlp: NOTRUN -> [SKIP][243] ([i915#2437]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-2/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@global-sseu-config: - shard-mtlp: NOTRUN -> [SKIP][244] ([i915#7387]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-1/igt@perf@global-sseu-config.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [PASS][245] -> [FAIL][246] ([i915#7484]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-dg2-1/igt@perf@non-zero-reason@0-rcs0.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-6/igt@perf@non-zero-reason@0-rcs0.html * igt@perf@unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][247] ([i915#2433]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-7/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@rc6-all-gts: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#8516]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-12/igt@perf_pmu@rc6-all-gts.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#3708] / [i915#4077]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-1/igt@prime_vgem@coherency-gtt.html * igt@sysfs_timeslice_duration@timeout@vecs0: - shard-mtlp: [PASS][250] -> [ABORT][251] ([i915#8521] / [i915#8865]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-mtlp-8/igt@sysfs_timeslice_duration@timeout@vecs0.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-4/igt@sysfs_timeslice_duration@timeout@vecs0.html * igt@tools_test@sysfs_l3_parity: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#4818]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-8/igt@tools_test@sysfs_l3_parity.html - shard-rkl: NOTRUN -> [SKIP][253] ([fdo#109307]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-7/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_create_bo@create-bo-zeroed: - shard-tglu: NOTRUN -> [SKIP][254] ([fdo#109315] / [i915#2575]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-tglu-4/igt@v3d/v3d_create_bo@create-bo-zeroed.html * igt@v3d/v3d_submit_cl@simple-flush-cache: - shard-dg1: NOTRUN -> [SKIP][255] ([i915#2575]) +2 similar issues [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg1-18/igt@v3d/v3d_submit_cl@simple-flush-cache.html * igt@v3d/v3d_submit_csd@bad-bo: - shard-mtlp: NOTRUN -> [SKIP][256] ([i915#2575]) +1 similar issue [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-3/igt@v3d/v3d_submit_csd@bad-bo.html * igt@v3d/v3d_submit_csd@job-perfmon: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#2575]) +11 similar issues [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-5/igt@v3d/v3d_submit_csd@job-perfmon.html * igt@v3d/v3d_submit_csd@valid-multisync-submission: - shard-rkl: NOTRUN -> [SKIP][258] ([fdo#109315]) +3 similar issues [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-7/igt@v3d/v3d_submit_csd@valid-multisync-submission.html * igt@vc4/vc4_mmap@mmap-bad-handle: - shard-tglu: NOTRUN -> [SKIP][259] ([i915#2575]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-tglu-7/igt@vc4/vc4_mmap@mmap-bad-handle.html * igt@vc4/vc4_perfmon@get-values-invalid-pointer: - shard-mtlp: NOTRUN -> [SKIP][260] ([i915#7711]) +3 similar issues [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-4/igt@vc4/vc4_perfmon@get-values-invalid-pointer.html * igt@vc4/vc4_tiling@set-get: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#7711]) +8 similar issues [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-2/igt@vc4/vc4_tiling@set-get.html - shard-rkl: NOTRUN -> [SKIP][262] ([i915#7711]) +3 similar issues [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-1/igt@vc4/vc4_tiling@set-get.html * igt@vc4/vc4_wait_seqno@bad-seqno-0ns: - shard-dg1: NOTRUN -> [SKIP][263] ([i915#7711]) +1 similar issue [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg1-18/igt@vc4/vc4_wait_seqno@bad-seqno-0ns.html #### Possible fixes #### * igt@gem_eio@reset-stress: - shard-dg1: [FAIL][264] ([i915#5784]) -> [PASS][265] +1 similar issue [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-dg1-18/igt@gem_eio@reset-stress.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg1-19/igt@gem_eio@reset-stress.html * igt@gem_exec_capture@pi@vcs0: - shard-mtlp: [FAIL][266] ([i915#4475]) -> [PASS][267] [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-mtlp-6/igt@gem_exec_capture@pi@vcs0.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-2/igt@gem_exec_capture@pi@vcs0.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: [FAIL][268] ([i915#2842]) -> [PASS][269] [268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-rkl-4/igt@gem_exec_fair@basic-none@bcs0.html [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-2/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][270] ([i915#2842]) -> [PASS][271] +1 similar issue [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_schedule@preempt-engines@ccs0: - shard-mtlp: [FAIL][272] ([i915#9119]) -> [PASS][273] +4 similar issues [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-mtlp-4/igt@gem_exec_schedule@preempt-engines@ccs0.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-8/igt@gem_exec_schedule@preempt-engines@ccs0.html * igt@gem_exec_schedule@preempt-engines@rcs0: - shard-mtlp: [DMESG-FAIL][274] ([i915#8962] / [i915#9121]) -> [PASS][275] [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-mtlp-4/igt@gem_exec_schedule@preempt-engines@rcs0.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-8/igt@gem_exec_schedule@preempt-engines@rcs0.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [DMESG-WARN][276] ([i915#7061] / [i915#8617]) -> [PASS][277] [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-8/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_dc@dc9-dpms: - shard-tglu: [SKIP][278] ([i915#4281]) -> [PASS][279] [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-tglu-7/igt@i915_pm_dc@dc9-dpms.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-tglu-2/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rc6_residency@rc6-idle@bcs0: - shard-dg1: [FAIL][280] ([i915#3591]) -> [PASS][281] [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-rkl: [SKIP][282] ([i915#1397]) -> [PASS][283] +2 similar issues [282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-rkl-7/igt@i915_pm_rpm@dpms-non-lpsp.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-6/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@i2c: - shard-dg2: [FAIL][284] ([i915#8717]) -> [PASS][285] [284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-dg2-2/igt@i915_pm_rpm@i2c.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-11/igt@i915_pm_rpm@i2c.html * igt@i915_pm_rps@reset: - shard-dg2: [FAIL][286] ([i915#8229]) -> [PASS][287] [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-dg2-3/igt@i915_pm_rps@reset.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-6/igt@i915_pm_rps@reset.html - shard-dg1: [FAIL][288] ([i915#8229]) -> [PASS][289] [288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-dg1-15/igt@i915_pm_rps@reset.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg1-18/igt@i915_pm_rps@reset.html * igt@i915_selftest@live@gt_heartbeat: - shard-apl: [DMESG-FAIL][290] ([i915#5334]) -> [PASS][291] [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-apl1/igt@i915_selftest@live@gt_heartbeat.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-apl6/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_suspend@sysfs-reader: - shard-mtlp: [ABORT][292] ([i915#6311] / [i915#8466]) -> [PASS][293] [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-mtlp-1/igt@i915_suspend@sysfs-reader.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-6/igt@i915_suspend@sysfs-reader.html * igt@kms_big_fb@4-tiled-8bpp-rotate-0: - shard-mtlp: [DMESG-WARN][294] ([i915#2017]) -> [PASS][295] [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-mtlp-8/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-3/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-mtlp: [FAIL][296] ([i915#3743]) -> [PASS][297] +1 similar issue [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-mtlp-8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_cursor_crc@cursor-onscreen-256x256@pipe-a-edp-1: - shard-mtlp: [DMESG-WARN][298] ([i915#1982]) -> [PASS][299] [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-mtlp-7/igt@kms_cursor_crc@cursor-onscreen-256x256@pipe-a-edp-1.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-8/igt@kms_cursor_crc@cursor-onscreen-256x256@pipe-a-edp-1.html * igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size: - shard-mtlp: [FAIL][300] ([i915#8248]) -> [PASS][301] [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-mtlp-3/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-5/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: [FAIL][302] ([i915#2122]) -> [PASS][303] [302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-glk8/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-glk8/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1: - shard-apl: [ABORT][304] ([i915#180]) -> [PASS][305] [304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-apl1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-apl3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html * igt@kms_plane@pixel-format-source-clamping@pipe-b-planes: - shard-mtlp: [FAIL][306] ([i915#1623]) -> [PASS][307] [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-mtlp-7/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-8/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html * igt@perf_pmu@busy-idle@bcs0: - shard-mtlp: [FAIL][308] ([i915#4349]) -> [PASS][309] +5 similar issues [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-mtlp-2/igt@perf_pmu@busy-idle@bcs0.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-7/igt@perf_pmu@busy-idle@bcs0.html * igt@perf_pmu@busy-idle@ccs0: - shard-dg2: [FAIL][310] ([i915#4349]) -> [PASS][311] +3 similar issues [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-dg2-6/igt@perf_pmu@busy-idle@ccs0.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg2-8/igt@perf_pmu@busy-idle@ccs0.html * igt@syncobj_timeline@invalid-wait-illegal-handle: - shard-mtlp: [DMESG-WARN][312] ([i915#9157]) -> [PASS][313] [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-mtlp-8/igt@syncobj_timeline@invalid-wait-illegal-handle.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-6/igt@syncobj_timeline@invalid-wait-illegal-handle.html #### Warnings #### * igt@i915_suspend@basic-s3-without-i915: - shard-rkl: [FAIL][314] ([fdo#103375]) -> [INCOMPLETE][315] ([i915#4817]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-rkl-6/igt@i915_suspend@basic-s3-without-i915.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-4/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-mtlp: [DMESG-FAIL][316] ([i915#1982] / [i915#2017] / [i915#5954]) -> [DMESG-FAIL][317] ([i915#2017] / [i915#5954]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-mtlp-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-mtlp-8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_flip@flip-vs-suspend@b-vga1: - shard-snb: [INCOMPLETE][318] ([i915#4839]) -> [DMESG-WARN][319] ([i915#8841]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-snb7/igt@kms_flip@flip-vs-suspend@b-vga1.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-snb2/igt@kms_flip@flip-vs-suspend@b-vga1.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: [SKIP][320] ([fdo#109285] / [i915#4098]) -> [SKIP][321] ([fdo#109285]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-rkl-2/igt@kms_force_connector_basic@force-load-detect.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-rkl-7/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_psr@cursor_plane_move: - shard-dg1: [SKIP][322] ([i915#1072]) -> [SKIP][323] ([i915#1072] / [i915#4078]) +2 similar issues [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-dg1-15/igt@kms_psr@cursor_plane_move.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg1-18/igt@kms_psr@cursor_plane_move.html * igt@kms_psr@primary_page_flip: - shard-dg1: [SKIP][324] ([i915#1072] / [i915#4078]) -> [SKIP][325] ([i915#1072]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13560/shard-dg1-18/igt@kms_psr@primary_page_flip.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/shard-dg1-15/igt@kms_psr@primary_page_flip.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [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 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1339]: https://gitlab.freedesktop.org/drm/intel/issues/1339 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1623]: https://gitlab.freedesktop.org/drm/intel/issues/1623 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [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#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [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#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [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#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [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#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#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4475]: https://gitlab.freedesktop.org/drm/intel/issues/4475 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4817]: https://gitlab.freedesktop.org/drm/intel/issues/4817 [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [i915#4839]: https://gitlab.freedesktop.org/drm/intel/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460 [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#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121 [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6311]: https://gitlab.freedesktop.org/drm/intel/issues/6311 [i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344 [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7061]: https://gitlab.freedesktop.org/drm/intel/issues/7061 [i915#7091]: https://gitlab.freedesktop.org/drm/intel/issues/7091 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7765]: https://gitlab.freedesktop.org/drm/intel/issues/7765 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#8178]: https://gitlab.freedesktop.org/drm/intel/issues/8178 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8229]: https://gitlab.freedesktop.org/drm/intel/issues/8229 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8248]: https://gitlab.freedesktop.org/drm/intel/issues/8248 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8311]: https://gitlab.freedesktop.org/drm/intel/issues/8311 [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#8466]: https://gitlab.freedesktop.org/drm/intel/issues/8466 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8521]: https://gitlab.freedesktop.org/drm/intel/issues/8521 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588 [i915#8617]: https://gitlab.freedesktop.org/drm/intel/issues/8617 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8717]: https://gitlab.freedesktop.org/drm/intel/issues/8717 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8865]: https://gitlab.freedesktop.org/drm/intel/issues/8865 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#8962]: https://gitlab.freedesktop.org/drm/intel/issues/8962 [i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067 [i915#9119]: https://gitlab.freedesktop.org/drm/intel/issues/9119 [i915#9121]: https://gitlab.freedesktop.org/drm/intel/issues/9121 [i915#9157]: https://gitlab.freedesktop.org/drm/intel/issues/9157 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7451 -> IGTPW_9647 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13560: a97a1944cae417ddc185aa52f27aa1f90000ddad @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9647: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9647/index.html IGT_7451: 5d48d1fb231f449fe2f80cda14ea7a1ecfda59fa @ 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_9647/index.html [-- Attachment #2: Type: text/html, Size: 106141 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* [igt-dev] ✗ GitLab.Pipeline: warning for Testcases for dirtyfb ioctl (rev2) 2023-08-24 10:40 [igt-dev] [PATCH i-g-t v9 0/4] Testcases for dirtyfb ioctl Jouni Högander ` (6 preceding siblings ...) 2023-08-24 21:28 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-08-25 8:18 ` Patchwork 2023-08-25 8:43 ` [igt-dev] ✓ CI.xeBAT: success " Patchwork ` (2 subsequent siblings) 10 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2023-08-25 8:18 UTC (permalink / raw) To: Hogander, Jouni; +Cc: igt-dev == Series Details == Series: Testcases for dirtyfb ioctl (rev2) URL : https://patchwork.freedesktop.org/series/122833/ State : warning == Summary == Pipeline status: FAILED. see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/970367 for the overview. build-containers:build-debian-arm64 has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/48031641): time="2023-08-25T08:15:31Z" level=fatal msg="Error determining repository tags: Get https://registry.freedesktop.org/v2/gfx-ci/igt-ci-tags/build-debian-arm64/tags/list?last=commit-2266967f2f8bb851061e32c7641d5ca68ebc481f&n=100: dial tcp 147.75.198.156:443: i/o timeout" Building! STEP 1: FROM debian:buster Getting image source signatures Copying blob sha256:d6b7393fb4f375905c31c483d81ce2a2905f88aba8cb198874da2b54035bc41d Copying config sha256:de08540e8ff0e470ff7956df4bed403725a5f45c186e9bf495da5344ff8fbe84 Writing manifest to image destination Storing signatures STEP 2: RUN apt-get update error running container: error creating container for [/bin/sh -c apt-get update]: time="2023-08-25T08:15:36Z" level=warning msg="signal: killed" time="2023-08-25T08:15:36Z" level=error msg="container_linux.go:346: starting container process caused \"process_linux.go:297: applying cgroup configuration for process caused \\\"mountpoint for cgroup not found\\\"\"\n" container_linux.go:346: starting container process caused "process_linux.go:297: applying cgroup configuration for process caused \"mountpoint for cgroup not found\"" : exit status 1 Error: error building at STEP "RUN apt-get update": error while running runtime: exit status 1 section_end:1692951337:step_script section_start:1692951337:cleanup_file_variables Cleaning up project directory and file based variables section_end:1692951338:cleanup_file_variables ERROR: Job failed: exit code 1 == Logs == For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/970367 ^ permalink raw reply [flat|nested] 13+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for Testcases for dirtyfb ioctl (rev2) 2023-08-24 10:40 [igt-dev] [PATCH i-g-t v9 0/4] Testcases for dirtyfb ioctl Jouni Högander ` (7 preceding siblings ...) 2023-08-25 8:18 ` [igt-dev] ✗ GitLab.Pipeline: warning for Testcases for dirtyfb ioctl (rev2) Patchwork @ 2023-08-25 8:43 ` Patchwork 2023-08-25 8:57 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork 2023-08-25 21:07 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 10 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2023-08-25 8:43 UTC (permalink / raw) To: Hogander, Jouni; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1352 bytes --] == Series Details == Series: Testcases for dirtyfb ioctl (rev2) URL : https://patchwork.freedesktop.org/series/122833/ State : success == Summary == CI Bug Log - changes from XEIGT_7452_BAT -> XEIGTPW_9657_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (3 -> 3) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_9657_BAT that come from known issues: ### IGT changes ### #### Warnings #### * igt@kms_force_connector_basic@force-connector-state: - bat-atsm-2: [SKIP][1] ([Intel XE#277]) -> [SKIP][2] ([Intel XE#277] / [Intel XE#540]) +2 similar issues [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7452/bat-atsm-2/igt@kms_force_connector_basic@force-connector-state.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9657/bat-atsm-2/igt@kms_force_connector_basic@force-connector-state.html [Intel XE#277]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/277 [Intel XE#540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/540 Build changes ------------- * IGT: IGT_7452 -> IGTPW_9657 IGTPW_9657: 9657 IGT_7452: 7452 xe-340-c77796cf84361b4716839141f2e48de2bf7f4bd5: c77796cf84361b4716839141f2e48de2bf7f4bd5 [-- Attachment #2: Type: text/html, Size: 1884 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Testcases for dirtyfb ioctl (rev2) 2023-08-24 10:40 [igt-dev] [PATCH i-g-t v9 0/4] Testcases for dirtyfb ioctl Jouni Högander ` (8 preceding siblings ...) 2023-08-25 8:43 ` [igt-dev] ✓ CI.xeBAT: success " Patchwork @ 2023-08-25 8:57 ` Patchwork 2023-08-25 21:07 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 10 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2023-08-25 8:57 UTC (permalink / raw) To: Hogander, Jouni; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5987 bytes --] == Series Details == Series: Testcases for dirtyfb ioctl (rev2) URL : https://patchwork.freedesktop.org/series/122833/ State : success == Summary == CI Bug Log - changes from CI_DRM_13565 -> IGTPW_9657 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/index.html Participating hosts (40 -> 40) ------------------------------ Additional (1): fi-kbl-soraka Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_9657 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_auth@basic-auth: - fi-bsw-n3050: [PASS][1] -> [DMESG-WARN][2] ([i915#1982]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/fi-bsw-n3050/igt@core_auth@basic-auth.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/fi-bsw-n3050/igt@core_auth@basic-auth.html * igt@gem_exec_suspend@basic-s0@smem: - bat-dg2-9: [PASS][3] -> [INCOMPLETE][4] ([i915#6311]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/bat-dg2-9/igt@gem_exec_suspend@basic-s0@smem.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/bat-dg2-9/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_exec_suspend@basic-s3@smem: - bat-rpls-2: [PASS][5] -> [ABORT][6] ([i915#7978] / [i915#8668]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/bat-rpls-2/igt@gem_exec_suspend@basic-s3@smem.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/bat-rpls-2/igt@gem_exec_suspend@basic-s3@smem.html * igt@gem_huc_copy@huc-copy: - fi-kbl-soraka: NOTRUN -> [SKIP][7] ([fdo#109271] / [i915#2190]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-kbl-soraka: NOTRUN -> [SKIP][8] ([fdo#109271] / [i915#4613]) +3 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html * igt@i915_selftest@live@gt_pm: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][9] ([i915#1886] / [i915#7913]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html * igt@i915_selftest@live@hangcheck: - fi-skl-guc: [PASS][10] -> [DMESG-FAIL][11] ([i915#8723]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/fi-skl-guc/igt@i915_selftest@live@hangcheck.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/fi-skl-guc/igt@i915_selftest@live@hangcheck.html * igt@i915_selftest@live@migrate: - bat-dg2-11: [PASS][12] -> [DMESG-WARN][13] ([i915#7699]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/bat-dg2-11/igt@i915_selftest@live@migrate.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/bat-dg2-11/igt@i915_selftest@live@migrate.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - fi-kbl-soraka: NOTRUN -> [SKIP][14] ([fdo#109271]) +8 similar issues [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/fi-kbl-soraka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_psr@cursor_plane_move: - bat-rplp-1: NOTRUN -> [SKIP][15] ([i915#1072]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/bat-rplp-1/igt@kms_psr@cursor_plane_move.html * igt@kms_psr@sprite_plane_onoff: - bat-rplp-1: NOTRUN -> [ABORT][16] ([i915#8442] / [i915#8668] / [i915#8712]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/bat-rplp-1/igt@kms_psr@sprite_plane_onoff.html #### Warnings #### * igt@i915_suspend@basic-s3-without-i915: - bat-adlm-1: [INCOMPLETE][17] -> [INCOMPLETE][18] ([i915#7443]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/bat-adlm-1/igt@i915_suspend@basic-s3-without-i915.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/bat-adlm-1/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_psr@primary_page_flip: - bat-rplp-1: [ABORT][19] ([i915#8442] / [i915#8668] / [i915#8860]) -> [SKIP][20] ([i915#1072]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/bat-rplp-1/igt@kms_psr@primary_page_flip.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/bat-rplp-1/igt@kms_psr@primary_page_flip.html [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#6311]: https://gitlab.freedesktop.org/drm/intel/issues/6311 [i915#7443]: https://gitlab.freedesktop.org/drm/intel/issues/7443 [i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699 [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#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8712]: https://gitlab.freedesktop.org/drm/intel/issues/8712 [i915#8723]: https://gitlab.freedesktop.org/drm/intel/issues/8723 [i915#8860]: https://gitlab.freedesktop.org/drm/intel/issues/8860 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7452 -> IGTPW_9657 CI-20190529: 20190529 CI_DRM_13565: 12b9d9f2acd6adc09ebdb9d6fb7bd724bc1b8441 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9657: 9657 IGT_7452: 7452 Testlist changes ---------------- +igt@kms_dirtyfb@dirtyfb-ioctl -igt@xe_pm_residency@toggle-gt-c6 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/index.html [-- Attachment #2: Type: text/html, Size: 7294 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for Testcases for dirtyfb ioctl (rev2) 2023-08-24 10:40 [igt-dev] [PATCH i-g-t v9 0/4] Testcases for dirtyfb ioctl Jouni Högander ` (9 preceding siblings ...) 2023-08-25 8:57 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork @ 2023-08-25 21:07 ` Patchwork 2023-08-29 5:50 ` Hogander, Jouni 10 siblings, 1 reply; 13+ messages in thread From: Patchwork @ 2023-08-25 21:07 UTC (permalink / raw) To: Jouni Högander; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 74384 bytes --] == Series Details == Series: Testcases for dirtyfb ioctl (rev2) URL : https://patchwork.freedesktop.org/series/122833/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13565_full -> IGTPW_9657_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9657_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9657_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_9657/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_9657_full: ### IGT changes ### #### Possible regressions #### * {igt@kms_dirtyfb@dirtyfb-ioctl@drrs-edp-1} (NEW): - shard-mtlp: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-8/igt@kms_dirtyfb@dirtyfb-ioctl@drrs-edp-1.html * {igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-3} (NEW): - shard-dg2: NOTRUN -> [SKIP][2] +2 similar issues [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-6/igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-3.html * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1 (NEW): - shard-rkl: NOTRUN -> [SKIP][3] +2 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-7/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1.html - shard-dg1: NOTRUN -> [SKIP][4] +2 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg1-19/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1.html - shard-tglu: NOTRUN -> [SKIP][5] +2 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-10/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1.html New tests --------- New tests have been introduced between CI_DRM_13565_full and IGTPW_9657_full: ### New IGT tests (25) ### * igt@kms_dirtyfb@dirtyfb-ioctl: - Statuses : - Exec time: [None] s * igt@kms_dirtyfb@dirtyfb-ioctl@default-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@default-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@default-hdmi-a-1: - Statuses : 4 pass(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@default-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@default-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@default-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-dp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-edp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-1: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-vga-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-dp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-1: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-vga-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@psr-dp-1: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@psr-edp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1: - Statuses : 4 skip(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@psr-vga-1: - Statuses : 1 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9657_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@device_reset@cold-reset-bound: - shard-dg2: NOTRUN -> [SKIP][6] ([i915#7701]) +1 similar issue [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-11/igt@device_reset@cold-reset-bound.html * igt@drm_buddy@drm_buddy_test: - shard-snb: NOTRUN -> [SKIP][7] ([fdo#109271] / [i915#8661]) +1 similar issue [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-snb4/igt@drm_buddy@drm_buddy_test.html * igt@drm_fdinfo@all-busy-check-all: - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#8414]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-7/igt@drm_fdinfo@all-busy-check-all.html * igt@drm_fdinfo@most-busy-idle-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][9] ([i915#8414]) +11 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-11/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html * igt@feature_discovery@display-2x: - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#1839]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-3/igt@feature_discovery@display-2x.html * igt@gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][11] ([i915#3936]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-12/igt@gem_busy@semaphore.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [PASS][12] -> [INCOMPLETE][13] ([i915#6311] / [i915#7297]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-dg2-8/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-1/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-dg2: [PASS][14] -> [TIMEOUT][15] ([i915#9192]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-dg2-6/igt@gem_ctx_exec@basic-nohangcheck.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-1/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@engines-hang@vcs0: - shard-mtlp: [PASS][16] -> [FAIL][17] ([i915#2410]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-mtlp-4/igt@gem_ctx_persistence@engines-hang@vcs0.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-3/igt@gem_ctx_persistence@engines-hang@vcs0.html * igt@gem_ctx_persistence@process: - shard-snb: NOTRUN -> [SKIP][18] ([fdo#109271] / [i915#1099]) +1 similar issue [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-snb5/igt@gem_ctx_persistence@process.html * igt@gem_ctx_sseu@invalid-args: - shard-dg2: NOTRUN -> [SKIP][19] ([i915#280]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-12/igt@gem_ctx_sseu@invalid-args.html * igt@gem_eio@in-flight-suspend: - shard-dg2: [PASS][20] -> [FAIL][21] ([fdo#103375]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-dg2-2/igt@gem_eio@in-flight-suspend.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-6/igt@gem_eio@in-flight-suspend.html * igt@gem_eio@reset-stress: - shard-dg2: [PASS][22] -> [FAIL][23] ([i915#5784]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-dg2-12/igt@gem_eio@reset-stress.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-8/igt@gem_eio@reset-stress.html * igt@gem_exec_capture@capture-recoverable: - shard-tglu: NOTRUN -> [SKIP][24] ([i915#6344]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-3/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_capture@pi@vcs0: - shard-mtlp: NOTRUN -> [FAIL][25] ([i915#4475]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-5/igt@gem_exec_capture@pi@vcs0.html * igt@gem_exec_capture@pi@vecs0: - shard-mtlp: NOTRUN -> [FAIL][26] ([i915#4475] / [i915#7765]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-5/igt@gem_exec_capture@pi@vecs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-apl: [PASS][27] -> [FAIL][28] ([i915#2842]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-apl3/igt@gem_exec_fair@basic-pace-solo@rcs0.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-apl2/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-pace@vcs0: - shard-glk: [PASS][29] -> [FAIL][30] ([i915#2842]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-glk7/igt@gem_exec_fair@basic-pace@vcs0.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-glk3/igt@gem_exec_fair@basic-pace@vcs0.html * igt@gem_exec_fair@basic-sync: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#3539]) +1 similar issue [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-1/igt@gem_exec_fair@basic-sync.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-rkl: [PASS][32] -> [FAIL][33] ([i915#2842]) +1 similar issue [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-rkl-2/igt@gem_exec_fair@basic-throttle@rcs0.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-1/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_flush@basic-uc-rw-default: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#3539] / [i915#4852]) +1 similar issue [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-10/igt@gem_exec_flush@basic-uc-rw-default.html * igt@gem_exec_params@rsvd2-dirt: - shard-mtlp: NOTRUN -> [SKIP][35] ([i915#5107]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-4/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-cpu-wc-noreloc: - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#3281]) +1 similar issue [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-2/igt@gem_exec_reloc@basic-cpu-wc-noreloc.html * igt@gem_exec_reloc@basic-gtt-cpu-active: - shard-rkl: NOTRUN -> [SKIP][37] ([i915#3281]) +4 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-2/igt@gem_exec_reloc@basic-gtt-cpu-active.html * igt@gem_exec_reloc@basic-wc: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#3281]) +5 similar issues [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-5/igt@gem_exec_reloc@basic-wc.html * igt@gem_exec_suspend@basic-s0@lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][39] ([i915#6311]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-2/igt@gem_exec_suspend@basic-s0@lmem0.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#4860]) +1 similar issue [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-12/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4860]) +1 similar issue [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-8/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_lmem_swapping@basic: - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4613]) +2 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-5/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [PASS][43] -> [TIMEOUT][44] ([i915#5493]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-dg2-6/igt@gem_lmem_swapping@smem-oom@lmem0.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-3/igt@gem_lmem_swapping@smem-oom@lmem0.html - shard-dg1: [PASS][45] -> [TIMEOUT][46] ([i915#5493]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify: - shard-rkl: NOTRUN -> [SKIP][47] ([i915#4613]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-4/igt@gem_lmem_swapping@verify.html * igt@gem_mmap@bad-size: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4083]) +1 similar issue [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-4/igt@gem_mmap@bad-size.html * igt@gem_mmap_gtt@basic-write-cpu-read-gtt: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4077]) +1 similar issue [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-8/igt@gem_mmap_gtt@basic-write-cpu-read-gtt.html * igt@gem_mmap_gtt@big-bo: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#4077]) +4 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-10/igt@gem_mmap_gtt@big-bo.html * igt@gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#4083]) +5 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-12/igt@gem_mmap_wc@copy.html * igt@gem_partial_pwrite_pread@reads: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#3282]) +2 similar issues [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-10/igt@gem_partial_pwrite_pread@reads.html * igt@gem_ppgtt@flink-and-close-vma-leak: - shard-glk: [PASS][53] -> [FAIL][54] ([i915#9059]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-glk5/igt@gem_ppgtt@flink-and-close-vma-leak.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-glk9/igt@gem_ppgtt@flink-and-close-vma-leak.html * igt@gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4270]) +2 similar issues [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-10/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-rkl: NOTRUN -> [SKIP][56] ([i915#4270]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-2/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html - shard-tglu: NOTRUN -> [SKIP][57] ([i915#4270]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-6/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4270]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-6/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_readwrite@beyond-eob: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#3282]) +1 similar issue [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-7/igt@gem_readwrite@beyond-eob.html * igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#5190]) +9 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-3/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html * igt@gem_userptr_blits@access-control: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#3297]) +1 similar issue [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-1/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@readonly-unsync: - shard-rkl: NOTRUN -> [SKIP][62] ([i915#3297]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-6/igt@gem_userptr_blits@readonly-unsync.html - shard-tglu: NOTRUN -> [SKIP][63] ([i915#3297]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-9/igt@gem_userptr_blits@readonly-unsync.html * igt@gem_userptr_blits@vma-merge: - shard-dg2: NOTRUN -> [FAIL][64] ([i915#3318]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-10/igt@gem_userptr_blits@vma-merge.html * igt@gen3_render_linear_blits: - shard-dg2: NOTRUN -> [SKIP][65] ([fdo#109289]) +6 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-3/igt@gen3_render_linear_blits.html - shard-rkl: NOTRUN -> [SKIP][66] ([fdo#109289]) +2 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-6/igt@gen3_render_linear_blits.html * igt@gen7_exec_parse@batch-without-end: - shard-tglu: NOTRUN -> [SKIP][67] ([fdo#109289]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-6/igt@gen7_exec_parse@batch-without-end.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [PASS][68] -> [ABORT][69] ([i915#5566]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-apl1/igt@gen9_exec_parse@allowed-single.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-apl2/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@secure-batches: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#2856]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-1/igt@gen9_exec_parse@secure-batches.html * igt@gen9_exec_parse@valid-registers: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#2856]) +1 similar issue [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-1/igt@gen9_exec_parse@valid-registers.html * igt@i915_module_load@load: - shard-tglu: NOTRUN -> [SKIP][72] ([i915#6227]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-4/igt@i915_module_load@load.html - shard-rkl: NOTRUN -> [SKIP][73] ([i915#6227]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-1/igt@i915_module_load@load.html * igt@i915_module_load@resize-bar: - shard-rkl: NOTRUN -> [SKIP][74] ([i915#6412]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-4/igt@i915_module_load@resize-bar.html * igt@i915_pipe_stress@stress-xrgb8888-untiled: - shard-mtlp: [PASS][75] -> [FAIL][76] ([i915#8691]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-mtlp-7/igt@i915_pipe_stress@stress-xrgb8888-untiled.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-2/igt@i915_pipe_stress@stress-xrgb8888-untiled.html * igt@i915_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#7091]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-3/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html * igt@i915_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#5978]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-11/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#1937]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-1/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-tglu: NOTRUN -> [WARN][80] ([i915#2681]) +3 similar issues [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-8/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@i915_pm_rc6_residency@rc6-idle@vecs0: - shard-dg1: [PASS][81] -> [FAIL][82] ([i915#3591]) +1 similar issue [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#1397]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-2/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@modeset-lpsp-stress: - shard-dg2: [PASS][84] -> [SKIP][85] ([i915#1397]) +1 similar issue [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-dg2-12/igt@i915_pm_rpm@modeset-lpsp-stress.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-11/igt@i915_pm_rpm@modeset-lpsp-stress.html * igt@i915_pm_rpm@modeset-pc8-residency-stress: - shard-dg2: NOTRUN -> [SKIP][86] ([fdo#109506]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-11/igt@i915_pm_rpm@modeset-pc8-residency-stress.html * igt@i915_pm_rps@min-max-config-loaded: - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#6621]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-5/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@thresholds@gt0: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#8925]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-5/igt@i915_pm_rps@thresholds@gt0.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#4215] / [i915#5190]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-5/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-2-y-rc_ccs: - shard-rkl: NOTRUN -> [SKIP][90] ([i915#8502]) +3 similar issues [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-2-y-rc_ccs.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][91] ([i915#8247]) +3 similar issues [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-6/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html * igt@kms_async_flips@crc@pipe-c-hdmi-a-1: - shard-dg1: NOTRUN -> [FAIL][92] ([i915#8247]) +3 similar issues [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg1-19/igt@kms_async_flips@crc@pipe-c-hdmi-a-1.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][93] ([i915#5286]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-7/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html - shard-tglu: NOTRUN -> [SKIP][94] ([fdo#111615] / [i915#5286]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-5/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-64bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][95] ([fdo#111614]) +1 similar issue [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-12/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: [PASS][96] -> [FAIL][97] ([i915#5138]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: NOTRUN -> [FAIL][98] ([i915#5138]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-mtlp: [PASS][99] -> [FAIL][100] ([i915#3743]) +1 similar issue [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg1: NOTRUN -> [SKIP][101] ([i915#4538] / [i915#5286]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg1-14/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][102] ([fdo#111614]) +1 similar issue [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-1/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-180: - shard-mtlp: NOTRUN -> [SKIP][103] ([fdo#111615]) +2 similar issues [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-8/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#4538] / [i915#5190]) +2 similar issues [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-6/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html - shard-rkl: NOTRUN -> [SKIP][105] ([fdo#110723]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-7/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_big_joiner@basic: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#2705]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-12/igt@kms_big_joiner@basic.html * igt@kms_big_joiner@invalid-modeset: - shard-rkl: NOTRUN -> [SKIP][107] ([i915#2705]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-4/igt@kms_big_joiner@invalid-modeset.html - shard-tglu: NOTRUN -> [SKIP][108] ([i915#2705]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-2/igt@kms_big_joiner@invalid-modeset.html * igt@kms_ccs@pipe-a-crc-primary-basic-yf_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#3689] / [i915#5354]) +13 similar issues [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-6/igt@kms_ccs@pipe-a-crc-primary-basic-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][110] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-3/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][111] ([i915#3886] / [i915#5354] / [i915#6095]) +1 similar issue [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-4/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_rc_ccs_cc: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#3689] / [i915#3886] / [i915#5354]) +11 similar issues [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-5/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc: - shard-rkl: NOTRUN -> [SKIP][113] ([i915#5354] / [i915#6095]) +4 similar issues [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-2/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html - shard-tglu: NOTRUN -> [SKIP][114] ([i915#5354] / [i915#6095]) +4 similar issues [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-6/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc: - shard-mtlp: NOTRUN -> [SKIP][115] ([i915#3886] / [i915#6095]) +1 similar issue [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-2/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#5354]) +29 similar issues [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-2/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs.html - shard-rkl: NOTRUN -> [SKIP][117] ([i915#5354]) +9 similar issues [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-7/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_rc_ccs_cc: - shard-mtlp: NOTRUN -> [SKIP][118] ([i915#6095]) +4 similar issues [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-3/igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-d-crc-primary-basic-4_tiled_dg2_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][119] ([i915#3689] / [i915#5354] / [i915#6095]) +1 similar issue [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-8/igt@kms_ccs@pipe-d-crc-primary-basic-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-yf_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][120] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-6/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-yf_tiled_ccs.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#4087] / [i915#7213]) +3 similar issues [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-6/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#4087]) +3 similar issues [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-10/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html * igt@kms_chamelium_audio@dp-audio-edid: - shard-tglu: NOTRUN -> [SKIP][123] ([i915#7828]) +2 similar issues [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-9/igt@kms_chamelium_audio@dp-audio-edid.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-dg2: NOTRUN -> [SKIP][124] ([fdo#111827]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-12/igt@kms_chamelium_color@ctm-green-to-red.html - shard-rkl: NOTRUN -> [SKIP][125] ([fdo#111827]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-4/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_frames@hdmi-crc-multiple: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#7828]) +6 similar issues [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-1/igt@kms_chamelium_frames@hdmi-crc-multiple.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: NOTRUN -> [SKIP][127] ([i915#7828]) +4 similar issues [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-4/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode: - shard-mtlp: NOTRUN -> [SKIP][128] ([i915#7828]) +5 similar issues [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-3/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html * igt@kms_content_protection@atomic-dpms: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#7118]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-2/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@atomic-dpms@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][130] ([i915#7173]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-11/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#3299]) +1 similar issue [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-3/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#7118]) +1 similar issue [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-5/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#3359]) +3 similar issues [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-11/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#3555]) +4 similar issues [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-11/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-mtlp: NOTRUN -> [SKIP][135] ([i915#3359]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-7/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-rkl: NOTRUN -> [SKIP][136] ([i915#3359]) +1 similar issue [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-512x512.html - shard-tglu: NOTRUN -> [SKIP][137] ([i915#3359]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#4103] / [i915#4213]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipa-toggle: - shard-snb: [PASS][139] -> [ABORT][140] ([i915#8865]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-snb4/igt@kms_cursor_legacy@cursora-vs-flipa-toggle.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-snb7/igt@kms_cursor_legacy@cursora-vs-flipa-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][141] ([fdo#109274] / [i915#5354]) +3 similar issues [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][142] ([fdo#111767] / [i915#3546]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-mtlp: NOTRUN -> [SKIP][143] ([i915#3546]) +1 similar issue [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-6/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-rkl: NOTRUN -> [SKIP][144] ([fdo#111825]) +1 similar issue [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-7/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html - shard-tglu: NOTRUN -> [SKIP][145] ([fdo#109274]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-8/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-apl: [PASS][146] -> [FAIL][147] ([i915#2346]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions: - shard-snb: [PASS][148] -> [SKIP][149] ([fdo#109271]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-snb2/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-snb2/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.html * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2 (NEW): - shard-glk: NOTRUN -> [SKIP][150] ([fdo#109271]) +5 similar issues [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-glk8/igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-dp-1 (NEW): - shard-apl: NOTRUN -> [SKIP][151] ([fdo#109271]) +2 similar issues [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-apl1/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-dp-1.html * igt@kms_dsc@dsc-basic: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#3555] / [i915#3840]) +1 similar issue [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-11/igt@kms_dsc@dsc-basic.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#3469]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-1/igt@kms_fbcon_fbt@psr.html * igt@kms_flip@2x-dpms-vs-vblank-race-interruptible: - shard-tglu: NOTRUN -> [SKIP][154] ([fdo#109274] / [i915#3637]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-9/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2: - shard-glk: [PASS][155] -> [FAIL][156] ([i915#79]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-glk8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#3637]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-2/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][158] ([fdo#109274]) +2 similar issues [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-6/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-dg1: NOTRUN -> [SKIP][159] ([fdo#111825]) +1 similar issue [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg1-19/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#8381]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-12/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@c-dp4: - shard-dg2: NOTRUN -> [FAIL][161] ([fdo#103375]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-11/igt@kms_flip@flip-vs-suspend-interruptible@c-dp4.html * igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a2: - shard-glk: [PASS][162] -> [FAIL][163] ([i915#2122]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-glk6/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a2.html [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-glk3/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a2.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#2672]) +1 similar issue [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#2672]) +2 similar issues [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#2672]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt: - shard-dg2: [PASS][167] -> [FAIL][168] ([i915#6880]) +1 similar issue [167]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][169] ([fdo#111825] / [i915#1825]) +9 similar issues [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#8708]) +11 similar issues [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite: - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#1825]) +9 similar issues [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][172] ([fdo#109280]) +7 similar issues [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#8708]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][174] ([i915#8708]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#3458]) +8 similar issues [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-12/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#3023]) +5 similar issues [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite: - shard-tglu: NOTRUN -> [SKIP][177] ([fdo#110189]) +8 similar issues [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_hdr@bpc-switch: - shard-rkl: NOTRUN -> [SKIP][178] ([i915#3555] / [i915#8228]) +1 similar issue [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-7/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#3555] / [i915#8228]) +1 similar issue [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-5/igt@kms_hdr@static-toggle-suspend.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#6953]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-5/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][181] ([i915#8292]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg1-17/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-c-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#5176]) +7 similar issues [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-c-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][183] ([i915#5176]) +3 similar issues [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-7/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-edp-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][184] ([i915#5176]) +3 similar issues [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-4/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-d-hdmi-a-1.html * igt@kms_plane_scaling@plane-upscale-with-modifiers-factor-0-25@pipe-a-vga-1: - shard-snb: NOTRUN -> [SKIP][185] ([fdo#109271]) +198 similar issues [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-snb2/igt@kms_plane_scaling@plane-upscale-with-modifiers-factor-0-25@pipe-a-vga-1.html * igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][186] ([i915#5176]) +11 similar issues [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][187] ([i915#5176]) +15 similar issues [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg1-18/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@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#5235]) +3 similar issues [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#5235]) +15 similar issues [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#5235]) +3 similar issues [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-1/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][191] ([i915#5235]) +11 similar issues [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/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-sf: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#658]) +2 similar issues [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-10/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#658]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-4/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html - shard-tglu: NOTRUN -> [SKIP][194] ([i915#658]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-10/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr@cursor_mmap_cpu: - shard-rkl: NOTRUN -> [SKIP][195] ([i915#1072]) +2 similar issues [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-2/igt@kms_psr@cursor_mmap_cpu.html * igt@kms_psr@primary_page_flip: - shard-dg1: NOTRUN -> [SKIP][196] ([i915#1072]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg1-19/igt@kms_psr@primary_page_flip.html * igt@kms_psr@psr2_sprite_render: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#1072]) +2 similar issues [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-3/igt@kms_psr@psr2_sprite_render.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#5461] / [i915#658]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@exhaust-fences: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#4235]) +1 similar issue [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-5/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg1: [PASS][200] -> [DMESG-WARN][201] ([i915#1982]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-dg1-18/igt@kms_rotation_crc@primary-rotation-270.html [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg1-15/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#5289]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-mtlp: NOTRUN -> [SKIP][203] ([i915#4235]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-6/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_selftest@drm_plane: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#8661]) +2 similar issues [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-12/igt@kms_selftest@drm_plane.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-rkl: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#4098]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-2/igt@kms_setmode@invalid-clone-single-crtc-stealing.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#8623]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_universal_plane@universal-plane-pipe-d-functional: - shard-rkl: NOTRUN -> [SKIP][207] ([i915#4070] / [i915#533] / [i915#6768]) +1 similar issue [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-6/igt@kms_universal_plane@universal-plane-pipe-d-functional.html * igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend: - shard-snb: NOTRUN -> [DMESG-WARN][208] ([i915#8841]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-snb4/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html * igt@kms_vblank@pipe-c-query-forked-busy: - shard-rkl: NOTRUN -> [SKIP][209] ([i915#4070] / [i915#6768]) +2 similar issues [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-6/igt@kms_vblank@pipe-c-query-forked-busy.html * igt@kms_vblank@pipe-d-ts-continuation-suspend: - shard-mtlp: [PASS][210] -> [ABORT][211] ([i915#6311] / [i915#8466]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-mtlp-3/igt@kms_vblank@pipe-d-ts-continuation-suspend.html [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-1/igt@kms_vblank@pipe-d-ts-continuation-suspend.html * igt@kms_writeback@writeback-fb-id: - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#2437]) +1 similar issue [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-3/igt@kms_writeback@writeback-fb-id.html * igt@perf_pmu@busy-idle-check-all@bcs0: - shard-mtlp: [PASS][213] -> [FAIL][214] ([i915#4521]) +1 similar issue [213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-mtlp-7/igt@perf_pmu@busy-idle-check-all@bcs0.html [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-5/igt@perf_pmu@busy-idle-check-all@bcs0.html * igt@perf_pmu@busy-idle-check-all@vcs0: - shard-dg2: [PASS][215] -> [FAIL][216] ([i915#4349]) +8 similar issues [215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-dg2-3/igt@perf_pmu@busy-idle-check-all@vcs0.html [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-1/igt@perf_pmu@busy-idle-check-all@vcs0.html - shard-dg1: [PASS][217] -> [FAIL][218] ([i915#4349]) +3 similar issues [217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-dg1-15/igt@perf_pmu@busy-idle-check-all@vcs0.html [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg1-18/igt@perf_pmu@busy-idle-check-all@vcs0.html * igt@perf_pmu@busy-idle-check-all@vecs0: - shard-mtlp: [PASS][219] -> [FAIL][220] ([i915#4349]) +3 similar issues [219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-mtlp-7/igt@perf_pmu@busy-idle-check-all@vecs0.html [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-5/igt@perf_pmu@busy-idle-check-all@vecs0.html * igt@prime_vgem@basic-read: - shard-rkl: NOTRUN -> [SKIP][221] ([fdo#109295] / [i915#3291] / [i915#3708]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-2/igt@prime_vgem@basic-read.html * igt@prime_vgem@fence-flip-hang: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#3708]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-6/igt@prime_vgem@fence-flip-hang.html * igt@v3d/v3d_get_bo_offset@create-get-offsets: - shard-dg1: NOTRUN -> [SKIP][223] ([i915#2575]) +1 similar issue [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg1-16/igt@v3d/v3d_get_bo_offset@create-get-offsets.html * igt@v3d/v3d_job_submission@array-job-submission: - shard-rkl: NOTRUN -> [SKIP][224] ([fdo#109315]) +4 similar issues [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-2/igt@v3d/v3d_job_submission@array-job-submission.html - shard-tglu: NOTRUN -> [SKIP][225] ([fdo#109315] / [i915#2575]) +2 similar issues [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-8/igt@v3d/v3d_job_submission@array-job-submission.html * igt@v3d/v3d_submit_cl@valid-multisync-submission: - shard-mtlp: NOTRUN -> [SKIP][226] ([i915#2575]) +3 similar issues [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-7/igt@v3d/v3d_submit_cl@valid-multisync-submission.html * igt@v3d/v3d_submit_csd@single-out-sync: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#2575]) +6 similar issues [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-6/igt@v3d/v3d_submit_csd@single-out-sync.html * igt@vc4/vc4_mmap@mmap-bo: - shard-mtlp: NOTRUN -> [SKIP][228] ([i915#7711]) +2 similar issues [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-7/igt@vc4/vc4_mmap@mmap-bo.html * igt@vc4/vc4_purgeable_bo@mark-unpurgeable-purged: - shard-tglu: NOTRUN -> [SKIP][229] ([i915#2575]) +1 similar issue [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-10/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-purged.html * igt@vc4/vc4_tiling@get-bad-modifier: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#7711]) +3 similar issues [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-3/igt@vc4/vc4_tiling@get-bad-modifier.html * igt@vc4/vc4_wait_bo@bad-bo: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#7711]) +1 similar issue [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-7/igt@vc4/vc4_wait_bo@bad-bo.html #### Possible fixes #### * igt@core_hotunplug@unbind-rebind: - shard-snb: [ABORT][232] ([i915#4528] / [i915#8213]) -> [PASS][233] [232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-snb5/igt@core_hotunplug@unbind-rebind.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-snb6/igt@core_hotunplug@unbind-rebind.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [FAIL][234] ([i915#6268]) -> [PASS][235] [234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-rkl-7/igt@gem_ctx_exec@basic-nohangcheck.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-1/igt@gem_ctx_exec@basic-nohangcheck.html - shard-tglu: [FAIL][236] ([i915#6268]) -> [PASS][237] [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-tglu-10/igt@gem_ctx_exec@basic-nohangcheck.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-4/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_eio@reset-stress: - shard-dg1: [FAIL][238] ([i915#5784]) -> [PASS][239] [238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-dg1-13/igt@gem_eio@reset-stress.html [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg1-16/igt@gem_eio@reset-stress.html * igt@gem_exec_suspend@basic-s0@smem: - shard-dg1: [DMESG-WARN][240] ([i915#4423]) -> [PASS][241] [240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-dg1-13/igt@gem_exec_suspend@basic-s0@smem.html [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg1-15/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_userptr_blits@nohangcheck: - shard-mtlp: [FAIL][242] ([i915#6268]) -> [PASS][243] [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-mtlp-3/igt@gem_userptr_blits@nohangcheck.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-2/igt@gem_userptr_blits@nohangcheck.html * igt@i915_hangman@gt-engine-hang@vcs0: - shard-mtlp: [FAIL][244] ([i915#7069]) -> [PASS][245] [244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-mtlp-7/igt@i915_hangman@gt-engine-hang@vcs0.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-2/igt@i915_hangman@gt-engine-hang@vcs0.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [SKIP][246] ([fdo#109271]) -> [PASS][247] [246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-apl3/igt@i915_pm_dc@dc9-dpms.html [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-apl3/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-mtlp: [SKIP][248] ([i915#8403]) -> [PASS][249] [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-mtlp-2/igt@i915_pm_rc6_residency@rc6-accuracy.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-3/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-rkl: [SKIP][250] ([i915#1397]) -> [PASS][251] +3 similar issues [250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-rkl-7/igt@i915_pm_rpm@dpms-non-lpsp.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-4/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: [SKIP][252] ([i915#1397]) -> [PASS][253] +1 similar issue [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-dg2-5/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-12/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@i915_pm_rpm@system-suspend: - shard-dg2: [INCOMPLETE][254] ([i915#8575] / [i915#9142]) -> [PASS][255] [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-dg2-5/igt@i915_pm_rpm@system-suspend.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-10/igt@i915_pm_rpm@system-suspend.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-mtlp: [FAIL][256] ([i915#3743]) -> [PASS][257] [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-mtlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][258] ([i915#2346]) -> [PASS][259] [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@single-bo@all-pipes: - shard-mtlp: [DMESG-WARN][260] ([i915#2017]) -> [PASS][261] [260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-mtlp-4/igt@kms_cursor_legacy@single-bo@all-pipes.html [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-7/igt@kms_cursor_legacy@single-bo@all-pipes.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1: - shard-apl: [FAIL][262] ([i915#79]) -> [PASS][263] [262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-apl1/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-apl4/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [FAIL][264] ([i915#4349]) -> [PASS][265] +3 similar issues [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-dg2-3/igt@perf_pmu@busy-double-start@vecs1.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html #### Warnings #### * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-dg1: [SKIP][266] ([i915#3359] / [i915#4423]) -> [SKIP][267] ([i915#3359]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-dg1-13/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg1-13/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_psr@cursor_plane_move: - shard-dg1: [SKIP][268] ([i915#1072] / [i915#4078]) -> [SKIP][269] ([i915#1072]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-dg1-18/igt@kms_psr@cursor_plane_move.html [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg1-14/igt@kms_psr@cursor_plane_move.html * igt@kms_psr@sprite_plane_onoff: - shard-dg1: [SKIP][270] ([i915#1072]) -> [SKIP][271] ([i915#1072] / [i915#4078]) +1 similar issue [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-dg1-14/igt@kms_psr@sprite_plane_onoff.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg1-13/igt@kms_psr@sprite_plane_onoff.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [INCOMPLETE][272] ([i915#5493]) -> [CRASH][273] ([i915#7331]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-dg2-1/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-1/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [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#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#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4475]: https://gitlab.freedesktop.org/drm/intel/issues/4475 [i915#4521]: https://gitlab.freedesktop.org/drm/intel/issues/4521 [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107 [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#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#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5978]: https://gitlab.freedesktop.org/drm/intel/issues/5978 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6311]: https://gitlab.freedesktop.org/drm/intel/issues/6311 [i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344 [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 [i915#7091]: https://gitlab.freedesktop.org/drm/intel/issues/7091 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297 [i915#7331]: https://gitlab.freedesktop.org/drm/intel/issues/7331 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7765]: https://gitlab.freedesktop.org/drm/intel/issues/7765 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8403]: https://gitlab.freedesktop.org/drm/intel/issues/8403 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8466]: https://gitlab.freedesktop.org/drm/intel/issues/8466 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8575]: https://gitlab.freedesktop.org/drm/intel/issues/8575 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 [i915#8691]: https://gitlab.freedesktop.org/drm/intel/issues/8691 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8865]: https://gitlab.freedesktop.org/drm/intel/issues/8865 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9059]: https://gitlab.freedesktop.org/drm/intel/issues/9059 [i915#9142]: https://gitlab.freedesktop.org/drm/intel/issues/9142 [i915#9192]: https://gitlab.freedesktop.org/drm/intel/issues/9192 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7452 -> IGTPW_9657 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13565: 12b9d9f2acd6adc09ebdb9d6fb7bd724bc1b8441 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9657: 9657 IGT_7452: 7452 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/index.html [-- Attachment #2: Type: text/html, Size: 90267 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for Testcases for dirtyfb ioctl (rev2) 2023-08-25 21:07 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-08-29 5:50 ` Hogander, Jouni 0 siblings, 0 replies; 13+ messages in thread From: Hogander, Jouni @ 2023-08-29 5:50 UTC (permalink / raw) To: igt-dev@lists.freedesktop.org [-- Attachment #1: Type: text/plain, Size: 75321 bytes --] Hello all, Possible regressions reported by CI here are all expected SKIPs. BR, Jouni Högander On Fri, 2023-08-25 at 21:07 +0000, Patchwork wrote: Patch Details Series: Testcases for dirtyfb ioctl (rev2) URL: https://patchwork.freedesktop.org/series/122833/ State: failure Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/index.html CI Bug Log - changes from CI_DRM_13565_full -> IGTPW_9657_full Summary FAILURE Serious unknown changes coming with IGTPW_9657_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9657_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_9657/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_9657_full: IGT changes Possible regressions * {igt@kms_dirtyfb@dirtyfb-ioctl@drrs-edp-1} (NEW): * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-8/igt@kms_dirtyfb@dirtyfb-ioctl@drrs-edp-1.html> * {igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-3} (NEW): * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-6/igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-3.html> +2 similar issues * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1 (NEW): * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-7/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1.html> +2 similar issues * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg1-19/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1.html> +2 similar issues * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-10/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1.html> +2 similar issues New tests New tests have been introduced between CI_DRM_13565_full and IGTPW_9657_full: New IGT tests (25) * igt@kms_dirtyfb@dirtyfb-ioctl: * Statuses : * Exec time: [None] s * igt@kms_dirtyfb@dirtyfb-ioctl@default-dp-1: * Statuses : 1 pass(s) * Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@default-edp-1: * Statuses : 1 pass(s) * Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@default-hdmi-a-1: * Statuses : 4 pass(s) * Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@default-hdmi-a-2: * Statuses : 1 pass(s) * Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@default-hdmi-a-3: * Statuses : 1 pass(s) * Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@default-vga-1: * Statuses : 1 pass(s) * Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-dp-1: * Statuses : 1 skip(s) * Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-edp-1: * Statuses : 1 skip(s) * Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-1: * Statuses : 4 skip(s) * Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2: * Statuses : 1 skip(s) * Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-3: * Statuses : 1 skip(s) * Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-vga-1: * Statuses : 1 skip(s) * Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-dp-1: * Statuses : 1 skip(s) * Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-edp-1: * Statuses : 1 pass(s) * Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-1: * Statuses : 4 skip(s) * Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2: * Statuses : 1 skip(s) * Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-3: * Statuses : 1 skip(s) * Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-vga-1: * Statuses : 1 skip(s) * Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@psr-dp-1: * Statuses : 1 skip(s) * Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@psr-edp-1: * Statuses : 1 pass(s) * Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1: * Statuses : 4 skip(s) * Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-2: * Statuses : 1 skip(s) * Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-3: * Statuses : 1 skip(s) * Exec time: [0.0] s * igt@kms_dirtyfb@dirtyfb-ioctl@psr-vga-1: * Statuses : 1 skip(s) * Exec time: [0.0] s Known issues Here are the changes found in IGTPW_9657_full that come from known issues: IGT changes Issues hit * igt@device_reset@cold-reset-bound: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-11/igt@device_reset@cold-reset-bound.html> (i915#7701<https://gitlab.freedesktop.org/drm/intel/issues/7701>) +1 similar issue * igt@drm_buddy@drm_buddy_test: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-snb4/igt@drm_buddy@drm_buddy_test.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#8661<https://gitlab.freedesktop.org/drm/intel/issues/8661>) +1 similar issue * igt@drm_fdinfo@all-busy-check-all: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-7/igt@drm_fdinfo@all-busy-check-all.html> (i915#8414<https://gitlab.freedesktop.org/drm/intel/issues/8414>) * igt@drm_fdinfo@most-busy-idle-check-all@vecs1: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-11/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html> (i915#8414<https://gitlab.freedesktop.org/drm/intel/issues/8414>) +11 similar issues * igt@feature_discovery@display-2x: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-3/igt@feature_discovery@display-2x.html> (i915#1839<https://gitlab.freedesktop.org/drm/intel/issues/1839>) * igt@gem_busy@semaphore: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-12/igt@gem_busy@semaphore.html> (i915#3936<https://gitlab.freedesktop.org/drm/intel/issues/3936>) * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-dg2-8/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-1/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html> (i915#6311<https://gitlab.freedesktop.org/drm/intel/issues/6311> / i915#7297<https://gitlab.freedesktop.org/drm/intel/issues/7297>) * igt@gem_ctx_exec@basic-nohangcheck: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-dg2-6/igt@gem_ctx_exec@basic-nohangcheck.html> -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-1/igt@gem_ctx_exec@basic-nohangcheck.html> (i915#9192<https://gitlab.freedesktop.org/drm/intel/issues/9192>) * igt@gem_ctx_persistence@engines-hang@vcs0: * shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-mtlp-4/igt@gem_ctx_persistence@engines-hang@vcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-3/igt@gem_ctx_persistence@engines-hang@vcs0.html> (i915#2410<https://gitlab.freedesktop.org/drm/intel/issues/2410>) * igt@gem_ctx_persistence@process: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-snb5/igt@gem_ctx_persistence@process.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#1099<https://gitlab.freedesktop.org/drm/intel/issues/1099>) +1 similar issue * igt@gem_ctx_sseu@invalid-args: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-12/igt@gem_ctx_sseu@invalid-args.html> (i915#280<https://gitlab.freedesktop.org/drm/intel/issues/280>) * igt@gem_eio@in-flight-suspend: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-dg2-2/igt@gem_eio@in-flight-suspend.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-6/igt@gem_eio@in-flight-suspend.html> (fdo#103375<https://bugs.freedesktop.org/show_bug.cgi?id=103375>) * igt@gem_eio@reset-stress: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-dg2-12/igt@gem_eio@reset-stress.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-8/igt@gem_eio@reset-stress.html> (i915#5784<https://gitlab.freedesktop.org/drm/intel/issues/5784>) * igt@gem_exec_capture@capture-recoverable: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-3/igt@gem_exec_capture@capture-recoverable.html> (i915#6344<https://gitlab.freedesktop.org/drm/intel/issues/6344>) * igt@gem_exec_capture@pi@vcs0: * shard-mtlp: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-5/igt@gem_exec_capture@pi@vcs0.html> (i915#4475<https://gitlab.freedesktop.org/drm/intel/issues/4475>) * igt@gem_exec_capture@pi@vecs0: * shard-mtlp: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-5/igt@gem_exec_capture@pi@vecs0.html> (i915#4475<https://gitlab.freedesktop.org/drm/intel/issues/4475> / i915#7765<https://gitlab.freedesktop.org/drm/intel/issues/7765>) * igt@gem_exec_fair@basic-pace-solo@rcs0: * shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-apl3/igt@gem_exec_fair@basic-pace-solo@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-apl2/igt@gem_exec_fair@basic-pace-solo@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) * igt@gem_exec_fair@basic-pace@vcs0: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-glk7/igt@gem_exec_fair@basic-pace@vcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-glk3/igt@gem_exec_fair@basic-pace@vcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) * igt@gem_exec_fair@basic-sync: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-1/igt@gem_exec_fair@basic-sync.html> (i915#3539<https://gitlab.freedesktop.org/drm/intel/issues/3539>) +1 similar issue * igt@gem_exec_fair@basic-throttle@rcs0: * shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-rkl-2/igt@gem_exec_fair@basic-throttle@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-1/igt@gem_exec_fair@basic-throttle@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) +1 similar issue * igt@gem_exec_flush@basic-uc-rw-default: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-10/igt@gem_exec_flush@basic-uc-rw-default.html> (i915#3539<https://gitlab.freedesktop.org/drm/intel/issues/3539> / i915#4852<https://gitlab.freedesktop.org/drm/intel/issues/4852>) +1 similar issue * igt@gem_exec_params@rsvd2-dirt: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-4/igt@gem_exec_params@rsvd2-dirt.html> (i915#5107<https://gitlab.freedesktop.org/drm/intel/issues/5107>) * igt@gem_exec_reloc@basic-cpu-wc-noreloc: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-2/igt@gem_exec_reloc@basic-cpu-wc-noreloc.html> (i915#3281<https://gitlab.freedesktop.org/drm/intel/issues/3281>) +1 similar issue * igt@gem_exec_reloc@basic-gtt-cpu-active: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-2/igt@gem_exec_reloc@basic-gtt-cpu-active.html> (i915#3281<https://gitlab.freedesktop.org/drm/intel/issues/3281>) +4 similar issues * igt@gem_exec_reloc@basic-wc: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-5/igt@gem_exec_reloc@basic-wc.html> (i915#3281<https://gitlab.freedesktop.org/drm/intel/issues/3281>) +5 similar issues * igt@gem_exec_suspend@basic-s0@lmem0: * shard-dg2: NOTRUN -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-2/igt@gem_exec_suspend@basic-s0@lmem0.html> (i915#6311<https://gitlab.freedesktop.org/drm/intel/issues/6311>) * igt@gem_fenced_exec_thrash@2-spare-fences: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-12/igt@gem_fenced_exec_thrash@2-spare-fences.html> (i915#4860<https://gitlab.freedesktop.org/drm/intel/issues/4860>) +1 similar issue * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-8/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html> (i915#4860<https://gitlab.freedesktop.org/drm/intel/issues/4860>) +1 similar issue * igt@gem_lmem_swapping@basic: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-5/igt@gem_lmem_swapping@basic.html> (i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>) +2 similar issues * igt@gem_lmem_swapping@smem-oom@lmem0: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-dg2-6/igt@gem_lmem_swapping@smem-oom@lmem0.html> -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-3/igt@gem_lmem_swapping@smem-oom@lmem0.html> (i915#5493<https://gitlab.freedesktop.org/drm/intel/issues/5493>) * shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html> -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html> (i915#5493<https://gitlab.freedesktop.org/drm/intel/issues/5493>) * igt@gem_lmem_swapping@verify: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-4/igt@gem_lmem_swapping@verify.html> (i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>) * igt@gem_mmap@bad-size: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-4/igt@gem_mmap@bad-size.html> (i915#4083<https://gitlab.freedesktop.org/drm/intel/issues/4083>) +1 similar issue * igt@gem_mmap_gtt@basic-write-cpu-read-gtt: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-8/igt@gem_mmap_gtt@basic-write-cpu-read-gtt.html> (i915#4077<https://gitlab.freedesktop.org/drm/intel/issues/4077>) +1 similar issue * igt@gem_mmap_gtt@big-bo: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-10/igt@gem_mmap_gtt@big-bo.html> (i915#4077<https://gitlab.freedesktop.org/drm/intel/issues/4077>) +4 similar issues * igt@gem_mmap_wc@copy: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-12/igt@gem_mmap_wc@copy.html> (i915#4083<https://gitlab.freedesktop.org/drm/intel/issues/4083>) +5 similar issues * igt@gem_partial_pwrite_pread@reads: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-10/igt@gem_partial_pwrite_pread@reads.html> (i915#3282<https://gitlab.freedesktop.org/drm/intel/issues/3282>) +2 similar issues * igt@gem_ppgtt@flink-and-close-vma-leak: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-glk5/igt@gem_ppgtt@flink-and-close-vma-leak.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-glk9/igt@gem_ppgtt@flink-and-close-vma-leak.html> (i915#9059<https://gitlab.freedesktop.org/drm/intel/issues/9059>) * igt@gem_pxp@display-protected-crc: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-10/igt@gem_pxp@display-protected-crc.html> (i915#4270<https://gitlab.freedesktop.org/drm/intel/issues/4270>) +2 similar issues * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-2/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html> (i915#4270<https://gitlab.freedesktop.org/drm/intel/issues/4270>) * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-6/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html> (i915#4270<https://gitlab.freedesktop.org/drm/intel/issues/4270>) * igt@gem_pxp@verify-pxp-stale-buf-execution: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-6/igt@gem_pxp@verify-pxp-stale-buf-execution.html> (i915#4270<https://gitlab.freedesktop.org/drm/intel/issues/4270>) * igt@gem_readwrite@beyond-eob: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-7/igt@gem_readwrite@beyond-eob.html> (i915#3282<https://gitlab.freedesktop.org/drm/intel/issues/3282>) +1 similar issue * igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-3/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html> (i915#5190<https://gitlab.freedesktop.org/drm/intel/issues/5190>) +9 similar issues * igt@gem_userptr_blits@access-control: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-1/igt@gem_userptr_blits@access-control.html> (i915#3297<https://gitlab.freedesktop.org/drm/intel/issues/3297>) +1 similar issue * igt@gem_userptr_blits@readonly-unsync: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-6/igt@gem_userptr_blits@readonly-unsync.html> (i915#3297<https://gitlab.freedesktop.org/drm/intel/issues/3297>) * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-9/igt@gem_userptr_blits@readonly-unsync.html> (i915#3297<https://gitlab.freedesktop.org/drm/intel/issues/3297>) * igt@gem_userptr_blits@vma-merge: * shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-10/igt@gem_userptr_blits@vma-merge.html> (i915#3318<https://gitlab.freedesktop.org/drm/intel/issues/3318>) * igt@gen3_render_linear_blits: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-3/igt@gen3_render_linear_blits.html> (fdo#109289<https://bugs.freedesktop.org/show_bug.cgi?id=109289>) +6 similar issues * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-6/igt@gen3_render_linear_blits.html> (fdo#109289<https://bugs.freedesktop.org/show_bug.cgi?id=109289>) +2 similar issues * igt@gen7_exec_parse@batch-without-end: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-6/igt@gen7_exec_parse@batch-without-end.html> (fdo#109289<https://bugs.freedesktop.org/show_bug.cgi?id=109289>) * igt@gen9_exec_parse@allowed-single: * shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-apl1/igt@gen9_exec_parse@allowed-single.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-apl2/igt@gen9_exec_parse@allowed-single.html> (i915#5566<https://gitlab.freedesktop.org/drm/intel/issues/5566>) * igt@gen9_exec_parse@secure-batches: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-1/igt@gen9_exec_parse@secure-batches.html> (i915#2856<https://gitlab.freedesktop.org/drm/intel/issues/2856>) * igt@gen9_exec_parse@valid-registers: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-1/igt@gen9_exec_parse@valid-registers.html> (i915#2856<https://gitlab.freedesktop.org/drm/intel/issues/2856>) +1 similar issue * igt@i915_module_load@load: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-4/igt@i915_module_load@load.html> (i915#6227<https://gitlab.freedesktop.org/drm/intel/issues/6227>) * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-1/igt@i915_module_load@load.html> (i915#6227<https://gitlab.freedesktop.org/drm/intel/issues/6227>) * igt@i915_module_load@resize-bar: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-4/igt@i915_module_load@resize-bar.html> (i915#6412<https://gitlab.freedesktop.org/drm/intel/issues/6412>) * igt@i915_pipe_stress@stress-xrgb8888-untiled: * shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-mtlp-7/igt@i915_pipe_stress@stress-xrgb8888-untiled.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-2/igt@i915_pipe_stress@stress-xrgb8888-untiled.html> (i915#8691<https://gitlab.freedesktop.org/drm/intel/issues/8691>) * igt@i915_pipe_stress@stress-xrgb8888-ytiled: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-3/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html> (i915#7091<https://gitlab.freedesktop.org/drm/intel/issues/7091>) * igt@i915_pm_dc@dc6-dpms: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-11/igt@i915_pm_dc@dc6-dpms.html> (i915#5978<https://gitlab.freedesktop.org/drm/intel/issues/5978>) * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-1/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html> (i915#1937<https://gitlab.freedesktop.org/drm/intel/issues/1937>) * igt@i915_pm_rc6_residency@rc6-idle@rcs0: * shard-tglu: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-8/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> (i915#2681<https://gitlab.freedesktop.org/drm/intel/issues/2681>) +3 similar issues * igt@i915_pm_rc6_residency@rc6-idle@vecs0: * shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html> (i915#3591<https://gitlab.freedesktop.org/drm/intel/issues/3591>) +1 similar issue * igt@i915_pm_rpm@dpms-non-lpsp: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-2/igt@i915_pm_rpm@dpms-non-lpsp.html> (i915#1397<https://gitlab.freedesktop.org/drm/intel/issues/1397>) * igt@i915_pm_rpm@modeset-lpsp-stress: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-dg2-12/igt@i915_pm_rpm@modeset-lpsp-stress.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-11/igt@i915_pm_rpm@modeset-lpsp-stress.html> (i915#1397<https://gitlab.freedesktop.org/drm/intel/issues/1397>) +1 similar issue * igt@i915_pm_rpm@modeset-pc8-residency-stress: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-11/igt@i915_pm_rpm@modeset-pc8-residency-stress.html> (fdo#109506<https://bugs.freedesktop.org/show_bug.cgi?id=109506>) * igt@i915_pm_rps@min-max-config-loaded: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-5/igt@i915_pm_rps@min-max-config-loaded.html> (i915#6621<https://gitlab.freedesktop.org/drm/intel/issues/6621>) * igt@i915_pm_rps@thresholds@gt0: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-5/igt@i915_pm_rps@thresholds@gt0.html> (i915#8925<https://gitlab.freedesktop.org/drm/intel/issues/8925>) * igt@kms_addfb_basic@basic-y-tiled-legacy: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-5/igt@kms_addfb_basic@basic-y-tiled-legacy.html> (i915#4215<https://gitlab.freedesktop.org/drm/intel/issues/4215> / i915#5190<https://gitlab.freedesktop.org/drm/intel/issues/5190>) * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-2-y-rc_ccs: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-2-y-rc_ccs.html> (i915#8502<https://gitlab.freedesktop.org/drm/intel/issues/8502>) +3 similar issues * igt@kms_async_flips@crc@pipe-a-hdmi-a-3: * shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-6/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html> (i915#8247<https://gitlab.freedesktop.org/drm/intel/issues/8247>) +3 similar issues * igt@kms_async_flips@crc@pipe-c-hdmi-a-1: * shard-dg1: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg1-19/igt@kms_async_flips@crc@pipe-c-hdmi-a-1.html> (i915#8247<https://gitlab.freedesktop.org/drm/intel/issues/8247>) +3 similar issues * igt@kms_big_fb@4-tiled-64bpp-rotate-0: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-7/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html> (i915#5286<https://gitlab.freedesktop.org/drm/intel/issues/5286>) * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-5/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html> (fdo#111615<https://bugs.freedesktop.org/show_bug.cgi?id=111615> / i915#5286<https://gitlab.freedesktop.org/drm/intel/issues/5286>) * igt@kms_big_fb@4-tiled-64bpp-rotate-270: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-12/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html> (fdo#111614<https://bugs.freedesktop.org/show_bug.cgi?id=111614>) +1 similar issue * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: * shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html> (i915#5138<https://gitlab.freedesktop.org/drm/intel/issues/5138>) * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: * shard-mtlp: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html> (i915#5138<https://gitlab.freedesktop.org/drm/intel/issues/5138>) * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: * shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html> (i915#3743<https://gitlab.freedesktop.org/drm/intel/issues/3743>) +1 similar issue * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg1-14/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html> (i915#4538<https://gitlab.freedesktop.org/drm/intel/issues/4538> / i915#5286<https://gitlab.freedesktop.org/drm/intel/issues/5286>) * igt@kms_big_fb@x-tiled-64bpp-rotate-90: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-1/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html> (fdo#111614<https://bugs.freedesktop.org/show_bug.cgi?id=111614>) +1 similar issue * igt@kms_big_fb@y-tiled-8bpp-rotate-180: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-8/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html> (fdo#111615<https://bugs.freedesktop.org/show_bug.cgi?id=111615>) +2 similar issues * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-6/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html> (i915#4538<https://gitlab.freedesktop.org/drm/intel/issues/4538> / i915#5190<https://gitlab.freedesktop.org/drm/intel/issues/5190>) +2 similar issues * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-7/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html> (fdo#110723<https://bugs.freedesktop.org/show_bug.cgi?id=110723>) * igt@kms_big_joiner@basic: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-12/igt@kms_big_joiner@basic.html> (i915#2705<https://gitlab.freedesktop.org/drm/intel/issues/2705>) * igt@kms_big_joiner@invalid-modeset: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-4/igt@kms_big_joiner@invalid-modeset.html> (i915#2705<https://gitlab.freedesktop.org/drm/intel/issues/2705>) * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-2/igt@kms_big_joiner@invalid-modeset.html> (i915#2705<https://gitlab.freedesktop.org/drm/intel/issues/2705>) * igt@kms_ccs@pipe-a-crc-primary-basic-yf_tiled_ccs: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-6/igt@kms_ccs@pipe-a-crc-primary-basic-yf_tiled_ccs.html> (i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354>) +13 similar issues * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-3/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html> (i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886> / i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354> / i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>) * igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-4/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs.html> (i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886> / i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354> / i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>) +1 similar issue * igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_rc_ccs_cc: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-5/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_rc_ccs_cc.html> (i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886> / i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354>) +11 similar issues * igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-2/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html> (i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354> / i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>) +4 similar issues * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-6/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html> (i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354> / i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>) +4 similar issues * igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-2/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html> (i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886> / i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>) +1 similar issue * igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-2/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs.html> (i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354>) +29 similar issues * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-7/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs.html> (i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354>) +9 similar issues * igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_rc_ccs_cc: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-3/igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_rc_ccs_cc.html> (i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>) +4 similar issues * igt@kms_ccs@pipe-d-crc-primary-basic-4_tiled_dg2_mc_ccs: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-8/igt@kms_ccs@pipe-d-crc-primary-basic-4_tiled_dg2_mc_ccs.html> (i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354> / i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>) +1 similar issue * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-yf_tiled_ccs: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-6/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-yf_tiled_ccs.html> (fdo#111615<https://bugs.freedesktop.org/show_bug.cgi?id=111615> / i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354> / i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>) * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-6/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html> (i915#4087<https://gitlab.freedesktop.org/drm/intel/issues/4087> / i915#7213<https://gitlab.freedesktop.org/drm/intel/issues/7213>) +3 similar issues * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-10/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html> (i915#4087<https://gitlab.freedesktop.org/drm/intel/issues/4087>) +3 similar issues * igt@kms_chamelium_audio@dp-audio-edid: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-9/igt@kms_chamelium_audio@dp-audio-edid.html> (i915#7828<https://gitlab.freedesktop.org/drm/intel/issues/7828>) +2 similar issues * igt@kms_chamelium_color@ctm-green-to-red: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-12/igt@kms_chamelium_color@ctm-green-to-red.html> (fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-4/igt@kms_chamelium_color@ctm-green-to-red.html> (fdo#111827<https://bugs.freedesktop.org/show_bug.cgi?id=111827>) * igt@kms_chamelium_frames@hdmi-crc-multiple: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-1/igt@kms_chamelium_frames@hdmi-crc-multiple.html> (i915#7828<https://gitlab.freedesktop.org/drm/intel/issues/7828>) +6 similar issues * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-4/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html> (i915#7828<https://gitlab.freedesktop.org/drm/intel/issues/7828>) +4 similar issues * igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-3/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html> (i915#7828<https://gitlab.freedesktop.org/drm/intel/issues/7828>) +5 similar issues * igt@kms_content_protection@atomic-dpms: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-2/igt@kms_content_protection@atomic-dpms.html> (i915#7118<https://gitlab.freedesktop.org/drm/intel/issues/7118>) * igt@kms_content_protection@atomic-dpms@pipe-a-dp-4: * shard-dg2: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-11/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html> (i915#7173<https://gitlab.freedesktop.org/drm/intel/issues/7173>) * igt@kms_content_protection@dp-mst-lic-type-1: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-3/igt@kms_content_protection@dp-mst-lic-type-1.html> (i915#3299<https://gitlab.freedesktop.org/drm/intel/issues/3299>) +1 similar issue * igt@kms_content_protection@srm: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-5/igt@kms_content_protection@srm.html> (i915#7118<https://gitlab.freedesktop.org/drm/intel/issues/7118>) +1 similar issue * igt@kms_cursor_crc@cursor-offscreen-512x512: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-11/igt@kms_cursor_crc@cursor-offscreen-512x512.html> (i915#3359<https://gitlab.freedesktop.org/drm/intel/issues/3359>) +3 similar issues * igt@kms_cursor_crc@cursor-rapid-movement-32x32: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-11/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555>) +4 similar issues * igt@kms_cursor_crc@cursor-rapid-movement-512x512: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-7/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html> (i915#3359<https://gitlab.freedesktop.org/drm/intel/issues/3359>) * igt@kms_cursor_crc@cursor-sliding-512x512: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-512x512.html> (i915#3359<https://gitlab.freedesktop.org/drm/intel/issues/3359>) +1 similar issue * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-512x512.html> (i915#3359<https://gitlab.freedesktop.org/drm/intel/issues/3359>) * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html> (i915#4103<https://gitlab.freedesktop.org/drm/intel/issues/4103> / i915#4213<https://gitlab.freedesktop.org/drm/intel/issues/4213>) * igt@kms_cursor_legacy@cursora-vs-flipa-toggle: * shard-snb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-snb4/igt@kms_cursor_legacy@cursora-vs-flipa-toggle.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-snb7/igt@kms_cursor_legacy@cursora-vs-flipa-toggle.html> (i915#8865<https://gitlab.freedesktop.org/drm/intel/issues/8865>) * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274> / i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354>) +3 similar issues * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html> (fdo#111767<https://bugs.freedesktop.org/show_bug.cgi?id=111767> / i915#3546<https://gitlab.freedesktop.org/drm/intel/issues/3546>) * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-6/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html> (i915#3546<https://gitlab.freedesktop.org/drm/intel/issues/3546>) +1 similar issue * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-7/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html> (fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +1 similar issue * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-8/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274>) * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: * shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html> (i915#2346<https://gitlab.freedesktop.org/drm/intel/issues/2346>) * igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions: * shard-snb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-snb2/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-snb2/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2 (NEW): * shard-glk: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-glk8/igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +5 similar issues * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-dp-1 (NEW): * shard-apl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-apl1/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-dp-1.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +2 similar issues * igt@kms_dsc@dsc-basic: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-11/igt@kms_dsc@dsc-basic.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555> / i915#3840<https://gitlab.freedesktop.org/drm/intel/issues/3840>) +1 similar issue * igt@kms_fbcon_fbt@psr: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-1/igt@kms_fbcon_fbt@psr.html> (i915#3469<https://gitlab.freedesktop.org/drm/intel/issues/3469>) * igt@kms_flip@2x-dpms-vs-vblank-race-interruptible: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-9/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274> / i915#3637<https://gitlab.freedesktop.org/drm/intel/issues/3637>) * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-glk8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html> (i915#79<https://gitlab.freedesktop.org/drm/intel/issues/79>) * igt@kms_flip@2x-flip-vs-suspend-interruptible: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-2/igt@kms_flip@2x-flip-vs-suspend-interruptible.html> (i915#3637<https://gitlab.freedesktop.org/drm/intel/issues/3637>) * igt@kms_flip@2x-modeset-vs-vblank-race: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-6/igt@kms_flip@2x-modeset-vs-vblank-race.html> (fdo#109274<https://bugs.freedesktop.org/show_bug.cgi?id=109274>) +2 similar issues * igt@kms_flip@2x-wf_vblank-ts-check: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg1-19/igt@kms_flip@2x-wf_vblank-ts-check.html> (fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +1 similar issue * igt@kms_flip@flip-vs-fences-interruptible: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-12/igt@kms_flip@flip-vs-fences-interruptible.html> (i915#8381<https://gitlab.freedesktop.org/drm/intel/issues/8381>) * igt@kms_flip@flip-vs-suspend-interruptible@c-dp4: * shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-11/igt@kms_flip@flip-vs-suspend-interruptible@c-dp4.html> (fdo#103375<https://bugs.freedesktop.org/show_bug.cgi?id=103375>) * igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a2: * shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-glk6/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a2.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-glk3/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a2.html> (i915#2122<https://gitlab.freedesktop.org/drm/intel/issues/2122>) * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/intel/issues/2672>) +1 similar issue * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/intel/issues/2672>) +2 similar issues * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-default-mode: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-default-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/intel/issues/2672>) * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html> (i915#6880<https://gitlab.freedesktop.org/drm/intel/issues/6880>) +1 similar issue * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html> (fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825> / i915#1825<https://gitlab.freedesktop.org/drm/intel/issues/1825>) +9 similar issues * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html> (i915#8708<https://gitlab.freedesktop.org/drm/intel/issues/8708>) +11 similar issues * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html> (i915#1825<https://gitlab.freedesktop.org/drm/intel/issues/1825>) +9 similar issues * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html> (fdo#109280<https://bugs.freedesktop.org/show_bug.cgi?id=109280>) +7 similar issues * igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt.html> (i915#8708<https://gitlab.freedesktop.org/drm/intel/issues/8708>) * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html> (i915#8708<https://gitlab.freedesktop.org/drm/intel/issues/8708>) * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-12/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html> (i915#3458<https://gitlab.freedesktop.org/drm/intel/issues/3458>) +8 similar issues * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html> (i915#3023<https://gitlab.freedesktop.org/drm/intel/issues/3023>) +5 similar issues * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite.html> (fdo#110189<https://bugs.freedesktop.org/show_bug.cgi?id=110189>) +8 similar issues * igt@kms_hdr@bpc-switch: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-7/igt@kms_hdr@bpc-switch.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555> / i915#8228<https://gitlab.freedesktop.org/drm/intel/issues/8228>) +1 similar issue * igt@kms_hdr@static-toggle-suspend: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-5/igt@kms_hdr@static-toggle-suspend.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555> / i915#8228<https://gitlab.freedesktop.org/drm/intel/issues/8228>) +1 similar issue * igt@kms_plane_scaling@intel-max-src-size: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-5/igt@kms_plane_scaling@intel-max-src-size.html> (i915#6953<https://gitlab.freedesktop.org/drm/intel/issues/6953>) * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: * shard-dg1: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg1-17/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html> (i915#8292<https://gitlab.freedesktop.org/drm/intel/issues/8292>) * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-c-hdmi-a-2: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-c-hdmi-a-2.html> (i915#5176<https://gitlab.freedesktop.org/drm/intel/issues/5176>) +7 similar issues * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-edp-1: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-7/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-edp-1.html> (i915#5176<https://gitlab.freedesktop.org/drm/intel/issues/5176>) +3 similar issues * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-d-hdmi-a-1: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-4/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-d-hdmi-a-1.html> (i915#5176<https://gitlab.freedesktop.org/drm/intel/issues/5176>) +3 similar issues * igt@kms_plane_scaling@plane-upscale-with-modifiers-factor-0-25@pipe-a-vga-1: * shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-snb2/igt@kms_plane_scaling@plane-upscale-with-modifiers-factor-0-25@pipe-a-vga-1.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +198 similar issues * igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-a-hdmi-a-1: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-a-hdmi-a-1.html> (i915#5176<https://gitlab.freedesktop.org/drm/intel/issues/5176>) +11 similar issues * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg1-18/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4.html> (i915#5176<https://gitlab.freedesktop.org/drm/intel/issues/5176>) +15 similar issues * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-hdmi-a-2: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-hdmi-a-2.html> (i915#5235<https://gitlab.freedesktop.org/drm/intel/issues/5235>) +3 similar issues * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3.html> (i915#5235<https://gitlab.freedesktop.org/drm/intel/issues/5235>) +15 similar issues * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-d-edp-1: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-1/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-d-edp-1.html> (i915#5235<https://gitlab.freedesktop.org/drm/intel/issues/5235>) +3 similar issues * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg1-18/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html> (i915#5235<https://gitlab.freedesktop.org/drm/intel/issues/5235>) +11 similar issues * igt@kms_psr2_sf@cursor-plane-move-continuous-sf: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-10/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html> (i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) +2 similar issues * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-4/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html> (i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-10/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html> (i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) * igt@kms_psr@cursor_mmap_cpu: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-2/igt@kms_psr@cursor_mmap_cpu.html> (i915#1072<https://gitlab.freedesktop.org/drm/intel/issues/1072>) +2 similar issues * igt@kms_psr@primary_page_flip: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg1-19/igt@kms_psr@primary_page_flip.html> (i915#1072<https://gitlab.freedesktop.org/drm/intel/issues/1072>) * igt@kms_psr@psr2_sprite_render: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-3/igt@kms_psr@psr2_sprite_render.html> (i915#1072<https://gitlab.freedesktop.org/drm/intel/issues/1072>) +2 similar issues * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html> (i915#5461<https://gitlab.freedesktop.org/drm/intel/issues/5461> / i915#658<https://gitlab.freedesktop.org/drm/intel/issues/658>) * igt@kms_rotation_crc@exhaust-fences: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-5/igt@kms_rotation_crc@exhaust-fences.html> (i915#4235<https://gitlab.freedesktop.org/drm/intel/issues/4235>) +1 similar issue * igt@kms_rotation_crc@primary-rotation-270: * shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-dg1-18/igt@kms_rotation_crc@primary-rotation-270.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg1-15/igt@kms_rotation_crc@primary-rotation-270.html> (i915#1982<https://gitlab.freedesktop.org/drm/intel/issues/1982>) * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html> (i915#5289<https://gitlab.freedesktop.org/drm/intel/issues/5289>) * igt@kms_rotation_crc@sprite-rotation-270: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-6/igt@kms_rotation_crc@sprite-rotation-270.html> (i915#4235<https://gitlab.freedesktop.org/drm/intel/issues/4235>) * igt@kms_selftest@drm_plane: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-12/igt@kms_selftest@drm_plane.html> (i915#8661<https://gitlab.freedesktop.org/drm/intel/issues/8661>) +2 similar issues * igt@kms_setmode@invalid-clone-single-crtc-stealing: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-2/igt@kms_setmode@invalid-clone-single-crtc-stealing.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555> / i915#4098<https://gitlab.freedesktop.org/drm/intel/issues/4098>) * igt@kms_tiled_display@basic-test-pattern-with-chamelium: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html> (i915#8623<https://gitlab.freedesktop.org/drm/intel/issues/8623>) * igt@kms_universal_plane@universal-plane-pipe-d-functional: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-6/igt@kms_universal_plane@universal-plane-pipe-d-functional.html> (i915#4070<https://gitlab.freedesktop.org/drm/intel/issues/4070> / i915#533<https://gitlab.freedesktop.org/drm/intel/issues/533> / i915#6768<https://gitlab.freedesktop.org/drm/intel/issues/6768>) +1 similar issue * igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend: * shard-snb: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-snb4/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html> (i915#8841<https://gitlab.freedesktop.org/drm/intel/issues/8841>) * igt@kms_vblank@pipe-c-query-forked-busy: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-6/igt@kms_vblank@pipe-c-query-forked-busy.html> (i915#4070<https://gitlab.freedesktop.org/drm/intel/issues/4070> / i915#6768<https://gitlab.freedesktop.org/drm/intel/issues/6768>) +2 similar issues * igt@kms_vblank@pipe-d-ts-continuation-suspend: * shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-mtlp-3/igt@kms_vblank@pipe-d-ts-continuation-suspend.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-1/igt@kms_vblank@pipe-d-ts-continuation-suspend.html> (i915#6311<https://gitlab.freedesktop.org/drm/intel/issues/6311> / i915#8466<https://gitlab.freedesktop.org/drm/intel/issues/8466>) * igt@kms_writeback@writeback-fb-id: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-3/igt@kms_writeback@writeback-fb-id.html> (i915#2437<https://gitlab.freedesktop.org/drm/intel/issues/2437>) +1 similar issue * igt@perf_pmu@busy-idle-check-all@bcs0: * shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-mtlp-7/igt@perf_pmu@busy-idle-check-all@bcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-5/igt@perf_pmu@busy-idle-check-all@bcs0.html> (i915#4521<https://gitlab.freedesktop.org/drm/intel/issues/4521>) +1 similar issue * igt@perf_pmu@busy-idle-check-all@vcs0: * shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-dg2-3/igt@perf_pmu@busy-idle-check-all@vcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-1/igt@perf_pmu@busy-idle-check-all@vcs0.html> (i915#4349<https://gitlab.freedesktop.org/drm/intel/issues/4349>) +8 similar issues * shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-dg1-15/igt@perf_pmu@busy-idle-check-all@vcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg1-18/igt@perf_pmu@busy-idle-check-all@vcs0.html> (i915#4349<https://gitlab.freedesktop.org/drm/intel/issues/4349>) +3 similar issues * igt@perf_pmu@busy-idle-check-all@vecs0: * shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-mtlp-7/igt@perf_pmu@busy-idle-check-all@vecs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-5/igt@perf_pmu@busy-idle-check-all@vecs0.html> (i915#4349<https://gitlab.freedesktop.org/drm/intel/issues/4349>) +3 similar issues * igt@prime_vgem@basic-read: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-2/igt@prime_vgem@basic-read.html> (fdo#109295<https://bugs.freedesktop.org/show_bug.cgi?id=109295> / i915#3291<https://gitlab.freedesktop.org/drm/intel/issues/3291> / i915#3708<https://gitlab.freedesktop.org/drm/intel/issues/3708>) * igt@prime_vgem@fence-flip-hang: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-6/igt@prime_vgem@fence-flip-hang.html> (i915#3708<https://gitlab.freedesktop.org/drm/intel/issues/3708>) * igt@v3d/v3d_get_bo_offset@create-get-offsets: * shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg1-16/igt@v3d/v3d_get_bo_offset@create-get-offsets.html> (i915#2575<https://gitlab.freedesktop.org/drm/intel/issues/2575>) +1 similar issue * igt@v3d/v3d_job_submission@array-job-submission: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-2/igt@v3d/v3d_job_submission@array-job-submission.html> (fdo#109315<https://bugs.freedesktop.org/show_bug.cgi?id=109315>) +4 similar issues * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-8/igt@v3d/v3d_job_submission@array-job-submission.html> (fdo#109315<https://bugs.freedesktop.org/show_bug.cgi?id=109315> / i915#2575<https://gitlab.freedesktop.org/drm/intel/issues/2575>) +2 similar issues * igt@v3d/v3d_submit_cl@valid-multisync-submission: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-7/igt@v3d/v3d_submit_cl@valid-multisync-submission.html> (i915#2575<https://gitlab.freedesktop.org/drm/intel/issues/2575>) +3 similar issues * igt@v3d/v3d_submit_csd@single-out-sync: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-6/igt@v3d/v3d_submit_csd@single-out-sync.html> (i915#2575<https://gitlab.freedesktop.org/drm/intel/issues/2575>) +6 similar issues * igt@vc4/vc4_mmap@mmap-bo: * shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-7/igt@vc4/vc4_mmap@mmap-bo.html> (i915#7711<https://gitlab.freedesktop.org/drm/intel/issues/7711>) +2 similar issues * igt@vc4/vc4_purgeable_bo@mark-unpurgeable-purged: * shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-10/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-purged.html> (i915#2575<https://gitlab.freedesktop.org/drm/intel/issues/2575>) +1 similar issue * igt@vc4/vc4_tiling@get-bad-modifier: * shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-3/igt@vc4/vc4_tiling@get-bad-modifier.html> (i915#7711<https://gitlab.freedesktop.org/drm/intel/issues/7711>) +3 similar issues * igt@vc4/vc4_wait_bo@bad-bo: * shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-7/igt@vc4/vc4_wait_bo@bad-bo.html> (i915#7711<https://gitlab.freedesktop.org/drm/intel/issues/7711>) +1 similar issue Possible fixes * igt@core_hotunplug@unbind-rebind: * shard-snb: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-snb5/igt@core_hotunplug@unbind-rebind.html> (i915#4528<https://gitlab.freedesktop.org/drm/intel/issues/4528> / i915#8213<https://gitlab.freedesktop.org/drm/intel/issues/8213>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-snb6/igt@core_hotunplug@unbind-rebind.html> * igt@gem_ctx_exec@basic-nohangcheck: * shard-rkl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-rkl-7/igt@gem_ctx_exec@basic-nohangcheck.html> (i915#6268<https://gitlab.freedesktop.org/drm/intel/issues/6268>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-1/igt@gem_ctx_exec@basic-nohangcheck.html> * shard-tglu: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-tglu-10/igt@gem_ctx_exec@basic-nohangcheck.html> (i915#6268<https://gitlab.freedesktop.org/drm/intel/issues/6268>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-tglu-4/igt@gem_ctx_exec@basic-nohangcheck.html> * igt@gem_eio@reset-stress: * shard-dg1: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-dg1-13/igt@gem_eio@reset-stress.html> (i915#5784<https://gitlab.freedesktop.org/drm/intel/issues/5784>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg1-16/igt@gem_eio@reset-stress.html> * igt@gem_exec_suspend@basic-s0@smem: * shard-dg1: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-dg1-13/igt@gem_exec_suspend@basic-s0@smem.html> (i915#4423<https://gitlab.freedesktop.org/drm/intel/issues/4423>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg1-15/igt@gem_exec_suspend@basic-s0@smem.html> * igt@gem_userptr_blits@nohangcheck: * shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-mtlp-3/igt@gem_userptr_blits@nohangcheck.html> (i915#6268<https://gitlab.freedesktop.org/drm/intel/issues/6268>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-2/igt@gem_userptr_blits@nohangcheck.html> * igt@i915_hangman@gt-engine-hang@vcs0: * shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-mtlp-7/igt@i915_hangman@gt-engine-hang@vcs0.html> (i915#7069<https://gitlab.freedesktop.org/drm/intel/issues/7069>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-2/igt@i915_hangman@gt-engine-hang@vcs0.html> * igt@i915_pm_dc@dc9-dpms: * shard-apl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-apl3/igt@i915_pm_dc@dc9-dpms.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-apl3/igt@i915_pm_dc@dc9-dpms.html> * igt@i915_pm_rc6_residency@rc6-accuracy: * shard-mtlp: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-mtlp-2/igt@i915_pm_rc6_residency@rc6-accuracy.html> (i915#8403<https://gitlab.freedesktop.org/drm/intel/issues/8403>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-3/igt@i915_pm_rc6_residency@rc6-accuracy.html> * igt@i915_pm_rpm@dpms-non-lpsp: * shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-rkl-7/igt@i915_pm_rpm@dpms-non-lpsp.html> (i915#1397<https://gitlab.freedesktop.org/drm/intel/issues/1397>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-rkl-4/igt@i915_pm_rpm@dpms-non-lpsp.html> +3 similar issues * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: * shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-dg2-5/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html> (i915#1397<https://gitlab.freedesktop.org/drm/intel/issues/1397>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-12/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html> +1 similar issue * igt@i915_pm_rpm@system-suspend: * shard-dg2: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-dg2-5/igt@i915_pm_rpm@system-suspend.html> (i915#8575<https://gitlab.freedesktop.org/drm/intel/issues/8575> / i915#9142<https://gitlab.freedesktop.org/drm/intel/issues/9142>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-10/igt@i915_pm_rpm@system-suspend.html> * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip: * shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-mtlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html> (i915#3743<https://gitlab.freedesktop.org/drm/intel/issues/3743>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html> * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: * shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html> (i915#2346<https://gitlab.freedesktop.org/drm/intel/issues/2346>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html> * igt@kms_cursor_legacy@single-bo@all-pipes: * shard-mtlp: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-mtlp-4/igt@kms_cursor_legacy@single-bo@all-pipes.html> (i915#2017<https://gitlab.freedesktop.org/drm/intel/issues/2017>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-mtlp-7/igt@kms_cursor_legacy@single-bo@all-pipes.html> * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1: * shard-apl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-apl1/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html> (i915#79<https://gitlab.freedesktop.org/drm/intel/issues/79>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-apl4/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html> * igt@perf_pmu@busy-double-start@vecs1: * shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-dg2-3/igt@perf_pmu@busy-double-start@vecs1.html> (i915#4349<https://gitlab.freedesktop.org/drm/intel/issues/4349>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html> +3 similar issues Warnings * igt@kms_cursor_crc@cursor-rapid-movement-512x512: * shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-dg1-13/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html> (i915#3359<https://gitlab.freedesktop.org/drm/intel/issues/3359> / i915#4423<https://gitlab.freedesktop.org/drm/intel/issues/4423>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg1-13/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html> (i915#3359<https://gitlab.freedesktop.org/drm/intel/issues/3359>) * igt@kms_psr@cursor_plane_move: * shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-dg1-18/igt@kms_psr@cursor_plane_move.html> (i915#1072<https://gitlab.freedesktop.org/drm/intel/issues/1072> / i915#4078<https://gitlab.freedesktop.org/drm/intel/issues/4078>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg1-14/igt@kms_psr@cursor_plane_move.html> (i915#1072<https://gitlab.freedesktop.org/drm/intel/issues/1072>) * igt@kms_psr@sprite_plane_onoff: * shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-dg1-14/igt@kms_psr@sprite_plane_onoff.html> (i915#1072<https://gitlab.freedesktop.org/drm/intel/issues/1072>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg1-13/igt@kms_psr@sprite_plane_onoff.html> (i915#1072<https://gitlab.freedesktop.org/drm/intel/issues/1072> / i915#4078<https://gitlab.freedesktop.org/drm/intel/issues/4078>) +1 similar issue * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: * shard-dg2: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13565/shard-dg2-1/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html> (i915#5493<https://gitlab.freedesktop.org/drm/intel/issues/5493>) -> CRASH<https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9657/shard-dg2-1/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html> (i915#7331<https://gitlab.freedesktop.org/drm/intel/issues/7331>) {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). Build changes * CI: CI-20190529 -> None * IGT: IGT_7452 -> IGTPW_9657 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13565: 12b9d9f2acd6adc09ebdb9d6fb7bd724bc1b8441 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9657: 9657 IGT_7452: 7452 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit [-- Attachment #2: Type: text/html, Size: 89892 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2023-08-29 5:50 UTC | newest] Thread overview: 13+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-08-24 10:40 [igt-dev] [PATCH i-g-t v9 0/4] Testcases for dirtyfb ioctl Jouni Högander 2023-08-24 10:40 ` [igt-dev] [PATCH i-g-t v9 1/4] lib/i915/fbc: Add fbc helpers Jouni Högander 2023-08-24 10:40 ` [igt-dev] [PATCH i-g-t v9 2/4] lib/i915/drrs: Add drrs helpers Jouni Högander 2023-08-24 10:40 ` [igt-dev] [PATCH i-g-t v9 3/4] tests/i915/kms_frontbuffer_tracking: Utilize added fbc and " Jouni Högander 2023-08-24 10:40 ` [igt-dev] [PATCH i-g-t v9 4/4] tests/kms_dirtyfb: Add new test for dirtyfb ioctl Jouni Högander 2023-08-24 11:49 ` [igt-dev] ✗ GitLab.Pipeline: warning for Testcases " Patchwork 2023-08-24 12:25 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork 2023-08-24 21:28 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-08-25 8:18 ` [igt-dev] ✗ GitLab.Pipeline: warning for Testcases for dirtyfb ioctl (rev2) Patchwork 2023-08-25 8:43 ` [igt-dev] ✓ CI.xeBAT: success " Patchwork 2023-08-25 8:57 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork 2023-08-25 21:07 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-08-29 5:50 ` Hogander, Jouni
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox