* [PATCH v1 0/5] Redesign of the xe_debugfs test
@ 2025-11-13 11:46 Piórkowski, Piotr
2025-11-13 11:46 ` [PATCH v1 1/5] lib/igt_dir: Allow scanning only the current directory Piórkowski, Piotr
` (9 more replies)
0 siblings, 10 replies; 15+ messages in thread
From: Piórkowski, Piotr @ 2025-11-13 11:46 UTC (permalink / raw)
To: igt-dev; +Cc: Piotr Piórkowski
From: Piotr Piórkowski <piotr.piorkowski@intel.com>
As part of the work on patch [1], it became necessary to update the
xe_debugfs test to account for the new debugfs structure. However,
while reviewing the test, I concluded that a broader redesign would make
the test easier to maintain, extend, and adapt to future debugfs changes.
As part of this redesign, I propose replacing the old subtests with a new,
clearer layout. Instead of the previous subtests:
xe-base — validate debugfs root directory and check the contents of the info file
xe-forcewake — check the forcewake node
the new subtests would be:
root-dir — validate the debugfs root directory
tile-dir — validate the debugfs directory for each tile
info-read — validate the contents of the info file
The new subtests rely on a table-driven approach: all expected debugfs
nodes are defined in an array. This allows both conditional tests
(e.g., testing vram_mm only when VRAM is available) and dynamically
generated nodes (e.g., gt%u based on gt_mask, or tile%u based on
tile_mask).
[1]: https://patchwork.freedesktop.org/series/157089/
Piotr Piórkowski (5):
lib/igt_dir: Allow scanning only the current directory
lib/debugfs: Add debugfs helpers to open tile directory
tests/intel/debugfs: Rewrite tests to use array-based required debugfs
file lists
tests/intel/debugfs: Add tile-dir subtest for per-tile debugfs
validation
tests/intel/debugfs: Move VRAM MM checks from root to tile-dir
validation
lib/igt_debugfs.c | 32 +++
lib/igt_debugfs.h | 1 +
lib/igt_dir.c | 1 -
tests/intel/xe_debugfs.c | 419 +++++++++++++++++++++++++++++----------
4 files changed, 351 insertions(+), 102 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 15+ messages in thread* [PATCH v1 1/5] lib/igt_dir: Allow scanning only the current directory 2025-11-13 11:46 [PATCH v1 0/5] Redesign of the xe_debugfs test Piórkowski, Piotr @ 2025-11-13 11:46 ` Piórkowski, Piotr 2025-11-19 14:32 ` Bernatowicz, Marcin 2025-11-13 11:46 ` [PATCH v1 2/5] lib/debugfs: Add debugfs helpers to open tile directory Piórkowski, Piotr ` (8 subsequent siblings) 9 siblings, 1 reply; 15+ messages in thread From: Piórkowski, Piotr @ 2025-11-13 11:46 UTC (permalink / raw) To: igt-dev; +Cc: Piotr Piórkowski, Peter Senna Tschudin, Rodrigo Vivi From: Piotr Piórkowski <piotr.piorkowski@intel.com> The check rejecting scan_maxdepth == 0 prevented callers from scanning only the current directory without descending into subdirectories. Let's remov this restriction to enable using scan_maxdepth = 0 as a valid mode to list entries in the top-level directory only. Signed-off-by: Piotr Piórkowski <piotr.piorkowski@intel.com> Cc: Peter Senna Tschudin <peter.senna@linux.intel.com> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> --- lib/igt_dir.c | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/igt_dir.c b/lib/igt_dir.c index e232dbda9c..6ef8e859a4 100644 --- a/lib/igt_dir.c +++ b/lib/igt_dir.c @@ -241,7 +241,6 @@ int igt_dir_scan_dirfd(igt_dir_t *config, int scan_maxdepth) igt_require(config->root_path); igt_require(config->dirfd >= 0); igt_require(scan_maxdepth >= -1); - igt_require(scan_maxdepth != 0); /* If the linked list is not empty, clean it first */ if (!igt_list_empty(&config->file_list_head)) { -- 2.34.1 ^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [PATCH v1 1/5] lib/igt_dir: Allow scanning only the current directory 2025-11-13 11:46 ` [PATCH v1 1/5] lib/igt_dir: Allow scanning only the current directory Piórkowski, Piotr @ 2025-11-19 14:32 ` Bernatowicz, Marcin 0 siblings, 0 replies; 15+ messages in thread From: Bernatowicz, Marcin @ 2025-11-19 14:32 UTC (permalink / raw) To: Piórkowski, Piotr, igt-dev; +Cc: Peter Senna Tschudin, Rodrigo Vivi On 11/13/2025 12:46 PM, Piórkowski, Piotr wrote: > From: Piotr Piórkowski <piotr.piorkowski@intel.com> > > The check rejecting scan_maxdepth == 0 prevented callers from > scanning only the current directory without descending into subdirectories. > Let's remov this restriction to enable using scan_maxdepth = 0 as a valid > mode to list entries in the top-level directory only. > > Signed-off-by: Piotr Piórkowski <piotr.piorkowski@intel.com> > Cc: Peter Senna Tschudin <peter.senna@linux.intel.com> > Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> > --- > lib/igt_dir.c | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/lib/igt_dir.c b/lib/igt_dir.c > index e232dbda9c..6ef8e859a4 100644 > --- a/lib/igt_dir.c > +++ b/lib/igt_dir.c > @@ -241,7 +241,6 @@ int igt_dir_scan_dirfd(igt_dir_t *config, int scan_maxdepth) > igt_require(config->root_path); > igt_require(config->dirfd >= 0); > igt_require(scan_maxdepth >= -1); > - igt_require(scan_maxdepth != 0); LGTM, Reviewed-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com> > > /* If the linked list is not empty, clean it first */ > if (!igt_list_empty(&config->file_list_head)) { ^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH v1 2/5] lib/debugfs: Add debugfs helpers to open tile directory 2025-11-13 11:46 [PATCH v1 0/5] Redesign of the xe_debugfs test Piórkowski, Piotr 2025-11-13 11:46 ` [PATCH v1 1/5] lib/igt_dir: Allow scanning only the current directory Piórkowski, Piotr @ 2025-11-13 11:46 ` Piórkowski, Piotr 2025-11-20 9:10 ` Bernatowicz, Marcin 2025-11-13 11:46 ` [PATCH v1 3/5] tests/intel/debugfs: Rewrite tests to use array-based required debugfs file lists Piórkowski, Piotr ` (7 subsequent siblings) 9 siblings, 1 reply; 15+ messages in thread From: Piórkowski, Piotr @ 2025-11-13 11:46 UTC (permalink / raw) To: igt-dev; +Cc: Piotr Piórkowski, Peter Senna Tschudin, Rodrigo Vivi From: Piotr Piórkowski <piotr.piorkowski@intel.com> Let's add igt_debugfs_tile_dir to open the debugfs directory corresponding to a given tile index. Signed-off-by: Piotr Piórkowski <piotr.piorkowski@intel.com> Cc: Peter Senna Tschudin <peter.senna@linux.intel.com> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> --- lib/igt_debugfs.c | 32 ++++++++++++++++++++++++++++++++ lib/igt_debugfs.h | 1 + 2 files changed, 33 insertions(+) diff --git a/lib/igt_debugfs.c b/lib/igt_debugfs.c index 210a9cea0d..dec936ebba 100644 --- a/lib/igt_debugfs.c +++ b/lib/igt_debugfs.c @@ -226,6 +226,38 @@ int igt_debugfs_gt_dir(int device, unsigned int gt) return debugfs_gt_dir_fd; } +/** + * igt_debugfs_tile_dir: + * @device: fd of the device + * @tile: tile index + * + * This opens the debugfs directory corresponding to tile for use + * with igt_sysfs_get() and related functions. + * + * Returns: + * The directory fd, or -1 on failure. + */ +int igt_debugfs_tile_dir(int device, uint8_t tile) +{ + int debugfs_tile_dir_fd; + char path[PATH_MAX]; + char tilepath[16]; + int ret; + + if (!igt_debugfs_path(device, path, sizeof(path))) + return -1; + + ret = snprintf(tilepath, sizeof(tilepath), "/tile%u", tile); + igt_assert(ret < sizeof(tilepath)); + + strncat(path, tilepath, sizeof(path) - 1); + + debugfs_tile_dir_fd = open(path, O_RDONLY); + igt_debug_on_f(debugfs_tile_dir_fd < 0, "path: %s\n", path); + + return debugfs_tile_dir_fd; +} + /** * igt_debugfs_connector_dir: * @device: fd of the device diff --git a/lib/igt_debugfs.h b/lib/igt_debugfs.h index f4044d5458..76dbff3e8e 100644 --- a/lib/igt_debugfs.h +++ b/lib/igt_debugfs.h @@ -49,6 +49,7 @@ bool igt_debugfs_search(int fd, const char *filename, const char *substring); int igt_debugfs_gt_dir(int device, unsigned int gt); int igt_debugfs_gt_open(int device, unsigned int gt, const char *filename, int mode); +int igt_debugfs_tile_dir(int device, uint8_t tile); /** * igt_debugfs_read: -- 2.34.1 ^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [PATCH v1 2/5] lib/debugfs: Add debugfs helpers to open tile directory 2025-11-13 11:46 ` [PATCH v1 2/5] lib/debugfs: Add debugfs helpers to open tile directory Piórkowski, Piotr @ 2025-11-20 9:10 ` Bernatowicz, Marcin 0 siblings, 0 replies; 15+ messages in thread From: Bernatowicz, Marcin @ 2025-11-20 9:10 UTC (permalink / raw) To: Piórkowski, Piotr, igt-dev; +Cc: Peter Senna Tschudin, Rodrigo Vivi On 11/13/2025 12:46 PM, Piórkowski, Piotr wrote: > From: Piotr Piórkowski <piotr.piorkowski@intel.com> > > Let's add igt_debugfs_tile_dir to open the debugfs directory > corresponding to a given tile index. > > Signed-off-by: Piotr Piórkowski <piotr.piorkowski@intel.com> > Cc: Peter Senna Tschudin <peter.senna@linux.intel.com> > Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> > --- > lib/igt_debugfs.c | 32 ++++++++++++++++++++++++++++++++ > lib/igt_debugfs.h | 1 + > 2 files changed, 33 insertions(+) > > diff --git a/lib/igt_debugfs.c b/lib/igt_debugfs.c > index 210a9cea0d..dec936ebba 100644 > --- a/lib/igt_debugfs.c > +++ b/lib/igt_debugfs.c > @@ -226,6 +226,38 @@ int igt_debugfs_gt_dir(int device, unsigned int gt) > return debugfs_gt_dir_fd; > } > > +/** > + * igt_debugfs_tile_dir: > + * @device: fd of the device > + * @tile: tile index > + * > + * This opens the debugfs directory corresponding to tile for use > + * with igt_sysfs_get() and related functions. > + * > + * Returns: > + * The directory fd, or -1 on failure. > + */ > +int igt_debugfs_tile_dir(int device, uint8_t tile) > +{ > + int debugfs_tile_dir_fd; > + char path[PATH_MAX]; > + char tilepath[16]; > + int ret; > + > + if (!igt_debugfs_path(device, path, sizeof(path))) > + return -1; > + > + ret = snprintf(tilepath, sizeof(tilepath), "/tile%u", tile); > + igt_assert(ret < sizeof(tilepath)); something wrong with this check maybe len = strlen(path); ret = snprintf(path + len, sizeof(path) - len, "/tile%u", tile); igt_assert(ret >= 0 && (size_t)ret < sizeof(path) - len); and drop tilepath and strncat > + > + strncat(path, tilepath, sizeof(path) - 1); > + > + debugfs_tile_dir_fd = open(path, O_RDONLY); > + igt_debug_on_f(debugfs_tile_dir_fd < 0, "path: %s\n", path); > + > + return debugfs_tile_dir_fd; > +} > + > /** > * igt_debugfs_connector_dir: > * @device: fd of the device > diff --git a/lib/igt_debugfs.h b/lib/igt_debugfs.h > index f4044d5458..76dbff3e8e 100644 > --- a/lib/igt_debugfs.h > +++ b/lib/igt_debugfs.h > @@ -49,6 +49,7 @@ bool igt_debugfs_search(int fd, const char *filename, const char *substring); > int igt_debugfs_gt_dir(int device, unsigned int gt); > int igt_debugfs_gt_open(int device, unsigned int gt, const char *filename, > int mode); > +int igt_debugfs_tile_dir(int device, uint8_t tile); > > /** > * igt_debugfs_read: ^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH v1 3/5] tests/intel/debugfs: Rewrite tests to use array-based required debugfs file lists 2025-11-13 11:46 [PATCH v1 0/5] Redesign of the xe_debugfs test Piórkowski, Piotr 2025-11-13 11:46 ` [PATCH v1 1/5] lib/igt_dir: Allow scanning only the current directory Piórkowski, Piotr 2025-11-13 11:46 ` [PATCH v1 2/5] lib/debugfs: Add debugfs helpers to open tile directory Piórkowski, Piotr @ 2025-11-13 11:46 ` Piórkowski, Piotr 2025-11-20 8:58 ` Bernatowicz, Marcin 2025-11-13 11:46 ` [PATCH v1 4/5] tests/intel/debugfs: Add tile-dir subtest for per-tile debugfs validation Piórkowski, Piotr ` (6 subsequent siblings) 9 siblings, 1 reply; 15+ messages in thread From: Piórkowski, Piotr @ 2025-11-13 11:46 UTC (permalink / raw) To: igt-dev; +Cc: Piotr Piórkowski, Peter Senna Tschudin, Rodrigo Vivi From: Piotr Piórkowski <piotr.piorkowski@intel.com> The previous version of debugfs test contained inconsistent logic. Lets rewrite the test to use a single array-based list of required files. Add support for conditional requirements and dynamic index generation for entries like gt and tile dir. Also split out a dedicated subtest for validating the contents of the info debugfs node. Signed-off-by: Piotr Piórkowski <piotr.piorkowski@intel.com> Cc: Peter Senna Tschudin <peter.senna@linux.intel.com> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> --- tests/intel/xe_debugfs.c | 385 ++++++++++++++++++++++++++++----------- 1 file changed, 283 insertions(+), 102 deletions(-) diff --git a/tests/intel/xe_debugfs.c b/tests/intel/xe_debugfs.c index 1005047132..2600880a7e 100644 --- a/tests/intel/xe_debugfs.c +++ b/tests/intel/xe_debugfs.c @@ -30,75 +30,284 @@ struct { * */ -IGT_TEST_DESCRIPTION("Read entries from debugfs, and sysfs paths."); +IGT_TEST_DESCRIPTION("Validate Xe debugfs devnodes and their contents"); + +#define for_each_set_bit(i, mask) \ + for (unsigned int _m = (mask); \ + _m && ((i) = __builtin_ctz(_m), 1); \ + _m &= _m - 1) + +struct check_entry { + const char *name_fmt; + int mode; + bool (*condition)(struct xe_device *xe_dev); + unsigned int (*iter_mask)(struct xe_device *xe_dev); +}; + +static unsigned int gt_iter_mask(struct xe_device *xe_dev) +{ + return xe_dev->gt_mask; +} + +static unsigned int tile_iter_mask(struct xe_device *xe_dev) +{ + return xe_dev->tile_mask; +} + +static bool has_vram(struct xe_device *xe_dev) +{ + return xe_dev->has_vram; +} + +/* Validate the format of debugfs fmt file, allow only one %u literal */ +static bool validate_debugfs_fmt(const char *fmt) +{ + bool found_u = false; + + for (const char *p = fmt; *p; p++) { + if (*p != '%') + continue; + + /* % at end of string → invalid */ + if (!p[1]) + return false; + + /* must be exactly %u */ + if (p[1] != 'u') + return false; + + /* only one %u allowed */ + if (found_u) + return false; + + found_u = true; + + /* skip u */ + p++; /* caller loop increments p again */ + } + + return found_u; +} + +struct hit_entry { + struct igt_list_head link; + char name[64]; +}; -static int xe_validate_entries(igt_dir_t *igt_dir, - const char * const str_val[], int str_cnt) +static bool find_no_tested_files(int dir_fd, struct igt_list_head *hit_entries) { igt_dir_file_list_t *file_list_entry; + bool found_not_tested = false; + igt_dir_t *dir = igt_dir_create(dir_fd); + int ret; - if (!igt_dir) - return -1; + igt_assert_f(dir, "Failed to create igt_dir_t for debugfs dir\n"); - igt_dir_scan_dirfd(igt_dir, -1); + ret = igt_dir_scan_dirfd(dir, 0); + igt_assert_f(ret == 0, "Failed to scan debugfs directory\n"); - for (int i = 0; i < str_cnt; i++) { - int hit = 0; - igt_list_for_each_entry(file_list_entry, - &igt_dir->file_list_head, link) { - if (strcmp(file_list_entry->relative_path, - str_val[i]) == 0) { - hit = 1; + igt_list_for_each_entry(file_list_entry, &dir->file_list_head, link) { + struct hit_entry *e; + bool hit = false; + + igt_list_for_each_entry(e, hit_entries, link) { + if (strcmp(file_list_entry->relative_path, e->name) == 0) { + hit = true; break; } } - if (!hit && opt.warn_on_not_hit) - igt_warn("no test for: %s\n", str_val[i]); + if (!hit) { + igt_warn("No test for: %s\n", file_list_entry->relative_path); + found_not_tested = true; + } } - return 0; + igt_dir_destroy(dir); + + return found_not_tested; +} + +static bool file_in_dir_exists(int dirfd, const char *file_name, int mode) +{ + int fd = openat(dirfd, file_name, mode); + + if (fd >= 0) { + close(fd); + return true; + } + + return false; +} + +/* + * Return: negative error code on failure, or number of missing files + */ +static int debugfs_validate_entries(struct xe_device *xe_dev, int dir_fd, + const struct check_entry *expected_files, size_t size) +{ + struct igt_list_head hit_entries; + int missing_count = 0; + int err = 0; + + IGT_INIT_LIST_HEAD(&hit_entries); + + for (int i = 0; i < size; i++) { + const struct check_entry *check = &expected_files[i]; + unsigned int mask; + unsigned int j; + + if (check->condition && !check->condition(xe_dev)) + continue; + + if (!check->iter_mask) + mask = BIT(0); /* to iterate once */ + else + mask = check->iter_mask(xe_dev); + + for_each_set_bit(j, mask) { + struct hit_entry *entry; + + entry = malloc(sizeof(*entry)); + if (!entry) { + igt_warn("Failed to allocate memory for hit entry\n"); + err = -ENOMEM; + goto out; + } + + igt_list_add(&entry->link, &hit_entries); + + if (!check->iter_mask) { + snprintf(entry->name, sizeof(entry->name), "%s", check->name_fmt); + } else { + int ret; + +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wformat-nonliteral" + /** + * XXX: We ignore the compiler warning, but + * validate fmt at runtime. + */ + if (!validate_debugfs_fmt(check->name_fmt)) { + igt_warn("Invalid debugfs name fmt: %s.\n", + check->name_fmt); + err = -EBADF; + goto out; + } + + ret = snprintf(entry->name, sizeof(entry->name), + check->name_fmt, j); + if (ret < 0 || ret >= sizeof(entry->name)) { + igt_warn("Debugfs format failed for: %s\n", + check->name_fmt); + err = -EINVAL; + goto out; + } +#pragma GCC diagnostic pop + } + + if (!file_in_dir_exists(dir_fd, entry->name, check->mode)) { + igt_warn("Missing debugfs file: %s\n", entry->name); + missing_count++; + } + } + } + + if (opt.warn_on_not_hit) + find_no_tested_files(dir_fd, &hit_entries); + +out: + if (!igt_list_empty(&hit_entries)) { + struct hit_entry *entry, *tmp; + + igt_list_for_each_entry_safe(entry, tmp, &hit_entries, link) { + igt_list_del(&entry->link); + free(entry); + } + } + + return (err < 0) ? err : missing_count; } /** - * SUBTEST: xe-base - * Description: Check if various debugfs devnodes exist and test reading them + * SUBTEST: root-dir + * Description: Check required debugfs devnodes exist in the root debugfs directory */ -static void -xe_test_base(int fd, struct drm_xe_query_config *config, igt_dir_t *igt_dir) +static void test_root_dir(struct xe_device *xe_dev) { - uint16_t devid = intel_get_drm_devid(fd); - static const char * const expected_files[] = { - "gt0", - "gt1", - "stolen_mm", - "gtt_mm", - "vram0_mm", - "forcewake_all", - "info", - "gem_names", - "clients", - "name" + const struct check_entry expected_files[] = { + { "clients", O_RDONLY }, + { "forcewake_all", O_WRONLY }, + { "gem_names", O_RDONLY }, + { "gt%u", O_RDONLY, NULL, gt_iter_mask }, /* gt0, gt1, ... */ + { "gtt_mm", O_RDONLY }, + { "info", O_RDONLY }, + { "name", O_RDONLY }, + { "tile%u", O_RDONLY, NULL, tile_iter_mask }, /* tile0, tile1, ... */ + { "vram%u_mm", O_RDONLY, has_vram, tile_iter_mask }, /* vram0_mm, vram1_mm, ... */ }; - char reference[4096]; - int val = 0; + int debugfs_fd = igt_debugfs_dir(xe_dev->fd); + int missing_count; - igt_assert(config); - sprintf(reference, "devid 0x%llx", - config->info[DRM_XE_QUERY_CONFIG_REV_AND_DEVICE_ID] & 0xffff); - igt_assert(igt_debugfs_search(fd, "info", reference)); + if (debugfs_fd < 0) + goto skip; - sprintf(reference, "revid %lld", - config->info[DRM_XE_QUERY_CONFIG_REV_AND_DEVICE_ID] >> 16); - igt_assert(igt_debugfs_search(fd, "info", reference)); + missing_count = debugfs_validate_entries(xe_dev, debugfs_fd, expected_files, + ARRAY_SIZE(expected_files)); - sprintf(reference, "is_dgfx %s", config->info[DRM_XE_QUERY_CONFIG_FLAGS] & - DRM_XE_QUERY_CONFIG_FLAG_HAS_VRAM ? "yes" : "no"); + close(debugfs_fd); + + igt_fail_on_f(missing_count > 0, "Found %d missing debugfs files (see warnings above)\n", + missing_count); + + return; +skip: + igt_skip("Failed to open debugfs directory\n"); +} + +/** + * SUBTEST: info-read + * Description: Check info debugfs devnode contents + */ +static void test_info_read(struct xe_device *xe_dev) +{ + uint16_t devid = intel_get_drm_devid(xe_dev->fd); + struct drm_xe_query_config *config; + const char *name = "info"; + bool failed = false; + char buf[4096]; + int val; + + config = xe_config(xe_dev->fd); + + igt_assert_f(config, "Failed to get xe config\n"); + + snprintf(buf, sizeof(buf), "devid 0x%llx", + config->info[DRM_XE_QUERY_CONFIG_REV_AND_DEVICE_ID] & 0xffff); + if (!igt_debugfs_search(xe_dev->fd, name, buf)) { + igt_warn("Missing devid in info debugfs\n"); + failed = true; + } + + snprintf(buf, sizeof(buf), "revid %lld", + config->info[DRM_XE_QUERY_CONFIG_REV_AND_DEVICE_ID] >> 16); + if (!igt_debugfs_search(xe_dev->fd, name, buf)) { + igt_warn("Missing revid in info debugfs\n"); + failed = true; + } - igt_assert(igt_debugfs_search(fd, "info", reference)); + snprintf(buf, sizeof(buf), + "is_dgfx %s", config->info[DRM_XE_QUERY_CONFIG_FLAGS] & + DRM_XE_QUERY_CONFIG_FLAG_HAS_VRAM ? "yes" : "no"); + if (!igt_debugfs_search(xe_dev->fd, name, buf)) { + igt_warn("Missing is_dgfx in info debugfs\n"); + failed = true; + } if (intel_gen(devid) < 20) { + val = -1; + switch (config->info[DRM_XE_QUERY_CONFIG_VA_BITS]) { case 48: val = 3; @@ -106,57 +315,38 @@ xe_test_base(int fd, struct drm_xe_query_config *config, igt_dir_t *igt_dir) case 57: val = 4; break; + default: + igt_warn("Unexpected va_bits value: %lld\n", + config->info[DRM_XE_QUERY_CONFIG_VA_BITS]); + failed = true; + break; } - sprintf(reference, "vm_max_level %d", val); - igt_assert(igt_debugfs_search(fd, "info", reference)); + if (val != -1) { + snprintf(buf, sizeof(buf), "vm_max_level %d", val); + if (!igt_debugfs_search(xe_dev->fd, name, buf)) { + igt_warn("Missing vm_max_level in info debugfs\n"); + failed = true; + } + } } - snprintf(reference, sizeof(reference), "tile_count %d", xe_sysfs_get_num_tiles(fd)); - igt_assert(igt_debugfs_search(fd, "info", reference)); - - igt_assert(igt_debugfs_exists(fd, "gt0", O_RDONLY)); - - igt_assert(igt_debugfs_exists(fd, "gtt_mm", O_RDONLY)); - igt_debugfs_dump(fd, "gtt_mm"); - - if (config->info[DRM_XE_QUERY_CONFIG_FLAGS] & DRM_XE_QUERY_CONFIG_FLAG_HAS_VRAM) { - igt_assert(igt_debugfs_exists(fd, "vram0_mm", O_RDONLY)); - igt_debugfs_dump(fd, "vram0_mm"); + snprintf(buf, sizeof(buf), "tile_count %d", xe_sysfs_get_num_tiles(xe_dev->fd)); + if (!igt_debugfs_search(xe_dev->fd, name, buf)) { + igt_warn("Missing tile_count in info debugfs\n"); + failed = true; } - if (igt_debugfs_exists(fd, "stolen_mm", O_RDONLY)) - igt_debugfs_dump(fd, "stolen_mm"); - - igt_assert(igt_debugfs_exists(fd, "clients", O_RDONLY)); - igt_debugfs_dump(fd, "clients"); - - igt_assert(igt_debugfs_exists(fd, "gem_names", O_RDONLY)); - igt_debugfs_dump(fd, "gem_names"); + igt_fail_on_f(failed, "Some required info debugfs entries are missing\n"); - xe_validate_entries(igt_dir, expected_files, - ARRAY_SIZE(expected_files)); -} - -/** - * SUBTEST: xe-forcewake - * Description: Check forcewake debugfs devnode - */ -static void -xe_test_forcewake(int fd) -{ - int handle = igt_debugfs_open(fd, "forcewake_all", O_WRONLY); - - igt_assert_neq(handle, -1); - close(handle); } const char *help_str = - " -w\t--warn-not-hit Produce warnings if it founds a devfs node without tests"; + " --warn-not-hit|--w\tWarn about devfs nodes that have no tests"; struct option long_options[] = { - { "--warn-not-hit", no_argument, NULL, 'w'}, - { 0, 0, 0, 0 } + { "warn-not-hit", no_argument, NULL, 'w'}, + { } }; static int opt_handler(int option, int option_index, void *input) @@ -174,34 +364,25 @@ static int opt_handler(int option, int option_index, void *input) igt_main_args("", long_options, help_str, opt_handler, NULL) { - int debugfs = -1; + struct xe_device *xe_dev; int fd = -1; - igt_dir_t *igt_dir = NULL; igt_fixture { fd = drm_open_driver_master(DRIVER_XE); - __igt_debugfs_dump(fd, "info", IGT_LOG_INFO); - debugfs = igt_debugfs_dir(fd); - - igt_dir = igt_dir_create(debugfs); - igt_require(igt_dir); - + xe_dev = xe_device_get(fd); + igt_assert_f(xe_dev, "Failed to get xe device\n"); kmstest_set_vt_graphics_mode(); } - igt_describe("Check if various debugfs devnodes exist and test reading them."); - igt_subtest("xe-base") { - xe_test_base(fd, xe_config(fd), igt_dir); - } - - igt_describe("Check forcewake debugfs devnode"); - igt_subtest("xe-forcewake") { - xe_test_forcewake(fd); - } + igt_describe("Check required debugfs devnodes exist in the root debugfs directory."); + igt_subtest("root-dir") + test_root_dir(xe_dev); + igt_describe("Check info debugfs devnode contents."); + igt_subtest("info-read") + test_info_read(xe_dev); igt_fixture { - igt_dir_destroy(igt_dir); - close(debugfs); + xe_device_put(fd); drm_close_driver(fd); } } -- 2.34.1 ^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [PATCH v1 3/5] tests/intel/debugfs: Rewrite tests to use array-based required debugfs file lists 2025-11-13 11:46 ` [PATCH v1 3/5] tests/intel/debugfs: Rewrite tests to use array-based required debugfs file lists Piórkowski, Piotr @ 2025-11-20 8:58 ` Bernatowicz, Marcin 0 siblings, 0 replies; 15+ messages in thread From: Bernatowicz, Marcin @ 2025-11-20 8:58 UTC (permalink / raw) To: Piórkowski, Piotr, igt-dev; +Cc: Peter Senna Tschudin, Rodrigo Vivi On 11/13/2025 12:46 PM, Piórkowski, Piotr wrote: > From: Piotr Piórkowski <piotr.piorkowski@intel.com> > > The previous version of debugfs test contained inconsistent logic. > Lets rewrite the test to use a single array-based list of required files. > Add support for conditional requirements and dynamic index generation > for entries like gt and tile dir. > > Also split out a dedicated subtest for validating the contents of the > info debugfs node. > > Signed-off-by: Piotr Piórkowski <piotr.piorkowski@intel.com> > Cc: Peter Senna Tschudin <peter.senna@linux.intel.com> > Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> > --- > tests/intel/xe_debugfs.c | 385 ++++++++++++++++++++++++++++----------- > 1 file changed, 283 insertions(+), 102 deletions(-) > > diff --git a/tests/intel/xe_debugfs.c b/tests/intel/xe_debugfs.c > index 1005047132..2600880a7e 100644 > --- a/tests/intel/xe_debugfs.c > +++ b/tests/intel/xe_debugfs.c > @@ -30,75 +30,284 @@ struct { > * > */ > > -IGT_TEST_DESCRIPTION("Read entries from debugfs, and sysfs paths."); > +IGT_TEST_DESCRIPTION("Validate Xe debugfs devnodes and their contents"); > + > +#define for_each_set_bit(i, mask) \ > + for (unsigned int _m = (mask); \ > + _m && ((i) = __builtin_ctz(_m), 1); \ > + _m &= _m - 1) > + > +struct check_entry { > + const char *name_fmt; > + int mode; > + bool (*condition)(struct xe_device *xe_dev); > + unsigned int (*iter_mask)(struct xe_device *xe_dev); > +}; > + > +static unsigned int gt_iter_mask(struct xe_device *xe_dev) > +{ > + return xe_dev->gt_mask; > +} > + > +static unsigned int tile_iter_mask(struct xe_device *xe_dev) > +{ > + return xe_dev->tile_mask; > +} > + > +static bool has_vram(struct xe_device *xe_dev) > +{ > + return xe_dev->has_vram; > +} > + > +/* Validate the format of debugfs fmt file, allow only one %u literal */ > +static bool validate_debugfs_fmt(const char *fmt) > +{ > + bool found_u = false; > + > + for (const char *p = fmt; *p; p++) { > + if (*p != '%') > + continue; > + > + /* % at end of string → invalid */ > + if (!p[1]) > + return false; > + > + /* must be exactly %u */ > + if (p[1] != 'u') > + return false; > + > + /* only one %u allowed */ > + if (found_u) > + return false; > + > + found_u = true; > + > + /* skip u */ > + p++; /* caller loop increments p again */ > + } > + > + return found_u; > +} > + > +struct hit_entry { > + struct igt_list_head link; > + char name[64]; > +}; > > -static int xe_validate_entries(igt_dir_t *igt_dir, > - const char * const str_val[], int str_cnt) > +static bool find_no_tested_files(int dir_fd, struct igt_list_head *hit_entries) NIT: s/find_no_tested_files/find_not_tested_files/ or warn_untested_files ? > { > igt_dir_file_list_t *file_list_entry; > + bool found_not_tested = false; > + igt_dir_t *dir = igt_dir_create(dir_fd); > + int ret; > > - if (!igt_dir) > - return -1; > + igt_assert_f(dir, "Failed to create igt_dir_t for debugfs dir\n"); > > - igt_dir_scan_dirfd(igt_dir, -1); > + ret = igt_dir_scan_dirfd(dir, 0); > + igt_assert_f(ret == 0, "Failed to scan debugfs directory\n"); > > - for (int i = 0; i < str_cnt; i++) { > - int hit = 0; > > - igt_list_for_each_entry(file_list_entry, > - &igt_dir->file_list_head, link) { > - if (strcmp(file_list_entry->relative_path, > - str_val[i]) == 0) { > - hit = 1; > + igt_list_for_each_entry(file_list_entry, &dir->file_list_head, link) { > + struct hit_entry *e; > + bool hit = false; > + > + igt_list_for_each_entry(e, hit_entries, link) { > + if (strcmp(file_list_entry->relative_path, e->name) == 0) { > + hit = true; > break; > } > } > > - if (!hit && opt.warn_on_not_hit) > - igt_warn("no test for: %s\n", str_val[i]); > + if (!hit) { > + igt_warn("No test for: %s\n", file_list_entry->relative_path); > + found_not_tested = true; > + } > } > > - return 0; > + igt_dir_destroy(dir); > + > + return found_not_tested; > +} > + > +static bool file_in_dir_exists(int dirfd, const char *file_name, int mode) > +{ > + int fd = openat(dirfd, file_name, mode); > + > + if (fd >= 0) { > + close(fd); > + return true; > + } > + > + return false; > +} > + > +/* > + * Return: negative error code on failure, or number of missing files > + */ > +static int debugfs_validate_entries(struct xe_device *xe_dev, int dir_fd, > + const struct check_entry *expected_files, size_t size) > +{ > + struct igt_list_head hit_entries; > + int missing_count = 0; > + int err = 0; > + > + IGT_INIT_LIST_HEAD(&hit_entries); > + > + for (int i = 0; i < size; i++) { > + const struct check_entry *check = &expected_files[i]; > + unsigned int mask; > + unsigned int j; > + > + if (check->condition && !check->condition(xe_dev)) > + continue; > + > + if (!check->iter_mask) > + mask = BIT(0); /* to iterate once */ > + else > + mask = check->iter_mask(xe_dev); > + > + for_each_set_bit(j, mask) { > + struct hit_entry *entry; > + > + entry = malloc(sizeof(*entry)); > + if (!entry) { > + igt_warn("Failed to allocate memory for hit entry\n"); > + err = -ENOMEM; > + goto out; > + } > + > + igt_list_add(&entry->link, &hit_entries); > + > + if (!check->iter_mask) { > + snprintf(entry->name, sizeof(entry->name), "%s", check->name_fmt); > + } else { > + int ret; > + > +#pragma GCC diagnostic push > +#pragma GCC diagnostic ignored "-Wformat-nonliteral" > + /** > + * XXX: We ignore the compiler warning, but > + * validate fmt at runtime. > + */ > + if (!validate_debugfs_fmt(check->name_fmt)) { > + igt_warn("Invalid debugfs name fmt: %s.\n", > + check->name_fmt); > + err = -EBADF; > + goto out; > + } > + > + ret = snprintf(entry->name, sizeof(entry->name), > + check->name_fmt, j); > + if (ret < 0 || ret >= sizeof(entry->name)) { > + igt_warn("Debugfs format failed for: %s\n", > + check->name_fmt); > + err = -EINVAL; > + goto out; > + } > +#pragma GCC diagnostic pop > + } > + > + if (!file_in_dir_exists(dir_fd, entry->name, check->mode)) { > + igt_warn("Missing debugfs file: %s\n", entry->name); > + missing_count++; > + } > + } > + } > + > + if (opt.warn_on_not_hit) > + find_no_tested_files(dir_fd, &hit_entries); > + > +out: > + if (!igt_list_empty(&hit_entries)) { > + struct hit_entry *entry, *tmp; > + > + igt_list_for_each_entry_safe(entry, tmp, &hit_entries, link) { > + igt_list_del(&entry->link); > + free(entry); > + } > + } > + > + return (err < 0) ? err : missing_count; > } > > /** > - * SUBTEST: xe-base > - * Description: Check if various debugfs devnodes exist and test reading them > + * SUBTEST: root-dir > + * Description: Check required debugfs devnodes exist in the root debugfs directory > */ > -static void > -xe_test_base(int fd, struct drm_xe_query_config *config, igt_dir_t *igt_dir) > +static void test_root_dir(struct xe_device *xe_dev) > { > - uint16_t devid = intel_get_drm_devid(fd); > - static const char * const expected_files[] = { > - "gt0", > - "gt1", > - "stolen_mm", > - "gtt_mm", > - "vram0_mm", > - "forcewake_all", > - "info", > - "gem_names", > - "clients", > - "name" > + const struct check_entry expected_files[] = { > + { "clients", O_RDONLY }, > + { "forcewake_all", O_WRONLY }, > + { "gem_names", O_RDONLY }, > + { "gt%u", O_RDONLY, NULL, gt_iter_mask }, /* gt0, gt1, ... */ > + { "gtt_mm", O_RDONLY }, > + { "info", O_RDONLY }, > + { "name", O_RDONLY }, > + { "tile%u", O_RDONLY, NULL, tile_iter_mask }, /* tile0, tile1, ... */ > + { "vram%u_mm", O_RDONLY, has_vram, tile_iter_mask }, /* vram0_mm, vram1_mm, ... */ > }; > - char reference[4096]; > - int val = 0; > + int debugfs_fd = igt_debugfs_dir(xe_dev->fd); > + int missing_count; > > - igt_assert(config); > - sprintf(reference, "devid 0x%llx", > - config->info[DRM_XE_QUERY_CONFIG_REV_AND_DEVICE_ID] & 0xffff); > - igt_assert(igt_debugfs_search(fd, "info", reference)); > + if (debugfs_fd < 0) > + goto skip; > > - sprintf(reference, "revid %lld", > - config->info[DRM_XE_QUERY_CONFIG_REV_AND_DEVICE_ID] >> 16); > - igt_assert(igt_debugfs_search(fd, "info", reference)); > + missing_count = debugfs_validate_entries(xe_dev, debugfs_fd, expected_files, > + ARRAY_SIZE(expected_files)); > > - sprintf(reference, "is_dgfx %s", config->info[DRM_XE_QUERY_CONFIG_FLAGS] & > - DRM_XE_QUERY_CONFIG_FLAG_HAS_VRAM ? "yes" : "no"); > + close(debugfs_fd); > + > + igt_fail_on_f(missing_count > 0, "Found %d missing debugfs files (see warnings above)\n", > + missing_count); > + > + return; > +skip: > + igt_skip("Failed to open debugfs directory\n"); > +} > + > +/** > + * SUBTEST: info-read > + * Description: Check info debugfs devnode contents > + */ > +static void test_info_read(struct xe_device *xe_dev) > +{ > + uint16_t devid = intel_get_drm_devid(xe_dev->fd); > + struct drm_xe_query_config *config; > + const char *name = "info"; > + bool failed = false; > + char buf[4096]; > + int val; > + > + config = xe_config(xe_dev->fd); > + > + igt_assert_f(config, "Failed to get xe config\n"); > + > + snprintf(buf, sizeof(buf), "devid 0x%llx", > + config->info[DRM_XE_QUERY_CONFIG_REV_AND_DEVICE_ID] & 0xffff); > + if (!igt_debugfs_search(xe_dev->fd, name, buf)) { > + igt_warn("Missing devid in info debugfs\n"); > + failed = true; > + } > + > + snprintf(buf, sizeof(buf), "revid %lld", > + config->info[DRM_XE_QUERY_CONFIG_REV_AND_DEVICE_ID] >> 16); > + if (!igt_debugfs_search(xe_dev->fd, name, buf)) { > + igt_warn("Missing revid in info debugfs\n"); > + failed = true; > + } > > - igt_assert(igt_debugfs_search(fd, "info", reference)); > + snprintf(buf, sizeof(buf), > + "is_dgfx %s", config->info[DRM_XE_QUERY_CONFIG_FLAGS] & > + DRM_XE_QUERY_CONFIG_FLAG_HAS_VRAM ? "yes" : "no"); > + if (!igt_debugfs_search(xe_dev->fd, name, buf)) { > + igt_warn("Missing is_dgfx in info debugfs\n"); > + failed = true; > + } > > if (intel_gen(devid) < 20) { > + val = -1; > + > switch (config->info[DRM_XE_QUERY_CONFIG_VA_BITS]) { > case 48: > val = 3; > @@ -106,57 +315,38 @@ xe_test_base(int fd, struct drm_xe_query_config *config, igt_dir_t *igt_dir) > case 57: > val = 4; > break; > + default: > + igt_warn("Unexpected va_bits value: %lld\n", > + config->info[DRM_XE_QUERY_CONFIG_VA_BITS]); > + failed = true; > + break; > } > > - sprintf(reference, "vm_max_level %d", val); > - igt_assert(igt_debugfs_search(fd, "info", reference)); > + if (val != -1) { > + snprintf(buf, sizeof(buf), "vm_max_level %d", val); > + if (!igt_debugfs_search(xe_dev->fd, name, buf)) { > + igt_warn("Missing vm_max_level in info debugfs\n"); > + failed = true; > + } > + } > } > > - snprintf(reference, sizeof(reference), "tile_count %d", xe_sysfs_get_num_tiles(fd)); > - igt_assert(igt_debugfs_search(fd, "info", reference)); > - > - igt_assert(igt_debugfs_exists(fd, "gt0", O_RDONLY)); > - > - igt_assert(igt_debugfs_exists(fd, "gtt_mm", O_RDONLY)); > - igt_debugfs_dump(fd, "gtt_mm"); > - > - if (config->info[DRM_XE_QUERY_CONFIG_FLAGS] & DRM_XE_QUERY_CONFIG_FLAG_HAS_VRAM) { > - igt_assert(igt_debugfs_exists(fd, "vram0_mm", O_RDONLY)); > - igt_debugfs_dump(fd, "vram0_mm"); > + snprintf(buf, sizeof(buf), "tile_count %d", xe_sysfs_get_num_tiles(xe_dev->fd)); > + if (!igt_debugfs_search(xe_dev->fd, name, buf)) { > + igt_warn("Missing tile_count in info debugfs\n"); > + failed = true; > } > > - if (igt_debugfs_exists(fd, "stolen_mm", O_RDONLY)) > - igt_debugfs_dump(fd, "stolen_mm"); > - > - igt_assert(igt_debugfs_exists(fd, "clients", O_RDONLY)); > - igt_debugfs_dump(fd, "clients"); > - > - igt_assert(igt_debugfs_exists(fd, "gem_names", O_RDONLY)); > - igt_debugfs_dump(fd, "gem_names"); > + igt_fail_on_f(failed, "Some required info debugfs entries are missing\n"); > > - xe_validate_entries(igt_dir, expected_files, > - ARRAY_SIZE(expected_files)); > -} > - > -/** > - * SUBTEST: xe-forcewake > - * Description: Check forcewake debugfs devnode > - */ > -static void > -xe_test_forcewake(int fd) > -{ > - int handle = igt_debugfs_open(fd, "forcewake_all", O_WRONLY); > - > - igt_assert_neq(handle, -1); > - close(handle); > } > > const char *help_str = > - " -w\t--warn-not-hit Produce warnings if it founds a devfs node without tests"; > + " --warn-not-hit|--w\tWarn about devfs nodes that have no tests"; > > struct option long_options[] = { > - { "--warn-not-hit", no_argument, NULL, 'w'}, > - { 0, 0, 0, 0 } > + { "warn-not-hit", no_argument, NULL, 'w'}, > + { } > }; > > static int opt_handler(int option, int option_index, void *input) > @@ -174,34 +364,25 @@ static int opt_handler(int option, int option_index, void *input) > > igt_main_args("", long_options, help_str, opt_handler, NULL) > { > - int debugfs = -1; > + struct xe_device *xe_dev; > int fd = -1; > - igt_dir_t *igt_dir = NULL; > > igt_fixture { > fd = drm_open_driver_master(DRIVER_XE); > - __igt_debugfs_dump(fd, "info", IGT_LOG_INFO); > - debugfs = igt_debugfs_dir(fd); > - > - igt_dir = igt_dir_create(debugfs); > - igt_require(igt_dir); > - > + xe_dev = xe_device_get(fd); > + igt_assert_f(xe_dev, "Failed to get xe device\n"); > kmstest_set_vt_graphics_mode(); > } > > - igt_describe("Check if various debugfs devnodes exist and test reading them."); > - igt_subtest("xe-base") { > - xe_test_base(fd, xe_config(fd), igt_dir); > - } > - > - igt_describe("Check forcewake debugfs devnode"); > - igt_subtest("xe-forcewake") { > - xe_test_forcewake(fd); > - } > + igt_describe("Check required debugfs devnodes exist in the root debugfs directory."); > + igt_subtest("root-dir") > + test_root_dir(xe_dev); > > + igt_describe("Check info debugfs devnode contents."); > + igt_subtest("info-read") > + test_info_read(xe_dev); > igt_fixture { > - igt_dir_destroy(igt_dir); > - close(debugfs); > + xe_device_put(fd); NIT: not needed, drm_close_driver should handle it > drm_close_driver(fd); > } > } With some nits, LGTM Reviewed-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com> ^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH v1 4/5] tests/intel/debugfs: Add tile-dir subtest for per-tile debugfs validation 2025-11-13 11:46 [PATCH v1 0/5] Redesign of the xe_debugfs test Piórkowski, Piotr ` (2 preceding siblings ...) 2025-11-13 11:46 ` [PATCH v1 3/5] tests/intel/debugfs: Rewrite tests to use array-based required debugfs file lists Piórkowski, Piotr @ 2025-11-13 11:46 ` Piórkowski, Piotr 2025-11-20 9:21 ` Bernatowicz, Marcin 2025-11-13 11:46 ` [PATCH v1 5/5] tests/intel/debugfs: Move VRAM MM checks from root to tile-dir validation Piórkowski, Piotr ` (5 subsequent siblings) 9 siblings, 1 reply; 15+ messages in thread From: Piórkowski, Piotr @ 2025-11-13 11:46 UTC (permalink / raw) To: igt-dev; +Cc: Piotr Piórkowski, Peter Senna Tschudin, Rodrigo Vivi From: Piotr Piórkowski <piotr.piorkowski@intel.com> Let's add a dedicated subtest for tile-level debugfs validation. Signed-off-by: Piotr Piórkowski <piotr.piorkowski@intel.com> Cc: Peter Senna Tschudin <peter.senna@linux.intel.com> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> --- tests/intel/xe_debugfs.c | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/tests/intel/xe_debugfs.c b/tests/intel/xe_debugfs.c index 2600880a7e..2824a48fa2 100644 --- a/tests/intel/xe_debugfs.c +++ b/tests/intel/xe_debugfs.c @@ -266,6 +266,35 @@ skip: igt_skip("Failed to open debugfs directory\n"); } +/** + * SUBTEST: tile-dir + * Description: Check required debugfs devnodes exist in the tile debugfs directory + */ +static void test_tile_dir(struct xe_device *xe_dev, uint8_t tile) +{ + const struct check_entry expected_files[] = { + { "ggtt", O_RDONLY }, + { "sa_info", O_RDONLY }, + }; + int debugfs_fd = igt_debugfs_tile_dir(xe_dev->fd, tile); + int missing_count; + + if (debugfs_fd < 0) + goto skip; + + missing_count = debugfs_validate_entries(xe_dev, debugfs_fd, expected_files, + ARRAY_SIZE(expected_files)); + + close(debugfs_fd); + + igt_fail_on_f(missing_count > 0, "Found %d missing debugfs files (see warnings above)\n", + missing_count); + + return; +skip: + igt_skip("Failed to open debugfs directory\n"); +} + /** * SUBTEST: info-read * Description: Check info debugfs devnode contents @@ -365,6 +394,7 @@ static int opt_handler(int option, int option_index, void *input) igt_main_args("", long_options, help_str, opt_handler, NULL) { struct xe_device *xe_dev; + unsigned int t; int fd = -1; igt_fixture { @@ -378,6 +408,12 @@ igt_main_args("", long_options, help_str, opt_handler, NULL) igt_subtest("root-dir") test_root_dir(xe_dev); + igt_describe("Check required debugfs devnodes exist in the tile debugfs directory."); + igt_subtest_with_dynamic("tile-dir") + xe_for_each_tile(fd, t) + igt_dynamic_f("tile-%d", t) + test_tile_dir(xe_dev, t); + igt_describe("Check info debugfs devnode contents."); igt_subtest("info-read") test_info_read(xe_dev); -- 2.34.1 ^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [PATCH v1 4/5] tests/intel/debugfs: Add tile-dir subtest for per-tile debugfs validation 2025-11-13 11:46 ` [PATCH v1 4/5] tests/intel/debugfs: Add tile-dir subtest for per-tile debugfs validation Piórkowski, Piotr @ 2025-11-20 9:21 ` Bernatowicz, Marcin 0 siblings, 0 replies; 15+ messages in thread From: Bernatowicz, Marcin @ 2025-11-20 9:21 UTC (permalink / raw) To: Piórkowski, Piotr, igt-dev; +Cc: Peter Senna Tschudin, Rodrigo Vivi On 11/13/2025 12:46 PM, Piórkowski, Piotr wrote: > From: Piotr Piórkowski <piotr.piorkowski@intel.com> > > Let's add a dedicated subtest for tile-level debugfs validation. > > Signed-off-by: Piotr Piórkowski <piotr.piorkowski@intel.com> > Cc: Peter Senna Tschudin <peter.senna@linux.intel.com> > Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> > --- > tests/intel/xe_debugfs.c | 36 ++++++++++++++++++++++++++++++++++++ > 1 file changed, 36 insertions(+) > > diff --git a/tests/intel/xe_debugfs.c b/tests/intel/xe_debugfs.c > index 2600880a7e..2824a48fa2 100644 > --- a/tests/intel/xe_debugfs.c > +++ b/tests/intel/xe_debugfs.c > @@ -266,6 +266,35 @@ skip: > igt_skip("Failed to open debugfs directory\n"); > } > > +/** > + * SUBTEST: tile-dir > + * Description: Check required debugfs devnodes exist in the tile debugfs directory > + */ > +static void test_tile_dir(struct xe_device *xe_dev, uint8_t tile) > +{ > + const struct check_entry expected_files[] = { > + { "ggtt", O_RDONLY }, > + { "sa_info", O_RDONLY }, > + }; > + int debugfs_fd = igt_debugfs_tile_dir(xe_dev->fd, tile); > + int missing_count; > + > + if (debugfs_fd < 0) > + goto skip; NIT: why not igt_skip_on_f(debugfs_fd < 0, "Failed to open debugfs directory\n"); > + > + missing_count = debugfs_validate_entries(xe_dev, debugfs_fd, expected_files, > + ARRAY_SIZE(expected_files)); > + > + close(debugfs_fd); > + > + igt_fail_on_f(missing_count > 0, "Found %d missing debugfs files (see warnings above)\n", > + missing_count); > + > + return; > +skip: > + igt_skip("Failed to open debugfs directory\n"); > +} > + > /** > * SUBTEST: info-read > * Description: Check info debugfs devnode contents > @@ -365,6 +394,7 @@ static int opt_handler(int option, int option_index, void *input) > igt_main_args("", long_options, help_str, opt_handler, NULL) > { > struct xe_device *xe_dev; > + unsigned int t; > int fd = -1; > > igt_fixture { > @@ -378,6 +408,12 @@ igt_main_args("", long_options, help_str, opt_handler, NULL) > igt_subtest("root-dir") > test_root_dir(xe_dev); > > + igt_describe("Check required debugfs devnodes exist in the tile debugfs directory."); > + igt_subtest_with_dynamic("tile-dir") > + xe_for_each_tile(fd, t) > + igt_dynamic_f("tile-%d", t) NIT: s/tile-%d/tile-%u/ > + test_tile_dir(xe_dev, t); > + > igt_describe("Check info debugfs devnode contents."); > igt_subtest("info-read") > test_info_read(xe_dev); With small nits, LGTM Reviewed-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com> ^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH v1 5/5] tests/intel/debugfs: Move VRAM MM checks from root to tile-dir validation 2025-11-13 11:46 [PATCH v1 0/5] Redesign of the xe_debugfs test Piórkowski, Piotr ` (3 preceding siblings ...) 2025-11-13 11:46 ` [PATCH v1 4/5] tests/intel/debugfs: Add tile-dir subtest for per-tile debugfs validation Piórkowski, Piotr @ 2025-11-13 11:46 ` Piórkowski, Piotr 2025-11-13 21:14 ` ✗ Xe.CI.BAT: failure for Redesign of the xe_debugfs test Patchwork ` (4 subsequent siblings) 9 siblings, 0 replies; 15+ messages in thread From: Piórkowski, Piotr @ 2025-11-13 11:46 UTC (permalink / raw) To: igt-dev; +Cc: Piotr Piórkowski, Stuart Summers From: Piotr Piórkowski <piotr.piorkowski@intel.com> Let's adjust VRAM MM debugfs validation to match the changes from [1], which move the this debugfs from the root level into the per-tile directory. [1]: https://patchwork.freedesktop.org/series/157089/ Signed-off-by: Piotr Piórkowski <piotr.piorkowski@intel.com> Cc: Stuart Summers <stuart.summers@intel.com> --- tests/intel/xe_debugfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/intel/xe_debugfs.c b/tests/intel/xe_debugfs.c index 2824a48fa2..54501e63c2 100644 --- a/tests/intel/xe_debugfs.c +++ b/tests/intel/xe_debugfs.c @@ -245,7 +245,6 @@ static void test_root_dir(struct xe_device *xe_dev) { "info", O_RDONLY }, { "name", O_RDONLY }, { "tile%u", O_RDONLY, NULL, tile_iter_mask }, /* tile0, tile1, ... */ - { "vram%u_mm", O_RDONLY, has_vram, tile_iter_mask }, /* vram0_mm, vram1_mm, ... */ }; int debugfs_fd = igt_debugfs_dir(xe_dev->fd); int missing_count; @@ -275,6 +274,7 @@ static void test_tile_dir(struct xe_device *xe_dev, uint8_t tile) const struct check_entry expected_files[] = { { "ggtt", O_RDONLY }, { "sa_info", O_RDONLY }, + { "vram_mm", O_RDONLY, has_vram }, }; int debugfs_fd = igt_debugfs_tile_dir(xe_dev->fd, tile); int missing_count; -- 2.34.1 ^ permalink raw reply related [flat|nested] 15+ messages in thread
* ✗ Xe.CI.BAT: failure for Redesign of the xe_debugfs test 2025-11-13 11:46 [PATCH v1 0/5] Redesign of the xe_debugfs test Piórkowski, Piotr ` (4 preceding siblings ...) 2025-11-13 11:46 ` [PATCH v1 5/5] tests/intel/debugfs: Move VRAM MM checks from root to tile-dir validation Piórkowski, Piotr @ 2025-11-13 21:14 ` Patchwork 2025-11-13 23:45 ` ✓ i915.CI.BAT: success " Patchwork ` (3 subsequent siblings) 9 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2025-11-13 21:14 UTC (permalink / raw) To: Piotr Piórkowski; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 6224 bytes --] == Series Details == Series: Redesign of the xe_debugfs test URL : https://patchwork.freedesktop.org/series/157493/ State : failure == Summary == CI Bug Log - changes from XEIGT_8623_BAT -> XEIGTPW_14051_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_14051_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_14051_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (13 -> 13) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_14051_BAT: ### IGT changes ### #### Possible regressions #### * igt@xe_debugfs@xe-base: - bat-lnl-2: [PASS][1] -> [SKIP][2] +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/bat-lnl-2/igt@xe_debugfs@xe-base.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/bat-lnl-2/igt@xe_debugfs@xe-base.html * igt@xe_debugfs@xe-forcewake: - bat-bmg-2: [PASS][3] -> [SKIP][4] +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/bat-bmg-2/igt@xe_debugfs@xe-forcewake.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/bat-bmg-2/igt@xe_debugfs@xe-forcewake.html - bat-bmg-1: [PASS][5] -> [SKIP][6] +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/bat-bmg-1/igt@xe_debugfs@xe-forcewake.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/bat-bmg-1/igt@xe_debugfs@xe-forcewake.html - bat-adlp-7: [PASS][7] -> [SKIP][8] +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/bat-adlp-7/igt@xe_debugfs@xe-forcewake.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/bat-adlp-7/igt@xe_debugfs@xe-forcewake.html - bat-ptl-2: [PASS][9] -> [SKIP][10] +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/bat-ptl-2/igt@xe_debugfs@xe-forcewake.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/bat-ptl-2/igt@xe_debugfs@xe-forcewake.html - bat-dg2-oem2: [PASS][11] -> [SKIP][12] +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/bat-dg2-oem2/igt@xe_debugfs@xe-forcewake.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/bat-dg2-oem2/igt@xe_debugfs@xe-forcewake.html - bat-atsm-2: [PASS][13] -> [SKIP][14] +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/bat-atsm-2/igt@xe_debugfs@xe-forcewake.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/bat-atsm-2/igt@xe_debugfs@xe-forcewake.html - bat-adlp-vm: [PASS][15] -> [SKIP][16] +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/bat-adlp-vm/igt@xe_debugfs@xe-forcewake.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/bat-adlp-vm/igt@xe_debugfs@xe-forcewake.html - bat-ptl-1: [PASS][17] -> [SKIP][18] +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/bat-ptl-1/igt@xe_debugfs@xe-forcewake.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/bat-ptl-1/igt@xe_debugfs@xe-forcewake.html - bat-ptl-vm: [PASS][19] -> [SKIP][20] +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/bat-ptl-vm/igt@xe_debugfs@xe-forcewake.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/bat-ptl-vm/igt@xe_debugfs@xe-forcewake.html - bat-lnl-1: [PASS][21] -> [SKIP][22] +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/bat-lnl-1/igt@xe_debugfs@xe-forcewake.html [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/bat-lnl-1/igt@xe_debugfs@xe-forcewake.html - bat-pvc-2: [PASS][23] -> [SKIP][24] +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/bat-pvc-2/igt@xe_debugfs@xe-forcewake.html [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/bat-pvc-2/igt@xe_debugfs@xe-forcewake.html Known issues ------------ Here are the changes found in XEIGTPW_14051_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_flip@basic-plain-flip@a-edp1: - bat-adlp-7: [PASS][25] -> [DMESG-WARN][26] ([Intel XE#4543]) +1 other test dmesg-warn [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/bat-adlp-7/igt@kms_flip@basic-plain-flip@a-edp1.html [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/bat-adlp-7/igt@kms_flip@basic-plain-flip@a-edp1.html * igt@xe_waitfence@engine: - bat-dg2-oem2: [PASS][27] -> [FAIL][28] ([Intel XE#6519]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/bat-dg2-oem2/igt@xe_waitfence@engine.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/bat-dg2-oem2/igt@xe_waitfence@engine.html #### Possible fixes #### * igt@kms_flip@basic-flip-vs-modeset: - bat-adlp-7: [DMESG-WARN][29] ([Intel XE#4543]) -> [PASS][30] +1 other test pass [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/bat-adlp-7/igt@kms_flip@basic-flip-vs-modeset.html [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/bat-adlp-7/igt@kms_flip@basic-flip-vs-modeset.html [Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543 [Intel XE#6519]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6519 Build changes ------------- * IGT: IGT_8623 -> IGTPW_14051 * Linux: xe-4101-efff261d878490433669a252a1f40412e784ef92 -> xe-4102-3ce0a1e8a582ad7bd9923eaafcb8619986d59310 IGTPW_14051: 14051 IGT_8623: 8623 xe-4101-efff261d878490433669a252a1f40412e784ef92: efff261d878490433669a252a1f40412e784ef92 xe-4102-3ce0a1e8a582ad7bd9923eaafcb8619986d59310: 3ce0a1e8a582ad7bd9923eaafcb8619986d59310 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/index.html [-- Attachment #2: Type: text/html, Size: 7052 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
* ✓ i915.CI.BAT: success for Redesign of the xe_debugfs test 2025-11-13 11:46 [PATCH v1 0/5] Redesign of the xe_debugfs test Piórkowski, Piotr ` (5 preceding siblings ...) 2025-11-13 21:14 ` ✗ Xe.CI.BAT: failure for Redesign of the xe_debugfs test Patchwork @ 2025-11-13 23:45 ` Patchwork 2025-11-14 4:46 ` ✗ Xe.CI.Full: failure " Patchwork ` (2 subsequent siblings) 9 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2025-11-13 23:45 UTC (permalink / raw) To: Piotr Piórkowski; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2815 bytes --] == Series Details == Series: Redesign of the xe_debugfs test URL : https://patchwork.freedesktop.org/series/157493/ State : success == Summary == CI Bug Log - changes from IGT_8623 -> IGTPW_14051 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/index.html Participating hosts (44 -> 43) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_14051 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_module_load@load: - bat-mtlp-9: [PASS][1] -> [DMESG-WARN][2] ([i915#13494]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/bat-mtlp-9/igt@i915_module_load@load.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/bat-mtlp-9/igt@i915_module_load@load.html * igt@i915_selftest@live@workarounds: - bat-mtlp-6: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/bat-mtlp-6/igt@i915_selftest@live@workarounds.html #### Possible fixes #### * igt@i915_selftest@live: - bat-mtlp-8: [DMESG-FAIL][5] ([i915#12061]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/bat-mtlp-8/igt@i915_selftest@live.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/bat-mtlp-8/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-dg2-9: [DMESG-FAIL][7] ([i915#12061]) -> [PASS][8] +1 other test pass [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/bat-dg2-9/igt@i915_selftest@live@workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/bat-dg2-9/igt@i915_selftest@live@workarounds.html - bat-mtlp-9: [DMESG-FAIL][9] ([i915#12061]) -> [PASS][10] +1 other test pass [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8623 -> IGTPW_14051 CI-20190529: 20190529 CI_DRM_17544: 9d61bbd3042d1976dc5f67a30e0aa6c010cbc98f @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14051: 14051 IGT_8623: 8623 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/index.html [-- Attachment #2: Type: text/html, Size: 3736 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
* ✗ Xe.CI.Full: failure for Redesign of the xe_debugfs test 2025-11-13 11:46 [PATCH v1 0/5] Redesign of the xe_debugfs test Piórkowski, Piotr ` (6 preceding siblings ...) 2025-11-13 23:45 ` ✓ i915.CI.BAT: success " Patchwork @ 2025-11-14 4:46 ` Patchwork 2025-11-14 17:59 ` ✗ i915.CI.Full: " Patchwork 2025-11-18 16:56 ` [PATCH v1 0/5] " Peter Senna Tschudin 9 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2025-11-14 4:46 UTC (permalink / raw) To: Piotr Piórkowski; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 71063 bytes --] == Series Details == Series: Redesign of the xe_debugfs test URL : https://patchwork.freedesktop.org/series/157493/ State : failure == Summary == CI Bug Log - changes from XEIGT_8623_FULL -> XEIGTPW_14051_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_14051_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_14051_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 3) ------------------------------ Missing (1): shard-adlp Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_14051_FULL: ### IGT changes ### #### Possible regressions #### * igt@kms_vblank@ts-continuation-suspend: - shard-bmg: [PASS][1] -> [DMESG-WARN][2] +1 other test dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-6/igt@kms_vblank@ts-continuation-suspend.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-7/igt@kms_vblank@ts-continuation-suspend.html * {igt@xe_debugfs@tile-dir@tile-0} (NEW): - shard-bmg: NOTRUN -> [FAIL][3] +1 other test fail [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-4/igt@xe_debugfs@tile-dir@tile-0.html New tests --------- New tests have been introduced between XEIGT_8623_FULL and XEIGTPW_14051_FULL: ### New IGT tests (4) ### * igt@xe_debugfs@info-read: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@xe_debugfs@root-dir: - Statuses : 3 pass(s) - Exec time: [0.0, 0.00] s * igt@xe_debugfs@tile-dir: - Statuses : 1 fail(s) 1 pass(s) - Exec time: [0.00, 0.02] s * igt@xe_debugfs@tile-dir@tile-0: - Statuses : 1 fail(s) 1 pass(s) - Exec time: [0.0, 0.02] s Known issues ------------ Here are the changes found in XEIGTPW_14051_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_async_flips@test-cursor: - shard-lnl: NOTRUN -> [SKIP][4] ([Intel XE#664]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-3/igt@kms_async_flips@test-cursor.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2327]) +2 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-6/igt@kms_big_fb@linear-32bpp-rotate-270.html - shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#1407]) +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-5/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][7] ([Intel XE#316]) +2 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-436/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg2-set2: NOTRUN -> [SKIP][8] ([Intel XE#1124]) +9 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-463/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-180: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#1124]) +2 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-4/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb: - shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#619]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-436/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#610]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-8/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html - shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#610]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-432/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#1124]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#2191]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-3/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2314] / [Intel XE#2894]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-7/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html * igt@kms_bw@linear-tiling-2-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#367]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-435/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2887]) +9 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-5/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#787]) +104 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-435/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#455] / [Intel XE#787]) +29 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-464/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#2907]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#3442]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#2887]) +3 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6: - shard-dg2-set2: [PASS][24] -> [INCOMPLETE][25] ([Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][26] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2325]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-8/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_color@gamma: - shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#306]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-434/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_edid@dp-edid-change-during-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#373]) +6 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-464/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html * igt@kms_chamelium_hpd@dp-hpd-storm-disable: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2252]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-8/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html * igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#373]) +2 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-1/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html * igt@kms_cursor_crc@cursor-offscreen-32x32: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2320]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-1/igt@kms_cursor_crc@cursor-offscreen-32x32.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#1424]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-2/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#309]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-3/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-bmg: [PASS][35] -> [SKIP][36] ([Intel XE#2291]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-bmg: [PASS][37] -> [FAIL][38] ([Intel XE#4633]) +1 other test fail [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-bmg: [PASS][39] -> [FAIL][40] ([Intel XE#1475]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#323]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#323]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-466/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2286]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dp_aux_dev: - shard-bmg: [PASS][44] -> [SKIP][45] ([Intel XE#3009]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-1/igt@kms_dp_aux_dev.html [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-6/igt@kms_dp_aux_dev.html * igt@kms_dp_link_training@uhbr-sst: - shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#4356]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-432/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#4422]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-7/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html - shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#4422]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-435/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#4422]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-8/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html * igt@kms_flip@2x-flip-vs-dpms: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#1421]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-7/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-bmg: [PASS][51] -> [SKIP][52] ([Intel XE#2316]) +8 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-4/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1: - shard-lnl: [PASS][53] -> [FAIL][54] ([Intel XE#301]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#1397] / [Intel XE#1745]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#1397]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2380]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#651]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#651]) +22 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2312]) +2 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-rte: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#5427]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-rte.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#5390]) +5 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#6312]) +5 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#6312]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2311]) +10 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#653]) +23 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2313]) +11 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2352]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#656]) +10 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_hdr@static-toggle-dpms: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#1503]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-8/igt@kms_hdr@static-toggle-dpms.html * igt@kms_joiner@basic-max-non-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#2925]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-464/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#2925] / [Intel XE#2927]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-432/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: [PASS][73] -> [SKIP][74] ([Intel XE#3012]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_plane_multiple@2x-tiling-4: - shard-bmg: [PASS][75] -> [SKIP][76] ([Intel XE#4596]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-4.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_pm_backlight@fade-with-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#870]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-463/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc5-psr: - shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2392]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-7/igt@kms_pm_dc@dc5-psr.html - shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#1129]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-463/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_rpm@modeset-lpsp: - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-7/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#1406] / [Intel XE#1489]) +4 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-464/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#1406] / [Intel XE#1489]) +4 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-4/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#1406] / [Intel XE#2893]) +2 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-4/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt@kms_psr@fbc-psr2-cursor-plane-move: - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +3 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-7/igt@kms_psr@fbc-psr2-cursor-plane-move.html * igt@kms_psr@fbc-psr2-sprite-plane-move: - shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +11 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-435/igt@kms_psr@fbc-psr2-sprite-plane-move.html * igt@kms_rotation_crc@primary-x-tiled-reflect-x-0: - shard-lnl: NOTRUN -> [FAIL][86] ([Intel XE#4689]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-8/igt@kms_rotation_crc@primary-x-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2330]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html - shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#1127]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-436/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1127]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#3414]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-463/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#3414] / [Intel XE#3904]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_sharpness_filter@invalid-filter-with-scaling-mode: - shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#6503]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-5/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [PASS][93] -> [FAIL][94] ([Intel XE#4459]) +1 other test fail [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-lnl-4/igt@kms_vrr@cmrr@pipe-a-edp-1.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-2/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@kms_vrr@flipline: - shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#455]) +15 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-435/igt@kms_vrr@flipline.html * igt@kms_vrr@lobf: - shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2168]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-1/igt@kms_vrr@lobf.html * igt@xe_copy_basic@mem-page-copy-17: - shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#5300]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-435/igt@xe_copy_basic@mem-page-copy-17.html * igt@xe_eu_stall@invalid-gt-id: - shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#5626]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-436/igt@xe_eu_stall@invalid-gt-id.html * igt@xe_eudebug@basic-vm-access-parameters-userptr-faultable: - shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#4837]) +7 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-8/igt@xe_eudebug@basic-vm-access-parameters-userptr-faultable.html - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#4837]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-4/igt@xe_eudebug@basic-vm-access-parameters-userptr-faultable.html * igt@xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#4837]) +11 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-463/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt@xe_evict@evict-beng-threads-small: - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#688]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-5/igt@xe_evict@evict-beng-threads-small.html * igt@xe_exec_basic@multigpu-once-null-rebind: - shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#2322]) +3 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-8/igt@xe_exec_basic@multigpu-once-null-rebind.html - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#1392]) +2 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-3/igt@xe_exec_basic@multigpu-once-null-rebind.html * igt@xe_exec_fault_mode@once-bindexecqueue-imm: - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#288]) +21 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-463/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html * igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence: - shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#2360]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-436/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html * igt@xe_exec_system_allocator@many-malloc-prefetch-madvise: - shard-lnl: NOTRUN -> [WARN][107] ([Intel XE#5786]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-4/igt@xe_exec_system_allocator@many-malloc-prefetch-madvise.html * igt@xe_exec_system_allocator@once-large-mmap-free-huge-nomemset: - shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#4943]) +10 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-8/igt@xe_exec_system_allocator@once-large-mmap-free-huge-nomemset.html * igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-nomemset: - shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#4915]) +274 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-466/igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-nomemset.html * igt@xe_exec_system_allocator@threads-many-execqueues-mmap-new-huge-nomemset: - shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#4943]) +11 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-5/igt@xe_exec_system_allocator@threads-many-execqueues-mmap-new-huge-nomemset.html * igt@xe_huc_copy@huc_copy: - shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#255]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-435/igt@xe_huc_copy@huc_copy.html * igt@xe_module_load@load: - shard-lnl: ([PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136]) -> ([PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [SKIP][147], [PASS][148], [PASS][149], [PASS][150], [PASS][151], [PASS][152], [PASS][153], [PASS][154], [PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162]) ([Intel XE#378]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-lnl-2/igt@xe_module_load@load.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-lnl-2/igt@xe_module_load@load.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-lnl-7/igt@xe_module_load@load.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-lnl-7/igt@xe_module_load@load.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-lnl-2/igt@xe_module_load@load.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-lnl-5/igt@xe_module_load@load.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-lnl-5/igt@xe_module_load@load.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-lnl-5/igt@xe_module_load@load.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-lnl-1/igt@xe_module_load@load.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-lnl-1/igt@xe_module_load@load.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-lnl-8/igt@xe_module_load@load.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-lnl-2/igt@xe_module_load@load.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-lnl-4/igt@xe_module_load@load.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-lnl-7/igt@xe_module_load@load.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-lnl-7/igt@xe_module_load@load.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-lnl-3/igt@xe_module_load@load.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-lnl-4/igt@xe_module_load@load.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-lnl-4/igt@xe_module_load@load.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-lnl-8/igt@xe_module_load@load.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-lnl-8/igt@xe_module_load@load.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-lnl-8/igt@xe_module_load@load.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-lnl-1/igt@xe_module_load@load.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-lnl-3/igt@xe_module_load@load.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-lnl-3/igt@xe_module_load@load.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-lnl-1/igt@xe_module_load@load.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-1/igt@xe_module_load@load.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-4/igt@xe_module_load@load.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-4/igt@xe_module_load@load.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-7/igt@xe_module_load@load.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-7/igt@xe_module_load@load.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-4/igt@xe_module_load@load.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-4/igt@xe_module_load@load.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-8/igt@xe_module_load@load.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-7/igt@xe_module_load@load.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-8/igt@xe_module_load@load.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-5/igt@xe_module_load@load.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-8/igt@xe_module_load@load.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-8/igt@xe_module_load@load.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-5/igt@xe_module_load@load.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-5/igt@xe_module_load@load.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-5/igt@xe_module_load@load.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-2/igt@xe_module_load@load.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-2/igt@xe_module_load@load.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-2/igt@xe_module_load@load.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-2/igt@xe_module_load@load.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-3/igt@xe_module_load@load.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-3/igt@xe_module_load@load.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-1/igt@xe_module_load@load.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-3/igt@xe_module_load@load.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-3/igt@xe_module_load@load.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-1/igt@xe_module_load@load.html - shard-bmg: ([PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185], [PASS][186]) -> ([PASS][187], [PASS][188], [PASS][189], [SKIP][190], [PASS][191], [PASS][192], [PASS][193], [PASS][194], [PASS][195], [PASS][196], [PASS][197], [PASS][198], [PASS][199], [PASS][200], [PASS][201], [PASS][202], [PASS][203], [PASS][204], [PASS][205], [PASS][206], [PASS][207]) ([Intel XE#2457]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-5/igt@xe_module_load@load.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-1/igt@xe_module_load@load.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-8/igt@xe_module_load@load.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-8/igt@xe_module_load@load.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-8/igt@xe_module_load@load.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-7/igt@xe_module_load@load.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-2/igt@xe_module_load@load.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-5/igt@xe_module_load@load.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-2/igt@xe_module_load@load.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-4/igt@xe_module_load@load.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-2/igt@xe_module_load@load.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-6/igt@xe_module_load@load.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-1/igt@xe_module_load@load.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-1/igt@xe_module_load@load.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-1/igt@xe_module_load@load.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-5/igt@xe_module_load@load.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-7/igt@xe_module_load@load.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-7/igt@xe_module_load@load.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-4/igt@xe_module_load@load.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-5/igt@xe_module_load@load.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-4/igt@xe_module_load@load.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-6/igt@xe_module_load@load.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-6/igt@xe_module_load@load.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-6/igt@xe_module_load@load.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-1/igt@xe_module_load@load.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-1/igt@xe_module_load@load.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-6/igt@xe_module_load@load.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-1/igt@xe_module_load@load.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-8/igt@xe_module_load@load.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-8/igt@xe_module_load@load.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-6/igt@xe_module_load@load.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-6/igt@xe_module_load@load.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-1/igt@xe_module_load@load.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-8/igt@xe_module_load@load.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-7/igt@xe_module_load@load.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-7/igt@xe_module_load@load.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-7/igt@xe_module_load@load.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-5/igt@xe_module_load@load.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-4/igt@xe_module_load@load.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-4/igt@xe_module_load@load.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-4/igt@xe_module_load@load.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-2/igt@xe_module_load@load.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-2/igt@xe_module_load@load.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-5/igt@xe_module_load@load.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-5/igt@xe_module_load@load.html - shard-dg2-set2: ([PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214], [PASS][215], [PASS][216], [PASS][217], [PASS][218], [PASS][219], [PASS][220], [PASS][221], [PASS][222], [PASS][223], [PASS][224], [PASS][225], [PASS][226], [PASS][227], [PASS][228], [PASS][229], [PASS][230], [PASS][231], [PASS][232]) -> ([PASS][233], [PASS][234], [PASS][235], [PASS][236], [PASS][237], [PASS][238], [PASS][239], [PASS][240], [PASS][241], [PASS][242], [PASS][243], [PASS][244], [PASS][245], [PASS][246], [PASS][247], [SKIP][248], [PASS][249], [PASS][250], [PASS][251], [PASS][252], [PASS][253], [PASS][254], [PASS][255], [PASS][256], [PASS][257], [PASS][258]) ([Intel XE#378]) [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-dg2-433/igt@xe_module_load@load.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-dg2-433/igt@xe_module_load@load.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-dg2-463/igt@xe_module_load@load.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-dg2-435/igt@xe_module_load@load.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-dg2-435/igt@xe_module_load@load.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-dg2-463/igt@xe_module_load@load.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-dg2-433/igt@xe_module_load@load.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-dg2-432/igt@xe_module_load@load.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-dg2-432/igt@xe_module_load@load.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-dg2-464/igt@xe_module_load@load.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-dg2-432/igt@xe_module_load@load.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-dg2-434/igt@xe_module_load@load.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-dg2-435/igt@xe_module_load@load.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-dg2-466/igt@xe_module_load@load.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-dg2-436/igt@xe_module_load@load.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-dg2-436/igt@xe_module_load@load.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-dg2-434/igt@xe_module_load@load.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-dg2-463/igt@xe_module_load@load.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-dg2-466/igt@xe_module_load@load.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-dg2-466/igt@xe_module_load@load.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-dg2-434/igt@xe_module_load@load.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-dg2-463/igt@xe_module_load@load.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-dg2-464/igt@xe_module_load@load.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-dg2-464/igt@xe_module_load@load.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-dg2-436/igt@xe_module_load@load.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-432/igt@xe_module_load@load.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-432/igt@xe_module_load@load.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-432/igt@xe_module_load@load.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-434/igt@xe_module_load@load.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-434/igt@xe_module_load@load.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-434/igt@xe_module_load@load.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-435/igt@xe_module_load@load.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-435/igt@xe_module_load@load.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-435/igt@xe_module_load@load.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-466/igt@xe_module_load@load.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-464/igt@xe_module_load@load.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-464/igt@xe_module_load@load.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-466/igt@xe_module_load@load.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-466/igt@xe_module_load@load.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-464/igt@xe_module_load@load.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-433/igt@xe_module_load@load.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-433/igt@xe_module_load@load.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-433/igt@xe_module_load@load.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-433/igt@xe_module_load@load.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-436/igt@xe_module_load@load.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-436/igt@xe_module_load@load.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-436/igt@xe_module_load@load.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-436/igt@xe_module_load@load.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-463/igt@xe_module_load@load.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-463/igt@xe_module_load@load.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-463/igt@xe_module_load@load.html * igt@xe_oa@closed-fd-and-unmapped-access: - shard-dg2-set2: NOTRUN -> [SKIP][259] ([Intel XE#3573]) +10 other tests skip [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-436/igt@xe_oa@closed-fd-and-unmapped-access.html * igt@xe_pm@d3cold-i2c: - shard-dg2-set2: NOTRUN -> [SKIP][260] ([Intel XE#5694]) [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-433/igt@xe_pm@d3cold-i2c.html - shard-lnl: NOTRUN -> [SKIP][261] ([Intel XE#5694]) [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-8/igt@xe_pm@d3cold-i2c.html * igt@xe_pm@d3hot-mmap-vram: - shard-lnl: NOTRUN -> [SKIP][262] ([Intel XE#1948]) [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-5/igt@xe_pm@d3hot-mmap-vram.html * igt@xe_pm@s3-basic-exec: - shard-lnl: NOTRUN -> [SKIP][263] ([Intel XE#584]) [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-2/igt@xe_pm@s3-basic-exec.html * igt@xe_pm@vram-d3cold-threshold: - shard-bmg: NOTRUN -> [SKIP][264] ([Intel XE#579]) [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-7/igt@xe_pm@vram-d3cold-threshold.html * igt@xe_pm_residency@idle-residency: - shard-dg2-set2: [PASS][265] -> [FAIL][266] ([Intel XE#6362]) +1 other test fail [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-dg2-434/igt@xe_pm_residency@idle-residency.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-464/igt@xe_pm_residency@idle-residency.html * igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_copy0: - shard-lnl: [PASS][267] -> [FAIL][268] ([Intel XE#6251]) +2 other tests fail [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-lnl-2/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_copy0.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-8/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_copy0.html * igt@xe_pmu@fn-engine-activity-sched-if-idle: - shard-bmg: [PASS][269] -> [FAIL][270] ([Intel XE#5937]) [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-6/igt@xe_pmu@fn-engine-activity-sched-if-idle.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-8/igt@xe_pmu@fn-engine-activity-sched-if-idle.html * igt@xe_pxp@display-pxp-fb: - shard-dg2-set2: NOTRUN -> [SKIP][271] ([Intel XE#4733]) +1 other test skip [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-436/igt@xe_pxp@display-pxp-fb.html * igt@xe_pxp@pxp-termination-key-update-post-suspend: - shard-bmg: NOTRUN -> [SKIP][272] ([Intel XE#4733]) +1 other test skip [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-8/igt@xe_pxp@pxp-termination-key-update-post-suspend.html * igt@xe_query@multigpu-query-pxp-status: - shard-bmg: NOTRUN -> [SKIP][273] ([Intel XE#944]) +1 other test skip [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-5/igt@xe_query@multigpu-query-pxp-status.html * igt@xe_query@multigpu-query-topology: - shard-dg2-set2: NOTRUN -> [SKIP][274] ([Intel XE#944]) +2 other tests skip [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-463/igt@xe_query@multigpu-query-topology.html - shard-lnl: NOTRUN -> [SKIP][275] ([Intel XE#944]) [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-4/igt@xe_query@multigpu-query-topology.html * igt@xe_sriov_auto_provisioning@selfconfig-basic: - shard-dg2-set2: NOTRUN -> [SKIP][276] ([Intel XE#4130]) [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-464/igt@xe_sriov_auto_provisioning@selfconfig-basic.html * igt@xe_sriov_flr@flr-each-isolation: - shard-bmg: [PASS][277] -> [FAIL][278] ([Intel XE#6569]) [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-7/igt@xe_sriov_flr@flr-each-isolation.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-7/igt@xe_sriov_flr@flr-each-isolation.html * igt@xe_sriov_scheduling@nonpreempt-engine-resets: - shard-dg2-set2: NOTRUN -> [SKIP][279] ([Intel XE#4351]) [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-463/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html * igt@xe_survivability@i2c-functionality: - shard-dg2-set2: NOTRUN -> [SKIP][280] ([Intel XE#6529]) [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-466/igt@xe_survivability@i2c-functionality.html - shard-lnl: NOTRUN -> [SKIP][281] ([Intel XE#6529]) [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-7/igt@xe_survivability@i2c-functionality.html #### Possible fixes #### * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6: - shard-dg2-set2: [INCOMPLETE][282] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#6168]) -> [PASS][283] [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-bmg: [SKIP][284] ([Intel XE#2291]) -> [PASS][285] +3 other tests pass [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-bmg: [SKIP][286] ([Intel XE#1340]) -> [PASS][287] [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-bmg: [SKIP][288] ([Intel XE#4354]) -> [PASS][289] [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-6/igt@kms_dp_link_training@non-uhbr-sst.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-1/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_flip@2x-flip-vs-dpms-on-nop: - shard-bmg: [SKIP][290] ([Intel XE#2316]) -> [PASS][291] +5 other tests pass [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-2/igt@kms_flip@2x-flip-vs-dpms-on-nop.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: - shard-lnl: [FAIL][292] ([Intel XE#301]) -> [PASS][293] [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html * igt@kms_plane_multiple@2x-tiling-none: - shard-bmg: [SKIP][294] ([Intel XE#4596]) -> [PASS][295] [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-none.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: [FAIL][296] ([Intel XE#718]) -> [PASS][297] [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-lnl-2/igt@kms_pm_dc@dc6-psr.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-4/igt@kms_pm_dc@dc6-psr.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-lnl: [FAIL][298] ([Intel XE#6361]) -> [PASS][299] +2 other tests pass [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-lnl-1/igt@kms_setmode@basic@pipe-b-edp-1.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-2/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@kms_setmode@clone-exclusive-crtc: - shard-bmg: [SKIP][300] ([Intel XE#1435]) -> [PASS][301] [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-2/igt@kms_setmode@clone-exclusive-crtc.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: [INCOMPLETE][302] ([Intel XE#6321]) -> [PASS][303] [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-5/igt@xe_evict@evict-mixed-many-threads-small.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_exec_system_allocator@many-large-mmap-remap-ro-dontunmap: - shard-bmg: [INCOMPLETE][304] ([Intel XE#6480]) -> [PASS][305] [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-2/igt@xe_exec_system_allocator@many-large-mmap-remap-ro-dontunmap.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-2/igt@xe_exec_system_allocator@many-large-mmap-remap-ro-dontunmap.html * igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_enhance0: - shard-lnl: [FAIL][306] ([Intel XE#6251]) -> [PASS][307] [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-lnl-2/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_enhance0.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-lnl-8/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_enhance0.html * igt@xe_sriov_flr@flr-twice: - shard-bmg: [FAIL][308] ([Intel XE#6569]) -> [PASS][309] [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-6/igt@xe_sriov_flr@flr-twice.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-8/igt@xe_sriov_flr@flr-twice.html * igt@xe_sriov_flr@flr-vfs-parallel: - shard-bmg: [FAIL][310] -> [PASS][311] [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-2/igt@xe_sriov_flr@flr-vfs-parallel.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-5/igt@xe_sriov_flr@flr-vfs-parallel.html #### Warnings #### * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [INCOMPLETE][312] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [INCOMPLETE][313] ([Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345]) [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [INCOMPLETE][314] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168]) -> [INCOMPLETE][315] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][316] ([Intel XE#2311]) -> [SKIP][317] ([Intel XE#2312]) +6 other tests skip [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][318] ([Intel XE#2312]) -> [SKIP][319] ([Intel XE#2311]) +6 other tests skip [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][320] ([Intel XE#2312]) -> [SKIP][321] ([Intel XE#5390]) [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move: - shard-bmg: [SKIP][322] ([Intel XE#5390]) -> [SKIP][323] ([Intel XE#2312]) +2 other tests skip [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move: - shard-bmg: [SKIP][324] ([Intel XE#2312]) -> [SKIP][325] ([Intel XE#2313]) +11 other tests skip [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][326] ([Intel XE#2313]) -> [SKIP][327] ([Intel XE#2312]) +10 other tests skip [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt@kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][328] ([Intel XE#3544]) -> [SKIP][329] ([Intel XE#3374] / [Intel XE#3544]) [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-8/igt@kms_hdr@brightness-with-hdr.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: [SKIP][330] ([Intel XE#2426]) -> [FAIL][331] ([Intel XE#1729]) [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8623/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129 [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130 [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212 [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345 [Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [Intel XE#4356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4356 [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422 [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459 [Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596 [Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633 [Intel XE#4689]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4689 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915 [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943 [Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300 [Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390 [Intel XE#5427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5427 [Intel XE#5626]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5626 [Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694 [Intel XE#5786]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5786 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#6168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6168 [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619 [Intel XE#6251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6251 [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312 [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321 [Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361 [Intel XE#6362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6362 [Intel XE#6480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6480 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#6529]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6529 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569 [Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_8623 -> IGTPW_14051 * Linux: xe-4101-efff261d878490433669a252a1f40412e784ef92 -> xe-4102-3ce0a1e8a582ad7bd9923eaafcb8619986d59310 IGTPW_14051: 14051 IGT_8623: 8623 xe-4101-efff261d878490433669a252a1f40412e784ef92: efff261d878490433669a252a1f40412e784ef92 xe-4102-3ce0a1e8a582ad7bd9923eaafcb8619986d59310: 3ce0a1e8a582ad7bd9923eaafcb8619986d59310 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14051/index.html [-- Attachment #2: Type: text/html, Size: 80299 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
* ✗ i915.CI.Full: failure for Redesign of the xe_debugfs test 2025-11-13 11:46 [PATCH v1 0/5] Redesign of the xe_debugfs test Piórkowski, Piotr ` (7 preceding siblings ...) 2025-11-14 4:46 ` ✗ Xe.CI.Full: failure " Patchwork @ 2025-11-14 17:59 ` Patchwork 2025-11-18 16:56 ` [PATCH v1 0/5] " Peter Senna Tschudin 9 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2025-11-14 17:59 UTC (permalink / raw) To: Piotr Piórkowski; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 176371 bytes --] == Series Details == Series: Redesign of the xe_debugfs test URL : https://patchwork.freedesktop.org/series/157493/ State : failure == Summary == CI Bug Log - changes from IGT_8623_full -> IGTPW_14051_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_14051_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_14051_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/index.html Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_14051_full: ### IGT changes ### #### Possible regressions #### * igt@runner@aborted: - shard-tglu: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-10/igt@runner@aborted.html #### Warnings #### * igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions: - shard-rkl: [SKIP][2] ([i915#14544]) -> [FAIL][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-8/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html New tests --------- New tests have been introduced between IGT_8623_full and IGTPW_14051_full: ### New IGT tests (4) ### * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-dp-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-b-dp-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-c-dp-3: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-dp-3: - Statuses : 1 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_14051_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-rkl: NOTRUN -> [SKIP][4] ([i915#8411]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-5/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][5] ([i915#6230]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-7/igt@api_intel_bb@crc32.html * igt@device_reset@unbind-cold-reset-rebind: - shard-tglu-1: NOTRUN -> [SKIP][6] ([i915#11078]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-1/igt@device_reset@unbind-cold-reset-rebind.html * igt@fbdev@info: - shard-rkl: [PASS][7] -> [SKIP][8] ([i915#14544] / [i915#1849] / [i915#2582]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-5/igt@fbdev@info.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@fbdev@info.html * igt@gem_basic@multigpu-create-close: - shard-tglu-1: NOTRUN -> [SKIP][9] ([i915#7697]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-1/igt@gem_basic@multigpu-create-close.html - shard-dg1: NOTRUN -> [SKIP][10] ([i915#7697]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-12/igt@gem_basic@multigpu-create-close.html * igt@gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][11] ([i915#3936]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-7/igt@gem_busy@semaphore.html - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#3936]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-4/igt@gem_busy@semaphore.html * igt@gem_caching@read-writes: - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#4873]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-5/igt@gem_caching@read-writes.html * igt@gem_ccs@block-copy-compressed: - shard-snb: NOTRUN -> [SKIP][14] +39 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-snb4/igt@gem_ccs@block-copy-compressed.html - shard-dg1: NOTRUN -> [SKIP][15] ([i915#3555] / [i915#9323]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-19/igt@gem_ccs@block-copy-compressed.html - shard-tglu: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9323]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-4/igt@gem_ccs@block-copy-compressed.html - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#3555] / [i915#9323]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-8/igt@gem_ccs@block-copy-compressed.html - shard-rkl: NOTRUN -> [SKIP][18] ([i915#3555] / [i915#9323]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-7/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@block-multicopy-compressed: - shard-tglu-1: NOTRUN -> [SKIP][19] ([i915#9323]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-1/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@suspend-resume: - shard-tglu: NOTRUN -> [SKIP][20] ([i915#9323]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-6/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [PASS][21] -> [INCOMPLETE][22] ([i915#12392] / [i915#13356]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg2-6/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-4/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html * igt@gem_close_race@multigpu-basic-process: - shard-rkl: NOTRUN -> [SKIP][23] ([i915#7697]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-2/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-tglu-1: NOTRUN -> [SKIP][24] ([i915#6335]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-1/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#8555]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-4/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg1: NOTRUN -> [SKIP][26] ([i915#8555]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-19/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_sseu@invalid-args: - shard-rkl: NOTRUN -> [SKIP][27] ([i915#14544] / [i915#280]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@gem_ctx_sseu@invalid-args.html - shard-tglu: NOTRUN -> [SKIP][28] ([i915#280]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-7/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@mmap-args: - shard-tglu-1: NOTRUN -> [SKIP][29] ([i915#280]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-1/igt@gem_ctx_sseu@mmap-args.html - shard-mtlp: NOTRUN -> [SKIP][30] ([i915#280]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-5/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@kms: - shard-rkl: [PASS][31] -> [DMESG-WARN][32] ([i915#13363]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-2/igt@gem_eio@kms.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-8/igt@gem_eio@kms.html * igt@gem_eio@unwedge-stress: - shard-mtlp: [PASS][33] -> [SKIP][34] ([i915#15178]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-mtlp-5/igt@gem_eio@unwedge-stress.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-8/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-pair: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#4771]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-8/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@bonded-sync: - shard-dg1: NOTRUN -> [SKIP][36] ([i915#4771]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-19/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@hog: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#4812]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-16/igt@gem_exec_balancer@hog.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#4036]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-8/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@parallel-bb-first: - shard-tglu-1: NOTRUN -> [SKIP][39] ([i915#4525]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-1/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_balancer@parallel-contexts: - shard-tglu: NOTRUN -> [SKIP][40] ([i915#4525]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-3/igt@gem_exec_balancer@parallel-contexts.html * igt@gem_exec_balancer@parallel-ordering: - shard-rkl: NOTRUN -> [SKIP][41] ([i915#14544] / [i915#4525]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_capture@capture-invisible: - shard-glk10: NOTRUN -> [SKIP][42] ([i915#6334]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-glk10/igt@gem_exec_capture@capture-invisible.html * igt@gem_exec_fence@submit: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4812]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-6/igt@gem_exec_fence@submit.html - shard-dg2: NOTRUN -> [SKIP][44] ([i915#4812]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-6/igt@gem_exec_fence@submit.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#3539] / [i915#4852]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-5/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_flush@basic-wb-rw-default: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#3539] / [i915#4852]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-19/igt@gem_exec_flush@basic-wb-rw-default.html * igt@gem_exec_reloc@basic-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#3281]) +3 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-8/igt@gem_exec_reloc@basic-cpu-noreloc.html * igt@gem_exec_reloc@basic-gtt-cpu-noreloc: - shard-rkl: NOTRUN -> [SKIP][48] ([i915#14544] / [i915#3281]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html * igt@gem_exec_reloc@basic-wc-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][49] ([i915#3281]) +5 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-8/igt@gem_exec_reloc@basic-wc-read-noreloc.html - shard-dg1: NOTRUN -> [SKIP][50] ([i915#3281]) +4 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-18/igt@gem_exec_reloc@basic-wc-read-noreloc.html * igt@gem_exec_reloc@basic-write-gtt-noreloc: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#3281]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-3/igt@gem_exec_reloc@basic-write-gtt-noreloc.html * igt@gem_exec_suspend@basic-s3@smem: - shard-glk: NOTRUN -> [INCOMPLETE][52] ([i915#13196] / [i915#13356]) +1 other test incomplete [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-glk6/igt@gem_exec_suspend@basic-s3@smem.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4860]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-6/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt@gem_huc_copy@huc-copy: - shard-tglu-1: NOTRUN -> [SKIP][54] ([i915#2190]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-1/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][55] ([i915#14544] / [i915#4613] / [i915#7582]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@gem_lmem_evict@dontneed-evict-race.html - shard-tglu-1: NOTRUN -> [SKIP][56] ([i915#4613] / [i915#7582]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-1/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-tglu: NOTRUN -> [SKIP][57] ([i915#4613]) +5 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-5/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@parallel-multi: - shard-glk: NOTRUN -> [SKIP][58] ([i915#4613]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-glk1/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: NOTRUN -> [TIMEOUT][59] ([i915#5493]) +1 other test timeout [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_media_vme: - shard-tglu-1: NOTRUN -> [SKIP][60] ([i915#284]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-1/igt@gem_media_vme.html * igt@gem_mmap@big-bo: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4083]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-3/igt@gem_mmap@big-bo.html * igt@gem_mmap@pf-nonblock: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#4083]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-10/igt@gem_mmap@pf-nonblock.html * igt@gem_mmap_gtt@basic-small-copy: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#4077]) +4 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-16/igt@gem_mmap_gtt@basic-small-copy.html * igt@gem_mmap_gtt@cpuset-medium-copy: - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4077]) +5 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-5/igt@gem_mmap_gtt@cpuset-medium-copy.html * igt@gem_mmap_gtt@zero-extend: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#4077]) +3 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-6/igt@gem_mmap_gtt@zero-extend.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-rkl: NOTRUN -> [SKIP][66] ([i915#14544] / [i915#3282]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_pread@exhaustion: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#3282]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-7/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-glk10: NOTRUN -> [WARN][68] ([i915#14702] / [i915#2658]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-glk10/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pwrite@basic-self: - shard-rkl: NOTRUN -> [SKIP][69] ([i915#3282]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-7/igt@gem_pwrite@basic-self.html - shard-dg1: NOTRUN -> [SKIP][70] ([i915#3282]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-19/igt@gem_pwrite@basic-self.html * igt@gem_pxp@create-valid-protected-context: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4270]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-5/igt@gem_pxp@create-valid-protected-context.html * igt@gem_pxp@display-protected-crc: - shard-rkl: [PASS][72] -> [TIMEOUT][73] ([i915#12917] / [i915#12964]) +1 other test timeout [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-8/igt@gem_pxp@display-protected-crc.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-4/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: NOTRUN -> [TIMEOUT][74] ([i915#12917] / [i915#12964]) +3 other tests timeout [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-7/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#8428]) +2 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-2/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html * igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#5190] / [i915#8428]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-1/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#4079]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_softpin@evict-snoop: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#4885]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-11/igt@gem_softpin@evict-snoop.html * igt@gem_tiled_pread_pwrite: - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#4079]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-2/igt@gem_tiled_pread_pwrite.html * igt@gem_userptr_blits@coherency-unsync: - shard-rkl: NOTRUN -> [SKIP][80] ([i915#3297]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-3/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-glk: NOTRUN -> [SKIP][81] ([i915#3323]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-glk1/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg1: NOTRUN -> [SKIP][82] ([i915#3297]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-12/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#3297] / [i915#4880]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-8/igt@gem_userptr_blits@map-fixed-invalidate.html - shard-dg1: NOTRUN -> [SKIP][84] ([i915#3297] / [i915#4880]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-14/igt@gem_userptr_blits@map-fixed-invalidate.html - shard-mtlp: NOTRUN -> [SKIP][85] ([i915#3297]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-2/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gem_userptr_blits@readonly-unsync: - shard-tglu-1: NOTRUN -> [SKIP][86] ([i915#3297]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-1/igt@gem_userptr_blits@readonly-unsync.html * igt@gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#3297] / [i915#4958]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-1/igt@gem_userptr_blits@sd-probe.html * igt@gem_userptr_blits@unsync-unmap: - shard-tglu: NOTRUN -> [SKIP][88] ([i915#3297]) +2 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-3/igt@gem_userptr_blits@unsync-unmap.html * igt@gem_wait@write-busy: - shard-rkl: NOTRUN -> [DMESG-WARN][89] ([i915#12964]) +11 other tests dmesg-warn [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-5/igt@gem_wait@write-busy.html * igt@gen7_exec_parse@chained-batch: - shard-rkl: NOTRUN -> [SKIP][90] +8 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-4/igt@gen7_exec_parse@chained-batch.html * igt@gen9_exec_parse@bb-large: - shard-tglu: NOTRUN -> [SKIP][91] ([i915#2527] / [i915#2856]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-4/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-secure: - shard-dg1: NOTRUN -> [SKIP][92] ([i915#2527]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-14/igt@gen9_exec_parse@bb-secure.html * igt@gen9_exec_parse@bb-start-far: - shard-mtlp: NOTRUN -> [SKIP][93] ([i915#2856]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-7/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@bb-start-out: - shard-tglu-1: NOTRUN -> [SKIP][94] ([i915#2527] / [i915#2856]) +2 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-1/igt@gen9_exec_parse@bb-start-out.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#2856]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-7/igt@gen9_exec_parse@shadow-peek.html * igt@i915_drm_fdinfo@all-busy-idle-check-all: - shard-dg1: NOTRUN -> [SKIP][96] ([i915#14123]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-17/igt@i915_drm_fdinfo@all-busy-idle-check-all.html * igt@i915_drm_fdinfo@virtual-busy-idle: - shard-dg1: NOTRUN -> [SKIP][97] ([i915#14118]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-17/igt@i915_drm_fdinfo@virtual-busy-idle.html * igt@i915_drm_fdinfo@virtual-busy-idle-all: - shard-mtlp: NOTRUN -> [SKIP][98] ([i915#14118]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-2/igt@i915_drm_fdinfo@virtual-busy-idle-all.html * igt@i915_module_load@load: - shard-tglu: ([PASS][99], [PASS][100], [PASS][101], [PASS][102], [PASS][103], [PASS][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120]) -> ([PASS][121], [PASS][122], [PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131], [SKIP][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141]) ([i915#14785]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-tglu-5/igt@i915_module_load@load.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-tglu-7/igt@i915_module_load@load.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-tglu-4/igt@i915_module_load@load.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-tglu-10/igt@i915_module_load@load.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-tglu-3/igt@i915_module_load@load.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-tglu-9/igt@i915_module_load@load.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-tglu-7/igt@i915_module_load@load.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-tglu-3/igt@i915_module_load@load.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-tglu-5/igt@i915_module_load@load.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-tglu-5/igt@i915_module_load@load.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-tglu-10/igt@i915_module_load@load.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-tglu-2/igt@i915_module_load@load.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-tglu-8/igt@i915_module_load@load.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-tglu-3/igt@i915_module_load@load.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-tglu-6/igt@i915_module_load@load.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-tglu-8/igt@i915_module_load@load.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-tglu-10/igt@i915_module_load@load.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-tglu-9/igt@i915_module_load@load.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-tglu-7/igt@i915_module_load@load.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-tglu-4/igt@i915_module_load@load.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-tglu-6/igt@i915_module_load@load.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-tglu-2/igt@i915_module_load@load.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-3/igt@i915_module_load@load.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-9/igt@i915_module_load@load.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-8/igt@i915_module_load@load.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-9/igt@i915_module_load@load.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-9/igt@i915_module_load@load.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-10/igt@i915_module_load@load.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-6/igt@i915_module_load@load.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-5/igt@i915_module_load@load.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-7/igt@i915_module_load@load.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-4/igt@i915_module_load@load.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-4/igt@i915_module_load@load.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-10/igt@i915_module_load@load.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-2/igt@i915_module_load@load.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-2/igt@i915_module_load@load.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-2/igt@i915_module_load@load.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-7/igt@i915_module_load@load.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-3/igt@i915_module_load@load.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-6/igt@i915_module_load@load.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-5/igt@i915_module_load@load.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-6/igt@i915_module_load@load.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-8/igt@i915_module_load@load.html * igt@i915_module_load@reload-no-display: - shard-dg2: [PASS][142] -> [DMESG-WARN][143] ([i915#13029] / [i915#14545]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg2-11/igt@i915_module_load@reload-no-display.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-11/igt@i915_module_load@reload-no-display.html - shard-dg1: [PASS][144] -> [DMESG-WARN][145] ([i915#13029] / [i915#14545]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg1-15/igt@i915_module_load@reload-no-display.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-18/igt@i915_module_load@reload-no-display.html - shard-snb: [PASS][146] -> [DMESG-WARN][147] ([i915#14545]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-snb4/igt@i915_module_load@reload-no-display.html [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-snb5/igt@i915_module_load@reload-no-display.html * igt@i915_pm_freq_api@freq-basic-api: - shard-tglu: NOTRUN -> [SKIP][148] ([i915#8399]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-10/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_api@freq-suspend: - shard-tglu-1: NOTRUN -> [SKIP][149] ([i915#8399]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-1/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: [PASS][150] -> [INCOMPLETE][151] ([i915#13356] / [i915#13820]) +1 other test incomplete [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg2-3/igt@i915_pm_freq_api@freq-suspend@gt0.html [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-1/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-dg2: [PASS][152] -> [FAIL][153] ([i915#12964]) +1 other test fail [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg2-11/igt@i915_pm_rc6_residency@rc6-accuracy.html [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-6/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_pm_rps@basic-api: - shard-mtlp: NOTRUN -> [SKIP][154] ([i915#11681] / [i915#6621]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-4/igt@i915_pm_rps@basic-api.html * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-mtlp: NOTRUN -> [SKIP][155] ([i915#4212]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-3/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: NOTRUN -> [SKIP][156] ([i915#12454] / [i915#12712]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-8/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@crc: - shard-rkl: [PASS][157] -> [SKIP][158] ([i915#14544]) +43 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-8/igt@kms_async_flips@crc.html [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_async_flips@crc.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-tglu-1: NOTRUN -> [SKIP][159] ([i915#9531]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-tglu: NOTRUN -> [SKIP][160] ([i915#1769] / [i915#3555]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#1769] / [i915#3555]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-glk: NOTRUN -> [SKIP][162] ([i915#1769]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-glk1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1: - shard-mtlp: [PASS][163] -> [FAIL][164] ([i915#5956]) +1 other test fail [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-mtlp-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html * igt@kms_big_fb@4-tiled-16bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][165] ([i915#5286]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-7/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html - shard-dg1: NOTRUN -> [SKIP][166] ([i915#4538] / [i915#5286]) +1 other test skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-19/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-tglu: NOTRUN -> [SKIP][167] ([i915#5286]) +4 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-7/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-tglu-1: NOTRUN -> [SKIP][168] ([i915#5286]) +4 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][169] ([i915#3638]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-13/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][170] ([i915#3638]) +1 other test skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-8/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-mtlp: NOTRUN -> [SKIP][171] +8 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html - shard-dg2: NOTRUN -> [SKIP][172] ([i915#4538] / [i915#5190]) +4 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][173] ([i915#4538]) +2 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-17/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#5190]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-11/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#6187]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-6/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_busy@basic: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#11190] / [i915#14544]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_busy@basic.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][177] ([i915#6095]) +130 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-15/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][178] ([i915#6095]) +64 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-2/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][179] +148 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-glk1/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][180] ([i915#12313]) +1 other test skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-3/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#10307] / [i915#6095]) +109 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-3/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][182] ([i915#12313]) +2 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-5/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][183] ([i915#6095]) +9 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-8/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][184] ([i915#12313]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-16/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#10307] / [i915#10434] / [i915#6095]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][186] ([i915#6095]) +49 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][187] ([i915#12805]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-13/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-b-dp-3: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#6095]) +20 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-10/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-b-dp-3.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-glk10: NOTRUN -> [INCOMPLETE][189] ([i915#12796]) +1 other test incomplete [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-glk10/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#12313]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html - shard-dg2: NOTRUN -> [SKIP][191] ([i915#12313]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-11/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][192] ([i915#6095]) +40 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-8/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#14098] / [i915#6095]) +43 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-5/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_cdclk@mode-transition: - shard-tglu: NOTRUN -> [SKIP][194] ([i915#3742]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-9/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@plane-scaling@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][195] ([i915#13783]) +4 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-5/igt@kms_cdclk@plane-scaling@pipe-c-edp-1.html * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#13783]) +4 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-4/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html * igt@kms_chamelium_audio@hdmi-audio: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#11151] / [i915#7828]) +4 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-8/igt@kms_chamelium_audio@hdmi-audio.html * igt@kms_chamelium_color@ctm-0-50: - shard-dg1: NOTRUN -> [SKIP][198] +12 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-13/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_color@degamma: - shard-glk10: NOTRUN -> [SKIP][199] +76 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-glk10/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-rkl: NOTRUN -> [SKIP][200] ([i915#11151] / [i915#14544] / [i915#7828]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt@kms_chamelium_hpd@dp-hpd-fast: - shard-mtlp: NOTRUN -> [SKIP][201] ([i915#11151] / [i915#7828]) +2 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-8/igt@kms_chamelium_hpd@dp-hpd-fast.html * igt@kms_chamelium_hpd@hdmi-hpd-fast: - shard-tglu-1: NOTRUN -> [SKIP][202] ([i915#11151] / [i915#7828]) +5 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-1/igt@kms_chamelium_hpd@hdmi-hpd-fast.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-tglu: NOTRUN -> [SKIP][203] ([i915#11151] / [i915#7828]) +10 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-8/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][204] ([i915#11151] / [i915#7828]) +3 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-7/igt@kms_chamelium_hpd@vga-hpd-fast.html - shard-dg1: NOTRUN -> [SKIP][205] ([i915#11151] / [i915#7828]) +2 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-19/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_color@ctm-negative: - shard-rkl: [PASS][206] -> [SKIP][207] ([i915#12655] / [i915#14544]) +2 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-8/igt@kms_color@ctm-negative.html [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_color@ctm-negative.html * igt@kms_content_protection@content-type-change: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#9424]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-10/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-tglu: NOTRUN -> [SKIP][209] ([i915#3116] / [i915#3299]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-8/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@lic-type-0: - shard-tglu: NOTRUN -> [SKIP][210] ([i915#6944] / [i915#9424]) +1 other test skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-6/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-1: - shard-rkl: NOTRUN -> [SKIP][211] ([i915#9424]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-2/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@srm: - shard-dg1: NOTRUN -> [SKIP][212] ([i915#7116]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-16/igt@kms_content_protection@srm.html * igt@kms_content_protection@type1: - shard-tglu-1: NOTRUN -> [SKIP][213] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-1/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent: - shard-mtlp: NOTRUN -> [SKIP][214] ([i915#6944] / [i915#9424]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-4/igt@kms_content_protection@uevent.html * igt@kms_content_protection@uevent@pipe-a-dp-3: - shard-dg2: NOTRUN -> [FAIL][215] ([i915#1339] / [i915#7173]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-11/igt@kms_content_protection@uevent@pipe-a-dp-3.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-rkl: [PASS][216] -> [FAIL][217] ([i915#13566]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-256x85.html [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-tglu-1: NOTRUN -> [SKIP][218] ([i915#3555]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [FAIL][219] ([i915#13566]) +1 other test fail [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-1/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-random-64x21@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][220] ([i915#13566]) +2 other tests fail [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-5/igt@kms_cursor_crc@cursor-random-64x21@pipe-a-hdmi-a-2.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-rkl: NOTRUN -> [SKIP][221] ([i915#3555]) +1 other test skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-7/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_crc@cursor-rapid-movement-64x21: - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#8814]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-6/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html * igt@kms_cursor_crc@cursor-sliding-256x85@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [DMESG-FAIL][223] ([i915#12964]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-256x85@pipe-a-hdmi-a-2.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-tglu-1: NOTRUN -> [SKIP][224] ([i915#13049]) +2 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-512x512.html - shard-dg1: NOTRUN -> [SKIP][225] ([i915#13049]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-12/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_crc@cursor-sliding-64x21: - shard-tglu: [PASS][226] -> [FAIL][227] ([i915#13566]) +5 other tests fail [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-tglu-3/igt@kms_cursor_crc@cursor-sliding-64x21.html [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-64x21.html * igt@kms_cursor_crc@cursor-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][228] ([i915#12358] / [i915#14152] / [i915#7882]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-glk5/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][229] ([i915#12358] / [i915#14152]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-glk5/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html * igt@kms_cursor_edge_walk@64x64-top-edge: - shard-rkl: [PASS][230] -> [DMESG-WARN][231] ([i915#12917] / [i915#12964]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-5/igt@kms_cursor_edge_walk@64x64-top-edge.html [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-7/igt@kms_cursor_edge_walk@64x64-top-edge.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-mtlp: NOTRUN -> [SKIP][232] ([i915#9809]) +1 other test skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-4/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html - shard-dg2: NOTRUN -> [SKIP][233] ([i915#13046] / [i915#5354]) +1 other test skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-7/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-tglu: NOTRUN -> [SKIP][234] +50 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-3/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-rkl: NOTRUN -> [FAIL][235] ([i915#2346]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-5/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-tglu: NOTRUN -> [SKIP][236] ([i915#4103]) +2 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-10/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-dg2: NOTRUN -> [SKIP][237] ([i915#4103] / [i915#4213]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-dg2: [PASS][238] -> [SKIP][239] ([i915#3555]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg2-11/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][240] ([i915#3804]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dp_aux_dev: - shard-tglu: NOTRUN -> [SKIP][241] ([i915#1257]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-4/igt@kms_dp_aux_dev.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-tglu-1: NOTRUN -> [SKIP][242] ([i915#13749]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-1/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dp_link_training@uhbr-sst: - shard-tglu: NOTRUN -> [SKIP][243] ([i915#13748]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-7/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-rkl: NOTRUN -> [SKIP][244] ([i915#13707]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-8/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][245] ([i915#8812]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-1/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-with-bpc: - shard-tglu-1: NOTRUN -> [SKIP][246] ([i915#3555] / [i915#3840]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-1/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-output-formats: - shard-rkl: NOTRUN -> [SKIP][247] ([i915#3555] / [i915#3840]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-7/igt@kms_dsc@dsc-with-output-formats.html - shard-dg1: NOTRUN -> [SKIP][248] ([i915#3555] / [i915#3840]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-14/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@psr: - shard-tglu-1: NOTRUN -> [SKIP][249] ([i915#3469]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-1/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg1: NOTRUN -> [SKIP][250] ([i915#3469]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-18/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_flip@2x-flip-vs-dpms: - shard-dg2: NOTRUN -> [SKIP][251] ([i915#9934]) +2 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-10/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible: - shard-tglu: NOTRUN -> [SKIP][252] ([i915#9934]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-9/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#9934]) +3 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-4/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-nonexisting-fb-interruptible: - shard-rkl: NOTRUN -> [SKIP][254] ([i915#14544] / [i915#9934]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_flip@2x-nonexisting-fb-interruptible.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][255] ([i915#3637] / [i915#9934]) +5 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-1/igt@kms_flip@2x-plain-flip-interruptible.html - shard-dg1: NOTRUN -> [SKIP][256] ([i915#9934]) +4 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-17/igt@kms_flip@2x-plain-flip-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][257] ([i915#3637] / [i915#9934]) +1 other test skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-6/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-tglu: NOTRUN -> [SKIP][258] ([i915#3637] / [i915#9934]) +5 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-2/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@dpms-off-confusion-interruptible@a-hdmi-a1: - shard-rkl: [PASS][259] -> [DMESG-WARN][260] ([i915#12964]) +36 other tests dmesg-warn [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-4/igt@kms_flip@dpms-off-confusion-interruptible@a-hdmi-a1.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-7/igt@kms_flip@dpms-off-confusion-interruptible@a-hdmi-a1.html * igt@kms_flip@flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][261] ([i915#8381]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-8/igt@kms_flip@flip-vs-fences.html - shard-dg2: NOTRUN -> [SKIP][262] ([i915#8381]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-11/igt@kms_flip@flip-vs-fences.html - shard-dg1: NOTRUN -> [SKIP][263] ([i915#8381]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-18/igt@kms_flip@flip-vs-fences.html * igt@kms_flip@wf_vblank-ts-check-interruptible: - shard-rkl: [PASS][264] -> [SKIP][265] ([i915#14544] / [i915#3637]) +8 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-8/igt@kms_flip@wf_vblank-ts-check-interruptible.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_flip@wf_vblank-ts-check-interruptible.html * igt@kms_flip@wf_vblank-ts-check@a-hdmi-a1: - shard-tglu: NOTRUN -> [FAIL][266] ([i915#14600]) +1 other test fail [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-3/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-mtlp: NOTRUN -> [SKIP][267] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][268] ([i915#2672] / [i915#8813]) +1 other test skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - shard-rkl: [PASS][269] -> [SKIP][270] ([i915#14544] / [i915#3555]) +4 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-rkl: NOTRUN -> [SKIP][271] ([i915#14544] / [i915#3555]) +1 other test skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html - shard-tglu-1: NOTRUN -> [SKIP][272] ([i915#2672] / [i915#3555]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html - shard-dg1: NOTRUN -> [SKIP][273] ([i915#2672] / [i915#3555]) +1 other test skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][274] ([i915#2587] / [i915#2672]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html - shard-dg1: NOTRUN -> [SKIP][275] ([i915#2587] / [i915#2672]) +1 other test skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-rkl: NOTRUN -> [SKIP][276] ([i915#2672] / [i915#3555]) +1 other test skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][277] ([i915#2672]) +2 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt: - shard-rkl: NOTRUN -> [DMESG-WARN][278] ([i915#12917] / [i915#12964]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: [PASS][279] -> [SKIP][280] ([i915#14544] / [i915#1849] / [i915#5354]) +4 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][281] ([i915#1825]) +11 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][282] ([i915#8708]) +3 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#8708]) +8 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-tiling-linear: - shard-rkl: NOTRUN -> [SKIP][284] ([i915#14544] / [i915#1849] / [i915#5354]) +10 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][285] ([i915#15102]) +1 other test skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render.html - shard-dg1: NOTRUN -> [SKIP][286] ([i915#15102]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][287] ([i915#15102] / [i915#3458]) +9 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][288] ([i915#8708]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff: - shard-dg1: NOTRUN -> [SKIP][289] ([i915#4423]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt: - shard-dg2: NOTRUN -> [SKIP][290] ([i915#5354]) +11 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][291] ([i915#1825]) +26 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite: - shard-tglu-1: NOTRUN -> [SKIP][292] +38 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][293] ([i915#15102]) +13 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][294] ([i915#15104]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][295] ([i915#15102]) +2 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][296] ([i915#15102] / [i915#3023]) +12 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move: - shard-tglu: NOTRUN -> [SKIP][297] ([i915#15102]) +22 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-dg1: NOTRUN -> [SKIP][298] ([i915#15102] / [i915#3458]) +7 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_hdr@invalid-hdr: - shard-tglu-1: NOTRUN -> [SKIP][299] ([i915#3555] / [i915#8228]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-1/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@static-toggle: - shard-dg2: [PASS][300] -> [SKIP][301] ([i915#3555] / [i915#8228]) +1 other test skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg2-11/igt@kms_hdr@static-toggle.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-8/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-suspend: - shard-dg1: NOTRUN -> [SKIP][302] ([i915#3555] / [i915#8228]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-17/igt@kms_hdr@static-toggle-suspend.html * igt@kms_hdr@static-toggle-suspend@pipe-a-dp-3: - shard-dg2: NOTRUN -> [ABORT][303] ([i915#15132]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-10/igt@kms_hdr@static-toggle-suspend@pipe-a-dp-3.html * igt@kms_invalid_mode@bad-htotal: - shard-rkl: [PASS][304] -> [SKIP][305] ([i915#14544] / [i915#3555] / [i915#8826]) +2 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-7/igt@kms_invalid_mode@bad-htotal.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_invalid_mode@bad-htotal.html * igt@kms_joiner@basic-big-joiner: - shard-rkl: NOTRUN -> [SKIP][306] ([i915#10656] / [i915#14544]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_joiner@basic-big-joiner.html - shard-dg1: NOTRUN -> [SKIP][307] ([i915#10656]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-18/igt@kms_joiner@basic-big-joiner.html - shard-tglu: NOTRUN -> [SKIP][308] ([i915#10656]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-7/igt@kms_joiner@basic-big-joiner.html - shard-mtlp: NOTRUN -> [SKIP][309] ([i915#10656]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-8/igt@kms_joiner@basic-big-joiner.html - shard-dg2: NOTRUN -> [SKIP][310] ([i915#10656]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-5/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-max-non-joiner: - shard-mtlp: NOTRUN -> [SKIP][311] ([i915#15283]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-8/igt@kms_joiner@basic-max-non-joiner.html - shard-dg2: NOTRUN -> [SKIP][312] ([i915#15283]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-8/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][313] ([i915#12339]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-dg2: NOTRUN -> [SKIP][314] ([i915#13522]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_lease@empty-lease: - shard-dg1: [PASS][315] -> [DMESG-WARN][316] ([i915#4423]) +4 other tests dmesg-warn [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg1-13/igt@kms_lease@empty-lease.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-12/igt@kms_lease@empty-lease.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg1: NOTRUN -> [SKIP][317] ([i915#1839]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-16/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@atomic-fastset: - shard-tglu: NOTRUN -> [SKIP][318] ([i915#6301]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-7/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-dg2: NOTRUN -> [SKIP][319] +7 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-10/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_pipe_crc_basic@read-crc: - shard-rkl: [PASS][320] -> [SKIP][321] ([i915#11190] / [i915#14544]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-8/igt@kms_pipe_crc_basic@read-crc.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_pipe_crc_basic@read-crc.html * igt@kms_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][322] ([i915#13705]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-1/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html - shard-mtlp: NOTRUN -> [SKIP][323] ([i915#13705]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-3/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html * igt@kms_plane_alpha_blend@constant-alpha-mid: - shard-rkl: NOTRUN -> [SKIP][324] ([i915#14544] / [i915#7294]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_plane_alpha_blend@constant-alpha-mid.html * igt@kms_plane_lowres@tiling-x: - shard-mtlp: NOTRUN -> [SKIP][325] ([i915#11614] / [i915#3582]) +1 other test skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-5/igt@kms_plane_lowres@tiling-x.html * igt@kms_plane_lowres@tiling-x@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][326] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-5/igt@kms_plane_lowres@tiling-x@pipe-a-edp-1.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a: - shard-dg1: NOTRUN -> [SKIP][327] ([i915#12247]) +4 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-15/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers: - shard-rkl: [PASS][328] -> [SKIP][329] ([i915#14544] / [i915#8152]) +1 other test skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a: - shard-rkl: [PASS][330] -> [SKIP][331] ([i915#12247] / [i915#14544]) +4 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-5/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c: - shard-rkl: NOTRUN -> [SKIP][332] ([i915#12247]) +1 other test skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-8/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b: - shard-rkl: [PASS][333] -> [SKIP][334] ([i915#12247] / [i915#14544] / [i915#8152]) +5 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5: - shard-rkl: [PASS][335] -> [SKIP][336] ([i915#12247] / [i915#14544] / [i915#3555] / [i915#6953] / [i915#8152]) +1 other test skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-tglu: NOTRUN -> [SKIP][337] ([i915#12343]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-9/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][338] ([i915#5354]) +1 other test skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-4/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_backlight@fade-with-suspend: - shard-tglu-1: NOTRUN -> [SKIP][339] ([i915#9812]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-1/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-tglu-1: NOTRUN -> [SKIP][340] ([i915#9685]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-1/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: [PASS][341] -> [SKIP][342] ([i915#15073]) +1 other test skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg2-4/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-6/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [PASS][343] -> [SKIP][344] ([i915#15073]) +1 other test skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-7/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][345] ([i915#15073]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-7/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][346] ([i915#15073]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][347] -> [SKIP][348] ([i915#14544] / [i915#15073]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@basic-crc-vgem: - shard-rkl: NOTRUN -> [SKIP][349] ([i915#14544] / [i915#6524]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_prime@basic-crc-vgem.html * igt@kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][350] ([i915#6524]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-8/igt@kms_prime@basic-modeset-hybrid.html - shard-dg1: NOTRUN -> [SKIP][351] ([i915#6524]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-18/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_prime@d3hot: - shard-tglu-1: NOTRUN -> [SKIP][352] ([i915#6524]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-1/igt@kms_prime@d3hot.html * igt@kms_properties@plane-properties-atomic: - shard-rkl: [PASS][353] -> [SKIP][354] ([i915#11521] / [i915#14544]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-2/igt@kms_properties@plane-properties-atomic.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_properties@plane-properties-atomic.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-mtlp: NOTRUN -> [SKIP][355] ([i915#12316]) +2 other tests skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-8/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][356] ([i915#11520]) +3 other tests skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html - shard-snb: NOTRUN -> [SKIP][357] ([i915#11520]) +1 other test skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-snb4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html - shard-dg1: NOTRUN -> [SKIP][358] ([i915#11520]) +3 other tests skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-14/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][359] ([i915#9808]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][360] ([i915#11520]) +8 other tests skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-5/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-glk: NOTRUN -> [SKIP][361] ([i915#11520]) +1 other test skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-glk1/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][362] ([i915#11520]) +5 other tests skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-1/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf: - shard-glk10: NOTRUN -> [SKIP][363] ([i915#11520]) +2 other tests skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-glk10/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][364] ([i915#11520]) +4 other tests skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-4/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html - shard-rkl: NOTRUN -> [SKIP][365] ([i915#11520] / [i915#14544]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg1: NOTRUN -> [SKIP][366] ([i915#9683]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-14/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-p010: - shard-rkl: NOTRUN -> [SKIP][367] ([i915#9683]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-5/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-pr-cursor-plane-onoff: - shard-rkl: NOTRUN -> [SKIP][368] ([i915#1072] / [i915#9732]) +7 other tests skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-5/igt@kms_psr@fbc-pr-cursor-plane-onoff.html - shard-tglu-1: NOTRUN -> [SKIP][369] ([i915#9732]) +14 other tests skip [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-1/igt@kms_psr@fbc-pr-cursor-plane-onoff.html * igt@kms_psr@fbc-pr-dpms: - shard-mtlp: NOTRUN -> [SKIP][370] ([i915#9688]) +7 other tests skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-8/igt@kms_psr@fbc-pr-dpms.html * igt@kms_psr@fbc-pr-no-drrs: - shard-rkl: NOTRUN -> [SKIP][371] ([i915#1072] / [i915#14544] / [i915#9732]) +2 other tests skip [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_psr@fbc-pr-no-drrs.html * igt@kms_psr@fbc-pr-primary-render: - shard-dg2: NOTRUN -> [SKIP][372] ([i915#1072] / [i915#9732]) +11 other tests skip [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-10/igt@kms_psr@fbc-pr-primary-render.html * igt@kms_psr@psr2-cursor-plane-onoff: - shard-tglu: NOTRUN -> [SKIP][373] ([i915#9732]) +20 other tests skip [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-9/igt@kms_psr@psr2-cursor-plane-onoff.html * igt@kms_psr@psr2-suspend: - shard-dg1: NOTRUN -> [SKIP][374] ([i915#1072] / [i915#9732]) +6 other tests skip [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-18/igt@kms_psr@psr2-suspend.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg1: NOTRUN -> [SKIP][375] ([i915#9685]) +1 other test skip [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-14/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglu: NOTRUN -> [SKIP][376] ([i915#9685]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-3/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@bad-pixel-format: - shard-mtlp: NOTRUN -> [SKIP][377] ([i915#12755]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-8/igt@kms_rotation_crc@bad-pixel-format.html - shard-dg2: NOTRUN -> [SKIP][378] ([i915#12755]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-11/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@exhaust-fences: - shard-dg1: NOTRUN -> [SKIP][379] ([i915#4884]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-19/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_scaling_modes@scaling-mode-none: - shard-dg1: NOTRUN -> [SKIP][380] ([i915#3555]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-12/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-dg2: NOTRUN -> [SKIP][381] ([i915#3555]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-5/igt@kms_setmode@invalid-clone-exclusive-crtc.html - shard-mtlp: NOTRUN -> [SKIP][382] ([i915#3555] / [i915#8809] / [i915#8823]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-8/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_sharpness_filter@filter-modifiers: - shard-tglu: NOTRUN -> [SKIP][383] ([i915#15232]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-2/igt@kms_sharpness_filter@filter-modifiers.html * igt@kms_sharpness_filter@filter-suspend: - shard-dg1: NOTRUN -> [SKIP][384] ([i915#15232]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-13/igt@kms_sharpness_filter@filter-suspend.html * igt@kms_sharpness_filter@invalid-filter-with-plane: - shard-tglu-1: NOTRUN -> [SKIP][385] ([i915#15232]) +1 other test skip [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-1/igt@kms_sharpness_filter@invalid-filter-with-plane.html * igt@kms_sharpness_filter@invalid-filter-with-scaling-mode: - shard-dg2: NOTRUN -> [SKIP][386] ([i915#15232]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-1/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html * igt@kms_sharpness_filter@invalid-plane-with-filter: - shard-rkl: NOTRUN -> [SKIP][387] ([i915#15232]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-4/igt@kms_sharpness_filter@invalid-plane-with-filter.html * igt@kms_vblank@ts-continuation-dpms-suspend: - shard-rkl: [PASS][388] -> [ABORT][389] ([i915#15132]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-8/igt@kms_vblank@ts-continuation-dpms-suspend.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-4/igt@kms_vblank@ts-continuation-dpms-suspend.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][390] ([i915#12276]) +1 other test incomplete [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-glk3/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [ABORT][391] ([i915#15132]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-4/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-b-hdmi-a-1.html * igt@kms_vrr@flip-dpms: - shard-rkl: NOTRUN -> [SKIP][392] ([i915#15243] / [i915#3555]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-8/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@flip-suspend: - shard-tglu: NOTRUN -> [SKIP][393] ([i915#3555]) +6 other tests skip [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-7/igt@kms_vrr@flip-suspend.html - shard-dg2: NOTRUN -> [SKIP][394] ([i915#15243] / [i915#3555]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-5/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@lobf: - shard-rkl: NOTRUN -> [SKIP][395] ([i915#11920]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-8/igt@kms_vrr@lobf.html * igt@kms_vrr@negative-basic: - shard-tglu: NOTRUN -> [SKIP][396] ([i915#3555] / [i915#9906]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-5/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-rkl: NOTRUN -> [SKIP][397] ([i915#9906]) [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-5/igt@kms_vrr@seamless-rr-switch-virtual.html - shard-tglu-1: NOTRUN -> [SKIP][398] ([i915#9906]) [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_writeback@writeback-check-output: - shard-glk: NOTRUN -> [SKIP][399] ([i915#2437]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-glk1/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-tglu-1: NOTRUN -> [SKIP][400] ([i915#2437] / [i915#9412]) [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-1/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-fb-id: - shard-mtlp: NOTRUN -> [SKIP][401] ([i915#2437]) [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-8/igt@kms_writeback@writeback-fb-id.html - shard-dg2: NOTRUN -> [SKIP][402] ([i915#2437]) [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-11/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-invalid-parameters: - shard-dg1: NOTRUN -> [SKIP][403] ([i915#2437]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-13/igt@kms_writeback@writeback-invalid-parameters.html * igt@kms_writeback@writeback-pixel-formats: - shard-tglu: NOTRUN -> [SKIP][404] ([i915#2437] / [i915#9412]) [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-10/igt@kms_writeback@writeback-pixel-formats.html * igt@perf_pmu@most-busy-check-all@rcs0: - shard-rkl: [PASS][405] -> [FAIL][406] ([i915#4349]) [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-4/igt@perf_pmu@most-busy-check-all@rcs0.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-2/igt@perf_pmu@most-busy-check-all@rcs0.html * igt@perf_pmu@rc6-all-gts: - shard-dg1: NOTRUN -> [SKIP][407] ([i915#8516]) +1 other test skip [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-18/igt@perf_pmu@rc6-all-gts.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][408] ([i915#8516]) [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-5/igt@perf_pmu@rc6@other-idle-gt0.html - shard-rkl: NOTRUN -> [SKIP][409] ([i915#8516]) [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-3/igt@perf_pmu@rc6@other-idle-gt0.html - shard-tglu: NOTRUN -> [SKIP][410] ([i915#8516]) [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-4/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-fence-flip: - shard-rkl: [PASS][411] -> [SKIP][412] ([i915#14544] / [i915#3708]) [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-8/igt@prime_vgem@basic-fence-flip.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@coherency-gtt: - shard-rkl: NOTRUN -> [SKIP][413] ([i915#14544] / [i915#3708]) [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@prime_vgem@coherency-gtt.html * igt@sriov_basic@bind-unbind-vf: - shard-dg2: NOTRUN -> [SKIP][414] ([i915#9917]) +2 other tests skip [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-7/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@bind-unbind-vf@vf-4: - shard-tglu: NOTRUN -> [FAIL][415] ([i915#12910]) +10 other tests fail [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-5/igt@sriov_basic@bind-unbind-vf@vf-4.html * igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-2: - shard-mtlp: NOTRUN -> [FAIL][416] ([i915#12910]) +10 other tests fail [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-6/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-2.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-rkl: NOTRUN -> [SKIP][417] ([i915#9917]) [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-7/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html - shard-dg1: NOTRUN -> [SKIP][418] ([i915#9917]) [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-19/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@tools_test@sysfs_l3_parity: - shard-rkl: NOTRUN -> [SKIP][419] ([i915#14544]) +13 other tests skip [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@tools_test@sysfs_l3_parity.html - shard-dg1: NOTRUN -> [SKIP][420] ([i915#4818]) [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-12/igt@tools_test@sysfs_l3_parity.html - shard-mtlp: NOTRUN -> [SKIP][421] ([i915#4818]) [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-3/igt@tools_test@sysfs_l3_parity.html - shard-dg2: NOTRUN -> [SKIP][422] ([i915#4818]) [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-6/igt@tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt@gem_ctx_isolation@preservation-s3: - shard-rkl: [INCOMPLETE][423] ([i915#13356]) -> [PASS][424] +1 other test pass [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-3/igt@gem_ctx_isolation@preservation-s3.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-5/igt@gem_ctx_isolation@preservation-s3.html * igt@gem_eio@in-flight-suspend: - shard-rkl: [INCOMPLETE][425] ([i915#13390]) -> [PASS][426] [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-3/igt@gem_eio@in-flight-suspend.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-7/igt@gem_eio@in-flight-suspend.html * igt@gem_exec_suspend@basic-s0@smem: - shard-dg2: [INCOMPLETE][427] ([i915#13356]) -> [PASS][428] +1 other test pass [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg2-1/igt@gem_exec_suspend@basic-s0@smem.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-8/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_mmap_offset@clear-via-pagefault: - shard-mtlp: [ABORT][429] ([i915#14809]) -> [PASS][430] +1 other test pass [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-mtlp-4/igt@gem_mmap_offset@clear-via-pagefault.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-2/igt@gem_mmap_offset@clear-via-pagefault.html * igt@gem_pxp@create-regular-context-1: - shard-rkl: [TIMEOUT][431] ([i915#12917] / [i915#12964]) -> [PASS][432] +1 other test pass [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-4/igt@gem_pxp@create-regular-context-1.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-8/igt@gem_pxp@create-regular-context-1.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-rkl: [TIMEOUT][433] ([i915#12964]) -> [PASS][434] +1 other test pass [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-5/igt@gem_pxp@regular-baseline-src-copy-readible.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-8/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_tiled_swapping@non-threaded: - shard-rkl: [FAIL][435] -> [PASS][436] [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-8/igt@gem_tiled_swapping@non-threaded.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@gem_tiled_swapping@non-threaded.html * igt@i915_module_load@load: - shard-dg1: ([PASS][437], [PASS][438], [PASS][439], [PASS][440], [PASS][441], [PASS][442], [PASS][443], [PASS][444], [PASS][445], [PASS][446], [PASS][447], [PASS][448], [PASS][449], [PASS][450], [PASS][451], [PASS][452], [PASS][453], [PASS][454], [PASS][455], [PASS][456], [SKIP][457], [PASS][458], [PASS][459], [PASS][460]) ([i915#14785]) -> ([PASS][461], [PASS][462], [PASS][463], [PASS][464], [PASS][465], [PASS][466], [PASS][467], [PASS][468], [PASS][469], [PASS][470], [PASS][471], [PASS][472], [PASS][473], [PASS][474], [PASS][475], [PASS][476], [PASS][477], [PASS][478], [PASS][479], [PASS][480], [PASS][481], [PASS][482], [PASS][483], [PASS][484], [PASS][485]) [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg1-18/igt@i915_module_load@load.html [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg1-15/igt@i915_module_load@load.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg1-12/igt@i915_module_load@load.html [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg1-17/igt@i915_module_load@load.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg1-16/igt@i915_module_load@load.html [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg1-19/igt@i915_module_load@load.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg1-14/igt@i915_module_load@load.html [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg1-14/igt@i915_module_load@load.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg1-12/igt@i915_module_load@load.html [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg1-14/igt@i915_module_load@load.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg1-15/igt@i915_module_load@load.html [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg1-19/igt@i915_module_load@load.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg1-17/igt@i915_module_load@load.html [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg1-13/igt@i915_module_load@load.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg1-18/igt@i915_module_load@load.html [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg1-16/igt@i915_module_load@load.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg1-13/igt@i915_module_load@load.html [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg1-16/igt@i915_module_load@load.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg1-17/igt@i915_module_load@load.html [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg1-12/igt@i915_module_load@load.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg1-18/igt@i915_module_load@load.html [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg1-15/igt@i915_module_load@load.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg1-13/igt@i915_module_load@load.html [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg1-19/igt@i915_module_load@load.html [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-17/igt@i915_module_load@load.html [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-15/igt@i915_module_load@load.html [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-12/igt@i915_module_load@load.html [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-13/igt@i915_module_load@load.html [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-18/igt@i915_module_load@load.html [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-19/igt@i915_module_load@load.html [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-14/igt@i915_module_load@load.html [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-13/igt@i915_module_load@load.html [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-12/igt@i915_module_load@load.html [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-15/igt@i915_module_load@load.html [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-16/igt@i915_module_load@load.html [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-18/igt@i915_module_load@load.html [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-12/igt@i915_module_load@load.html [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-14/igt@i915_module_load@load.html [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-17/igt@i915_module_load@load.html [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-18/igt@i915_module_load@load.html [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-14/igt@i915_module_load@load.html [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-15/igt@i915_module_load@load.html [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-16/igt@i915_module_load@load.html [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-19/igt@i915_module_load@load.html [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-13/igt@i915_module_load@load.html [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-15/igt@i915_module_load@load.html [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-17/igt@i915_module_load@load.html [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-16/igt@i915_module_load@load.html [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-19/igt@i915_module_load@load.html * igt@i915_module_load@resize-bar: - shard-dg2: [DMESG-WARN][486] ([i915#14545]) -> [PASS][487] [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg2-5/igt@i915_module_load@resize-bar.html [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-5/igt@i915_module_load@resize-bar.html * igt@kms_async_flips@async-flip-suspend-resume: - shard-rkl: [ABORT][488] ([i915#15132]) -> [PASS][489] +1 other test pass [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-4/igt@kms_async_flips@async-flip-suspend-resume.html [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-2/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_busy@extended-modeset-hang-newfb-with-reset: - shard-rkl: [DMESG-WARN][490] ([i915#12964]) -> [PASS][491] +23 other tests pass [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-5/igt@kms_busy@extended-modeset-hang-newfb-with-reset.html [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-8/igt@kms_busy@extended-modeset-hang-newfb-with-reset.html * igt@kms_color@gamma: - shard-rkl: [SKIP][492] ([i915#12655] / [i915#14544]) -> [PASS][493] +1 other test pass [492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_color@gamma.html [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-5/igt@kms_color@gamma.html * igt@kms_cursor_crc@cursor-onscreen-256x256: - shard-rkl: [SKIP][494] ([i915#14544]) -> [PASS][495] +43 other tests pass [494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-256x256.html [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-256x256.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-tglu: [FAIL][496] ([i915#13566]) -> [PASS][497] +1 other test pass [496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-tglu-9/igt@kms_cursor_crc@cursor-onscreen-256x85.html [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-snb: [SKIP][498] -> [PASS][499] [498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-snb7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-snb6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-tglu: [FAIL][500] ([i915#2346]) -> [PASS][501] [500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-tglu-10/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-rkl: [SKIP][502] ([i915#14544] / [i915#14561]) -> [PASS][503] [502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_fbcon_fbt@fbc-suspend.html [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-2/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1: - shard-snb: [TIMEOUT][504] ([i915#14033]) -> [PASS][505] +1 other test pass [504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-snb6/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-snb1/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html * igt@kms_flip@flip-vs-suspend: - shard-rkl: [SKIP][506] ([i915#14544] / [i915#3637]) -> [PASS][507] +7 other tests pass [506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_flip@flip-vs-suspend.html [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-7/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-dg1: [DMESG-WARN][508] ([i915#4423]) -> [PASS][509] +3 other tests pass [508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg1-19/igt@kms_flip@flip-vs-suspend-interruptible.html [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-19/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - shard-rkl: [SKIP][510] ([i915#14544] / [i915#3555]) -> [PASS][511] +2 other tests pass [510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render: - shard-rkl: [SKIP][512] ([i915#14544] / [i915#1849] / [i915#5354]) -> [PASS][513] +8 other tests pass [512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_hdr@static-swap: - shard-dg2: [SKIP][514] ([i915#3555] / [i915#8228]) -> [PASS][515] [514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg2-1/igt@kms_hdr@static-swap.html [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-11/igt@kms_hdr@static-swap.html * igt@kms_invalid_mode@zero-clock: - shard-rkl: [SKIP][516] ([i915#14544] / [i915#3555] / [i915#8826]) -> [PASS][517] [516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_invalid_mode@zero-clock.html [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-5/igt@kms_invalid_mode@zero-clock.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - shard-rkl: [SKIP][518] ([i915#11190] / [i915#14544]) -> [PASS][519] +2 other tests pass [518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-8/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html * igt@kms_plane@plane-panning-bottom-right: - shard-rkl: [SKIP][520] ([i915#14544] / [i915#8825]) -> [PASS][521] [520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_plane@plane-panning-bottom-right.html [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-8/igt@kms_plane@plane-panning-bottom-right.html * igt@kms_plane_alpha_blend@coverage-7efc: - shard-rkl: [SKIP][522] ([i915#14544] / [i915#7294]) -> [PASS][523] [522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_plane_alpha_blend@coverage-7efc.html [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-7/igt@kms_plane_alpha_blend@coverage-7efc.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats: - shard-rkl: [SKIP][524] ([i915#14544] / [i915#3555] / [i915#8152]) -> [PASS][525] [524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a: - shard-rkl: [SKIP][526] ([i915#12247] / [i915#14544]) -> [PASS][527] +3 other tests pass [526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a.html [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-2/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75: - shard-rkl: [SKIP][528] ([i915#12247] / [i915#14544] / [i915#6953] / [i915#8152]) -> [PASS][529] +1 other test pass [528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b: - shard-rkl: [SKIP][530] ([i915#12247] / [i915#14544] / [i915#8152]) -> [PASS][531] +4 other tests pass [530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b.html [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b.html * igt@kms_pm_rpm@system-suspend-idle: - shard-dg2: [INCOMPLETE][532] ([i915#14419]) -> [PASS][533] [532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg2-7/igt@kms_pm_rpm@system-suspend-idle.html [533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-3/igt@kms_pm_rpm@system-suspend-idle.html * igt@kms_vrr@negative-basic: - shard-dg2: [SKIP][534] ([i915#3555] / [i915#9906]) -> [PASS][535] [534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg2-8/igt@kms_vrr@negative-basic.html [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-11/igt@kms_vrr@negative-basic.html * igt@perf_pmu@all-busy-idle-check-all: - shard-dg2: [FAIL][536] ([i915#11943]) -> [PASS][537] [536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg2-5/igt@perf_pmu@all-busy-idle-check-all.html [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-6/igt@perf_pmu@all-busy-idle-check-all.html * igt@perf_pmu@most-busy-idle-check-all@rcs0: - shard-mtlp: [FAIL][538] ([i915#11943]) -> [PASS][539] +2 other tests pass [538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-mtlp-2/igt@perf_pmu@most-busy-idle-check-all@rcs0.html [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-mtlp-8/igt@perf_pmu@most-busy-idle-check-all@rcs0.html #### Warnings #### * igt@api_intel_bb@object-reloc-purge-cache: - shard-rkl: [SKIP][540] ([i915#14544] / [i915#8411]) -> [SKIP][541] ([i915#8411]) [540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@api_intel_bb@object-reloc-purge-cache.html [541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-3/igt@api_intel_bb@object-reloc-purge-cache.html * igt@device_reset@cold-reset-bound: - shard-rkl: [SKIP][542] ([i915#11078] / [i915#14544]) -> [SKIP][543] ([i915#11078]) [542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@device_reset@cold-reset-bound.html [543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-8/igt@device_reset@cold-reset-bound.html * igt@gem_basic@multigpu-create-close: - shard-rkl: [SKIP][544] ([i915#7697]) -> [SKIP][545] ([i915#14544] / [i915#7697]) +1 other test skip [544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-2/igt@gem_basic@multigpu-create-close.html [545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@block-multicopy-compressed: - shard-rkl: [SKIP][546] ([i915#9323]) -> [SKIP][547] ([i915#14544] / [i915#9323]) [546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-8/igt@gem_ccs@block-multicopy-compressed.html [547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@ctrl-surf-copy: - shard-rkl: [SKIP][548] ([i915#14544] / [i915#3555] / [i915#9323]) -> [SKIP][549] ([i915#3555] / [i915#9323]) [548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy.html [549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-8/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@large-ctrl-surf-copy: - shard-rkl: [SKIP][550] ([i915#13008]) -> [SKIP][551] ([i915#13008] / [i915#14544]) [550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-2/igt@gem_ccs@large-ctrl-surf-copy.html [551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@gem_ccs@large-ctrl-surf-copy.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-rkl: [SKIP][552] ([i915#6335]) -> [SKIP][553] ([i915#14544] / [i915#6335]) [552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-5/igt@gem_create@create-ext-cpu-access-sanity-check.html [553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_create@create-ext-set-pat: - shard-rkl: [SKIP][554] ([i915#14544] / [i915#8562]) -> [SKIP][555] ([i915#8562]) [554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@gem_create@create-ext-set-pat.html [555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-5/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_sseu@mmap-args: - shard-rkl: [SKIP][556] ([i915#280]) -> [SKIP][557] ([i915#14544] / [i915#280]) [556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-2/igt@gem_ctx_sseu@mmap-args.html [557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@gem_ctx_sseu@mmap-args.html * igt@gem_exec_balancer@parallel: - shard-rkl: [SKIP][558] ([i915#4525]) -> [SKIP][559] ([i915#14544] / [i915#4525]) +1 other test skip [558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-2/igt@gem_exec_balancer@parallel.html [559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@gem_exec_balancer@parallel.html * igt@gem_exec_balancer@parallel-contexts: - shard-rkl: [SKIP][560] ([i915#14544] / [i915#4525]) -> [SKIP][561] ([i915#4525]) [560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@gem_exec_balancer@parallel-contexts.html [561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-2/igt@gem_exec_balancer@parallel-contexts.html * igt@gem_exec_reloc@basic-gtt-read-noreloc: - shard-rkl: [SKIP][562] ([i915#14544] / [i915#3281]) -> [SKIP][563] ([i915#3281]) +9 other tests skip [562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-read-noreloc.html [563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-read-noreloc.html * igt@gem_exec_reloc@basic-write-read-noreloc: - shard-rkl: [SKIP][564] ([i915#3281]) -> [SKIP][565] ([i915#14544] / [i915#3281]) +7 other tests skip [564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-noreloc.html [565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-noreloc.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-rkl: [SKIP][566] ([i915#14544] / [i915#4613]) -> [SKIP][567] ([i915#4613]) +1 other test skip [566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random-ccs.html [567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-5/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@parallel-random: - shard-rkl: [SKIP][568] ([i915#4613]) -> [SKIP][569] ([i915#14544] / [i915#4613]) +3 other tests skip [568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-7/igt@gem_lmem_swapping@parallel-random.html [569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@gem_lmem_swapping@parallel-random.html * igt@gem_media_vme: - shard-rkl: [SKIP][570] ([i915#284]) -> [SKIP][571] ([i915#14544] / [i915#284]) [570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-5/igt@gem_media_vme.html [571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@gem_media_vme.html * igt@gem_partial_pwrite_pread@write-uncached: - shard-rkl: [SKIP][572] ([i915#3282]) -> [SKIP][573] ([i915#14544] / [i915#3282]) +4 other tests skip [572]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-8/igt@gem_partial_pwrite_pread@write-uncached.html [573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@gem_partial_pwrite_pread@write-uncached.html * igt@gem_pread@bench: - shard-rkl: [SKIP][574] ([i915#14544] / [i915#3282]) -> [SKIP][575] ([i915#3282]) +4 other tests skip [574]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@gem_pread@bench.html [575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-5/igt@gem_pread@bench.html * igt@gem_pxp@create-valid-protected-context: - shard-rkl: [SKIP][576] ([i915#4270]) -> [SKIP][577] ([i915#14544] / [i915#4270]) [576]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-2/igt@gem_pxp@create-valid-protected-context.html [577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@gem_pxp@create-valid-protected-context.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-rkl: [SKIP][578] ([i915#4270]) -> [TIMEOUT][579] ([i915#12917] / [i915#12964]) [578]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-5/igt@gem_pxp@verify-pxp-stale-buf-execution.html [579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-5/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_userptr_blits@access-control: - shard-rkl: [SKIP][580] ([i915#14544] / [i915#3297]) -> [SKIP][581] ([i915#3297]) +1 other test skip [580]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@gem_userptr_blits@access-control.html [581]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-8/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@forbidden-operations: - shard-rkl: [SKIP][582] ([i915#3282] / [i915#3297]) -> [SKIP][583] ([i915#14544] / [i915#3282] / [i915#3297]) [582]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-5/igt@gem_userptr_blits@forbidden-operations.html [583]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-rkl: [SKIP][584] ([i915#3297]) -> [SKIP][585] ([i915#14544] / [i915#3297]) +2 other tests skip [584]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-4/igt@gem_userptr_blits@unsync-unmap-after-close.html [585]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gen9_exec_parse@allowed-single: - shard-rkl: [SKIP][586] ([i915#14544] / [i915#2527]) -> [SKIP][587] ([i915#2527]) +4 other tests skip [586]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@gen9_exec_parse@allowed-single.html [587]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-8/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@bb-oversize: - shard-rkl: [SKIP][588] ([i915#2527]) -> [SKIP][589] ([i915#14544] / [i915#2527]) +2 other tests skip [588]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-8/igt@gen9_exec_parse@bb-oversize.html [589]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@gen9_exec_parse@bb-oversize.html * igt@i915_pm_freq_api@freq-basic-api: - shard-rkl: [SKIP][590] ([i915#14544] / [i915#8399]) -> [SKIP][591] ([i915#8399]) [590]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@i915_pm_freq_api@freq-basic-api.html [591]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-5/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_api@freq-suspend: - shard-rkl: [SKIP][592] ([i915#8399]) -> [SKIP][593] ([i915#14544] / [i915#8399]) +1 other test skip [592]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-8/igt@i915_pm_freq_api@freq-suspend.html [593]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-rkl: [SKIP][594] ([i915#14498]) -> [SKIP][595] ([i915#14498] / [i915#14544]) [594]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-7/igt@i915_pm_rc6_residency@rc6-idle.html [595]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@i915_pm_rc6_residency@rc6-idle.html * igt@intel_hwmon@hwmon-write: - shard-rkl: [SKIP][596] ([i915#7707]) -> [SKIP][597] ([i915#14544] / [i915#7707]) [596]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-7/igt@intel_hwmon@hwmon-write.html [597]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@intel_hwmon@hwmon-write.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-rkl: [SKIP][598] ([i915#5286]) -> [SKIP][599] ([i915#14544]) +6 other tests skip [598]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-8/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html [599]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-addfb: - shard-rkl: [SKIP][600] ([i915#14544]) -> [SKIP][601] ([i915#5286]) +6 other tests skip [600]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb.html [601]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-7/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-rkl: [SKIP][602] ([i915#14544]) -> [SKIP][603] ([i915#3638]) +1 other test skip [602]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_big_fb@linear-64bpp-rotate-270.html [603]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-8/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@linear-8bpp-rotate-90: - shard-rkl: [SKIP][604] ([i915#3638]) -> [SKIP][605] ([i915#14544]) +1 other test skip [604]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-8/igt@kms_big_fb@linear-8bpp-rotate-90.html [605]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_big_fb@linear-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-rkl: [SKIP][606] -> [SKIP][607] ([i915#14544]) +14 other tests skip [606]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html [607]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-rkl: [SKIP][608] ([i915#14544]) -> [SKIP][609] ([i915#12313]) +1 other test skip [608]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html [609]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-4/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc: - shard-rkl: [SKIP][610] ([i915#14098] / [i915#6095]) -> [SKIP][611] ([i915#14544]) +12 other tests skip [610]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-2/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html [611]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][612] ([i915#6095]) -> [SKIP][613] ([i915#14098] / [i915#6095]) [612]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-8/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-b-hdmi-a-2.html [613]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-rkl: [SKIP][614] ([i915#12805]) -> [SKIP][615] ([i915#14544]) [614]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [615]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][616] ([i915#14098] / [i915#6095]) -> [SKIP][617] ([i915#6095]) [616]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-2.html [617]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-rkl: [SKIP][618] ([i915#14544]) -> [SKIP][619] ([i915#14098] / [i915#6095]) +7 other tests skip [618]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html [619]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_cdclk@mode-transition: - shard-rkl: [SKIP][620] ([i915#14544] / [i915#3742]) -> [SKIP][621] ([i915#3742]) [620]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_cdclk@mode-transition.html [621]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-7/igt@kms_cdclk@mode-transition.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-4k: - shard-rkl: [SKIP][622] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][623] ([i915#11151] / [i915#7828]) +7 other tests skip [622]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html [623]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-2/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html * igt@kms_chamelium_hpd@hdmi-hpd-fast: - shard-rkl: [SKIP][624] ([i915#11151] / [i915#7828]) -> [SKIP][625] ([i915#11151] / [i915#14544] / [i915#7828]) +7 other tests skip [624]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-2/igt@kms_chamelium_hpd@hdmi-hpd-fast.html [625]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-fast.html * igt@kms_content_protection@atomic: - shard-dg2: [FAIL][626] ([i915#7173]) -> [SKIP][627] ([i915#7118] / [i915#9424]) [626]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg2-11/igt@kms_content_protection@atomic.html [627]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-4/igt@kms_content_protection@atomic.html * igt@kms_content_protection@content-type-change: - shard-rkl: [SKIP][628] ([i915#14544]) -> [SKIP][629] ([i915#9424]) [628]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_content_protection@content-type-change.html [629]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-3/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@type1: - shard-rkl: [SKIP][630] ([i915#7118] / [i915#9424]) -> [SKIP][631] ([i915#14544]) +1 other test skip [630]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-8/igt@kms_content_protection@type1.html [631]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent: - shard-dg2: [SKIP][632] ([i915#7118] / [i915#9424]) -> [FAIL][633] ([i915#1339] / [i915#7173]) [632]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg2-7/igt@kms_content_protection@uevent.html [633]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-11/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: [SKIP][634] ([i915#14544]) -> [SKIP][635] ([i915#3555]) +2 other tests skip [634]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-32x32.html [635]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-rkl: [SKIP][636] ([i915#3555]) -> [SKIP][637] ([i915#14544]) [636]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html [637]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-rkl: [SKIP][638] ([i915#14544]) -> [DMESG-FAIL][639] ([i915#12964]) [638]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-256x85.html [639]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-rkl: [SKIP][640] ([i915#14544]) -> [SKIP][641] ([i915#13049]) +1 other test skip [640]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-512x170.html [641]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-rkl: [SKIP][642] ([i915#13049]) -> [SKIP][643] ([i915#14544]) +2 other tests skip [642]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-512x512.html [643]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-rkl: [SKIP][644] ([i915#11190] / [i915#14544]) -> [SKIP][645] ([i915#4103]) +1 other test skip [644]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html [645]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-rkl: [SKIP][646] ([i915#14544]) -> [SKIP][647] +13 other tests skip [646]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html [647]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-3/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: [SKIP][648] ([i915#9067]) -> [SKIP][649] ([i915#14544]) [648]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-2/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html [649]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-rkl: [SKIP][650] ([i915#14544]) -> [SKIP][651] ([i915#4103]) [650]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [651]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: [SKIP][652] ([i915#9723]) -> [SKIP][653] ([i915#14544]) [652]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-4/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html [653]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-rkl: [SKIP][654] ([i915#13749]) -> [SKIP][655] ([i915#14544]) [654]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-7/igt@kms_dp_link_training@non-uhbr-mst.html [655]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dp_link_training@uhbr-sst: - shard-rkl: [SKIP][656] ([i915#13748]) -> [SKIP][657] ([i915#14544]) [656]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-4/igt@kms_dp_link_training@uhbr-sst.html [657]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dsc@dsc-basic: - shard-rkl: [SKIP][658] ([i915#3555] / [i915#3840]) -> [SKIP][659] ([i915#11190] / [i915#14544]) [658]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-5/igt@kms_dsc@dsc-basic.html [659]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_dsc@dsc-basic.html * igt@kms_fbcon_fbt@psr: - shard-rkl: [SKIP][660] ([i915#3955]) -> [SKIP][661] ([i915#14544] / [i915#3955]) [660]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-5/igt@kms_fbcon_fbt@psr.html [661]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@chamelium: - shard-rkl: [SKIP][662] ([i915#14544] / [i915#4854]) -> [SKIP][663] ([i915#4854]) [662]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_feature_discovery@chamelium.html [663]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-8/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-4x: - shard-dg1: [SKIP][664] ([i915#1839]) -> [SKIP][665] ([i915#1839] / [i915#4423]) [664]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg1-15/igt@kms_feature_discovery@display-4x.html [665]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-12/igt@kms_feature_discovery@display-4x.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-rkl: [SKIP][666] ([i915#14544] / [i915#9934]) -> [SKIP][667] ([i915#9934]) +5 other tests skip [666]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html [667]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-8/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@2x-flip-vs-modeset-vs-hang: - shard-rkl: [SKIP][668] ([i915#9934]) -> [SKIP][669] ([i915#14544] / [i915#9934]) +5 other tests skip [668]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-3/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html [669]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html * igt@kms_flip@absolute-wf_vblank-interruptible: - shard-rkl: [DMESG-WARN][670] ([i915#12917] / [i915#12964]) -> [SKIP][671] ([i915#14544] / [i915#3637]) [670]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-4/igt@kms_flip@absolute-wf_vblank-interruptible.html [671]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_flip@absolute-wf_vblank-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-rkl: [SKIP][672] ([i915#14544] / [i915#3555]) -> [SKIP][673] ([i915#2672] / [i915#3555]) [672]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html [673]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-dg1: [SKIP][674] ([i915#2587] / [i915#2672] / [i915#3555] / [i915#4423]) -> [SKIP][675] ([i915#2587] / [i915#2672] / [i915#3555]) [674]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html [675]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-19/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-dg1: [SKIP][676] ([i915#2587] / [i915#2672] / [i915#4423]) -> [SKIP][677] ([i915#2587] / [i915#2672]) [676]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html [677]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-19/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-rkl: [SKIP][678] ([i915#2672] / [i915#3555]) -> [SKIP][679] ([i915#14544] / [i915#3555]) +2 other tests skip [678]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html [679]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-rkl: [DMESG-WARN][680] ([i915#12964]) -> [SKIP][681] ([i915#14544] / [i915#1849] / [i915#5354]) [680]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu.html [681]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-dg1: [SKIP][682] ([i915#4423] / [i915#8708]) -> [SKIP][683] ([i915#8708]) [682]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html [683]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc: - shard-rkl: [SKIP][684] ([i915#14544]) -> [SKIP][685] ([i915#15102]) +2 other tests skip [684]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html [685]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt: - shard-dg2: [SKIP][686] ([i915#15102] / [i915#3458]) -> [SKIP][687] ([i915#10433] / [i915#15102] / [i915#3458]) [686]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html [687]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt: - shard-rkl: [SKIP][688] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][689] +1 other test skip [688]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html [689]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen: - shard-tglu: [INCOMPLETE][690] -> [SKIP][691] [690]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-tglu-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html [691]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][692] ([i915#15102]) -> [SKIP][693] ([i915#14544]) +2 other tests skip [692]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html [693]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: - shard-rkl: [SKIP][694] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][695] ([i915#15102] / [i915#3023]) +10 other tests skip [694]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html [695]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-rkl: [SKIP][696] ([i915#15102] / [i915#3023]) -> [SKIP][697] ([i915#14544] / [i915#1849] / [i915#5354]) +14 other tests skip [696]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html [697]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-rkl: [SKIP][698] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][699] ([i915#1825]) +21 other tests skip [698]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html [699]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: [SKIP][700] ([i915#1825]) -> [SKIP][701] ([i915#14544] / [i915#1849] / [i915#5354]) +30 other tests skip [700]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html [701]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: [SKIP][702] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][703] ([i915#15102] / [i915#3458]) +2 other tests skip [702]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html [703]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_hdr@bpc-switch-dpms: - shard-rkl: [SKIP][704] ([i915#3555] / [i915#8228]) -> [SKIP][705] ([i915#14544]) [704]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-2/igt@kms_hdr@bpc-switch-dpms.html [705]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@brightness-with-hdr: - shard-dg2: [SKIP][706] ([i915#12713]) -> [SKIP][707] ([i915#13331]) [706]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg2-1/igt@kms_hdr@brightness-with-hdr.html [707]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-10/igt@kms_hdr@brightness-with-hdr.html - shard-rkl: [SKIP][708] ([i915#14544]) -> [SKIP][709] ([i915#12713]) [708]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_hdr@brightness-with-hdr.html [709]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-2/igt@kms_hdr@brightness-with-hdr.html - shard-tglu: [SKIP][710] ([i915#12713]) -> [SKIP][711] ([i915#1187] / [i915#12713]) [710]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-tglu-9/igt@kms_hdr@brightness-with-hdr.html [711]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-tglu-2/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@static-toggle: - shard-rkl: [SKIP][712] ([i915#14544]) -> [SKIP][713] ([i915#3555] / [i915#8228]) [712]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_hdr@static-toggle.html [713]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-7/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: [SKIP][714] ([i915#3555] / [i915#8228]) -> [ABORT][715] ([i915#15132]) [714]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg2-4/igt@kms_hdr@static-toggle-suspend.html [715]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg2-10/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-rkl: [SKIP][716] ([i915#12394] / [i915#14544]) -> [SKIP][717] ([i915#12394]) [716]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_joiner@basic-force-ultra-joiner.html [717]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-2/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_panel_fitting@legacy: - shard-rkl: [SKIP][718] ([i915#6301]) -> [SKIP][719] ([i915#14544]) [718]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-4/igt@kms_panel_fitting@legacy.html [719]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_stress@stress-xrgb8888-xtiled: - shard-rkl: [SKIP][720] ([i915#14544]) -> [DMESG-WARN][721] ([i915#12964]) +3 other tests dmesg-warn [720]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-xtiled.html [721]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-5/igt@kms_pipe_stress@stress-xrgb8888-xtiled.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-rkl: [SKIP][722] ([i915#14544]) -> [SKIP][723] ([i915#14712]) [722]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html [723]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-2/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_plane_multiple@2x-tiling-y: - shard-rkl: [SKIP][724] ([i915#13958]) -> [SKIP][725] ([i915#14544]) [724]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-5/igt@kms_plane_multiple@2x-tiling-y.html [725]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_scaling@invalid-num-scalers: - shard-rkl: [DMESG-WARN][726] ([i915#12964]) -> [SKIP][727] ([i915#14544] / [i915#3555] / [i915#6953] / [i915#8152]) [726]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-7/igt@kms_plane_scaling@invalid-num-scalers.html [727]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_plane_scaling@invalid-num-scalers.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: - shard-rkl: [SKIP][728] ([i915#12247] / [i915#14544]) -> [SKIP][729] ([i915#12247]) [728]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html [729]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b: - shard-rkl: [SKIP][730] ([i915#12247] / [i915#14544] / [i915#8152]) -> [SKIP][731] ([i915#12247]) +1 other test skip [730]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b.html [731]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-rkl: [SKIP][732] ([i915#12343]) -> [SKIP][733] ([i915#12343] / [i915#14544]) [732]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-5/igt@kms_pm_backlight@brightness-with-dpms.html [733]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade-with-suspend: - shard-rkl: [SKIP][734] ([i915#14544] / [i915#5354]) -> [SKIP][735] ([i915#5354]) [734]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_pm_backlight@fade-with-suspend.html [735]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-5/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc5-retention-flops: - shard-rkl: [SKIP][736] ([i915#14544] / [i915#3828]) -> [SKIP][737] ([i915#3828]) [736]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_pm_dc@dc5-retention-flops.html [737]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-8/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][738] ([i915#9340]) -> [SKIP][739] ([i915#3828]) [738]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-8/igt@kms_pm_lpsp@kms-lpsp.html [739]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-2/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-rkl: [SKIP][740] ([i915#8430]) -> [SKIP][741] ([i915#14544] / [i915#8430]) [740]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-5/igt@kms_pm_lpsp@screens-disabled.html [741]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [SKIP][742] ([i915#15073]) -> [SKIP][743] ([i915#14544] / [i915#15073]) [742]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp.html [743]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_prime@d3hot: - shard-rkl: [SKIP][744] ([i915#14544] / [i915#6524]) -> [SKIP][745] ([i915#6524]) +1 other test skip [744]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_prime@d3hot.html [745]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-5/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf: - shard-rkl: [SKIP][746] ([i915#11520] / [i915#14544]) -> [SKIP][747] ([i915#11520]) +7 other tests skip [746]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html [747]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-5/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area: - shard-rkl: [SKIP][748] ([i915#11520]) -> [SKIP][749] ([i915#11520] / [i915#14544]) +6 other tests skip [748]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-5/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html [749]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-nv12: - shard-rkl: [SKIP][750] ([i915#14544] / [i915#9683]) -> [SKIP][751] ([i915#9683]) [750]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_psr2_su@page_flip-nv12.html [751]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-2/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@psr-cursor-plane-move: - shard-dg1: [SKIP][752] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][753] ([i915#1072] / [i915#9732]) +1 other test skip [752]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-dg1-12/igt@kms_psr@psr-cursor-plane-move.html [753]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-dg1-13/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_psr@psr-cursor-render: - shard-rkl: [SKIP][754] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][755] ([i915#1072] / [i915#9732]) +15 other tests skip [754]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_psr@psr-cursor-render.html [755]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-2/igt@kms_psr@psr-cursor-render.html * igt@kms_psr@psr2-suspend: - shard-rkl: [SKIP][756] ([i915#1072] / [i915#9732]) -> [SKIP][757] ([i915#1072] / [i915#14544] / [i915#9732]) +18 other tests skip [756]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-2/igt@kms_psr@psr2-suspend.html [757]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_psr@psr2-suspend.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: [SKIP][758] ([i915#9685]) -> [SKIP][759] ([i915#14544] / [i915#9685]) [758]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [759]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-rkl: [SKIP][760] ([i915#5289]) -> [SKIP][761] ([i915#14544]) [760]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html [761]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-rkl: [SKIP][762] ([i915#3555]) -> [SKIP][763] ([i915#14544] / [i915#3555]) [762]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-2/igt@kms_setmode@invalid-clone-exclusive-crtc.html [763]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_sharpness_filter@filter-scaler-upscale: - shard-rkl: [SKIP][764] ([i915#14544]) -> [SKIP][765] ([i915#15232]) [764]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_sharpness_filter@filter-scaler-upscale.html [765]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-5/igt@kms_sharpness_filter@filter-scaler-upscale.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: [SKIP][766] ([i915#14544]) -> [SKIP][767] ([i915#8623]) [766]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [767]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@flip-basic: - shard-rkl: [SKIP][768] ([i915#14544]) -> [SKIP][769] ([i915#15243] / [i915#3555]) +1 other test skip [768]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_vrr@flip-basic.html [769]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-2/igt@kms_vrr@flip-basic.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-rkl: [SKIP][770] ([i915#14544]) -> [SKIP][771] ([i915#9906]) [770]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-vrr.html [771]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-7/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-rkl: [SKIP][772] ([i915#2437] / [i915#9412]) -> [SKIP][773] ([i915#14544] / [i915#2437] / [i915#9412]) [772]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-5/igt@kms_writeback@writeback-check-output-xrgb2101010.html [773]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-rkl: [SKIP][774] ([i915#2436]) -> [SKIP][775] ([i915#14544] / [i915#2436]) [774]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-7/igt@perf@gen8-unprivileged-single-ctx-counters.html [775]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-6/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf_pmu@most-busy-check-all: - shard-rkl: [DMESG-WARN][776] ([i915#12964]) -> [FAIL][777] ([i915#4349]) [776]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-4/igt@perf_pmu@most-busy-check-all.html [777]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-2/igt@perf_pmu@most-busy-check-all.html * igt@sriov_basic@bind-unbind-vf: - shard-rkl: [SKIP][778] ([i915#14544] / [i915#9917]) -> [SKIP][779] ([i915#9917]) [778]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8623/shard-rkl-6/igt@sriov_basic@bind-unbind-vf.html [779]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/shard-rkl-5/igt@sriov_basic@bind-unbind-vf.html [i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11190 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11521]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11521 [i915#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#11943]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11943 [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358 [i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392 [i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394 [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655 [i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917 [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964 [i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008 [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13196 [i915#13331]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13331 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13363]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363 [i915#1339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1339 [i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390 [i915#13522]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13522 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13705]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13705 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783 [i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118 [i915#14123]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14123 [i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152 [i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419 [i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545 [i915#14561]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14561 [i915#14600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600 [i915#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702 [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712 [i915#14785]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14785 [i915#14809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14809 [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073 [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102 [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104 [i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132 [i915#15178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15178 [i915#15232]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15232 [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243 [i915#15283]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15283 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346 [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#3936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936 [i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955 [i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4873 [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880 [i915#4884]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4884 [i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885 [i915#4958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187 [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7294]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7294 [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882 [i915#8152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812 [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8823]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8823 [i915#8825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825 [i915#8826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8826 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8623 -> IGTPW_14051 CI-20190529: 20190529 CI_DRM_17544: 9d61bbd3042d1976dc5f67a30e0aa6c010cbc98f @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14051: 14051 IGT_8623: 8623 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14051/index.html [-- Attachment #2: Type: text/html, Size: 240271 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH v1 0/5] Redesign of the xe_debugfs test 2025-11-13 11:46 [PATCH v1 0/5] Redesign of the xe_debugfs test Piórkowski, Piotr ` (8 preceding siblings ...) 2025-11-14 17:59 ` ✗ i915.CI.Full: " Patchwork @ 2025-11-18 16:56 ` Peter Senna Tschudin 9 siblings, 0 replies; 15+ messages in thread From: Peter Senna Tschudin @ 2025-11-18 16:56 UTC (permalink / raw) To: Piórkowski, Piotr, igt-dev On 11/13/2025 12:46 PM, Piórkowski, Piotr wrote: > From: Piotr Piórkowski <piotr.piorkowski@intel.com> > > As part of the work on patch [1], it became necessary to update the > xe_debugfs test to account for the new debugfs structure. However, > while reviewing the test, I concluded that a broader redesign would make > the test easier to maintain, extend, and adapt to future debugfs changes. > > As part of this redesign, I propose replacing the old subtests with a new, > clearer layout. Instead of the previous subtests: > xe-base — validate debugfs root directory and check the contents of the info file > xe-forcewake — check the forcewake node > the new subtests would be: > root-dir — validate the debugfs root directory > tile-dir — validate the debugfs directory for each tile > info-read — validate the contents of the info file > > The new subtests rely on a table-driven approach: all expected debugfs > nodes are defined in an array. This allows both conditional tests > (e.g., testing vram_mm only when VRAM is available) and dynamically > generated nodes (e.g., gt%u based on gt_mask, or tile%u based on > tile_mask). I think the redesign makes sense. Please let me know how can I help further. Peter ^ permalink raw reply [flat|nested] 15+ messages in thread
end of thread, other threads:[~2025-11-20 9:21 UTC | newest] Thread overview: 15+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-11-13 11:46 [PATCH v1 0/5] Redesign of the xe_debugfs test Piórkowski, Piotr 2025-11-13 11:46 ` [PATCH v1 1/5] lib/igt_dir: Allow scanning only the current directory Piórkowski, Piotr 2025-11-19 14:32 ` Bernatowicz, Marcin 2025-11-13 11:46 ` [PATCH v1 2/5] lib/debugfs: Add debugfs helpers to open tile directory Piórkowski, Piotr 2025-11-20 9:10 ` Bernatowicz, Marcin 2025-11-13 11:46 ` [PATCH v1 3/5] tests/intel/debugfs: Rewrite tests to use array-based required debugfs file lists Piórkowski, Piotr 2025-11-20 8:58 ` Bernatowicz, Marcin 2025-11-13 11:46 ` [PATCH v1 4/5] tests/intel/debugfs: Add tile-dir subtest for per-tile debugfs validation Piórkowski, Piotr 2025-11-20 9:21 ` Bernatowicz, Marcin 2025-11-13 11:46 ` [PATCH v1 5/5] tests/intel/debugfs: Move VRAM MM checks from root to tile-dir validation Piórkowski, Piotr 2025-11-13 21:14 ` ✗ Xe.CI.BAT: failure for Redesign of the xe_debugfs test Patchwork 2025-11-13 23:45 ` ✓ i915.CI.BAT: success " Patchwork 2025-11-14 4:46 ` ✗ Xe.CI.Full: failure " Patchwork 2025-11-14 17:59 ` ✗ i915.CI.Full: " Patchwork 2025-11-18 16:56 ` [PATCH v1 0/5] " Peter Senna Tschudin
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.