* [PATCH i-g-t] tests/xe_debugfs: Add debugfs entry read/write validation in root-dir
@ 2026-06-11 9:43 Sobin Thomas
2026-06-11 11:43 ` ✓ Xe.CI.BAT: success for tests/xe_debugfs: Add debugfs entry read/write validation in root-dir (rev2) Patchwork
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: Sobin Thomas @ 2026-06-11 9:43 UTC (permalink / raw)
To: igt-dev, piotr.piorkowski; +Cc: kamil.konieczny, nishit.sharma, Sobin Thomas
Extend the root-dir subtest to validate additional Xe debugfs entries:
- dgfx_pkg_residencies: Validate counter reads (optional, non-empty)
- dgfx_pcie_link_residencies: Validate PCIE LINK string content (optional)
- sriov_info: Validate entry is non-empty (optional)
- workarounds: Validate entry is non-empty (optional)
- atomic_svm_timeslice_ms: Validate integer read/write (optional)
- poor_man_system_atomic_support: Validate boolean read/write (optional)
- disable_late_binding: Validate boolean read/write (optional)
Signed-off-by: Sobin Thomas <sobin.thomas@intel.com>
---
tests/intel/xe_debugfs.c | 198 +++++++++++++++++++++++++++++++++++----
1 file changed, 180 insertions(+), 18 deletions(-)
diff --git a/tests/intel/xe_debugfs.c b/tests/intel/xe_debugfs.c
index 587e3e785..5e59424fe 100644
--- a/tests/intel/xe_debugfs.c
+++ b/tests/intel/xe_debugfs.c
@@ -39,11 +39,24 @@ IGT_TEST_DESCRIPTION("Validate Xe debugfs devnodes and their contents");
__m && ((__i) = __builtin_ctz(__m), 1); \
__m &= __m - 1)
+/* Validation types for debugfs read tests */
+enum debugfs_validate_type {
+ VALIDATE_NONE, /* Just check file exists */
+ VALIDATE_NON_EMPTY, /* Just check buffer is not empty */
+ VALIDATE_CONTAINS_STR, /* Check buffer contains expected string */
+ VALIDATE_INT_GE_ZERO, /* Parse as integer, verify >= 0 */
+ VALIDATE_BOOL, /* Check bool value (0 or 1) */
+};
+
struct check_entry {
const char *name_fmt;
int mode;
- bool (*condition)(struct xe_device *xe_dev);
+ bool optional;
+ bool (*condition)(struct xe_device *xe_dev, void *params);
+ void *cond_params;
unsigned int (*iter_mask)(struct xe_device *xe_dev);
+ enum debugfs_validate_type validate;
+ const char *expected_str;
};
static unsigned int gt_iter_mask(struct xe_device *xe_dev)
@@ -56,8 +69,13 @@ 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)
+static bool has_vram_region(struct xe_device *xe_dev, void *params)
{
+ uint8_t tile = (uint8_t)(uintptr_t)params;
+
+ if (!(xe_dev->tile_mask & (1u << tile)))
+ return false;
+
return xe_dev->has_vram;
}
@@ -131,16 +149,140 @@ static bool find_not_tested_files(int dir_fd, struct igt_list_head *hit_entries)
return found_not_tested;
}
-static bool file_in_dir_exists(int dirfd, const char *file_name, int mode)
+/* Validate that debugfs buffer is non-empty or contains expected string */
+static bool validate_string(int dirfd, const char *file_name, const char *expected_str)
+{
+ char buf[4096];
+ int ret = 0;
+
+ ret = igt_sysfs_read(dirfd, file_name, buf, sizeof(buf) - 1);
+ if (ret < 0)
+ return false;
+ buf[ret] = '\0';
+
+ /* Check for empty buffer */
+ if (strlen(buf) == 0) {
+ igt_warn("Empty output from %s\n", file_name);
+ return false;
+ }
+
+ /* If expecting specific string, verify it's present */
+ if (expected_str && !strstr(buf, expected_str)) {
+ igt_warn("Expected '%s' not found in %s\n", expected_str, file_name);
+ return false;
+ }
+
+ if (expected_str)
+ igt_debug("Successfully read %s: found '%s'\n", file_name, expected_str);
+ else
+ igt_debug("Successfully read %s: %zd bytes\n%s\n", file_name, strlen(buf), buf);
+
+ return true;
+}
+
+static const char *mode_to_str(int mode)
+{
+ switch (mode & O_ACCMODE) {
+ case O_RDONLY: return "RO";
+ case O_WRONLY: return "WO";
+ case O_RDWR: return "RW";
+ default: return "UNKNOWN";
+ }
+}
+
+static bool validate_bool_file(int dirfd, const char *file_name, int mode)
+{
+ int orig_val = 0, read_val = 0, test_val = 0;
+
+ if (igt_sysfs_scanf(dirfd, file_name, "%d", &orig_val) != 1 ||
+ (orig_val != 0 && orig_val != 1))
+ return false;
+
+ if (mode == O_RDWR) {
+ test_val = (orig_val == 0) ? 1 : 0;
+
+ if (igt_sysfs_printf(dirfd, file_name, "%d", test_val) < 0)
+ return false;
+
+ if (igt_sysfs_scanf(dirfd, file_name, "%d", &read_val) != 1 || read_val != test_val)
+ return false;
+
+ /* Restore original value */
+ if (igt_sysfs_printf(dirfd, file_name, "%d", orig_val) < 0) {
+ igt_warn("Failed to restore original value for %s\n", file_name);
+ return false;
+ }
+ }
+
+ igt_info("Successfully validated %s bool %s\n", mode_to_str(mode), file_name);
+ return true;
+}
+
+static bool validate_int_file(int dirfd, const char *file_name, int mode)
+{
+ long orig_val = 0, new_val = 0, read_val = 0;
+
+ if (igt_sysfs_scanf(dirfd, file_name, "%ld", &orig_val) != 1)
+ return false;
+
+ if (orig_val < 0)
+ return false;
+
+ if (mode == O_RDWR) {
+ new_val = orig_val + 1;
+ if (igt_sysfs_printf(dirfd, file_name, "%ld", new_val) < 0)
+ return false;
+ if (igt_sysfs_scanf(dirfd, file_name, "%ld", &read_val) != 1)
+ return false;
+ if (read_val != new_val)
+ return false;
+ /* Restore original value */
+ if (igt_sysfs_printf(dirfd, file_name, "%ld", orig_val) < 0) {
+ igt_warn("Failed to restore original value for %s\n", file_name);
+ return false;
+ }
+
+ igt_debug("Successfully validated %s int %s: %ld -> %ld -> %ld\n",
+ mode_to_str(mode), file_name, orig_val, new_val, orig_val);
+ } else {
+ igt_debug("Successfully validated %s int %s: %ld\n",
+ mode_to_str(mode), file_name, orig_val);
+ }
+ return true;
+}
+
+static bool validate_debugfs_file(int dirfd, const char *file_name, int mode,
+ enum debugfs_validate_type validate, const char *expected_str)
{
- int fd = openat(dirfd, file_name, mode);
+ bool result = true;
- if (fd >= 0) {
- close(fd);
+ if (faccessat(dirfd, file_name, F_OK, 0) < 0) {
+ igt_debug("%s does not exist\n", file_name);
+ return false;
+ }
+ if (validate == VALIDATE_NONE)
return true;
+
+ switch (validate) {
+ case VALIDATE_NON_EMPTY:
+ result = validate_string(dirfd, file_name, NULL);
+ break;
+ case VALIDATE_CONTAINS_STR:
+ result = validate_string(dirfd, file_name, expected_str);
+ break;
+ case VALIDATE_INT_GE_ZERO:
+ result = validate_int_file(dirfd, file_name, mode);
+ break;
+ case VALIDATE_BOOL:
+ result = validate_bool_file(dirfd, file_name, mode);
+ break;
+ default:
+ igt_warn("Unknown validate type %d for %s\n", validate, file_name);
+ result = false;
+ break;
}
- return false;
+ return result;
}
/*
@@ -160,7 +302,7 @@ static int debugfs_validate_entries(struct xe_device *xe_dev, int dir_fd,
unsigned int mask;
unsigned int j;
- if (check->condition && !check->condition(xe_dev))
+ if (check->condition && !check->condition(xe_dev, check->cond_params))
continue;
if (!check->iter_mask)
@@ -209,10 +351,18 @@ static int debugfs_validate_entries(struct xe_device *xe_dev, int dir_fd,
#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 (!validate_debugfs_file(dir_fd, entry->name, check->mode,
+ check->validate, check->expected_str)) {
+ if (check->optional) {
+ igt_info("Optional entry %s not found/invalid (skipped)\n",
+ entry->name);
+ } else {
+ igt_warn("Missing or invalid debugfs file: %s\n",
+ entry->name);
+ missing_count++;
+ }
}
+
}
}
@@ -239,14 +389,25 @@ out:
static void test_root_dir(struct xe_device *xe_dev)
{
const struct check_entry expected_files[] = {
- { "clients", O_RDONLY },
+ { "clients", O_RDONLY, .validate = VALIDATE_NON_EMPTY },
+ { "disable_late_binding", O_RDWR, .optional = true, .validate = VALIDATE_BOOL },
{ "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, ... */
+ { "gt%u", O_RDONLY, .iter_mask = gt_iter_mask },
+ { "gtt_mm", O_RDONLY, },
+ { "info", O_RDONLY, .validate = VALIDATE_NON_EMPTY },
+ { "name", O_RDONLY, .validate = VALIDATE_NON_EMPTY },
+ { "poor_man_system_atomic_support", O_RDWR, .optional = true,
+ .validate = VALIDATE_BOOL },
+ { "dgfx_pkg_residencies", O_RDONLY, .optional = true,
+ .validate = VALIDATE_NON_EMPTY },
+ { "dgfx_pcie_link_residencies", O_RDONLY, .optional = true,
+ .validate = VALIDATE_CONTAINS_STR, .expected_str = "PCIE LINK" },
+ { "sriov_info", O_RDONLY, .optional = true, .validate = VALIDATE_NON_EMPTY },
+ { "workarounds", O_RDONLY, .optional = true, .validate = VALIDATE_NON_EMPTY },
+ { "atomic_svm_timeslice_ms", O_RDWR, .optional = true,
+ .validate = VALIDATE_INT_GE_ZERO },
+ { "tile%u", O_RDONLY, .iter_mask = tile_iter_mask },
};
int debugfs_fd = igt_debugfs_dir(xe_dev->fd);
int missing_count;
@@ -276,7 +437,8 @@ 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 },
+ { "vram_mm", O_RDONLY, .condition = has_vram_region,
+ .cond_params = (void *)(uintptr_t)tile },
};
int debugfs_fd = igt_debugfs_tile_dir(xe_dev->fd, tile);
int missing_count;
--
2.43.0
^ permalink raw reply related [flat|nested] 8+ messages in thread* ✓ Xe.CI.BAT: success for tests/xe_debugfs: Add debugfs entry read/write validation in root-dir (rev2) 2026-06-11 9:43 [PATCH i-g-t] tests/xe_debugfs: Add debugfs entry read/write validation in root-dir Sobin Thomas @ 2026-06-11 11:43 ` Patchwork 2026-06-11 11:51 ` ✓ i915.CI.BAT: " Patchwork ` (3 subsequent siblings) 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2026-06-11 11:43 UTC (permalink / raw) To: Sobin Thomas; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5012 bytes --] == Series Details == Series: tests/xe_debugfs: Add debugfs entry read/write validation in root-dir (rev2) URL : https://patchwork.freedesktop.org/series/167863/ State : success == Summary == CI Bug Log - changes from XEIGT_8958_BAT -> XEIGTPW_15347_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (11 -> 12) ------------------------------ Additional (1): bat-adlp-7 Known issues ------------ Here are the changes found in XEIGTPW_15347_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_dsc@dsc-basic: - bat-adlp-7: NOTRUN -> [SKIP][1] ([Intel XE#8265]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/bat-adlp-7/igt@kms_dsc@dsc-basic.html * igt@xe_evict@evict-beng-small: - bat-adlp-7: NOTRUN -> [SKIP][2] ([Intel XE#261] / [Intel XE#5564] / [Intel XE#688]) +9 other tests skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/bat-adlp-7/igt@xe_evict@evict-beng-small.html * igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd: - bat-adlp-7: NOTRUN -> [SKIP][3] ([Intel XE#5563] / [Intel XE#688]) +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/bat-adlp-7/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html * igt@xe_exec_balancer@twice-virtual-userptr-invalidate: - bat-adlp-7: NOTRUN -> [SKIP][4] ([Intel XE#7482]) +17 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/bat-adlp-7/igt@xe_exec_balancer@twice-virtual-userptr-invalidate.html * igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch: - bat-adlp-7: NOTRUN -> [SKIP][5] ([Intel XE#288] / [Intel XE#5561]) +32 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/bat-adlp-7/igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch.html * igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit: - bat-adlp-7: NOTRUN -> [SKIP][6] ([Intel XE#2229] / [Intel XE#455]) +2 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - bat-adlp-7: NOTRUN -> [SKIP][7] ([Intel XE#2229] / [Intel XE#5488]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/bat-adlp-7/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html * igt@xe_mmap@vram: - bat-adlp-7: NOTRUN -> [SKIP][8] ([Intel XE#1008] / [Intel XE#5591]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/bat-adlp-7/igt@xe_mmap@vram.html * igt@xe_pat@pat-index-xe2: - bat-adlp-7: NOTRUN -> [SKIP][9] ([Intel XE#977]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/bat-adlp-7/igt@xe_pat@pat-index-xe2.html * igt@xe_pat@pat-index-xehpc: - bat-adlp-7: NOTRUN -> [SKIP][10] ([Intel XE#2838] / [Intel XE#979]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/bat-adlp-7/igt@xe_pat@pat-index-xehpc.html * igt@xe_pat@pat-index-xelpg: - bat-adlp-7: NOTRUN -> [SKIP][11] ([Intel XE#979]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/bat-adlp-7/igt@xe_pat@pat-index-xelpg.html [Intel XE#1008]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1008 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261 [Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#5488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5488 [Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561 [Intel XE#5563]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5563 [Intel XE#5564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5564 [Intel XE#5591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5591 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482 [Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 Build changes ------------- * IGT: IGT_8958 -> IGTPW_15347 * Linux: xe-5233-2bfaac2290b880c462bf89fae4fdb1559567af92 -> xe-5239-4fdfaadba04dc0f2f2490dbc91922caa290463a5 IGTPW_15347: 15347 IGT_8958: 8958 xe-5233-2bfaac2290b880c462bf89fae4fdb1559567af92: 2bfaac2290b880c462bf89fae4fdb1559567af92 xe-5239-4fdfaadba04dc0f2f2490dbc91922caa290463a5: 4fdfaadba04dc0f2f2490dbc91922caa290463a5 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/index.html [-- Attachment #2: Type: text/html, Size: 6008 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ i915.CI.BAT: success for tests/xe_debugfs: Add debugfs entry read/write validation in root-dir (rev2) 2026-06-11 9:43 [PATCH i-g-t] tests/xe_debugfs: Add debugfs entry read/write validation in root-dir Sobin Thomas 2026-06-11 11:43 ` ✓ Xe.CI.BAT: success for tests/xe_debugfs: Add debugfs entry read/write validation in root-dir (rev2) Patchwork @ 2026-06-11 11:51 ` Patchwork 2026-06-11 13:14 ` [PATCH i-g-t] tests/xe_debugfs: Add debugfs entry read/write validation in root-dir Kamil Konieczny ` (2 subsequent siblings) 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2026-06-11 11:51 UTC (permalink / raw) To: Sobin Thomas; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2086 bytes --] == Series Details == Series: tests/xe_debugfs: Add debugfs entry read/write validation in root-dir (rev2) URL : https://patchwork.freedesktop.org/series/167863/ State : success == Summary == CI Bug Log - changes from IGT_8958 -> IGTPW_15347 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/index.html Participating hosts (42 -> 39) ------------------------------ Missing (3): bat-dg2-13 fi-snb-2520m bat-adls-6 Known issues ------------ Here are the changes found in IGTPW_15347 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@late_gt_pm: - fi-cfl-8109u: [PASS][1] -> [DMESG-WARN][2] ([i915#13735]) +80 other tests dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8958/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html * igt@kms_pipe_crc_basic@read-crc: - fi-cfl-8109u: [PASS][3] -> [DMESG-WARN][4] ([i915#13735] / [i915#15673]) +49 other tests dmesg-warn [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8958/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc.html [i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735 [i915#15673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15673 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8958 -> IGTPW_15347 * Linux: CI_DRM_18657 -> CI_DRM_18661 CI-20190529: 20190529 CI_DRM_18657: 10db0c83b0ccc3211990b54235475abb9d383851 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_18661: 4fdfaadba04dc0f2f2490dbc91922caa290463a5 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15347: 15347 IGT_8958: 8958 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/index.html [-- Attachment #2: Type: text/html, Size: 2797 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t] tests/xe_debugfs: Add debugfs entry read/write validation in root-dir 2026-06-11 9:43 [PATCH i-g-t] tests/xe_debugfs: Add debugfs entry read/write validation in root-dir Sobin Thomas 2026-06-11 11:43 ` ✓ Xe.CI.BAT: success for tests/xe_debugfs: Add debugfs entry read/write validation in root-dir (rev2) Patchwork 2026-06-11 11:51 ` ✓ i915.CI.BAT: " Patchwork @ 2026-06-11 13:14 ` Kamil Konieczny 2026-06-15 4:17 ` Thomas, Sobin 2026-06-11 22:43 ` ✓ Xe.CI.FULL: success for tests/xe_debugfs: Add debugfs entry read/write validation in root-dir (rev2) Patchwork 2026-06-12 9:16 ` ✗ i915.CI.Full: failure " Patchwork 4 siblings, 1 reply; 8+ messages in thread From: Kamil Konieczny @ 2026-06-11 13:14 UTC (permalink / raw) To: Sobin Thomas; +Cc: igt-dev, piotr.piorkowski, kamil.konieczny, nishit.sharma Hi Sobin, On 2026-06-11 at 09:43:21 +0000, Sobin Thomas wrote: > Extend the root-dir subtest to validate additional Xe debugfs entries: > All of below are optional, so imho write it before and do not repeat it at every line. Something like: Extend the root-dir subtest to validate additional optional Xe debugfs entries: - dgfx_pkg_residencies: Validate counter reads (non-empty) ... rest follows ... Please also write down what you mean by optional. > - dgfx_pkg_residencies: Validate counter reads (optional, non-empty) > - dgfx_pcie_link_residencies: Validate PCIE LINK string content (optional) > - sriov_info: Validate entry is non-empty (optional) > - workarounds: Validate entry is non-empty (optional) > - atomic_svm_timeslice_ms: Validate integer read/write (optional) > - poor_man_system_atomic_support: Validate boolean read/write (optional) > - disable_late_binding: Validate boolean read/write (optional) > > Signed-off-by: Sobin Thomas <sobin.thomas@intel.com> > --- > tests/intel/xe_debugfs.c | 198 +++++++++++++++++++++++++++++++++++---- > 1 file changed, 180 insertions(+), 18 deletions(-) > > diff --git a/tests/intel/xe_debugfs.c b/tests/intel/xe_debugfs.c > index 587e3e785..5e59424fe 100644 > --- a/tests/intel/xe_debugfs.c > +++ b/tests/intel/xe_debugfs.c > @@ -39,11 +39,24 @@ IGT_TEST_DESCRIPTION("Validate Xe debugfs devnodes and their contents"); > __m && ((__i) = __builtin_ctz(__m), 1); \ > __m &= __m - 1) > > +/* Validation types for debugfs read tests */ > +enum debugfs_validate_type { > + VALIDATE_NONE, /* Just check file exists */ Better name _EXIST but it could stay as is. > + VALIDATE_NON_EMPTY, /* Just check buffer is not empty */ > + VALIDATE_CONTAINS_STR, /* Check buffer contains expected string */ > + VALIDATE_INT_GE_ZERO, /* Parse as integer, verify >= 0 */ > + VALIDATE_BOOL, /* Check bool value (0 or 1) */ > +}; > + > struct check_entry { > const char *name_fmt; > int mode; > - bool (*condition)(struct xe_device *xe_dev); > + bool optional; > + bool (*condition)(struct xe_device *xe_dev, void *params); > + void *cond_params; > unsigned int (*iter_mask)(struct xe_device *xe_dev); > + enum debugfs_validate_type validate; > + const char *expected_str; > }; > > static unsigned int gt_iter_mask(struct xe_device *xe_dev) > @@ -56,8 +69,13 @@ 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) > +static bool has_vram_region(struct xe_device *xe_dev, void *params) > { > + uint8_t tile = (uint8_t)(uintptr_t)params; > + > + if (!(xe_dev->tile_mask & (1u << tile))) > + return false; > + > return xe_dev->has_vram; > } > > @@ -131,16 +149,140 @@ static bool find_not_tested_files(int dir_fd, struct igt_list_head *hit_entries) > return found_not_tested; > } > > -static bool file_in_dir_exists(int dirfd, const char *file_name, int mode) > +/* Validate that debugfs buffer is non-empty or contains expected string */ > +static bool validate_string(int dirfd, const char *file_name, const char *expected_str) > +{ > + char buf[4096]; > + int ret = 0; > + > + ret = igt_sysfs_read(dirfd, file_name, buf, sizeof(buf) - 1); > + if (ret < 0) > + return false; > + buf[ret] = '\0'; > + > + /* Check for empty buffer */ > + if (strlen(buf) == 0) { > + igt_warn("Empty output from %s\n", file_name); > + return false; > + } > + > + /* If expecting specific string, verify it's present */ > + if (expected_str && !strstr(buf, expected_str)) { > + igt_warn("Expected '%s' not found in %s\n", expected_str, file_name); > + return false; > + } > + > + if (expected_str) > + igt_debug("Successfully read %s: found '%s'\n", file_name, expected_str); > + else > + igt_debug("Successfully read %s: %zd bytes\n%s\n", file_name, strlen(buf), buf); > + > + return true; > +} > + > +static const char *mode_to_str(int mode) > +{ > + switch (mode & O_ACCMODE) { > + case O_RDONLY: return "RO"; > + case O_WRONLY: return "WO"; > + case O_RDWR: return "RW"; > + default: return "UNKNOWN"; > + } > +} > + > +static bool validate_bool_file(int dirfd, const char *file_name, int mode) > +{ > + int orig_val = 0, read_val = 0, test_val = 0; > + > + if (igt_sysfs_scanf(dirfd, file_name, "%d", &orig_val) != 1 || > + (orig_val != 0 && orig_val != 1)) > + return false; > + > + if (mode == O_RDWR) { > + test_val = (orig_val == 0) ? 1 : 0; > + > + if (igt_sysfs_printf(dirfd, file_name, "%d", test_val) < 0) > + return false; > + > + if (igt_sysfs_scanf(dirfd, file_name, "%d", &read_val) != 1 || read_val != test_val) > + return false; > + > + /* Restore original value */ > + if (igt_sysfs_printf(dirfd, file_name, "%d", orig_val) < 0) { > + igt_warn("Failed to restore original value for %s\n", file_name); > + return false; > + } > + } > + > + igt_info("Successfully validated %s bool %s\n", mode_to_str(mode), file_name); Note igt_info() here, see below. > + return true; > +} > + > +static bool validate_int_file(int dirfd, const char *file_name, int mode) > +{ > + long orig_val = 0, new_val = 0, read_val = 0; > + > + if (igt_sysfs_scanf(dirfd, file_name, "%ld", &orig_val) != 1) > + return false; > + > + if (orig_val < 0) > + return false; > + > + if (mode == O_RDWR) { > + new_val = orig_val + 1; > + if (igt_sysfs_printf(dirfd, file_name, "%ld", new_val) < 0) > + return false; > + if (igt_sysfs_scanf(dirfd, file_name, "%ld", &read_val) != 1) > + return false; > + if (read_val != new_val) > + return false; > + /* Restore original value */ > + if (igt_sysfs_printf(dirfd, file_name, "%ld", orig_val) < 0) { > + igt_warn("Failed to restore original value for %s\n", file_name); > + return false; > + } > + > + igt_debug("Successfully validated %s int %s: %ld -> %ld -> %ld\n", > + mode_to_str(mode), file_name, orig_val, new_val, orig_val); You have igt_info() above in bool check, why debug here? Please be consistent, use one. > + } else { > + igt_debug("Successfully validated %s int %s: %ld\n", > + mode_to_str(mode), file_name, orig_val); Same here. Btw why not using igt_info() in all places exept one warn at main function? > + } > + return true; > +} > + > +static bool validate_debugfs_file(int dirfd, const char *file_name, int mode, > + enum debugfs_validate_type validate, const char *expected_str) > { > - int fd = openat(dirfd, file_name, mode); Keep this line. > + bool result = true; > > - if (fd >= 0) { > - close(fd); > + if (faccessat(dirfd, file_name, F_OK, 0) < 0) { > + igt_debug("%s does not exist\n", file_name); > + return false; > + } Remove this check here. > + if (validate == VALIDATE_NONE) > return true; > + > + switch (validate) { > + case VALIDATE_NON_EMPTY: > + result = validate_string(dirfd, file_name, NULL); > + break; > + case VALIDATE_CONTAINS_STR: > + result = validate_string(dirfd, file_name, expected_str); > + break; > + case VALIDATE_INT_GE_ZERO: > + result = validate_int_file(dirfd, file_name, mode); > + break; > + case VALIDATE_BOOL: > + result = validate_bool_file(dirfd, file_name, mode); > + break; > + default: > + igt_warn("Unknown validate type %d for %s\n", validate, file_name); > + result = false; > + break; > } > > - return false; > + return result; > } > > /* > @@ -160,7 +302,7 @@ static int debugfs_validate_entries(struct xe_device *xe_dev, int dir_fd, > unsigned int mask; > unsigned int j; > > - if (check->condition && !check->condition(xe_dev)) > + if (check->condition && !check->condition(xe_dev, check->cond_params)) > continue; > > if (!check->iter_mask) > @@ -209,10 +351,18 @@ static int debugfs_validate_entries(struct xe_device *xe_dev, int dir_fd, > #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 (!validate_debugfs_file(dir_fd, entry->name, check->mode, > + check->validate, check->expected_str)) { > + if (check->optional) { > + igt_info("Optional entry %s not found/invalid (skipped)\n", > + entry->name); > + } else { > + igt_warn("Missing or invalid debugfs file: %s\n", > + entry->name); > + missing_count++; > + } This seems wrong, it looks that if you have optional debugfs file you will ignore error here. Imho you should keep original if(): if (!file_in_dir_exists(dir_fd, entry->name, check->mode)) { if (check->optional) { igt_info("Optional entry %s not found (skipped)\n", entry->name); } else { igt_info("Missing debugfs file: %s\n", entry->name); missing_count++; } } else { if (!validate_debugfs_file(dir_fd, entry->name, check->mode, check->validate, check->expected_str)) fail_count++; } } Then at the end warn about any error: if (fail_count || missing_count) { igt_warn("Fails: %d missing debugfs file(s): %d\n", fail_count, missing_count); > > @@ -239,14 +389,25 @@ out: > static void test_root_dir(struct xe_device *xe_dev) > { > const struct check_entry expected_files[] = { > - { "clients", O_RDONLY }, > + { "clients", O_RDONLY, .validate = VALIDATE_NON_EMPTY }, > + { "disable_late_binding", O_RDWR, .optional = true, .validate = VALIDATE_BOOL }, > { "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, ... */ > + { "gt%u", O_RDONLY, .iter_mask = gt_iter_mask }, > + { "gtt_mm", O_RDONLY, }, > + { "info", O_RDONLY, .validate = VALIDATE_NON_EMPTY }, > + { "name", O_RDONLY, .validate = VALIDATE_NON_EMPTY }, > + { "poor_man_system_atomic_support", O_RDWR, .optional = true, > + .validate = VALIDATE_BOOL }, Keep it on one line. > + { "dgfx_pkg_residencies", O_RDONLY, .optional = true, > + .validate = VALIDATE_NON_EMPTY }, Same here. > + { "dgfx_pcie_link_residencies", O_RDONLY, .optional = true, > + .validate = VALIDATE_CONTAINS_STR, .expected_str = "PCIE LINK" }, Same here. > + { "sriov_info", O_RDONLY, .optional = true, .validate = VALIDATE_NON_EMPTY }, > + { "workarounds", O_RDONLY, .optional = true, .validate = VALIDATE_NON_EMPTY }, > + { "atomic_svm_timeslice_ms", O_RDWR, .optional = true, > + .validate = VALIDATE_INT_GE_ZERO }, Same here. > + { "tile%u", O_RDONLY, .iter_mask = tile_iter_mask }, > }; > int debugfs_fd = igt_debugfs_dir(xe_dev->fd); > int missing_count; > @@ -276,7 +437,8 @@ 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 }, > + { "vram_mm", O_RDONLY, .condition = has_vram_region, Same here. Regards, Kamil > + .cond_params = (void *)(uintptr_t)tile }, > }; > int debugfs_fd = igt_debugfs_tile_dir(xe_dev->fd, tile); > int missing_count; > -- > 2.43.0 > ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t] tests/xe_debugfs: Add debugfs entry read/write validation in root-dir 2026-06-11 13:14 ` [PATCH i-g-t] tests/xe_debugfs: Add debugfs entry read/write validation in root-dir Kamil Konieczny @ 2026-06-15 4:17 ` Thomas, Sobin 2026-06-15 9:20 ` Kamil Konieczny 0 siblings, 1 reply; 8+ messages in thread From: Thomas, Sobin @ 2026-06-15 4:17 UTC (permalink / raw) To: Kamil Konieczny, igt-dev, piotr.piorkowski, kamil.konieczny, nishit.sharma On 6/11/2026 6:44 PM, Kamil Konieczny wrote: > Hi Sobin, > On 2026-06-11 at 09:43:21 +0000, Sobin Thomas wrote: >> Extend the root-dir subtest to validate additional Xe debugfs entries: >> > All of below are optional, so imho write it before and do not > repeat it at every line. Something like: > > Extend the root-dir subtest to validate additional optional Xe > debugfs entries: > > - dgfx_pkg_residencies: Validate counter reads (non-empty) > ... rest follows ... > > Please also write down what you mean by optional. > >> - dgfx_pkg_residencies: Validate counter reads (optional, non-empty) >> - dgfx_pcie_link_residencies: Validate PCIE LINK string content (optional) >> - sriov_info: Validate entry is non-empty (optional) >> - workarounds: Validate entry is non-empty (optional) >> - atomic_svm_timeslice_ms: Validate integer read/write (optional) >> - poor_man_system_atomic_support: Validate boolean read/write (optional) >> - disable_late_binding: Validate boolean read/write (optional) >> >> Signed-off-by: Sobin Thomas <sobin.thomas@intel.com> >> --- >> tests/intel/xe_debugfs.c | 198 +++++++++++++++++++++++++++++++++++---- >> 1 file changed, 180 insertions(+), 18 deletions(-) >> >> diff --git a/tests/intel/xe_debugfs.c b/tests/intel/xe_debugfs.c >> index 587e3e785..5e59424fe 100644 >> --- a/tests/intel/xe_debugfs.c >> +++ b/tests/intel/xe_debugfs.c >> @@ -39,11 +39,24 @@ IGT_TEST_DESCRIPTION("Validate Xe debugfs devnodes and their contents"); >> __m && ((__i) = __builtin_ctz(__m), 1); \ >> __m &= __m - 1) >> >> +/* Validation types for debugfs read tests */ >> +enum debugfs_validate_type { >> + VALIDATE_NONE, /* Just check file exists */ > Better name _EXIST but it could stay as is. > >> + VALIDATE_NON_EMPTY, /* Just check buffer is not empty */ >> + VALIDATE_CONTAINS_STR, /* Check buffer contains expected string */ >> + VALIDATE_INT_GE_ZERO, /* Parse as integer, verify >= 0 */ >> + VALIDATE_BOOL, /* Check bool value (0 or 1) */ >> +}; >> + >> struct check_entry { >> const char *name_fmt; >> int mode; >> - bool (*condition)(struct xe_device *xe_dev); >> + bool optional; >> + bool (*condition)(struct xe_device *xe_dev, void *params); >> + void *cond_params; >> unsigned int (*iter_mask)(struct xe_device *xe_dev); >> + enum debugfs_validate_type validate; >> + const char *expected_str; >> }; >> >> static unsigned int gt_iter_mask(struct xe_device *xe_dev) >> @@ -56,8 +69,13 @@ 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) >> +static bool has_vram_region(struct xe_device *xe_dev, void *params) >> { >> + uint8_t tile = (uint8_t)(uintptr_t)params; >> + >> + if (!(xe_dev->tile_mask & (1u << tile))) >> + return false; >> + >> return xe_dev->has_vram; >> } >> >> @@ -131,16 +149,140 @@ static bool find_not_tested_files(int dir_fd, struct igt_list_head *hit_entries) >> return found_not_tested; >> } >> >> -static bool file_in_dir_exists(int dirfd, const char *file_name, int mode) >> +/* Validate that debugfs buffer is non-empty or contains expected string */ >> +static bool validate_string(int dirfd, const char *file_name, const char *expected_str) >> +{ >> + char buf[4096]; >> + int ret = 0; >> + >> + ret = igt_sysfs_read(dirfd, file_name, buf, sizeof(buf) - 1); >> + if (ret < 0) >> + return false; >> + buf[ret] = '\0'; >> + >> + /* Check for empty buffer */ >> + if (strlen(buf) == 0) { >> + igt_warn("Empty output from %s\n", file_name); >> + return false; >> + } >> + >> + /* If expecting specific string, verify it's present */ >> + if (expected_str && !strstr(buf, expected_str)) { >> + igt_warn("Expected '%s' not found in %s\n", expected_str, file_name); >> + return false; >> + } >> + >> + if (expected_str) >> + igt_debug("Successfully read %s: found '%s'\n", file_name, expected_str); >> + else >> + igt_debug("Successfully read %s: %zd bytes\n%s\n", file_name, strlen(buf), buf); >> + >> + return true; >> +} >> + >> +static const char *mode_to_str(int mode) >> +{ >> + switch (mode & O_ACCMODE) { >> + case O_RDONLY: return "RO"; >> + case O_WRONLY: return "WO"; >> + case O_RDWR: return "RW"; >> + default: return "UNKNOWN"; >> + } >> +} >> + >> +static bool validate_bool_file(int dirfd, const char *file_name, int mode) >> +{ >> + int orig_val = 0, read_val = 0, test_val = 0; >> + >> + if (igt_sysfs_scanf(dirfd, file_name, "%d", &orig_val) != 1 || >> + (orig_val != 0 && orig_val != 1)) >> + return false; >> + >> + if (mode == O_RDWR) { >> + test_val = (orig_val == 0) ? 1 : 0; >> + >> + if (igt_sysfs_printf(dirfd, file_name, "%d", test_val) < 0) >> + return false; >> + >> + if (igt_sysfs_scanf(dirfd, file_name, "%d", &read_val) != 1 || read_val != test_val) >> + return false; >> + >> + /* Restore original value */ >> + if (igt_sysfs_printf(dirfd, file_name, "%d", orig_val) < 0) { >> + igt_warn("Failed to restore original value for %s\n", file_name); >> + return false; >> + } >> + } >> + >> + igt_info("Successfully validated %s bool %s\n", mode_to_str(mode), file_name); > Note igt_info() here, see below. > -> Agreed >> + return true; >> +} >> + >> +static bool validate_int_file(int dirfd, const char *file_name, int mode) >> +{ >> + long orig_val = 0, new_val = 0, read_val = 0; >> + >> + if (igt_sysfs_scanf(dirfd, file_name, "%ld", &orig_val) != 1) >> + return false; >> + >> + if (orig_val < 0) >> + return false; >> + >> + if (mode == O_RDWR) { >> + new_val = orig_val + 1; >> + if (igt_sysfs_printf(dirfd, file_name, "%ld", new_val) < 0) >> + return false; >> + if (igt_sysfs_scanf(dirfd, file_name, "%ld", &read_val) != 1) >> + return false; >> + if (read_val != new_val) >> + return false; >> + /* Restore original value */ >> + if (igt_sysfs_printf(dirfd, file_name, "%ld", orig_val) < 0) { >> + igt_warn("Failed to restore original value for %s\n", file_name); >> + return false; >> + } >> + >> + igt_debug("Successfully validated %s int %s: %ld -> %ld -> %ld\n", >> + mode_to_str(mode), file_name, orig_val, new_val, orig_val); > You have igt_info() above in bool check, why debug here? > Please be consistent, use one. > => Done >> + } else { >> + igt_debug("Successfully validated %s int %s: %ld\n", >> + mode_to_str(mode), file_name, orig_val); > Same here. Btw why not using igt_info() in all places exept one > warn at main function? > >> + } >> + return true; >> +} >> + >> +static bool validate_debugfs_file(int dirfd, const char *file_name, int mode, >> + enum debugfs_validate_type validate, const char *expected_str) >> { >> - int fd = openat(dirfd, file_name, mode); > Keep this line. > >> + bool result = true; >> >> - if (fd >= 0) { >> - close(fd); >> + if (faccessat(dirfd, file_name, F_OK, 0) < 0) { >> + igt_debug("%s does not exist\n", file_name); >> + return false; >> + } > Remove this check here. > >> + if (validate == VALIDATE_NONE) >> return true; >> + >> + switch (validate) { >> + case VALIDATE_NON_EMPTY: >> + result = validate_string(dirfd, file_name, NULL); >> + break; >> + case VALIDATE_CONTAINS_STR: >> + result = validate_string(dirfd, file_name, expected_str); >> + break; >> + case VALIDATE_INT_GE_ZERO: >> + result = validate_int_file(dirfd, file_name, mode); >> + break; >> + case VALIDATE_BOOL: >> + result = validate_bool_file(dirfd, file_name, mode); >> + break; >> + default: >> + igt_warn("Unknown validate type %d for %s\n", validate, file_name); >> + result = false; >> + break; >> } >> >> - return false; >> + return result; >> } >> >> /* >> @@ -160,7 +302,7 @@ static int debugfs_validate_entries(struct xe_device *xe_dev, int dir_fd, >> unsigned int mask; >> unsigned int j; >> >> - if (check->condition && !check->condition(xe_dev)) >> + if (check->condition && !check->condition(xe_dev, check->cond_params)) >> continue; >> >> if (!check->iter_mask) >> @@ -209,10 +351,18 @@ static int debugfs_validate_entries(struct xe_device *xe_dev, int dir_fd, >> #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 (!validate_debugfs_file(dir_fd, entry->name, check->mode, >> + check->validate, check->expected_str)) { >> + if (check->optional) { >> + igt_info("Optional entry %s not found/invalid (skipped)\n", >> + entry->name); >> + } else { >> + igt_warn("Missing or invalid debugfs file: %s\n", >> + entry->name); >> + missing_count++; >> + } > => Main intention was to check only if the file is accessible I will take care in next series for the fail count > This seems wrong, it looks that if you have optional debugfs file > you will ignore error here. Imho you should keep original if(): > > if (!file_in_dir_exists(dir_fd, entry->name, check->mode)) { > if (check->optional) { > igt_info("Optional entry %s not found (skipped)\n", > entry->name); > } else { > igt_info("Missing debugfs file: %s\n", entry->name); > missing_count++; > } > } else { > if (!validate_debugfs_file(dir_fd, entry->name, check->mode, > check->validate, check->expected_str)) > fail_count++; > } > > } > > Then at the end warn about any error: > > if (fail_count || missing_count) { > igt_warn("Fails: %d missing debugfs file(s): %d\n", fail_count, missing_count); > >> >> @@ -239,14 +389,25 @@ out: >> static void test_root_dir(struct xe_device *xe_dev) >> { >> const struct check_entry expected_files[] = { >> - { "clients", O_RDONLY }, >> + { "clients", O_RDONLY, .validate = VALIDATE_NON_EMPTY }, >> + { "disable_late_binding", O_RDWR, .optional = true, .validate = VALIDATE_BOOL }, >> { "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, ... */ >> + { "gt%u", O_RDONLY, .iter_mask = gt_iter_mask }, >> + { "gtt_mm", O_RDONLY, }, >> + { "info", O_RDONLY, .validate = VALIDATE_NON_EMPTY }, >> + { "name", O_RDONLY, .validate = VALIDATE_NON_EMPTY }, >> + { "poor_man_system_atomic_support", O_RDWR, .optional = true, >> + .validate = VALIDATE_BOOL }, > Keep it on one line. This was done to fix the check patch error. >> + { "dgfx_pkg_residencies", O_RDONLY, .optional = true, >> + .validate = VALIDATE_NON_EMPTY }, > Same here. This was done to fix the check patch error. >> + { "dgfx_pcie_link_residencies", O_RDONLY, .optional = true, >> + .validate = VALIDATE_CONTAINS_STR, .expected_str = "PCIE LINK" }, > Same here. > >> + { "sriov_info", O_RDONLY, .optional = true, .validate = VALIDATE_NON_EMPTY }, >> + { "workarounds", O_RDONLY, .optional = true, .validate = VALIDATE_NON_EMPTY }, >> + { "atomic_svm_timeslice_ms", O_RDWR, .optional = true, >> + .validate = VALIDATE_INT_GE_ZERO }, > Same here. This was done to fix the check patch error. if we keep it in same line it will cause the line > 100 warning. So kept it in seperate lines. >> + { "tile%u", O_RDONLY, .iter_mask = tile_iter_mask }, >> }; >> int debugfs_fd = igt_debugfs_dir(xe_dev->fd); >> int missing_count; >> @@ -276,7 +437,8 @@ 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 }, >> + { "vram_mm", O_RDONLY, .condition = has_vram_region, > > Same here. > > Regards, > Kamil > >> + .cond_params = (void *)(uintptr_t)tile }, >> }; >> int debugfs_fd = igt_debugfs_tile_dir(xe_dev->fd, tile); >> int missing_count; >> -- >> 2.43.0 >> ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t] tests/xe_debugfs: Add debugfs entry read/write validation in root-dir 2026-06-15 4:17 ` Thomas, Sobin @ 2026-06-15 9:20 ` Kamil Konieczny 0 siblings, 0 replies; 8+ messages in thread From: Kamil Konieczny @ 2026-06-15 9:20 UTC (permalink / raw) To: Thomas, Sobin; +Cc: igt-dev, piotr.piorkowski, kamil.konieczny, nishit.sharma Hi Thomas,, On 2026-06-15 at 09:47:39 +0530, Thomas, Sobin wrote: > > On 6/11/2026 6:44 PM, Kamil Konieczny wrote: > > Hi Sobin, > > On 2026-06-11 at 09:43:21 +0000, Sobin Thomas wrote: > > > Extend the root-dir subtest to validate additional Xe debugfs entries: > > > > > All of below are optional, so imho write it before and do not > > repeat it at every line. Something like: > > > > Extend the root-dir subtest to validate additional optional Xe > > debugfs entries: > > > > - dgfx_pkg_residencies: Validate counter reads (non-empty) > > ... rest follows ... > > > > Please also write down what you mean by optional. > > > > > - dgfx_pkg_residencies: Validate counter reads (optional, non-empty) > > > - dgfx_pcie_link_residencies: Validate PCIE LINK string content (optional) > > > - sriov_info: Validate entry is non-empty (optional) > > > - workarounds: Validate entry is non-empty (optional) > > > - atomic_svm_timeslice_ms: Validate integer read/write (optional) > > > - poor_man_system_atomic_support: Validate boolean read/write (optional) > > > - disable_late_binding: Validate boolean read/write (optional) > > > > > > Signed-off-by: Sobin Thomas <sobin.thomas@intel.com> > > > --- > > > tests/intel/xe_debugfs.c | 198 +++++++++++++++++++++++++++++++++++---- > > > 1 file changed, 180 insertions(+), 18 deletions(-) > > > > > > diff --git a/tests/intel/xe_debugfs.c b/tests/intel/xe_debugfs.c > > > index 587e3e785..5e59424fe 100644 > > > --- a/tests/intel/xe_debugfs.c > > > +++ b/tests/intel/xe_debugfs.c > > > @@ -39,11 +39,24 @@ IGT_TEST_DESCRIPTION("Validate Xe debugfs devnodes and their contents"); > > > __m && ((__i) = __builtin_ctz(__m), 1); \ > > > __m &= __m - 1) > > > +/* Validation types for debugfs read tests */ > > > +enum debugfs_validate_type { > > > + VALIDATE_NONE, /* Just check file exists */ > > Better name _EXIST but it could stay as is. > > > > > + VALIDATE_NON_EMPTY, /* Just check buffer is not empty */ > > > + VALIDATE_CONTAINS_STR, /* Check buffer contains expected string */ > > > + VALIDATE_INT_GE_ZERO, /* Parse as integer, verify >= 0 */ > > > + VALIDATE_BOOL, /* Check bool value (0 or 1) */ > > > +}; > > > + > > > struct check_entry { > > > const char *name_fmt; > > > int mode; > > > - bool (*condition)(struct xe_device *xe_dev); > > > + bool optional; > > > + bool (*condition)(struct xe_device *xe_dev, void *params); > > > + void *cond_params; > > > unsigned int (*iter_mask)(struct xe_device *xe_dev); > > > + enum debugfs_validate_type validate; > > > + const char *expected_str; > > > }; > > > static unsigned int gt_iter_mask(struct xe_device *xe_dev) > > > @@ -56,8 +69,13 @@ 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) > > > +static bool has_vram_region(struct xe_device *xe_dev, void *params) > > > { > > > + uint8_t tile = (uint8_t)(uintptr_t)params; > > > + > > > + if (!(xe_dev->tile_mask & (1u << tile))) > > > + return false; > > > + > > > return xe_dev->has_vram; > > > } > > > @@ -131,16 +149,140 @@ static bool find_not_tested_files(int dir_fd, struct igt_list_head *hit_entries) > > > return found_not_tested; > > > } > > > -static bool file_in_dir_exists(int dirfd, const char *file_name, int mode) > > > +/* Validate that debugfs buffer is non-empty or contains expected string */ > > > +static bool validate_string(int dirfd, const char *file_name, const char *expected_str) > > > +{ > > > + char buf[4096]; > > > + int ret = 0; > > > + > > > + ret = igt_sysfs_read(dirfd, file_name, buf, sizeof(buf) - 1); > > > + if (ret < 0) > > > + return false; > > > + buf[ret] = '\0'; > > > + > > > + /* Check for empty buffer */ > > > + if (strlen(buf) == 0) { > > > + igt_warn("Empty output from %s\n", file_name); > > > + return false; > > > + } > > > + > > > + /* If expecting specific string, verify it's present */ > > > + if (expected_str && !strstr(buf, expected_str)) { > > > + igt_warn("Expected '%s' not found in %s\n", expected_str, file_name); > > > + return false; > > > + } > > > + > > > + if (expected_str) > > > + igt_debug("Successfully read %s: found '%s'\n", file_name, expected_str); > > > + else > > > + igt_debug("Successfully read %s: %zd bytes\n%s\n", file_name, strlen(buf), buf); > > > + > > > + return true; > > > +} > > > + > > > +static const char *mode_to_str(int mode) > > > +{ > > > + switch (mode & O_ACCMODE) { > > > + case O_RDONLY: return "RO"; > > > + case O_WRONLY: return "WO"; > > > + case O_RDWR: return "RW"; > > > + default: return "UNKNOWN"; > > > + } > > > +} > > > + > > > +static bool validate_bool_file(int dirfd, const char *file_name, int mode) > > > +{ > > > + int orig_val = 0, read_val = 0, test_val = 0; > > > + > > > + if (igt_sysfs_scanf(dirfd, file_name, "%d", &orig_val) != 1 || > > > + (orig_val != 0 && orig_val != 1)) > > > + return false; > > > + > > > + if (mode == O_RDWR) { > > > + test_val = (orig_val == 0) ? 1 : 0; > > > + > > > + if (igt_sysfs_printf(dirfd, file_name, "%d", test_val) < 0) > > > + return false; > > > + > > > + if (igt_sysfs_scanf(dirfd, file_name, "%d", &read_val) != 1 || read_val != test_val) > > > + return false; > > > + > > > + /* Restore original value */ > > > + if (igt_sysfs_printf(dirfd, file_name, "%d", orig_val) < 0) { > > > + igt_warn("Failed to restore original value for %s\n", file_name); > > > + return false; > > > + } > > > + } > > > + > > > + igt_info("Successfully validated %s bool %s\n", mode_to_str(mode), file_name); > > Note igt_info() here, see below. > > -> Agreed > > > + return true; > > > +} > > > + > > > +static bool validate_int_file(int dirfd, const char *file_name, int mode) > > > +{ > > > + long orig_val = 0, new_val = 0, read_val = 0; > > > + > > > + if (igt_sysfs_scanf(dirfd, file_name, "%ld", &orig_val) != 1) > > > + return false; > > > + > > > + if (orig_val < 0) > > > + return false; > > > + > > > + if (mode == O_RDWR) { > > > + new_val = orig_val + 1; > > > + if (igt_sysfs_printf(dirfd, file_name, "%ld", new_val) < 0) > > > + return false; > > > + if (igt_sysfs_scanf(dirfd, file_name, "%ld", &read_val) != 1) > > > + return false; > > > + if (read_val != new_val) > > > + return false; > > > + /* Restore original value */ > > > + if (igt_sysfs_printf(dirfd, file_name, "%ld", orig_val) < 0) { > > > + igt_warn("Failed to restore original value for %s\n", file_name); > > > + return false; > > > + } > > > + > > > + igt_debug("Successfully validated %s int %s: %ld -> %ld -> %ld\n", > > > + mode_to_str(mode), file_name, orig_val, new_val, orig_val); > > You have igt_info() above in bool check, why debug here? > > Please be consistent, use one. > > => Done > > > + } else { > > > + igt_debug("Successfully validated %s int %s: %ld\n", > > > + mode_to_str(mode), file_name, orig_val); > > Same here. Btw why not using igt_info() in all places exept one > > warn at main function? > > > > > + } > > > + return true; > > > +} > > > + > > > +static bool validate_debugfs_file(int dirfd, const char *file_name, int mode, > > > + enum debugfs_validate_type validate, const char *expected_str) > > > { > > > - int fd = openat(dirfd, file_name, mode); > > Keep this line. > > > > > + bool result = true; > > > - if (fd >= 0) { > > > - close(fd); > > > + if (faccessat(dirfd, file_name, F_OK, 0) < 0) { > > > + igt_debug("%s does not exist\n", file_name); > > > + return false; > > > + } > > Remove this check here. > > > > > + if (validate == VALIDATE_NONE) > > > return true; > > > + > > > + switch (validate) { > > > + case VALIDATE_NON_EMPTY: > > > + result = validate_string(dirfd, file_name, NULL); > > > + break; > > > + case VALIDATE_CONTAINS_STR: > > > + result = validate_string(dirfd, file_name, expected_str); > > > + break; > > > + case VALIDATE_INT_GE_ZERO: > > > + result = validate_int_file(dirfd, file_name, mode); > > > + break; > > > + case VALIDATE_BOOL: > > > + result = validate_bool_file(dirfd, file_name, mode); > > > + break; > > > + default: > > > + igt_warn("Unknown validate type %d for %s\n", validate, file_name); > > > + result = false; > > > + break; > > > } > > > - return false; > > > + return result; > > > } > > > /* > > > @@ -160,7 +302,7 @@ static int debugfs_validate_entries(struct xe_device *xe_dev, int dir_fd, > > > unsigned int mask; > > > unsigned int j; > > > - if (check->condition && !check->condition(xe_dev)) > > > + if (check->condition && !check->condition(xe_dev, check->cond_params)) > > > continue; > > > if (!check->iter_mask) > > > @@ -209,10 +351,18 @@ static int debugfs_validate_entries(struct xe_device *xe_dev, int dir_fd, > > > #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 (!validate_debugfs_file(dir_fd, entry->name, check->mode, > > > + check->validate, check->expected_str)) { > > > + if (check->optional) { > > > + igt_info("Optional entry %s not found/invalid (skipped)\n", > > > + entry->name); > > > + } else { > > > + igt_warn("Missing or invalid debugfs file: %s\n", > > > + entry->name); > > > + missing_count++; > > > + } > > Main intention was to check only if the file is accessible I will take care in next series for the fail count > It could help reading your answer when you will properly cite old, and start your comment after a newline, then your comment without any '>' chars at start of line, then a newline. > > This seems wrong, it looks that if you have optional debugfs file > > you will ignore error here. Imho you should keep original if(): > > > > if (!file_in_dir_exists(dir_fd, entry->name, check->mode)) { > > if (check->optional) { > > igt_info("Optional entry %s not found (skipped)\n", > > entry->name); > > } else { > > igt_info("Missing debugfs file: %s\n", entry->name); > > missing_count++; > > } > > } else { > > if (!validate_debugfs_file(dir_fd, entry->name, check->mode, > > check->validate, check->expected_str)) > > fail_count++; > > } > > > > } > > > > Then at the end warn about any error: > > > > if (fail_count || missing_count) { > > igt_warn("Fails: %d missing debugfs file(s): %d\n", fail_count, missing_count); > > > > > @@ -239,14 +389,25 @@ out: > > > static void test_root_dir(struct xe_device *xe_dev) > > > { > > > const struct check_entry expected_files[] = { > > > - { "clients", O_RDONLY }, > > > + { "clients", O_RDONLY, .validate = VALIDATE_NON_EMPTY }, > > > + { "disable_late_binding", O_RDWR, .optional = true, .validate = VALIDATE_BOOL }, > > > { "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, ... */ > > > + { "gt%u", O_RDONLY, .iter_mask = gt_iter_mask }, > > > + { "gtt_mm", O_RDONLY, }, > > > + { "info", O_RDONLY, .validate = VALIDATE_NON_EMPTY }, > > > + { "name", O_RDONLY, .validate = VALIDATE_NON_EMPTY }, > > > + { "poor_man_system_atomic_support", O_RDWR, .optional = true, > > > + .validate = VALIDATE_BOOL }, > > Keep it on one line. > This was done to fix the check patch error. > > > + { "dgfx_pkg_residencies", O_RDONLY, .optional = true, > > > + .validate = VALIDATE_NON_EMPTY }, > > Same here. > > This was done to fix the check patch error. > > > > > + { "dgfx_pcie_link_residencies", O_RDONLY, .optional = true, > > > + .validate = VALIDATE_CONTAINS_STR, .expected_str = "PCIE LINK" }, > > Same here. > > > > > + { "sriov_info", O_RDONLY, .optional = true, .validate = VALIDATE_NON_EMPTY }, > > > + { "workarounds", O_RDONLY, .optional = true, .validate = VALIDATE_NON_EMPTY }, > > > + { "atomic_svm_timeslice_ms", O_RDWR, .optional = true, > > > + .validate = VALIDATE_INT_GE_ZERO }, > > Same here. > This was done to fix the check patch error. if we keep it in same line it > will cause the line > 100 warning. So kept it in seperate lines. In some cases, when line length is below 150...200, you could keep it and ignore checkpatch warn, especially that there are now big screens capable of displaying around 200 horizontal chars. Also, it helps when using grep to have all text in one line. Regards, Kamil > > > + { "tile%u", O_RDONLY, .iter_mask = tile_iter_mask }, > > > }; > > > int debugfs_fd = igt_debugfs_dir(xe_dev->fd); > > > int missing_count; > > > @@ -276,7 +437,8 @@ 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 }, > > > + { "vram_mm", O_RDONLY, .condition = has_vram_region, > > > Same here. > > > > Regards, > > Kamil > > > > > + .cond_params = (void *)(uintptr_t)tile }, > > > }; > > > int debugfs_fd = igt_debugfs_tile_dir(xe_dev->fd, tile); > > > int missing_count; > > > -- > > > 2.43.0 > > > ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ Xe.CI.FULL: success for tests/xe_debugfs: Add debugfs entry read/write validation in root-dir (rev2) 2026-06-11 9:43 [PATCH i-g-t] tests/xe_debugfs: Add debugfs entry read/write validation in root-dir Sobin Thomas ` (2 preceding siblings ...) 2026-06-11 13:14 ` [PATCH i-g-t] tests/xe_debugfs: Add debugfs entry read/write validation in root-dir Kamil Konieczny @ 2026-06-11 22:43 ` Patchwork 2026-06-12 9:16 ` ✗ i915.CI.Full: failure " Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2026-06-11 22:43 UTC (permalink / raw) To: Sobin Thomas; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 36648 bytes --] == Series Details == Series: tests/xe_debugfs: Add debugfs entry read/write validation in root-dir (rev2) URL : https://patchwork.freedesktop.org/series/167863/ State : success == Summary == CI Bug Log - changes from XEIGT_8958_FULL -> XEIGTPW_15347_FULL ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_15347_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_big_fb@4-tiled-64bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][1] ([Intel XE#2327]) +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-1/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html - shard-lnl: NOTRUN -> [SKIP][2] ([Intel XE#1407]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-4/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#7059] / [Intel XE#7085]) +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-1/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html - shard-lnl: NOTRUN -> [SKIP][4] ([Intel XE#7059] / [Intel XE#7085]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-2/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#1124]) +4 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html - shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#1124]) +2 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_bw@connected-linear-tiling-4-displays-target-2560x1440p: - shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#7676]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-6/igt@kms_bw@connected-linear-tiling-4-displays-target-2560x1440p.html - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#7679]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-8/igt@kms_bw@connected-linear-tiling-4-displays-target-2560x1440p.html * igt@kms_bw@linear-tiling-1-displays-target-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#367]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-3/igt@kms_bw@linear-tiling-1-displays-target-1920x1080p.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2887]) +6 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-6/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#3432]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html - shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#3432]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#2887]) +3 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html * igt@kms_chamelium_color@ctm-0-75: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2325] / [Intel XE#7358]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-7/igt@kms_chamelium_color@ctm-0-75.html * igt@kms_chamelium_hpd@dp-hpd-storm-disable: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2252]) +3 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-6/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#373]) +2 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-5/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2390] / [Intel XE#6974]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-9/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@srm: - shard-bmg: NOTRUN -> [FAIL][18] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-6/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent-hdcp14: - shard-bmg: NOTRUN -> [FAIL][19] ([Intel XE#6707] / [Intel XE#7439]) +1 other test fail [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-5/igt@kms_content_protection@uevent-hdcp14.html - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#7642]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-7/igt@kms_content_protection@uevent-hdcp14.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#2321] / [Intel XE#7355]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-3/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2321] / [Intel XE#7355]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-5/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-64x21: - shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2320]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-7/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#309] / [Intel XE#7343]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-4/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_dsc@dsc-fractional-bpp-ultrajoiner: - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#8265]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-3/igt@kms_dsc@dsc-fractional-bpp-ultrajoiner.html - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#8265]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-10/igt@kms_dsc@dsc-fractional-bpp-ultrajoiner.html * igt@kms_fbcon_fbt@psr-suspend: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#6126] / [Intel XE#776]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-6/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-4x: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#1138] / [Intel XE#7344]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-10/igt@kms_feature_discovery@display-4x.html - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#1138] / [Intel XE#7344]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-3/igt@kms_feature_discovery@display-4x.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#1421]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-3/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@flip-vs-expired-vblank@b-edp1: - shard-lnl: [PASS][31] -> [FAIL][32] ([Intel XE#301]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8958/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#7178] / [Intel XE#7351]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#7179]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x.html - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#7179]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-msflip-blt: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#6312] / [Intel XE#651]) +3 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2311]) +21 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#4141]) +9 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-render: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#7061] / [Intel XE#7356]) +2 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-pri-indfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#6312]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbchdr-argb161616f-draw-render: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#7061]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-9/igt@kms_frontbuffer_tracking@fbchdr-argb161616f-draw-render.html - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#7061]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-6/igt@kms_frontbuffer_tracking@fbchdr-argb161616f-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#656] / [Intel XE#7905]) +6 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-spr-indfb-move: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#7905]) +10 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-shrfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#7865]) +5 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-7/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2350] / [Intel XE#7503]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-9/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2313]) +23 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-3-xrgb16161616f: - shard-bmg: [PASS][50] -> [SKIP][51] ([Intel XE#7915]) +3 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8958/shard-bmg-4/igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-3-xrgb16161616f.html [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-6/igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-3-xrgb16161616f.html * igt@kms_hdr@static-toggle-dpms: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#1503] / [Intel XE#7915]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-2/igt@kms_hdr@static-toggle-dpms.html * igt@kms_hdr@static-toggle-dpms@pipe-a-edp-1-xrgb2101010: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#7915]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-2/igt@kms_hdr@static-toggle-dpms@pipe-a-edp-1-xrgb2101010.html * igt@kms_joiner@basic-force-big-joiner: - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#7086] / [Intel XE#7390]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-8/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_plane@pixel-format-4-tiled-modifier@pipe-a-plane-5: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#8303]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-4/igt@kms_plane@pixel-format-4-tiled-modifier@pipe-a-plane-5.html - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#8303]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-5/igt@kms_plane@pixel-format-4-tiled-modifier@pipe-a-plane-5.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#7283]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-4/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#7283]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-6/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#1489]) +3 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-1/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#2893] / [Intel XE#7304]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-4/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr@fbc-pr-basic: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#1406]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-5/igt@kms_psr@fbc-pr-basic.html * igt@kms_psr@fbc-psr-primary-page-flip: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2234] / [Intel XE#2850]) +5 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-6/igt@kms_psr@fbc-psr-primary-page-flip.html * igt@kms_psr@fbc-psr2-dpms: - shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#1406] / [Intel XE#7345]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-6/igt@kms_psr@fbc-psr2-dpms.html * igt@kms_psr@fbc-psr2-dpms@edp-1: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#1406] / [Intel XE#4609]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-6/igt@kms_psr@fbc-psr2-dpms@edp-1.html * igt@kms_rotation_crc@primary-rotation-90: - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#3904] / [Intel XE#7342]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-10/igt@kms_rotation_crc@primary-rotation-90.html - shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-8/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#1435]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-8/igt@kms_setmode@invalid-clone-single-crtc-stealing.html * igt@xe_eudebug@basic-read-event: - shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#7636]) +5 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-7/igt@xe_eudebug@basic-read-event.html * igt@xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#7636]) +3 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-2/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: [PASS][71] -> [INCOMPLETE][72] ([Intel XE#6321]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8958/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-small.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_evict@evict-mixed-threads-small-multi-vm: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#6540] / [Intel XE#688]) +2 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-4/igt@xe_evict@evict-mixed-threads-small-multi-vm.html * igt@xe_exec_balancer@twice-cm-virtual-basic: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#7482]) +4 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-7/igt@xe_exec_balancer@twice-cm-virtual-basic.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap: - shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#2322] / [Intel XE#7372]) +2 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#1392]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html * igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-rebind: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#7136]) +3 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-3/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-rebind.html * igt@xe_exec_fault_mode@once-multi-queue-userptr-imm: - shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#7136]) +6 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-7/igt@xe_exec_fault_mode@once-multi-queue-userptr-imm.html * igt@xe_exec_multi_queue@exec-sanity: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#6874]) +7 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-1/igt@xe_exec_multi_queue@exec-sanity.html * igt@xe_exec_multi_queue@max-queues-basic: - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#6874]) +10 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-7/igt@xe_exec_multi_queue@max-queues-basic.html * igt@xe_exec_system_allocator@many-stride-new-prefetch: - shard-bmg: NOTRUN -> [INCOMPLETE][81] ([Intel XE#7098] / [Intel XE#8159]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-9/igt@xe_exec_system_allocator@many-stride-new-prefetch.html * igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-malloc-fork-read-after: - shard-lnl: [PASS][82] -> [ABORT][83] ([Intel XE#8007]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8958/shard-lnl-6/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-malloc-fork-read-after.html [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-2/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-malloc-fork-read-after.html * igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#7138]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-9/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-invalidate.html * igt@xe_exec_threads@threads-multi-queue-userptr-rebind: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#7138]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-6/igt@xe_exec_threads@threads-multi-queue-userptr-rebind.html * igt@xe_mmap@small-bar: - shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#586] / [Intel XE#7323] / [Intel XE#7384]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-1/igt@xe_mmap@small-bar.html * igt@xe_multigpu_svm@mgpu-coherency-prefetch: - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#6964]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-7/igt@xe_multigpu_svm@mgpu-coherency-prefetch.html * igt@xe_multigpu_svm@mgpu-pagefault-prefetch: - shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#6964]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-7/igt@xe_multigpu_svm@mgpu-pagefault-prefetch.html * igt@xe_pm@d3hot-mmap-vram: - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1948]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-4/igt@xe_pm@d3hot-mmap-vram.html * igt@xe_pm@s4-d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#2284] / [Intel XE#366] / [Intel XE#7370]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-7/igt@xe_pm@s4-d3cold-basic-exec.html - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#2284] / [Intel XE#7370]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-7/igt@xe_pm@s4-d3cold-basic-exec.html * igt@xe_query@multigpu-query-config: - shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#944]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-4/igt@xe_query@multigpu-query-config.html - shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#944]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-5/igt@xe_query@multigpu-query-config.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-bmg: [PASS][94] -> [FAIL][95] ([Intel XE#6569]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8958/shard-bmg-8/igt@xe_sriov_flr@flr-vf1-clear.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-5/igt@xe_sriov_flr@flr-vf1-clear.html * igt@xe_survivability@runtime-survivability: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#6529] / [Intel XE#7331] / [Intel XE#7388]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-2/igt@xe_survivability@runtime-survivability.html * igt@xe_wedged@wedged-mode-toggle: - shard-bmg: [PASS][97] -> [ABORT][98] ([Intel XE#8007]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8958/shard-bmg-5/igt@xe_wedged@wedged-mode-toggle.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-10/igt@xe_wedged@wedged-mode-toggle.html #### Possible fixes #### * igt@kms_hdmi_inject@inject-audio: - shard-bmg: [SKIP][99] ([Intel XE#7308]) -> [PASS][100] [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8958/shard-bmg-10/igt@kms_hdmi_inject@inject-audio.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-8/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f: - shard-bmg: [SKIP][101] ([Intel XE#7915]) -> [PASS][102] +3 other tests pass [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8958/shard-bmg-7/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-9/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: [FAIL][103] ([Intel XE#7340]) -> [PASS][104] [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8958/shard-lnl-2/igt@kms_pm_dc@dc6-psr.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-6/igt@kms_pm_dc@dc6-psr.html * igt@xe_exec_system_allocator@many-execqueues-mmap-new-huge: - shard-lnl: [ABORT][105] ([Intel XE#8007]) -> [PASS][106] [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8958/shard-lnl-3/igt@xe_exec_system_allocator@many-execqueues-mmap-new-huge.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-1/igt@xe_exec_system_allocator@many-execqueues-mmap-new-huge.html - shard-bmg: [ABORT][107] ([Intel XE#8007]) -> [PASS][108] [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8958/shard-bmg-5/igt@xe_exec_system_allocator@many-execqueues-mmap-new-huge.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-3/igt@xe_exec_system_allocator@many-execqueues-mmap-new-huge.html * igt@xe_sriov_flr@flr-vfs-parallel: - shard-bmg: [FAIL][109] ([Intel XE#6569]) -> [PASS][110] +1 other test pass [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8958/shard-bmg-5/igt@xe_sriov_flr@flr-vfs-parallel.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-1/igt@xe_sriov_flr@flr-vfs-parallel.html #### Warnings #### * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-lnl: [SKIP][111] ([Intel XE#309] / [Intel XE#7343] / [Intel XE#7935]) -> [SKIP][112] ([Intel XE#309] / [Intel XE#7343]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8958/shard-lnl-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-lnl-7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][113] ([Intel XE#2426] / [Intel XE#5848]) -> [SKIP][114] ([Intel XE#2509] / [Intel XE#7437]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8958/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [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#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [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#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948 [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#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [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#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [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#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [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#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609 [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848 [Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586 [Intel XE#6126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6126 [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#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#6529]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6529 [Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540 [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#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707 [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974 [Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085 [Intel XE#7086]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7086 [Intel XE#7098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7098 [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136 [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304 [Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308 [Intel XE#7323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7323 [Intel XE#7331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7331 [Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340 [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342 [Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343 [Intel XE#7344]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7344 [Intel XE#7345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7345 [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351 [Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355 [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356 [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358 [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370 [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372 [Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374 [Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383 [Intel XE#7384]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7384 [Intel XE#7388]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7388 [Intel XE#7390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7390 [Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437 [Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439 [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482 [Intel XE#7503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7503 [Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636 [Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642 [Intel XE#7676]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7676 [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865 [Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905 [Intel XE#7915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7915 [Intel XE#7935]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7935 [Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007 [Intel XE#8159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8159 [Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265 [Intel XE#8303]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8303 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_8958 -> IGTPW_15347 * Linux: xe-5233-2bfaac2290b880c462bf89fae4fdb1559567af92 -> xe-5239-4fdfaadba04dc0f2f2490dbc91922caa290463a5 IGTPW_15347: 15347 IGT_8958: 8958 xe-5233-2bfaac2290b880c462bf89fae4fdb1559567af92: 2bfaac2290b880c462bf89fae4fdb1559567af92 xe-5239-4fdfaadba04dc0f2f2490dbc91922caa290463a5: 4fdfaadba04dc0f2f2490dbc91922caa290463a5 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15347/index.html [-- Attachment #2: Type: text/html, Size: 41954 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ i915.CI.Full: failure for tests/xe_debugfs: Add debugfs entry read/write validation in root-dir (rev2) 2026-06-11 9:43 [PATCH i-g-t] tests/xe_debugfs: Add debugfs entry read/write validation in root-dir Sobin Thomas ` (3 preceding siblings ...) 2026-06-11 22:43 ` ✓ Xe.CI.FULL: success for tests/xe_debugfs: Add debugfs entry read/write validation in root-dir (rev2) Patchwork @ 2026-06-12 9:16 ` Patchwork 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2026-06-12 9:16 UTC (permalink / raw) To: Sobin Thomas; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 159530 bytes --] == Series Details == Series: tests/xe_debugfs: Add debugfs entry read/write validation in root-dir (rev2) URL : https://patchwork.freedesktop.org/series/167863/ State : failure == Summary == CI Bug Log - changes from CI_DRM_18661_full -> IGTPW_15347_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_15347_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_15347_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_15347/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_15347_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_schedule@u-submit-early-slice@vcs1: - shard-mtlp: NOTRUN -> [FAIL][1] +6 other tests fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-2/igt@gem_exec_schedule@u-submit-early-slice@vcs1.html * igt@kms_color@ctm-signed@pipe-c-edp-1: - shard-mtlp: [PASS][2] -> [FAIL][3] +20 other tests fail [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-mtlp-6/igt@kms_color@ctm-signed@pipe-c-edp-1.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-2/igt@kms_color@ctm-signed@pipe-c-edp-1.html * igt@kms_plane_alpha_blend@coverage-7efc: - shard-mtlp: [PASS][4] -> [INCOMPLETE][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-mtlp-7/igt@kms_plane_alpha_blend@coverage-7efc.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-2/igt@kms_plane_alpha_blend@coverage-7efc.html Known issues ------------ Here are the changes found in IGTPW_15347_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-tglu-1: NOTRUN -> [SKIP][6] ([i915#6230]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-1/igt@api_intel_bb@crc32.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-rkl: NOTRUN -> [SKIP][7] ([i915#8411]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-2/igt@api_intel_bb@object-reloc-purge-cache.html * igt@device_reset@cold-reset-bound: - shard-tglu: NOTRUN -> [SKIP][8] ([i915#11078]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-2/igt@device_reset@cold-reset-bound.html - shard-rkl: NOTRUN -> [SKIP][9] ([i915#11078]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-5/igt@device_reset@cold-reset-bound.html * igt@device_reset@unbind-cold-reset-rebind: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#11078]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-4/igt@device_reset@unbind-cold-reset-rebind.html * igt@dmabuf@all-tests: - shard-rkl: NOTRUN -> [SKIP][11] ([i915#15931]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-3/igt@dmabuf@all-tests.html * igt@drm_buddy@drm_buddy: - shard-rkl: NOTRUN -> [SKIP][12] ([i915#15678]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-3/igt@drm_buddy@drm_buddy.html * igt@gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#3936]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-8/igt@gem_busy@semaphore.html - shard-dg1: NOTRUN -> [SKIP][14] ([i915#3936]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-12/igt@gem_busy@semaphore.html - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#3936]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-3/igt@gem_busy@semaphore.html * igt@gem_ccs@block-copy-compressed: - shard-tglu-1: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9323]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-1/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-lmem0-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][17] ([i915#13356] / [i915#16348]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-5/igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-lmem0-lmem0.html * igt@gem_close_race@multigpu-basic-threads: - shard-tglu: NOTRUN -> [SKIP][18] ([i915#7697]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-5/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_ctx_isolation@preservation-s3@bcs0: - shard-glk: NOTRUN -> [INCOMPLETE][19] ([i915#13356]) +1 other test incomplete [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-glk9/igt@gem_ctx_isolation@preservation-s3@bcs0.html * igt@gem_ctx_persistence@legacy-engines-hostile-preempt: - shard-snb: NOTRUN -> [SKIP][20] ([i915#1099]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-snb6/igt@gem_ctx_persistence@legacy-engines-hostile-preempt.html * igt@gem_ctx_sseu@invalid-args: - shard-tglu-1: NOTRUN -> [SKIP][21] ([i915#280]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-1/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#280]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-4/igt@gem_ctx_sseu@mmap-args.html * igt@gem_exec_balancer@bonded-semaphore: - shard-mtlp: NOTRUN -> [SKIP][23] ([i915#4812]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-6/igt@gem_exec_balancer@bonded-semaphore.html * igt@gem_exec_balancer@noheartbeat: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#8555]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-1/igt@gem_exec_balancer@noheartbeat.html * igt@gem_exec_balancer@parallel-dmabuf-import-out-fence: - shard-tglu-1: NOTRUN -> [SKIP][25] ([i915#4525]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-1/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-glk: NOTRUN -> [SKIP][26] ([i915#6334]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-glk5/igt@gem_exec_capture@capture-invisible@smem0.html - shard-tglu-1: NOTRUN -> [SKIP][27] ([i915#6334]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-1/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_fence@submit3: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#4812]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-6/igt@gem_exec_fence@submit3.html * igt@gem_exec_flush@basic-wb-prw-default: - shard-dg1: NOTRUN -> [SKIP][29] ([i915#3539] / [i915#4852]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-18/igt@gem_exec_flush@basic-wb-prw-default.html * igt@gem_exec_flush@basic-wb-set-default: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#3539] / [i915#4852]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-5/igt@gem_exec_flush@basic-wb-set-default.html * igt@gem_exec_reloc@basic-gtt-read: - shard-rkl: NOTRUN -> [SKIP][31] ([i915#3281]) +6 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-read.html * igt@gem_exec_reloc@basic-gtt-wc-active: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#3281]) +10 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-3/igt@gem_exec_reloc@basic-gtt-wc-active.html * igt@gem_exec_reloc@basic-wc-cpu-active: - shard-dg1: NOTRUN -> [SKIP][33] ([i915#3281]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-16/igt@gem_exec_reloc@basic-wc-cpu-active.html - shard-mtlp: NOTRUN -> [SKIP][34] ([i915#3281]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-4/igt@gem_exec_reloc@basic-wc-cpu-active.html * igt@gem_exec_reloc@basic-write-read-active: - shard-rkl: NOTRUN -> [SKIP][35] ([i915#14544] / [i915#3281]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_schedule@preempt-queue: - shard-dg1: NOTRUN -> [SKIP][36] ([i915#4812]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-16/igt@gem_exec_schedule@preempt-queue.html - shard-mtlp: NOTRUN -> [SKIP][37] ([i915#4537] / [i915#4812]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-6/igt@gem_exec_schedule@preempt-queue.html * igt@gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#4537] / [i915#4812]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-6/igt@gem_exec_schedule@reorder-wide.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#4860]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-17/igt@gem_fenced_exec_thrash@no-spare-fences.html - shard-mtlp: NOTRUN -> [SKIP][40] ([i915#4860]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-8/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#4860]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-8/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][42] ([i915#2190]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-3/igt@gem_huc_copy@huc-copy.html - shard-tglu: NOTRUN -> [SKIP][43] ([i915#2190]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-3/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@massive-random: - shard-glk: NOTRUN -> [SKIP][44] ([i915#4613]) +6 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-glk6/igt@gem_lmem_swapping@massive-random.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-tglu-1: NOTRUN -> [SKIP][45] ([i915#4613]) +2 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@random: - shard-rkl: NOTRUN -> [SKIP][46] ([i915#4613]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-7/igt@gem_lmem_swapping@random.html * igt@gem_lmem_swapping@smem-oom: - shard-tglu: NOTRUN -> [SKIP][47] ([i915#4613]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-2/igt@gem_lmem_swapping@smem-oom.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#12193]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-15/igt@gem_lmem_swapping@verify-random-ccs.html - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4613]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-5/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_lmem_swapping@verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#4565]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-15/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html * igt@gem_mmap@basic: - shard-dg1: NOTRUN -> [SKIP][51] ([i915#4083]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-18/igt@gem_mmap@basic.html - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4083]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-8/igt@gem_mmap@basic.html * igt@gem_mmap_gtt@basic-read-write: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4077]) +6 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-4/igt@gem_mmap_gtt@basic-read-write.html * igt@gem_mmap_gtt@basic-write-cpu-read-gtt: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4077]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-7/igt@gem_mmap_gtt@basic-write-cpu-read-gtt.html * igt@gem_mmap_gtt@cpuset-big-copy-xy: - shard-dg1: NOTRUN -> [SKIP][55] ([i915#4077]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-19/igt@gem_mmap_gtt@cpuset-big-copy-xy.html * igt@gem_mmap_offset@clear@smem0: - shard-mtlp: [PASS][56] -> [INCOMPLETE][57] ([i915#16021] / [i915#16202]) +1 other test incomplete [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-mtlp-1/igt@gem_mmap_offset@clear@smem0.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-2/igt@gem_mmap_offset@clear@smem0.html * igt@gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4083]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-6/igt@gem_mmap_wc@copy.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#3282]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-7/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_pread@exhaustion: - shard-glk11: NOTRUN -> [WARN][60] ([i915#2658]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-glk11/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-tglu: NOTRUN -> [WARN][61] ([i915#2658]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-7/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#4270]) +4 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-3/igt@gem_pxp@regular-baseline-src-copy-readible.html - shard-dg1: NOTRUN -> [SKIP][63] ([i915#4270]) +2 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-13/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_readwrite@read-write: - shard-rkl: NOTRUN -> [SKIP][64] ([i915#3282]) +2 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-4/igt@gem_readwrite@read-write.html * igt@gem_render_copy@yf-tiled-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#5190] / [i915#8428]) +3 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-1/igt@gem_render_copy@yf-tiled-to-vebox-y-tiled.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4885]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-5/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_userptr_blits@coherency-sync: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#3297]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-7/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-tglu: NOTRUN -> [SKIP][68] ([i915#3297] / [i915#3323]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-8/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-tglu-1: NOTRUN -> [SKIP][69] ([i915#3297]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-1/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@readonly-unsync: - shard-rkl: NOTRUN -> [SKIP][70] ([i915#3297]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-3/igt@gem_userptr_blits@readonly-unsync.html - shard-tglu: NOTRUN -> [SKIP][71] ([i915#3297]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-7/igt@gem_userptr_blits@readonly-unsync.html * igt@gem_workarounds@suspend-resume-context: - shard-glk11: NOTRUN -> [INCOMPLETE][72] ([i915#13356]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-glk11/igt@gem_workarounds@suspend-resume-context.html * igt@gen7_exec_parse@basic-allocation: - shard-mtlp: NOTRUN -> [SKIP][73] +4 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-2/igt@gen7_exec_parse@basic-allocation.html * igt@gen9_exec_parse@allowed-single: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#2856]) +2 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-7/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@batch-invalid-length: - shard-dg1: NOTRUN -> [SKIP][75] ([i915#2527]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-12/igt@gen9_exec_parse@batch-invalid-length.html - shard-tglu: NOTRUN -> [SKIP][76] ([i915#2527] / [i915#2856]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-4/igt@gen9_exec_parse@batch-invalid-length.html - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#2856]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-3/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@bb-large: - shard-tglu-1: NOTRUN -> [SKIP][78] ([i915#2527] / [i915#2856]) +2 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-1/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@valid-registers: - shard-rkl: NOTRUN -> [SKIP][79] ([i915#2527]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-4/igt@gen9_exec_parse@valid-registers.html * igt@i915_drm_fdinfo@virtual-busy: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#14118]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-8/igt@i915_drm_fdinfo@virtual-busy.html * igt@i915_module_load@fault-injection@intel_connector_register: - shard-tglu: NOTRUN -> [ABORT][81] ([i915#15342]) +1 other test abort [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-3/igt@i915_module_load@fault-injection@intel_connector_register.html * igt@i915_module_load@fault-injection@uc_fw_rsa_data_create: - shard-tglu: NOTRUN -> [SKIP][82] ([i915#15479]) +4 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-3/igt@i915_module_load@fault-injection@uc_fw_rsa_data_create.html * igt@i915_module_load@reload-no-display: - shard-tglu: [PASS][83] -> [DMESG-WARN][84] ([i915#13029] / [i915#14545]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-tglu-9/igt@i915_module_load@reload-no-display.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-7/igt@i915_module_load@reload-no-display.html * igt@i915_pm_freq_api@freq-reset: - shard-tglu-1: NOTRUN -> [SKIP][85] ([i915#8399]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-1/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-tglu-1: NOTRUN -> [SKIP][86] ([i915#16080] / [i915#16166]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-1/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-dg2: NOTRUN -> [FAIL][87] ([i915#12964]) +1 other test fail [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-8/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_query@hwconfig_table: - shard-rkl: NOTRUN -> [SKIP][88] ([i915#6245]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-5/igt@i915_query@hwconfig_table.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#6188]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-3/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_query@query-topology-unsupported: - shard-tglu-1: NOTRUN -> [SKIP][90] ([i915#16079]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-1/igt@i915_query@query-topology-unsupported.html * igt@i915_query@test-query-geometry-subslices: - shard-tglu-1: NOTRUN -> [SKIP][91] ([i915#5723]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-1/igt@i915_query@test-query-geometry-subslices.html * igt@i915_suspend@debugfs-reader: - shard-glk: [PASS][92] -> [INCOMPLETE][93] ([i915#16182] / [i915#4817]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-glk4/igt@i915_suspend@debugfs-reader.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-glk2/igt@i915_suspend@debugfs-reader.html * igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#4212]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-6/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - shard-mtlp: NOTRUN -> [SKIP][95] ([i915#4212]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-1/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html - shard-dg1: NOTRUN -> [SKIP][96] ([i915#4212]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-19/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_async_flips@alternate-sync-async-flip-atomic: - shard-dg2: [PASS][97] -> [FAIL][98] ([i915#14888]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-dg2-8/igt@kms_async_flips@alternate-sync-async-flip-atomic.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-4/igt@kms_async_flips@alternate-sync-async-flip-atomic.html * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [FAIL][99] ([i915#14888]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-4/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-d-hdmi-a-1.html * igt@kms_async_flips@async-flip-suspend-resume: - shard-rkl: [PASS][100] -> [INCOMPLETE][101] ([i915#12761]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-8/igt@kms_async_flips@async-flip-suspend-resume.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@kms_async_flips@async-flip-suspend-resume.html - shard-glk: NOTRUN -> [INCOMPLETE][102] ([i915#12761]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-glk1/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][103] ([i915#12761] / [i915#14995]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-glk1/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html - shard-rkl: NOTRUN -> [INCOMPLETE][104] ([i915#12761]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-glk: NOTRUN -> [SKIP][105] ([i915#1769]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-glk1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-tglu-1: NOTRUN -> [SKIP][106] ([i915#1769] / [i915#3555]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-1/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][107] -> [FAIL][108] ([i915#5956]) +1 other test fail [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-mtlp-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][109] ([i915#5286]) +3 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-7/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html - shard-dg1: NOTRUN -> [SKIP][110] ([i915#4538] / [i915#5286]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-16/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-32bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][111] ([i915#14544] / [i915#5286]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-tglu: NOTRUN -> [SKIP][112] ([i915#5286]) +3 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-4/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@4-tiled-addfb-size-overflow: - shard-dg1: NOTRUN -> [SKIP][113] ([i915#5286]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-17/igt@kms_big_fb@4-tiled-addfb-size-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-tglu-1: NOTRUN -> [SKIP][114] ([i915#5286]) +4 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][115] ([i915#14544] / [i915#3638]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@kms_big_fb@linear-8bpp-rotate-90.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip: - shard-tglu: NOTRUN -> [SKIP][116] ([i915#3828]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-3/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#3828]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-8/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html - shard-rkl: NOTRUN -> [SKIP][118] ([i915#3828]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-8/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html - shard-dg1: NOTRUN -> [SKIP][119] ([i915#3828]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-12/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html - shard-mtlp: NOTRUN -> [SKIP][120] ([i915#3828]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-3/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][121] +8 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-4/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#4538]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-18/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#4538] / [i915#5190]) +4 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#6095]) +210 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-19/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#12313]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][126] ([i915#6095]) +54 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-7/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#10307] / [i915#6095]) +120 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-7/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-3.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#12313]) +2 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-1/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html - shard-rkl: NOTRUN -> [SKIP][129] ([i915#12313] / [i915#14544]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html - shard-dg1: NOTRUN -> [SKIP][130] ([i915#12313]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-17/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html - shard-mtlp: NOTRUN -> [SKIP][131] ([i915#12313]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-8/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#14544] / [i915#6095]) +5 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][133] ([i915#6095]) +24 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-7/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-b-edp-1.html * igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-4/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#12805]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-1/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-rkl: NOTRUN -> [SKIP][136] ([i915#12805]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-dg1: NOTRUN -> [SKIP][137] ([i915#12805]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-13/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-tglu: NOTRUN -> [SKIP][138] ([i915#12805]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-2/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#12805]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-7/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][140] ([i915#6095]) +29 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1: - shard-glk: [PASS][141] -> [INCOMPLETE][142] ([i915#15582]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-glk4/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-glk8/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][143] ([i915#14098] / [i915#14544] / [i915#6095]) +4 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-rkl: [PASS][144] -> [INCOMPLETE][145] ([i915#15582]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [INCOMPLETE][146] ([i915#15582]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2: - shard-rkl: [PASS][147] -> [INCOMPLETE][148] ([i915#14694] / [i915#15582]) +1 other test incomplete [147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-glk: NOTRUN -> [INCOMPLETE][149] ([i915#15582]) +1 other test incomplete [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-glk4/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][150] ([i915#14098] / [i915#6095]) +52 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][151] ([i915#12313]) +3 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][152] ([i915#12313]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-4/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][153] ([i915#6095]) +87 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#13783]) +4 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-5/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-4k: - shard-rkl: NOTRUN -> [SKIP][155] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html - shard-dg1: NOTRUN -> [SKIP][156] ([i915#11151] / [i915#7828]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-17/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#11151] / [i915#7828]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-6/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-glk10: NOTRUN -> [SKIP][158] +83 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-glk10/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt@kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-rkl: NOTRUN -> [SKIP][159] ([i915#11151] / [i915#7828]) +3 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-4/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt@kms_chamelium_frames@hdmi-frame-dump: - shard-tglu-1: NOTRUN -> [SKIP][160] ([i915#11151] / [i915#7828]) +6 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-1/igt@kms_chamelium_frames@hdmi-frame-dump.html * igt@kms_chamelium_hpd@dp-hpd-fast: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#11151] / [i915#7828]) +6 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-3/igt@kms_chamelium_hpd@dp-hpd-fast.html * igt@kms_chamelium_hpd@vga-hpd-without-ddc: - shard-tglu: NOTRUN -> [SKIP][162] ([i915#11151] / [i915#7828]) +5 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-4/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html * igt@kms_color@ctm-signed: - shard-mtlp: [PASS][163] -> [FAIL][164] ([i915#6892]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-mtlp-6/igt@kms_color@ctm-signed.html [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-2/igt@kms_color@ctm-signed.html * igt@kms_color@deep-color: - shard-rkl: NOTRUN -> [SKIP][165] ([i915#12655] / [i915#3555]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-3/igt@kms_color@deep-color.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg1: NOTRUN -> [SKIP][166] ([i915#15330] / [i915#3299]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-17/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14: - shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#15330]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-1/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-type-0: - shard-tglu-1: NOTRUN -> [SKIP][168] ([i915#15330] / [i915#3116] / [i915#3299]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-1-suspend-resume: - shard-tglu: NOTRUN -> [SKIP][169] ([i915#15330]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-6/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html * igt@kms_content_protection@legacy-hdcp14: - shard-rkl: NOTRUN -> [SKIP][170] ([i915#15865]) +2 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-5/igt@kms_content_protection@legacy-hdcp14.html * igt@kms_content_protection@lic-type-0: - shard-tglu: NOTRUN -> [SKIP][171] ([i915#15865]) +2 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-3/igt@kms_content_protection@lic-type-0.html - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#15865]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-3/igt@kms_content_protection@lic-type-0.html - shard-dg1: NOTRUN -> [SKIP][173] ([i915#15865]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-14/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#15865]) +3 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-7/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-rkl: [PASS][175] -> [FAIL][176] ([i915#13566]) +8 other tests fail [175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-128x42.html - shard-tglu: [PASS][177] -> [FAIL][178] ([i915#13566]) +3 other tests fail [177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-128x42.html [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-tglu: NOTRUN -> [SKIP][179] ([i915#13049]) +1 other test skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [FAIL][180] ([i915#13566]) +1 other test fail [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#3555]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-7/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-rkl: NOTRUN -> [SKIP][182] ([i915#13049]) +1 other test skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-3/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#13049]) +1 other test skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-6/igt@kms_cursor_crc@cursor-random-512x512.html - shard-tglu-1: NOTRUN -> [SKIP][184] ([i915#13049]) +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x512.html - shard-dg1: NOTRUN -> [SKIP][185] ([i915#13049]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-16/igt@kms_cursor_crc@cursor-random-512x512.html - shard-mtlp: NOTRUN -> [SKIP][186] ([i915#13049]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-5/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-random-64x21@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][187] ([i915#13566]) +2 other tests fail [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-2/igt@kms_cursor_crc@cursor-random-64x21@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#3555]) +1 other test skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-8/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html - shard-dg1: NOTRUN -> [SKIP][189] ([i915#3555]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-12/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#3555] / [i915#8814]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-3/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [FAIL][191] ([i915#13566]) +1 other test fail [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-tglu: NOTRUN -> [SKIP][192] ([i915#3555]) +2 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-10/igt@kms_cursor_crc@cursor-sliding-32x32.html - shard-rkl: NOTRUN -> [SKIP][193] ([i915#14544] / [i915#3555]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#13046] / [i915#5354]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-3/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-dg1: NOTRUN -> [SKIP][195] +27 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-12/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-tglu: NOTRUN -> [SKIP][196] ([i915#4103]) +2 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@forked-move: - shard-dg1: [PASS][197] -> [DMESG-WARN][198] ([i915#4423]) +1 other test dmesg-warn [197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-dg1-12/igt@kms_cursor_legacy@forked-move.html [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-16/igt@kms_cursor_legacy@forked-move.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-tglu-1: NOTRUN -> [SKIP][199] ([i915#9067]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-rkl: NOTRUN -> [SKIP][200] ([i915#4103]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-flip-after-cursor-toggle: - shard-mtlp: NOTRUN -> [FAIL][201] ([i915#15871]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-2/igt@kms_cursor_legacy@short-flip-after-cursor-toggle.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg1: NOTRUN -> [SKIP][202] ([i915#9723]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-18/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-tglu: NOTRUN -> [SKIP][203] ([i915#9723]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-rkl: NOTRUN -> [SKIP][204] ([i915#13691]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-3/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dp_aux_dev@basic: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#1257]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-7/igt@kms_dp_aux_dev@basic.html * igt@kms_dp_link_training@uhbr-mst: - shard-tglu: NOTRUN -> [SKIP][206] ([i915#13748]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-5/igt@kms_dp_link_training@uhbr-mst.html * igt@kms_dsc@dsc-fractional-bpp-bigjoiner: - shard-tglu: NOTRUN -> [SKIP][207] ([i915#16361]) +3 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-2/igt@kms_dsc@dsc-fractional-bpp-bigjoiner.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg1: NOTRUN -> [SKIP][208] ([i915#16361]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-19/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-mtlp: NOTRUN -> [SKIP][209] ([i915#16361]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc-ultrajoiner: - shard-dg2: NOTRUN -> [SKIP][210] ([i915#16361]) +2 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-3/igt@kms_dsc@dsc-fractional-bpp-with-bpc-ultrajoiner.html * igt@kms_dsc@dsc-with-bpc-formats-bigjoiner: - shard-tglu-1: NOTRUN -> [SKIP][211] ([i915#16361]) +1 other test skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-1/igt@kms_dsc@dsc-with-bpc-formats-bigjoiner.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-rkl: NOTRUN -> [SKIP][212] ([i915#16361]) +3 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-2/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_feature_discovery@chamelium: - shard-tglu: NOTRUN -> [SKIP][213] ([i915#2065]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-6/igt@kms_feature_discovery@chamelium.html - shard-mtlp: NOTRUN -> [SKIP][214] ([i915#16084]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-1/igt@kms_feature_discovery@chamelium.html - shard-dg2: NOTRUN -> [SKIP][215] ([i915#16084]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-7/igt@kms_feature_discovery@chamelium.html - shard-rkl: NOTRUN -> [SKIP][216] ([i915#16084]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-4/igt@kms_feature_discovery@chamelium.html - shard-dg1: NOTRUN -> [SKIP][217] ([i915#16084]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-19/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@dp-mst: - shard-tglu: NOTRUN -> [SKIP][218] ([i915#9337]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-9/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr2: - shard-rkl: NOTRUN -> [SKIP][219] ([i915#14544] / [i915#658]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-rkl: NOTRUN -> [SKIP][220] ([i915#9934]) +3 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-4/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-dpms-vs-vblank-race: - shard-rkl: NOTRUN -> [SKIP][221] ([i915#14544] / [i915#9934]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@kms_flip@2x-dpms-vs-vblank-race.html * igt@kms_flip@2x-flip-vs-dpms: - shard-tglu: NOTRUN -> [SKIP][222] ([i915#3637] / [i915#9934]) +4 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-7/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-modeset: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#9934]) +3 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-1/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][224] ([i915#12314] / [i915#12745] / [i915#4839]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-glk5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [INCOMPLETE][225] ([i915#12314] / [i915#12745]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-glk5/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][226] ([i915#3637] / [i915#9934]) +5 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-1/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a3: - shard-dg2: [PASS][227] -> [FAIL][228] ([i915#13027]) +1 other test fail [227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-dg2-6/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a3.html [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a3.html * igt@kms_flip@flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][229] ([i915#8381]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-3/igt@kms_flip@flip-vs-fences.html - shard-dg1: NOTRUN -> [SKIP][230] ([i915#8381]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-12/igt@kms_flip@flip-vs-fences.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][231] ([i915#8381]) +1 other test skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-6/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][232] ([i915#12745] / [i915#4839]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-glk6/igt@kms_flip@flip-vs-suspend-interruptible.html - shard-rkl: [PASS][233] -> [INCOMPLETE][234] ([i915#16276] / [i915#6113]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-2/igt@kms_flip@flip-vs-suspend-interruptible.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-4/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][235] ([i915#12745]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-glk6/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2: - shard-rkl: NOTRUN -> [INCOMPLETE][236] ([i915#16276] / [i915#6113]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-4/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-rkl: NOTRUN -> [SKIP][237] ([i915#15643]) +4 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#3555] / [i915#8810] / [i915#8813]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#8810] / [i915#8813]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling: - shard-tglu: NOTRUN -> [SKIP][240] ([i915#15643]) +3 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html - shard-mtlp: NOTRUN -> [SKIP][241] ([i915#15643]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html - shard-dg2: NOTRUN -> [SKIP][242] ([i915#15643]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][243] ([i915#15643] / [i915#5190]) +2 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][244] ([i915#15643]) +3 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html - shard-dg1: NOTRUN -> [SKIP][245] ([i915#15643]) +3 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-16/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][246] ([i915#15104] / [i915#15990]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][247] ([i915#14544]) +13 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-tglu-1: NOTRUN -> [SKIP][248] +75 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][249] ([i915#14544] / [i915#1825]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#15991] / [i915#5354]) +19 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][251] ([i915#1825]) +4 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-indfb-plflip-blt: - shard-tglu: NOTRUN -> [SKIP][252] ([i915#15989]) +16 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-4/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][253] ([i915#15989]) +11 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-1/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbchdr-1p-rte: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#15989]) +13 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-5/igt@kms_frontbuffer_tracking@fbchdr-1p-rte.html * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-onoff: - shard-rkl: NOTRUN -> [SKIP][255] +62 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-5/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][256] ([i915#15990]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#15990] / [i915#8708]) +11 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][258] ([i915#14544] / [i915#15102] / [i915#3023]) +2 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render: - shard-tglu-1: NOTRUN -> [SKIP][259] ([i915#15102]) +32 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][260] ([i915#15102] / [i915#3023]) +14 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-onoff: - shard-rkl: NOTRUN -> [SKIP][261] ([i915#14544] / [i915#15102]) +2 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-cur-indfb-draw-blt: - shard-tglu: NOTRUN -> [SKIP][262] +85 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][263] ([i915#15990]) +23 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4: - shard-rkl: NOTRUN -> [SKIP][264] ([i915#5439]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4.html - shard-dg1: NOTRUN -> [SKIP][265] ([i915#5439]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4.html - shard-tglu: NOTRUN -> [SKIP][266] ([i915#5439]) +1 other test skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#10055]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y.html * igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-blt: - shard-dg1: NOTRUN -> [SKIP][268] ([i915#15989]) +7 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-14/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg2: [PASS][269] -> [SKIP][270] ([i915#15989]) +1 other test skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-dg2-10/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-4/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][271] ([i915#15989]) +13 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-2/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-render: - shard-glk: [PASS][272] -> [SKIP][273] +3 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-glk8/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-render.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-glk2/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@hdr-2p-primscrn-pri-indfb-draw-pwrite: - shard-mtlp: NOTRUN -> [SKIP][274] ([i915#15991]) +15 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-6/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@hdr-shrfb-scaledprimary: - shard-rkl: [PASS][275] -> [SKIP][276] ([i915#15989]) +13 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-shrfb-scaledprimary.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-5/igt@kms_frontbuffer_tracking@hdr-shrfb-scaledprimary.html * igt@kms_frontbuffer_tracking@hdr-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][277] ([i915#16056]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-glk8/igt@kms_frontbuffer_tracking@hdr-suspend.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: NOTRUN -> [SKIP][278] ([i915#9766]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-5/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-tglu: NOTRUN -> [SKIP][279] ([i915#9766]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-5/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][280] ([i915#15104] / [i915#15990]) +1 other test skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: NOTRUN -> [SKIP][281] ([i915#15102]) +24 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][282] ([i915#15990] / [i915#8708]) +3 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff: - shard-glk11: NOTRUN -> [SKIP][283] +145 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-glk11/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-mtlp: NOTRUN -> [SKIP][284] ([i915#15991] / [i915#1825]) +6 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][285] ([i915#15102]) +41 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][286] ([i915#15990] / [i915#8708]) +5 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][287] ([i915#15990]) +7 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-14/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][288] ([i915#15989]) +13 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-6/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move: - shard-rkl: NOTRUN -> [SKIP][289] ([i915#15102]) +15 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-2/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move.html - shard-dg1: NOTRUN -> [SKIP][290] ([i915#15102]) +11 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-15/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@psrhdr-2p-pri-indfb-multidraw: - shard-dg2: NOTRUN -> [SKIP][291] ([i915#15991]) +34 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-8/igt@kms_frontbuffer_tracking@psrhdr-2p-pri-indfb-multidraw.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu-1: NOTRUN -> [SKIP][292] ([i915#16012] / [i915#3555] / [i915#8228]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-1/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-1-xrgb2101010: - shard-tglu-1: NOTRUN -> [SKIP][293] ([i915#16012]) +1 other test skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-1/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-1-xrgb2101010.html * igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-2-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][294] ([i915#16012]) +1 other test skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-7/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-2-xrgb2101010.html * igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-1-xrgb16161616f: - shard-dg2: NOTRUN -> [SKIP][295] ([i915#16012]) +1 other test skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-4/igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-1-xrgb16161616f.html * igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-3-xrgb16161616f: - shard-dg1: NOTRUN -> [SKIP][296] ([i915#16012]) +1 other test skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-12/igt@kms_hdr@bpc-switch@pipe-a-hdmi-a-3-xrgb16161616f.html * igt@kms_hdr@static-toggle: - shard-dg2: [PASS][297] -> [SKIP][298] ([i915#16011] / [i915#3555] / [i915#8228]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-dg2-10/igt@kms_hdr@static-toggle.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-7/igt@kms_hdr@static-toggle.html - shard-rkl: NOTRUN -> [SKIP][299] ([i915#16011] / [i915#3555] / [i915#8228]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-4/igt@kms_hdr@static-toggle.html - shard-tglu: NOTRUN -> [SKIP][300] ([i915#16011] / [i915#3555] / [i915#8228]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-4/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-1-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][301] ([i915#16011]) +3 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-8/igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-1-xrgb2101010.html * igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-2-xrgb16161616f: - shard-rkl: NOTRUN -> [ABORT][302] ([i915#15132]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-1/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-2-xrgb16161616f.html * igt@kms_hdr@static-toggle@pipe-a-hdmi-a-1-xrgb16161616f: - shard-tglu: NOTRUN -> [SKIP][303] ([i915#16011]) +1 other test skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-4/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-1-xrgb16161616f.html * igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f: - shard-dg2: NOTRUN -> [SKIP][304] ([i915#16011]) +1 other test skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-7/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f.html * igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb2101010: - shard-dg1: NOTRUN -> [SKIP][305] ([i915#16011]) +1 other test skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-13/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb2101010.html * igt@kms_joiner@basic-force-big-joiner: - shard-dg2: NOTRUN -> [SKIP][306] ([i915#15459]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-6/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][307] ([i915#15458]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-1/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-tglu-1: NOTRUN -> [SKIP][308] ([i915#6301]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-1/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_panel_fitting@legacy: - shard-tglu: NOTRUN -> [SKIP][309] ([i915#6301]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-9/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][310] ([i915#13409] / [i915#13476]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-glk5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html * igt@kms_pipe_stress@stress-xrgb8888-4tiled: - shard-tglu: NOTRUN -> [SKIP][311] ([i915#14712]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-10/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier: - shard-glk: NOTRUN -> [SKIP][312] +666 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-glk5/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping: - shard-tglu-1: NOTRUN -> [SKIP][313] ([i915#15709]) +1 other test skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-7: - shard-tglu-1: NOTRUN -> [SKIP][314] ([i915#16386]) +1 other test skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-1/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-7.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier: - shard-dg1: NOTRUN -> [SKIP][315] ([i915#15709]) +2 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-14/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html - shard-tglu: NOTRUN -> [SKIP][316] ([i915#15709]) +3 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-7/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html - shard-mtlp: NOTRUN -> [SKIP][317] ([i915#15709]) +1 other test skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-2/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier: - shard-dg2: NOTRUN -> [SKIP][318] ([i915#15709]) +4 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-6/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html * igt@kms_plane@pixel-format-yf-tiled-modifier: - shard-rkl: NOTRUN -> [SKIP][319] ([i915#15709]) +4 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-7/igt@kms_plane@pixel-format-yf-tiled-modifier.html * igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y: - shard-dg2: NOTRUN -> [SKIP][320] ([i915#16112]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-1/igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y.html - shard-rkl: NOTRUN -> [SKIP][321] ([i915#16112]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-4/igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y.html - shard-dg1: NOTRUN -> [SKIP][322] ([i915#16112]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-19/igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y.html - shard-tglu: NOTRUN -> [SKIP][323] ([i915#16112]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-7/igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y.html - shard-mtlp: NOTRUN -> [SKIP][324] ([i915#16112]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-7/igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b: - shard-glk: NOTRUN -> [INCOMPLETE][325] ([i915#13026]) +1 other test incomplete [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-glk1/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][326] ([i915#3555] / [i915#8821]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-3/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@2x-tiling-4: - shard-rkl: NOTRUN -> [SKIP][327] ([i915#13958]) +1 other test skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-8/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_plane_multiple@2x-tiling-y: - shard-dg2: NOTRUN -> [SKIP][328] ([i915#13958]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-1/igt@kms_plane_multiple@2x-tiling-y.html - shard-tglu-1: NOTRUN -> [SKIP][329] ([i915#13958]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-tglu: NOTRUN -> [SKIP][330] ([i915#13958]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-4/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_plane_multiple@tiling-yf: - shard-tglu: NOTRUN -> [SKIP][331] ([i915#14259]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-3/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a: - shard-dg1: NOTRUN -> [SKIP][332] ([i915#15329]) +4 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-13/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html - shard-tglu: NOTRUN -> [SKIP][333] ([i915#15329]) +4 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-8/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75: - shard-mtlp: NOTRUN -> [SKIP][334] ([i915#15329] / [i915#6953]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d: - shard-mtlp: NOTRUN -> [SKIP][335] ([i915#15329]) +3 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-tglu-1: NOTRUN -> [SKIP][336] ([i915#12343]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-1/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade-with-suspend: - shard-dg2: NOTRUN -> [SKIP][337] ([i915#12343] / [i915#5354]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-8/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-tglu-1: NOTRUN -> [SKIP][338] ([i915#15948]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-1/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc6-psr: - shard-dg2: NOTRUN -> [SKIP][339] ([i915#15948]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-4/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][340] ([i915#15739]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html - shard-tglu: NOTRUN -> [SKIP][341] ([i915#15739]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-5/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][342] ([i915#15073]) +2 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-5/igt@kms_pm_rpm@dpms-lpsp.html - shard-dg1: NOTRUN -> [SKIP][343] ([i915#15073]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-12/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][344] ([i915#15073]) +1 other test skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-10/igt@kms_pm_rpm@dpms-non-lpsp.html - shard-mtlp: NOTRUN -> [SKIP][345] ([i915#15073]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-2/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-rkl: [PASS][346] -> [SKIP][347] ([i915#15073]) +4 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp-stress.html [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg1: [PASS][348] -> [SKIP][349] ([i915#15073]) +1 other test skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-dg1-16/igt@kms_pm_rpm@modeset-non-lpsp.html [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@package-g7: - shard-dg2: NOTRUN -> [SKIP][350] ([i915#15403]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-1/igt@kms_pm_rpm@package-g7.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-glk: NOTRUN -> [INCOMPLETE][351] ([i915#10553]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-glk8/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg1: NOTRUN -> [SKIP][352] ([i915#11520]) +3 other tests skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-13/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][353] ([i915#11520]) +7 other tests skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-2/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html - shard-mtlp: NOTRUN -> [SKIP][354] ([i915#12316]) +1 other test skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-7/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][355] ([i915#11520]) +16 other tests skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-glk8/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html - shard-dg2: NOTRUN -> [SKIP][356] ([i915#11520]) +5 other tests skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-5/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][357] ([i915#11520]) +5 other tests skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-glk11: NOTRUN -> [SKIP][358] ([i915#11520]) +3 other tests skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-glk11/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html - shard-snb: NOTRUN -> [SKIP][359] ([i915#11520]) +2 other tests skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-snb6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][360] ([i915#9808]) +2 other tests skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-b-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][361] ([i915#11520]) +7 other tests skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf: - shard-glk10: NOTRUN -> [SKIP][362] ([i915#11520]) +1 other test skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-glk10/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-tglu-1: NOTRUN -> [SKIP][363] ([i915#9683]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-1/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr-primary-blt: - shard-dg2: NOTRUN -> [SKIP][364] ([i915#1072] / [i915#9732]) +15 other tests skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-5/igt@kms_psr@fbc-psr-primary-blt.html * igt@kms_psr@fbc-psr2-cursor-blt: - shard-dg1: NOTRUN -> [SKIP][365] ([i915#1072] / [i915#9732]) +8 other tests skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-13/igt@kms_psr@fbc-psr2-cursor-blt.html * igt@kms_psr@fbc-psr2-cursor-blt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][366] ([i915#9688]) +8 other tests skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-2/igt@kms_psr@fbc-psr2-cursor-blt@edp-1.html * igt@kms_psr@fbc-psr2-primary-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][367] ([i915#9732]) +16 other tests skip [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-8/igt@kms_psr@fbc-psr2-primary-mmap-gtt.html * igt@kms_psr@pr-cursor-plane-onoff: - shard-rkl: NOTRUN -> [SKIP][368] ([i915#1072] / [i915#9732]) +18 other tests skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-3/igt@kms_psr@pr-cursor-plane-onoff.html * igt@kms_psr@pr-sprite-plane-onoff: - shard-tglu-1: NOTRUN -> [SKIP][369] ([i915#9732]) +13 other tests skip [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-1/igt@kms_psr@pr-sprite-plane-onoff.html * igt@kms_psr@psr-primary-mmap-gtt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][370] ([i915#4077] / [i915#9688]) +1 other test skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-3/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html * igt@kms_psr@psr-sprite-blt: - shard-snb: NOTRUN -> [SKIP][371] +117 other tests skip [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-snb1/igt@kms_psr@psr-sprite-blt.html * igt@kms_rotation_crc@multiplane-rotation-cropping-top: - shard-glk: NOTRUN -> [INCOMPLETE][372] ([i915#15492] / [i915#16184]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-glk2/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-tglu-1: NOTRUN -> [SKIP][373] ([i915#5289]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-dg2: NOTRUN -> [SKIP][374] ([i915#5190]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html - shard-mtlp: NOTRUN -> [SKIP][375] ([i915#5289]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-rkl: NOTRUN -> [SKIP][376] ([i915#5289]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][377] ([i915#12755] / [i915#15867] / [i915#5190]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_setmode@basic-clone-single-crtc: - shard-tglu-1: NOTRUN -> [SKIP][378] ([i915#3555]) +1 other test skip [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-1/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_vblank@ts-continuation-suspend: - shard-glk10: NOTRUN -> [INCOMPLETE][379] ([i915#12276]) +1 other test incomplete [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-glk10/igt@kms_vblank@ts-continuation-suspend.html * igt@kms_vrr@flip-suspend: - shard-rkl: NOTRUN -> [SKIP][380] ([i915#15243] / [i915#3555]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-7/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@negative-basic: - shard-tglu: NOTRUN -> [SKIP][381] ([i915#3555] / [i915#9906]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-4/igt@kms_vrr@negative-basic.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][382] ([i915#7387]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-6/igt@perf@global-sseu-config-invalid.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-rkl: NOTRUN -> [SKIP][383] ([i915#8516]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-8/igt@perf_pmu@rc6@other-idle-gt0.html - shard-tglu: NOTRUN -> [SKIP][384] ([i915#8516]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-4/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_mmap@test_forked: - shard-mtlp: [PASS][385] -> [FAIL][386] ([i915#15871]) +6 other tests fail [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-mtlp-6/igt@prime_mmap@test_forked.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-2/igt@prime_mmap@test_forked.html * igt@prime_vgem@basic-fence-flip: - shard-dg2: NOTRUN -> [SKIP][387] ([i915#3708]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-6/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][388] ([i915#3291] / [i915#3708]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-3/igt@prime_vgem@basic-fence-read.html - shard-rkl: NOTRUN -> [SKIP][389] ([i915#3291] / [i915#3708]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-3/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@fence-read-hang: - shard-rkl: NOTRUN -> [SKIP][390] ([i915#14544] / [i915#3708]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-rkl: NOTRUN -> [SKIP][391] ([i915#9917]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-5/igt@sriov_basic@enable-vfs-bind-unbind-each.html * igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random: - shard-tglu: NOTRUN -> [SKIP][392] ([i915#16066]) +8 other tests skip [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-5/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random.html #### Possible fixes #### * igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [INCOMPLETE][393] ([i915#13356] / [i915#16348]) -> [PASS][394] [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-dg2-4/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-5/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0.html * igt@gem_exec_suspend@basic-s0: - shard-dg2: [ABORT][395] ([i915#15131] / [i915#15542]) -> [PASS][396] [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-dg2-10/igt@gem_exec_suspend@basic-s0.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-1/igt@gem_exec_suspend@basic-s0.html * igt@gem_exec_suspend@basic-s0@lmem0: - shard-dg2: [ABORT][397] ([i915#15542]) -> [PASS][398] [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-dg2-10/igt@gem_exec_suspend@basic-s0@lmem0.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-1/igt@gem_exec_suspend@basic-s0@lmem0.html * igt@gem_linear_blits@normal: - shard-dg1: [FAIL][399] ([i915#15391]) -> [PASS][400] [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-dg1-14/igt@gem_linear_blits@normal.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-17/igt@gem_linear_blits@normal.html * igt@gem_pxp@create-regular-buffer: - shard-rkl: [SKIP][401] ([i915#4270]) -> [PASS][402] [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-5/igt@gem_pxp@create-regular-buffer.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-2/igt@gem_pxp@create-regular-buffer.html * igt@i915_module_load@fault-injection@uc_fw_rsa_data_create: - shard-mtlp: [INCOMPLETE][403] ([i915#15895]) -> [PASS][404] [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-mtlp-5/igt@i915_module_load@fault-injection@uc_fw_rsa_data_create.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-5/igt@i915_module_load@fault-injection@uc_fw_rsa_data_create.html * igt@i915_suspend@basic-s3-without-i915: - shard-glk: [INCOMPLETE][405] ([i915#16182] / [i915#4817]) -> [PASS][406] [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-glk2/igt@i915_suspend@basic-s3-without-i915.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-glk6/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][407] ([i915#13566]) -> [PASS][408] +1 other test pass [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-tglu-3/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-10/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-dg1: [FAIL][409] ([i915#13027]) -> [PASS][410] [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-dg1-13/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-13/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a3: - shard-dg1: [FAIL][411] ([i915#15718]) -> [PASS][412] [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-dg1-13/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a3.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-13/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a3.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-mtlp: [SKIP][413] ([i915#15672]) -> [PASS][414] [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-mtlp-1/igt@kms_force_connector_basic@prune-stale-modes.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-7/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-shrfb-draw-pwrite: - shard-glk: [SKIP][415] -> [PASS][416] [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-glk2/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-shrfb-draw-pwrite.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-glk8/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-onoff: - shard-rkl: [SKIP][417] ([i915#15989]) -> [PASS][418] +13 other tests pass [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-5/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-onoff.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-onoff.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1: - shard-glk: [INCOMPLETE][419] ([i915#12756] / [i915#13409] / [i915#13476]) -> [PASS][420] [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-glk4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-glk5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@intel-max-src-size: - shard-rkl: [SKIP][421] ([i915#6953]) -> [PASS][422] [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-3/igt@kms_plane_scaling@intel-max-src-size.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: [SKIP][423] ([i915#9340]) -> [PASS][424] [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-dg2-1/igt@kms_pm_lpsp@kms-lpsp.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg1: [SKIP][425] ([i915#15073]) -> [PASS][426] [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-dg1-18/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-15/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: [SKIP][427] ([i915#15073]) -> [PASS][428] [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-dg2-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@system-suspend-idle: - shard-rkl: [INCOMPLETE][429] ([i915#14419]) -> [PASS][430] [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-3/igt@kms_pm_rpm@system-suspend-idle.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-2/igt@kms_pm_rpm@system-suspend-idle.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-rkl: [ABORT][431] ([i915#15132]) -> [PASS][432] [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-1/igt@kms_pm_rpm@system-suspend-modeset.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-5/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_vrr@negative-basic: - shard-mtlp: [FAIL][433] ([i915#15420]) -> [PASS][434] +1 other test pass [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-mtlp-2/igt@kms_vrr@negative-basic.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-2/igt@kms_vrr@negative-basic.html * igt@perf_pmu@rc6-suspend: - shard-rkl: [INCOMPLETE][435] ([i915#13520]) -> [PASS][436] [435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-6/igt@perf_pmu@rc6-suspend.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-7/igt@perf_pmu@rc6-suspend.html #### Warnings #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-rkl: [SKIP][437] ([i915#8411]) -> [SKIP][438] ([i915#14544] / [i915#8411]) [437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-3/igt@api_intel_bb@blit-reloc-keep-cache.html [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: [SKIP][439] ([i915#14544] / [i915#9323]) -> [SKIP][440] ([i915#9323]) [439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy-new-ctx.html [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-3/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_close_race@multigpu-basic-threads: - shard-rkl: [SKIP][441] ([i915#14544] / [i915#7697]) -> [SKIP][442] ([i915#7697]) [441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-6/igt@gem_close_race@multigpu-basic-threads.html [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-2/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-set-pat: - shard-rkl: [SKIP][443] ([i915#8562]) -> [SKIP][444] ([i915#14544] / [i915#8562]) [443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-4/igt@gem_create@create-ext-set-pat.html [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_sseu@invalid-args: - shard-rkl: [SKIP][445] ([i915#280]) -> [SKIP][446] ([i915#14544] / [i915#280]) [445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-2/igt@gem_ctx_sseu@invalid-args.html [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@gem_ctx_sseu@invalid-args.html * igt@gem_exec_balancer@parallel-dmabuf-import-out-fence: - shard-rkl: [SKIP][447] ([i915#4525]) -> [SKIP][448] ([i915#14544] / [i915#4525]) [447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-8/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html * igt@gem_exec_balancer@parallel-ordering: - shard-rkl: [SKIP][449] ([i915#14544] / [i915#4525]) -> [SKIP][450] ([i915#4525]) +1 other test skip [449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-6/igt@gem_exec_balancer@parallel-ordering.html [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-3/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: [SKIP][451] ([i915#3281]) -> [SKIP][452] ([i915#14544] / [i915#3281]) +5 other tests skip [451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_exec_reloc@basic-write-read: - shard-rkl: [SKIP][453] ([i915#14544] / [i915#3281]) -> [SKIP][454] ([i915#3281]) +5 other tests skip [453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-6/igt@gem_exec_reloc@basic-write-read.html [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-4/igt@gem_exec_reloc@basic-write-read.html * igt@gem_lmem_swapping@random-engines: - shard-rkl: [SKIP][455] ([i915#14544] / [i915#4613]) -> [SKIP][456] ([i915#4613]) [455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-6/igt@gem_lmem_swapping@random-engines.html [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-3/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@verify-ccs: - shard-rkl: [SKIP][457] ([i915#4613]) -> [SKIP][458] ([i915#14544] / [i915#4613]) +2 other tests skip [457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-8/igt@gem_lmem_swapping@verify-ccs.html [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-rkl: [SKIP][459] ([i915#14544] / [i915#3282]) -> [SKIP][460] ([i915#3282]) +4 other tests skip [459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-8/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_readwrite@beyond-eob: - shard-rkl: [SKIP][461] ([i915#3282]) -> [SKIP][462] ([i915#14544] / [i915#3282]) +2 other tests skip [461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-2/igt@gem_readwrite@beyond-eob.html [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@gem_readwrite@beyond-eob.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-rkl: [SKIP][463] ([i915#14544] / [i915#8411]) -> [SKIP][464] ([i915#8411]) +1 other test skip [463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-6/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-8/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_userptr_blits@dmabuf-sync: - shard-rkl: [SKIP][465] ([i915#14544] / [i915#3297] / [i915#3323]) -> [SKIP][466] ([i915#3297] / [i915#3323]) [465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-6/igt@gem_userptr_blits@dmabuf-sync.html [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-7/igt@gem_userptr_blits@dmabuf-sync.html * igt@gen9_exec_parse@bb-start-far: - shard-rkl: [SKIP][467] ([i915#14544] / [i915#2527]) -> [SKIP][468] ([i915#2527]) +1 other test skip [467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-6/igt@gen9_exec_parse@bb-start-far.html [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-2/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@bb-start-out: - shard-rkl: [SKIP][469] ([i915#2527]) -> [SKIP][470] ([i915#14544] / [i915#2527]) +1 other test skip [469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-4/igt@gen9_exec_parse@bb-start-out.html [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@gen9_exec_parse@bb-start-out.html * igt@i915_module_load@fault-injection: - shard-mtlp: [ABORT][471] ([i915#15342] / [i915#15481] / [i915#15895]) -> [ABORT][472] ([i915#15342] / [i915#15481]) [471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-mtlp-5/igt@i915_module_load@fault-injection.html [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-5/igt@i915_module_load@fault-injection.html * igt@i915_module_load@fault-injection@__uc_init: - shard-rkl: [SKIP][473] ([i915#14544] / [i915#15479]) -> [SKIP][474] ([i915#15479]) +4 other tests skip [473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-6/igt@i915_module_load@fault-injection@__uc_init.html [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-2/igt@i915_module_load@fault-injection@__uc_init.html * igt@i915_pm_freq_api@freq-basic-api: - shard-rkl: [SKIP][475] ([i915#14544] / [i915#8399]) -> [SKIP][476] ([i915#8399]) [475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-6/igt@i915_pm_freq_api@freq-basic-api.html [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-8/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_rps@thresholds-park: - shard-mtlp: [SKIP][477] ([i915#11681]) -> [SKIP][478] ([i915#2575]) [477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-mtlp-3/igt@i915_pm_rps@thresholds-park.html [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-2/igt@i915_pm_rps@thresholds-park.html * igt@intel_hwmon@hwmon-read: - shard-rkl: [SKIP][479] ([i915#7707]) -> [SKIP][480] ([i915#14544] / [i915#7707]) [479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-7/igt@intel_hwmon@hwmon-read.html [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@intel_hwmon@hwmon-read.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-rkl: [SKIP][481] ([i915#1769] / [i915#3555]) -> [SKIP][482] ([i915#14544] / [i915#1769] / [i915#3555]) [481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - shard-rkl: [SKIP][483] ([i915#5286]) -> [SKIP][484] ([i915#14544] / [i915#5286]) +1 other test skip [483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-3/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-rkl: [SKIP][485] ([i915#14544] / [i915#5286]) -> [SKIP][486] ([i915#5286]) +1 other test skip [485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-2/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [FAIL][487] ([i915#15733] / [i915#5138]) -> [FAIL][488] ([i915#15871]) [487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip: - shard-rkl: [SKIP][489] ([i915#14544] / [i915#3828]) -> [SKIP][490] ([i915#3828]) +2 other tests skip [489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-2/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-rkl: [SKIP][491] ([i915#3638]) -> [SKIP][492] ([i915#14544] / [i915#3638]) +1 other test skip [491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-4/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html [492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-rkl: [SKIP][493] ([i915#14544] / [i915#3638]) -> [SKIP][494] ([i915#3638]) +1 other test skip [493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-6/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html [494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-2/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc: - shard-rkl: [SKIP][495] ([i915#14098] / [i915#6095]) -> [SKIP][496] ([i915#14098] / [i915#14544] / [i915#6095]) +4 other tests skip [495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-8/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html [496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][497] ([i915#6095]) -> [SKIP][498] ([i915#14544] / [i915#6095]) +1 other test skip [497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-3/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html [498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][499] ([i915#14544] / [i915#6095]) -> [SKIP][500] ([i915#6095]) +3 other tests skip [499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html [500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2: - shard-rkl: [SKIP][501] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][502] ([i915#14098] / [i915#6095]) +7 other tests skip [501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html [502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-rkl: [SKIP][503] ([i915#12313]) -> [SKIP][504] ([i915#12313] / [i915#14544]) +1 other test skip [503]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-7/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html [504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_chamelium_hpd@dp-hpd-after-suspend: - shard-rkl: [SKIP][505] ([i915#11151] / [i915#7828]) -> [SKIP][506] ([i915#11151] / [i915#14544] / [i915#7828]) +2 other tests skip [505]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-5/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html [506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: [SKIP][507] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][508] ([i915#11151] / [i915#7828]) +6 other tests skip [507]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-fast.html [508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-4/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14: - shard-rkl: [SKIP][509] ([i915#15330]) -> [SKIP][510] ([i915#14544] / [i915#15330]) [509]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-8/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html [510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-type-1: - shard-rkl: [SKIP][511] ([i915#15330] / [i915#3116]) -> [SKIP][512] ([i915#14544] / [i915#15330] / [i915#3116]) [511]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-3/igt@kms_content_protection@dp-mst-type-1.html [512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy-hdcp14: - shard-dg2: [FAIL][513] ([i915#7173]) -> [SKIP][514] ([i915#15865]) [513]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-dg2-10/igt@kms_content_protection@legacy-hdcp14.html [514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-6/igt@kms_content_protection@legacy-hdcp14.html * igt@kms_content_protection@mei-interface: - shard-rkl: [SKIP][515] ([i915#14544] / [i915#15865]) -> [SKIP][516] ([i915#15865]) +2 other tests skip [515]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-6/igt@kms_content_protection@mei-interface.html [516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-8/igt@kms_content_protection@mei-interface.html - shard-dg1: [SKIP][517] ([i915#15865]) -> [SKIP][518] ([i915#9433]) [517]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-dg1-19/igt@kms_content_protection@mei-interface.html [518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-12/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@type1: - shard-rkl: [SKIP][519] ([i915#15865]) -> [SKIP][520] ([i915#14544] / [i915#15865]) [519]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-4/igt@kms_content_protection@type1.html [520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@kms_content_protection@type1.html - shard-dg1: [SKIP][521] ([i915#15865]) -> [SKIP][522] ([i915#15865] / [i915#4423]) [521]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-dg1-14/igt@kms_content_protection@type1.html [522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-18/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2: [SKIP][523] ([i915#13049] / [i915#3359]) -> [SKIP][524] ([i915#13049]) [523]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-dg2-10/igt@kms_cursor_crc@cursor-onscreen-512x512.html [524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-8/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-rkl: [SKIP][525] ([i915#14544] / [i915#3555]) -> [SKIP][526] ([i915#3555]) +2 other tests skip [525]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-max-size.html [526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: [SKIP][527] ([i915#14544]) -> [SKIP][528] +51 other tests skip [527]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html [528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: [SKIP][529] ([i915#9067]) -> [SKIP][530] ([i915#14544] / [i915#9067]) [529]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-2/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html [530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-rkl: [SKIP][531] ([i915#4103]) -> [SKIP][532] ([i915#14544] / [i915#4103]) [531]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html [532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-rkl: [SKIP][533] ([i915#14544] / [i915#9723]) -> [SKIP][534] ([i915#9723]) [533]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html [534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dp_link_training@uhbr-mst: - shard-rkl: [SKIP][535] ([i915#13748] / [i915#14544]) -> [SKIP][536] ([i915#13748]) [535]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-6/igt@kms_dp_link_training@uhbr-mst.html [536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-5/igt@kms_dp_link_training@uhbr-mst.html * igt@kms_dsc@dsc-fractional-bpp-ultrajoiner: - shard-rkl: [SKIP][537] ([i915#14544] / [i915#16361]) -> [SKIP][538] ([i915#16361]) [537]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp-ultrajoiner.html [538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-8/igt@kms_dsc@dsc-fractional-bpp-ultrajoiner.html * igt@kms_dsc@dsc-with-formats-bigjoiner: - shard-rkl: [SKIP][539] ([i915#16361]) -> [SKIP][540] ([i915#14544] / [i915#16361]) +1 other test skip [539]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-7/igt@kms_dsc@dsc-with-formats-bigjoiner.html [540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@kms_dsc@dsc-with-formats-bigjoiner.html * igt@kms_feature_discovery@dp-mst: - shard-rkl: [SKIP][541] ([i915#14544] / [i915#9337]) -> [SKIP][542] ([i915#9337]) [541]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-6/igt@kms_feature_discovery@dp-mst.html [542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-8/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip@2x-busy-flip: - shard-rkl: [SKIP][543] ([i915#9934]) -> [SKIP][544] ([i915#14544] / [i915#9934]) +1 other test skip [543]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-8/igt@kms_flip@2x-busy-flip.html [544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@kms_flip@2x-busy-flip.html * igt@kms_flip@2x-flip-vs-dpms-on-nop: - shard-rkl: [SKIP][545] ([i915#14544] / [i915#9934]) -> [SKIP][546] ([i915#9934]) +1 other test skip [545]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms-on-nop.html [546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-2/igt@kms_flip@2x-flip-vs-dpms-on-nop.html * igt@kms_flip@2x-flip-vs-suspend: - shard-glk: [INCOMPLETE][547] ([i915#12314] / [i915#12745] / [i915#4839]) -> [INCOMPLETE][548] ([i915#12745] / [i915#4839] / [i915#6113]) [547]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-glk8/igt@kms_flip@2x-flip-vs-suspend.html [548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-glk3/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2: - shard-glk: [INCOMPLETE][549] ([i915#12314] / [i915#12745]) -> [INCOMPLETE][550] ([i915#12745]) [549]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-glk8/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2.html [550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-glk3/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-rkl: [SKIP][551] ([i915#14544] / [i915#15643]) -> [SKIP][552] ([i915#15643]) +1 other test skip [551]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html [552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-rkl: [SKIP][553] ([i915#15643]) -> [SKIP][554] ([i915#14544] / [i915#15643]) [553]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html [554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-draw-pwrite: - shard-rkl: [SKIP][555] -> [SKIP][556] ([i915#14544]) +39 other tests skip [555]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-4/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-draw-pwrite.html [556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbchdr-tiling-4: - shard-rkl: [SKIP][557] ([i915#14544] / [i915#5439]) -> [SKIP][558] ([i915#5439]) [557]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-tiling-4.html [558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-7/igt@kms_frontbuffer_tracking@fbchdr-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt: - shard-dg2: [SKIP][559] ([i915#10433] / [i915#15102]) -> [SKIP][560] ([i915#15102]) +1 other test skip [559]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html [560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: [SKIP][561] ([i915#15102]) -> [SKIP][562] ([i915#10433] / [i915#15102]) [561]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html [562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-rkl: [SKIP][563] ([i915#14544] / [i915#1825]) -> [SKIP][564] ([i915#1825]) [563]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc.html [564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen: - shard-mtlp: [SKIP][565] ([i915#15991] / [i915#1825]) -> [SKIP][566] ([i915#2575]) +1 other test skip [565]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html [566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-blt: - shard-rkl: [SKIP][567] ([i915#15102]) -> [SKIP][568] ([i915#14544] / [i915#15102]) +14 other tests skip [567]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-blt.html [568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-indfb-draw-mmap-cpu: - shard-dg1: [SKIP][569] -> [SKIP][570] ([i915#4423]) +1 other test skip [569]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-dg1-12/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html [570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-19/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-rte: - shard-rkl: [SKIP][571] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][572] ([i915#15102] / [i915#3023]) +9 other tests skip [571]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-rte.html [572]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-rte.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][573] ([i915#1825]) -> [SKIP][574] ([i915#14544] / [i915#1825]) [573]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt.html [574]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt: - shard-rkl: [SKIP][575] ([i915#15102] / [i915#3023]) -> [SKIP][576] ([i915#14544] / [i915#15102] / [i915#3023]) +5 other tests skip [575]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html [576]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][577] ([i915#14544] / [i915#15102]) -> [SKIP][578] ([i915#15102]) +16 other tests skip [577]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-mmap-gtt.html [578]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-7/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psrhdr-indfb-scaledprimary: - shard-dg1: [SKIP][579] ([i915#15102]) -> [SKIP][580] ([i915#15102] / [i915#4423]) [579]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-dg1-14/igt@kms_frontbuffer_tracking@psrhdr-indfb-scaledprimary.html [580]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-18/igt@kms_frontbuffer_tracking@psrhdr-indfb-scaledprimary.html * igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-2-xrgb16161616f: - shard-rkl: [SKIP][581] ([i915#16011]) -> [SKIP][582] ([i915#14544] / [i915#16076]) +2 other tests skip [581]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-3/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-2-xrgb16161616f.html [582]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-2-xrgb16161616f.html * igt@kms_hdr@static-toggle-suspend: - shard-rkl: [SKIP][583] ([i915#16011] / [i915#3555] / [i915#8228]) -> [ABORT][584] ([i915#15132]) [583]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-2/igt@kms_hdr@static-toggle-suspend.html [584]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-1/igt@kms_hdr@static-toggle-suspend.html * igt@kms_panel_fitting@legacy: - shard-rkl: [SKIP][585] ([i915#14544] / [i915#6301]) -> [SKIP][586] ([i915#6301]) [585]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-6/igt@kms_panel_fitting@legacy.html [586]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-8/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_stress@stress-xrgb8888-4tiled: - shard-rkl: [SKIP][587] ([i915#14712]) -> [SKIP][588] ([i915#14544] / [i915#14712]) [587]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-7/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html [588]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping: - shard-rkl: [SKIP][589] ([i915#14544] / [i915#15709]) -> [SKIP][590] ([i915#15709]) +1 other test skip [589]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html [590]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier: - shard-rkl: [SKIP][591] ([i915#15709]) -> [SKIP][592] ([i915#14544] / [i915#15709]) [591]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier.html [592]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier.html * igt@kms_plane_multiple@2x-tiling-y: - shard-rkl: [SKIP][593] ([i915#13958]) -> [SKIP][594] ([i915#13958] / [i915#14544]) [593]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-2/igt@kms_plane_multiple@2x-tiling-y.html [594]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: [SKIP][595] ([i915#14259] / [i915#14544]) -> [SKIP][596] ([i915#14259]) [595]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-6/igt@kms_plane_multiple@tiling-yf.html [596]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-2/igt@kms_plane_multiple@tiling-yf.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][597] ([i915#3828]) -> [SKIP][598] ([i915#9340]) [597]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-5/igt@kms_pm_lpsp@kms-lpsp.html [598]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html - shard-dg1: [SKIP][599] ([i915#3828]) -> [SKIP][600] ([i915#9340]) [599]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-dg1-15/igt@kms_pm_lpsp@kms-lpsp.html [600]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-16/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-mtlp: [SKIP][601] ([i915#15073]) -> [FAIL][602] ([i915#15871]) [601]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-mtlp-3/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [602]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-mtlp-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [SKIP][603] ([i915#14544] / [i915#15073]) -> [SKIP][604] ([i915#15073]) [603]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp.html [604]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_prime@basic-crc-hybrid: - shard-rkl: [SKIP][605] ([i915#6524]) -> [SKIP][606] ([i915#14544] / [i915#6524]) [605]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-2/igt@kms_prime@basic-crc-hybrid.html [606]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@d3hot: - shard-rkl: [SKIP][607] ([i915#14544] / [i915#6524]) -> [SKIP][608] ([i915#6524]) [607]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-6/igt@kms_prime@d3hot.html [608]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-5/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area: - shard-rkl: [SKIP][609] ([i915#11520]) -> [SKIP][610] ([i915#11520] / [i915#14544]) +3 other tests skip [609]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-5/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html [610]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-rkl: [SKIP][611] ([i915#11520] / [i915#14544]) -> [SKIP][612] ([i915#11520]) +3 other tests skip [611]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html [612]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-4/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr@fbc-psr-primary-page-flip: - shard-rkl: [SKIP][613] ([i915#1072] / [i915#9732]) -> [SKIP][614] ([i915#1072] / [i915#14544] / [i915#9732]) +9 other tests skip [613]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-3/igt@kms_psr@fbc-psr-primary-page-flip.html [614]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@kms_psr@fbc-psr-primary-page-flip.html * igt@kms_psr@fbc-psr-primary-render: - shard-rkl: [SKIP][615] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][616] ([i915#1072] / [i915#9732]) +5 other tests skip [615]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-6/igt@kms_psr@fbc-psr-primary-render.html [616]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-8/igt@kms_psr@fbc-psr-primary-render.html * igt@kms_psr@psr2-cursor-plane-move: - shard-dg1: [SKIP][617] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][618] ([i915#1072] / [i915#9732]) [617]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-dg1-18/igt@kms_psr@psr2-cursor-plane-move.html [618]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-dg1-18/igt@kms_psr@psr2-cursor-plane-move.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: [SKIP][619] ([i915#14544] / [i915#15949]) -> [SKIP][620] ([i915#15949]) [619]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [620]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-rkl: [SKIP][621] ([i915#14544] / [i915#5289]) -> [SKIP][622] ([i915#5289]) [621]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html [622]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-rkl: [SKIP][623] ([i915#5289]) -> [SKIP][624] ([i915#14544] / [i915#5289]) [623]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html [624]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_setmode@basic-clone-single-crtc: - shard-rkl: [SKIP][625] ([i915#3555]) -> [SKIP][626] ([i915#14544] / [i915#3555]) +1 other test skip [625]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-5/igt@kms_setmode@basic-clone-single-crtc.html [626]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_vrr@lobf: - shard-rkl: [SKIP][627] ([i915#11920] / [i915#14544]) -> [SKIP][628] ([i915#11920]) [627]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-6/igt@kms_vrr@lobf.html [628]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-4/igt@kms_vrr@lobf.html * igt@perf@mi-rpc: - shard-rkl: [SKIP][629] ([i915#14544] / [i915#2434]) -> [SKIP][630] ([i915#2434]) [629]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-6/igt@perf@mi-rpc.html [630]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-8/igt@perf@mi-rpc.html * igt@perf_pmu@module-unload: - shard-tglu: [INCOMPLETE][631] ([i915#13520]) -> [ABORT][632] ([i915#15778]) [631]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-tglu-4/igt@perf_pmu@module-unload.html [632]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-tglu-5/igt@perf_pmu@module-unload.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-rkl: [SKIP][633] ([i915#9917]) -> [SKIP][634] ([i915#14544] / [i915#9917]) [633]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18661/shard-rkl-8/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html [634]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/shard-rkl-6/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [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#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756 [i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964 [i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026 [i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027 [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#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409 [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476 [i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691 [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545 [i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694 [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712 [i915#14888]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14888 [i915#14995]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14995 [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#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131 [i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132 [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330 [i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342 [i915#15391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15391 [i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403 [i915#15420]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15420 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459 [i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479 [i915#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481 [i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492 [i915#15542]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15542 [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672 [i915#15678]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678 [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709 [i915#15718]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15718 [i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733 [i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739 [i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778 [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865 [i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867 [i915#15871]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15871 [i915#15895]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15895 [i915#15931]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931 [i915#15948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948 [i915#15949]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15949 [i915#15989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989 [i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990 [i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991 [i915#16011]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16011 [i915#16012]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16012 [i915#16021]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16021 [i915#16056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16056 [i915#16066]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16066 [i915#16076]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16076 [i915#16079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16079 [i915#16080]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16080 [i915#16084]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16084 [i915#16112]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16112 [i915#16166]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16166 [i915#16182]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16182 [i915#16184]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16184 [i915#16202]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16202 [i915#16276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16276 [i915#16348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16348 [i915#16361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361 [i915#16386]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16386 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [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#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [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#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [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#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [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#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885 [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [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#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113 [i915#6188]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6188 [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230 [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6892]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6892 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387 [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#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#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#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810 [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433 [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#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808 [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_8958 -> IGTPW_15347 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_18661: 4fdfaadba04dc0f2f2490dbc91922caa290463a5 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15347: 15347 IGT_8958: 8958 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15347/index.html [-- Attachment #2: Type: text/html, Size: 213953 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2026-06-15 9:20 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-06-11 9:43 [PATCH i-g-t] tests/xe_debugfs: Add debugfs entry read/write validation in root-dir Sobin Thomas 2026-06-11 11:43 ` ✓ Xe.CI.BAT: success for tests/xe_debugfs: Add debugfs entry read/write validation in root-dir (rev2) Patchwork 2026-06-11 11:51 ` ✓ i915.CI.BAT: " Patchwork 2026-06-11 13:14 ` [PATCH i-g-t] tests/xe_debugfs: Add debugfs entry read/write validation in root-dir Kamil Konieczny 2026-06-15 4:17 ` Thomas, Sobin 2026-06-15 9:20 ` Kamil Konieczny 2026-06-11 22:43 ` ✓ Xe.CI.FULL: success for tests/xe_debugfs: Add debugfs entry read/write validation in root-dir (rev2) Patchwork 2026-06-12 9:16 ` ✗ i915.CI.Full: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox