* [PATCH i-g-t 0/6] tests/kms_pipe_crc_basic: add mst suspend-resume test
@ 2026-02-02 8:45 Kunal Joshi
2026-02-02 8:45 ` [PATCH i-g-t 1/6] tests/intel/kms_mst_helper: Add helper to check for MST outputs Kunal Joshi
` (9 more replies)
0 siblings, 10 replies; 12+ messages in thread
From: Kunal Joshi @ 2026-02-02 8:45 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
This patch series introduces MST suspend-resume test to kms_pipe_crc_basic.
While at it add framework for general resource cleanup infrastructure.
The cleanup framework addresses the problem of leaked resources (framebuffers,
pipe CRCs, file descriptors) when tests exit early via igt_require(), igt_skip(),
or igt_assert() failures. By registering resources with the cleanup framework,
tests can ensure proper cleanup on all exit paths without manual handling.
The MST test validates that CRC values remain stable across suspend/resume cycles
for all possible subsets of MST outputs connected to a single MST hub.
Kunal Joshi (6):
tests/intel/kms_mst_helper: Add helper to check for MST outputs
lib/igt_cleanup: Add general resource cleanup infrastructure
tests/kms_pipe_crc_basic: Use cleanup framework for framebuffers
tests/kms_pipe_crc_basic: Use cleanup framework for pipe CRC
tests/kms_pipe_crc_basic: Use cleanup framework for drm_fd
tests/kms_pipe_crc_basic: Add MST suspend-resume test
lib/igt.h | 1 +
lib/igt_cleanup.c | 492 +++++++++++++++++++++++++++++++++++
lib/igt_cleanup.h | 63 +++++
lib/meson.build | 1 +
tests/intel/kms_mst_helper.c | 19 ++
tests/intel/kms_mst_helper.h | 1 +
tests/kms_pipe_crc_basic.c | 262 ++++++++++++++++++-
tests/meson.build | 3 +
8 files changed, 835 insertions(+), 7 deletions(-)
create mode 100644 lib/igt_cleanup.c
create mode 100644 lib/igt_cleanup.h
--
2.43.0
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH i-g-t 1/6] tests/intel/kms_mst_helper: Add helper to check for MST outputs
2026-02-02 8:45 [PATCH i-g-t 0/6] tests/kms_pipe_crc_basic: add mst suspend-resume test Kunal Joshi
@ 2026-02-02 8:45 ` Kunal Joshi
2026-02-02 8:45 ` [PATCH i-g-t 2/6] lib/igt_cleanup: Add general resource cleanup infrastructure Kunal Joshi
` (8 subsequent siblings)
9 siblings, 0 replies; 12+ messages in thread
From: Kunal Joshi @ 2026-02-02 8:45 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
Add igt_display_has_mst_output() helper function to check if a display
has at least one DP MST output connected. This is useful for tests that
need to verify MST output availability before running.
Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
---
tests/intel/kms_mst_helper.c | 19 +++++++++++++++++++
tests/intel/kms_mst_helper.h | 1 +
2 files changed, 20 insertions(+)
diff --git a/tests/intel/kms_mst_helper.c b/tests/intel/kms_mst_helper.c
index aef74cd31..6b986a45c 100644
--- a/tests/intel/kms_mst_helper.c
+++ b/tests/intel/kms_mst_helper.c
@@ -46,3 +46,22 @@ int igt_find_all_mst_output_in_topology(int drm_fd, igt_display_t *display,
}
return 0;
}
+
+/*
+ * @display: pointer to #igt_display_t structure
+ *
+ * Iterates over all connected outputs and checks if any of them
+ * is a DP MST output.
+ *
+ * Returns: true if at least one MST output is found, false otherwise
+ */
+bool igt_display_has_mst_output(igt_display_t *display)
+{
+ igt_output_t *output;
+
+ for_each_connected_output(display, output) {
+ if (igt_check_output_is_dp_mst(output))
+ return true;
+ }
+ return false;
+}
diff --git a/tests/intel/kms_mst_helper.h b/tests/intel/kms_mst_helper.h
index 7391494ab..0e8ece0a0 100644
--- a/tests/intel/kms_mst_helper.h
+++ b/tests/intel/kms_mst_helper.h
@@ -12,4 +12,5 @@ int igt_find_all_mst_output_in_topology(int drm_fd, igt_display_t *display,
igt_output_t *output,
igt_output_t *mst_outputs[],
int *num_mst_outputs);
+bool igt_display_has_mst_output(igt_display_t *display);
#endif
--
2.43.0
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH i-g-t 2/6] lib/igt_cleanup: Add general resource cleanup infrastructure
2026-02-02 8:45 [PATCH i-g-t 0/6] tests/kms_pipe_crc_basic: add mst suspend-resume test Kunal Joshi
2026-02-02 8:45 ` [PATCH i-g-t 1/6] tests/intel/kms_mst_helper: Add helper to check for MST outputs Kunal Joshi
@ 2026-02-02 8:45 ` Kunal Joshi
2026-02-02 8:45 ` [PATCH i-g-t 3/6] tests/kms_pipe_crc_basic: Use cleanup framework for framebuffers Kunal Joshi
` (7 subsequent siblings)
9 siblings, 0 replies; 12+ messages in thread
From: Kunal Joshi @ 2026-02-02 8:45 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
Add a new library for automatic cleanup of resources on test exit,
including early exits due to failures, skips (igt_require/igt_skip),
or assertion failures (igt_assert).
Features:
- Supports framebuffer cleanup via igt_cleanup_register_fb()
- Supports pipe CRC cleanup via igt_cleanup_register_pipe_crc()
- Validates drm_fd before cleanup to handle closed fds gracefully
This helps prevent resource leaks when tests don't complete normally.
Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
---
lib/igt.h | 1 +
lib/igt_cleanup.c | 492 ++++++++++++++++++++++++++++++++++++++++++++++
lib/igt_cleanup.h | 63 ++++++
lib/meson.build | 1 +
4 files changed, 557 insertions(+)
create mode 100644 lib/igt_cleanup.c
create mode 100644 lib/igt_cleanup.h
diff --git a/lib/igt.h b/lib/igt.h
index 173ca70bf..7955127a0 100644
--- a/lib/igt.h
+++ b/lib/igt.h
@@ -33,6 +33,7 @@
#include "igt_draw.h"
#include "igt_dummyload.h"
#include "igt_fb.h"
+#include "igt_cleanup.h"
#include "igt_frame.h"
#include "igt_gt.h"
#include "igt_kms.h"
diff --git a/lib/igt_cleanup.c b/lib/igt_cleanup.c
new file mode 100644
index 000000000..87b483164
--- /dev/null
+++ b/lib/igt_cleanup.c
@@ -0,0 +1,492 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2026 Intel Corporation
+ */
+
+#include "igt.h"
+#include "igt_cleanup.h"
+#include <string.h>
+#include <errno.h>
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <unistd.h>
+
+/**
+ * SECTION:igt_cleanup
+ * @short_description: IGT resource cleanup infrastructure
+ * @title: Resource Cleanup
+ * @include: igt_cleanup.h
+ *
+ * # Overview
+ *
+ * This library provides automatic cleanup of IGT test resources when tests exit,
+ * including early exits due to failures, skips (igt_require/igt_skip), or
+ * assertion failures (igt_assert). This prevents resource leaks and ensures
+ * proper cleanup even when tests don't complete normally.
+ *
+ * # Motivation
+ *
+ * IGT tests often exit early through igt_require (skipping unsupported
+ * configurations), igt_skip (conditional skips), or igt_assert (test failures).
+ * These early exit paths bypass normal cleanup code in test fixtures, which can
+ * leak resources like framebuffers, pipe CRC objects, or file descriptors.
+ * This framework ensures cleanup happens automatically via exit handlers.
+ *
+ * # Exit Handler Context
+ *
+ * Exit handlers in IGT follow igt_exit_handler_t and run during teardown paths
+ * triggered by normal exit, skips, or failures. This implementation follows the
+ * standard IGT pattern of performing best-effort resource cleanup from those
+ * handlers.
+ *
+ * # Framebuffer Cleanup
+ *
+ * After creating a framebuffer with igt_create_*_fb(), register it for
+ * automatic cleanup:
+ *
+ * |[<!-- language="C" -->
+ * struct igt_fb fb;
+ * igt_create_color_fb(drm_fd, width, height, format, modifier,
+ * r, g, b, &fb);
+ * igt_cleanup_register_fb(drm_fd, &fb);
+ * ]|
+ *
+ * When you manually remove the framebuffer, unregister it to prevent
+ * double cleanup:
+ *
+ * |[<!-- language="C" -->
+ * igt_remove_fb(drm_fd, &fb);
+ * igt_cleanup_unregister_fb(&fb);
+ * ]|
+ *
+ * If the test exits early (due to igt_require, igt_skip, igt_assert, etc.),
+ * the registered framebuffers will be automatically cleaned up.
+ *
+ * # File Descriptor Cleanup
+ *
+ * After opening a DRM file descriptor, register it for automatic cleanup:
+ *
+ * |[<!-- language="C" -->
+ * int drm_fd = drm_open_driver_master(DRIVER_ANY);
+ * igt_cleanup_register_fd(drm_fd);
+ * ]|
+ *
+ * The fd will be automatically closed on test exit, after all other resources
+ * that depend on it (like framebuffers) have been cleaned up.
+ *
+ * # Adding New Resource Types
+ *
+ * To add support for new resource types:
+ * 1. Add a new enum value to igt_cleanup_resource_type
+ * 2. Add a new entry structure if needed
+ * 3. Add register/unregister functions for the resource
+ * 4. Update the cleanup handler to handle the new type
+ */
+
+/*
+ * Maximum number of resources that can be tracked for cleanup.
+ * This needs to accommodate tests that create multiple framebuffers,
+ * pipe CRC objects, and file descriptors across subtests.
+ * Tests creating many resources in loops should clean up incrementally.
+ */
+#define MAX_CLEANUP_RESOURCES 256
+
+/**
+ * struct cleanup_entry:
+ * @type: Type of resource
+ * @drm_fd: DRM file descriptor (for resources that need it)
+ * @resource: Pointer to the resource
+ * @in_use: Whether this entry is active
+ * @dev: Device number from fstat (for fd validation)
+ * @ino: Inode number from fstat (for fd validation)
+ *
+ * Internal structure for tracking resources to cleanup.
+ * For FD resources, we store dev/ino to detect fd reuse after close/reopen.
+ */
+struct cleanup_entry {
+ enum igt_cleanup_resource_type type;
+ int drm_fd;
+ void *resource;
+ bool in_use;
+ dev_t dev;
+ ino_t ino;
+};
+
+static struct cleanup_entry cleanup_registry[MAX_CLEANUP_RESOURCES];
+static bool handler_installed = false;
+
+/*
+ * Helper to check if a file descriptor still refers to the same file.
+ * Returns true if fd is valid, open, and refers to the same device/inode, false otherwise.
+ *
+ * This protects against fd reuse: if the fd was closed and the number was reused
+ * for a different file, we'll detect it by comparing device/inode numbers.
+ */
+static bool fd_matches_identity(int fd, dev_t expected_dev, ino_t expected_ino)
+{
+ struct stat st;
+
+ if (fd < 0)
+ return false;
+
+ /* Check if fd is still open and get current file identity */
+ if (fstat(fd, &st) == -1)
+ return false;
+
+ /* Verify it's the same file (not reused fd) */
+ return st.st_dev == expected_dev && st.st_ino == expected_ino;
+}
+
+/*
+ * Internal cleanup implementation that performs the actual resource cleanup.
+ * This is called both from the exit handler and from explicit cleanup requests.
+ */
+static void cleanup_all_resources_internal(void)
+{
+ /* First pass: cleanup resources that need the fd */
+ for (int i = 0; i < MAX_CLEANUP_RESOURCES; i++) {
+ if (!cleanup_registry[i].in_use)
+ continue;
+
+ /* Skip FD cleanup in first pass */
+ if (cleanup_registry[i].type == IGT_CLEANUP_FD)
+ continue;
+
+ switch (cleanup_registry[i].type) {
+ case IGT_CLEANUP_FB:
+ /*
+ * Check if drm_fd still refers to same file before cleanup.
+ * If fd was closed and potentially reused, skip cleanup to
+ * avoid operating on wrong file descriptor.
+ */
+ if (!fd_matches_identity(cleanup_registry[i].drm_fd,
+ cleanup_registry[i].dev,
+ cleanup_registry[i].ino)) {
+ break;
+ }
+ igt_remove_fb(cleanup_registry[i].drm_fd,
+ (struct igt_fb *)cleanup_registry[i].resource);
+ break;
+ case IGT_CLEANUP_PIPE_CRC:
+ igt_pipe_crc_free((igt_pipe_crc_t *)
+ cleanup_registry[i].resource);
+ break;
+ default:
+ igt_warn("Unknown cleanup resource type: %d\n",
+ cleanup_registry[i].type);
+ break;
+ }
+
+ cleanup_registry[i].in_use = false;
+ }
+
+ /* Second pass: cleanup file descriptors last */
+ for (int i = 0; i < MAX_CLEANUP_RESOURCES; i++) {
+ if (!cleanup_registry[i].in_use)
+ continue;
+
+ if (cleanup_registry[i].type == IGT_CLEANUP_FD) {
+ if (cleanup_registry[i].drm_fd >= 0 &&
+ fd_matches_identity(cleanup_registry[i].drm_fd,
+ cleanup_registry[i].dev,
+ cleanup_registry[i].ino)) {
+ drm_close_driver(cleanup_registry[i].drm_fd);
+ }
+ cleanup_registry[i].in_use = false;
+ }
+ }
+}
+
+static void cleanup_all_resources(int sig)
+{
+ /*
+ * IGT exit handler (igt_exit_handler_t). The sig parameter indicates
+ * exit reason (0 for normal exit, signal number otherwise).
+ */
+ (void)sig; /* Parameter present but unused in this implementation */
+
+ cleanup_all_resources_internal();
+}
+
+static void register_resource(enum igt_cleanup_resource_type type,
+ int drm_fd, void *resource)
+{
+ struct stat st;
+
+ /* Validate inputs based on resource type */
+ if (type == IGT_CLEANUP_FB) {
+ igt_assert_f(drm_fd >= 0,
+ "Invalid drm_fd %d for framebuffer cleanup\n",
+ drm_fd);
+ igt_assert_f(resource, "Cannot register NULL framebuffer\n");
+ } else if (type == IGT_CLEANUP_FD) {
+ igt_assert_f(drm_fd >= 0,
+ "Invalid drm_fd %d for fd cleanup\n",
+ drm_fd);
+ } else if (type == IGT_CLEANUP_PIPE_CRC) {
+ igt_assert_f(resource, "Cannot register NULL pipe_crc\n");
+ }
+
+ /* Check for duplicate registrations */
+ for (int i = 0; i < MAX_CLEANUP_RESOURCES; i++) {
+ if (!cleanup_registry[i].in_use)
+ continue;
+ if (cleanup_registry[i].type != type)
+ continue;
+
+ /* Check for duplicate based on type */
+ if (type == IGT_CLEANUP_FD) {
+ if (cleanup_registry[i].drm_fd == drm_fd) {
+ /* Already registered, silently ignore duplicate */
+ return;
+ }
+ } else {
+ /*
+ * For FB/CRC, the resource pointer uniquely identifies
+ * the allocation. A given struct igt_fb * belongs to a
+ * single fd.
+ */
+ if (cleanup_registry[i].resource == resource) {
+ /* Already registered, silently ignore duplicate */
+ return;
+ }
+ }
+ }
+
+ /* Get fstat data for fd validation (for resources that use fd) */
+ if ((type == IGT_CLEANUP_FB || type == IGT_CLEANUP_FD) && drm_fd >= 0) {
+ igt_assert_f(fstat(drm_fd, &st) == 0,
+ "fstat failed on drm_fd %d: %s\n",
+ drm_fd, strerror(errno));
+ }
+
+ if (!handler_installed) {
+ igt_install_exit_handler(cleanup_all_resources);
+ handler_installed = true;
+ }
+
+ for (int i = 0; i < MAX_CLEANUP_RESOURCES; i++) {
+ if (!cleanup_registry[i].in_use) {
+ cleanup_registry[i].type = type;
+ cleanup_registry[i].drm_fd = drm_fd;
+ cleanup_registry[i].resource = resource;
+ cleanup_registry[i].in_use = true;
+ cleanup_registry[i].dev = 0;
+ cleanup_registry[i].ino = 0;
+ if ((type == IGT_CLEANUP_FB || type == IGT_CLEANUP_FD) &&
+ drm_fd >= 0) {
+ cleanup_registry[i].dev = st.st_dev;
+ cleanup_registry[i].ino = st.st_ino;
+ }
+ return;
+ }
+ }
+
+ if (type == IGT_CLEANUP_FD) {
+ igt_assert_f(false,
+ "Cleanup registry full (MAX_CLEANUP_RESOURCES=%d)! Cannot register drm_fd %d.\n"
+ "Increase MAX_CLEANUP_RESOURCES or fix resource leaks.\n",
+ MAX_CLEANUP_RESOURCES, drm_fd);
+ } else {
+ igt_assert_f(false,
+ "Cleanup registry full (MAX_CLEANUP_RESOURCES=%d)! Cannot register resource %p (type %d).\n"
+ "Increase MAX_CLEANUP_RESOURCES or fix resource leaks.\n",
+ MAX_CLEANUP_RESOURCES, resource, type);
+ }
+}
+
+static void unregister_resource(void *resource)
+{
+ for (int i = 0; i < MAX_CLEANUP_RESOURCES; i++) {
+ if (cleanup_registry[i].in_use &&
+ cleanup_registry[i].resource == resource) {
+ cleanup_registry[i].in_use = false;
+ return;
+ }
+ }
+}
+
+/**
+ * igt_cleanup_register_fb:
+ * @drm_fd: DRM file descriptor
+ * @fb: Framebuffer to register for cleanup
+ *
+ * Registers a framebuffer for automatic cleanup on test exit. If the test
+ * exits early (due to igt_require, igt_skip, igt_assert, or other reasons),
+ * the framebuffer will be automatically removed.
+ *
+ * The exit handler is automatically installed on first use.
+ *
+ * Example:
+ * |[<!-- language="C" -->
+ * struct igt_fb fb;
+ * igt_create_color_fb(drm_fd, 1920, 1080, DRM_FORMAT_XRGB8888,
+ * DRM_FORMAT_MOD_LINEAR, 1.0, 1.0, 1.0, &fb);
+ * igt_cleanup_register_fb(drm_fd, &fb);
+ * ]|
+ */
+void igt_cleanup_register_fb(int drm_fd, struct igt_fb *fb)
+{
+ register_resource(IGT_CLEANUP_FB, drm_fd, fb);
+}
+
+/**
+ * igt_cleanup_unregister_fb:
+ * @fb: Framebuffer to unregister
+ *
+ * Unregisters a framebuffer from automatic cleanup. Call this after manually
+ * removing a framebuffer with igt_remove_fb() to prevent double cleanup.
+ *
+ * Example:
+ * |[<!-- language="C" -->
+ * igt_remove_fb(drm_fd, &fb);
+ * igt_cleanup_unregister_fb(&fb);
+ * ]|
+ */
+void igt_cleanup_unregister_fb(struct igt_fb *fb)
+{
+ unregister_resource(fb);
+}
+
+/**
+ * igt_cleanup_register_pipe_crc:
+ * @pipe_crc: Pipe CRC object to register for cleanup
+ *
+ * Registers a pipe CRC object for automatic cleanup on test exit. If the test
+ * exits early (due to igt_require, igt_skip, igt_assert, or other reasons),
+ * the pipe CRC will be automatically freed.
+ *
+ * Example:
+ * |[<!-- language="C" -->
+ * igt_pipe_crc_t *pipe_crc;
+ * pipe_crc = igt_pipe_crc_new(fd, pipe, IGT_PIPE_CRC_SOURCE_AUTO);
+ * igt_cleanup_register_pipe_crc(pipe_crc);
+ * ]|
+ */
+void igt_cleanup_register_pipe_crc(igt_pipe_crc_t *pipe_crc)
+{
+ register_resource(IGT_CLEANUP_PIPE_CRC, 0, pipe_crc);
+}
+
+/**
+ * igt_cleanup_unregister_pipe_crc:
+ * @pipe_crc: Pipe CRC object to unregister
+ *
+ * Unregisters a pipe CRC object from automatic cleanup. Call this after manually
+ * freeing the pipe CRC with igt_pipe_crc_free() to prevent double cleanup.
+ *
+ * Example:
+ * |[<!-- language="C" -->
+ * igt_pipe_crc_free(pipe_crc);
+ * igt_cleanup_unregister_pipe_crc(pipe_crc);
+ * ]|
+ */
+void igt_cleanup_unregister_pipe_crc(igt_pipe_crc_t *pipe_crc)
+{
+ unregister_resource(pipe_crc);
+}
+
+/**
+ * igt_cleanup_register_fd:
+ * @drm_fd: DRM file descriptor to register for cleanup
+ *
+ * Registers a DRM file descriptor for automatic cleanup on test exit.
+ * The fd will be closed after all other resources (FBs, pipe CRCs, etc.)
+ * that depend on it have been cleaned up.
+ *
+ * This ensures proper cleanup order: resources that need the fd are cleaned
+ * up first, then the fd is closed.
+ *
+ * Example:
+ * |[<!-- language="C" -->
+ * int drm_fd = drm_open_driver_master(DRIVER_ANY);
+ * igt_cleanup_register_fd(drm_fd);
+ * // ... use drm_fd ...
+ * // fd will be automatically closed on exit
+ * ]|
+ */
+void igt_cleanup_register_fd(int drm_fd)
+{
+ register_resource(IGT_CLEANUP_FD, drm_fd, NULL);
+}
+
+/**
+ * igt_cleanup_unregister_fd:
+ * @drm_fd: DRM file descriptor to unregister
+ *
+ * Unregisters a DRM file descriptor from automatic cleanup.
+ * Call this after manually closing the fd to prevent double cleanup.
+ *
+ * Example:
+ * |[<!-- language="C" -->
+ * drm_close_driver(drm_fd);
+ * igt_cleanup_unregister_fd(drm_fd);
+ * ]|
+ */
+void igt_cleanup_unregister_fd(int drm_fd)
+{
+ for (int i = 0; i < MAX_CLEANUP_RESOURCES; i++) {
+ if (cleanup_registry[i].in_use &&
+ cleanup_registry[i].type == IGT_CLEANUP_FD &&
+ cleanup_registry[i].drm_fd == drm_fd) {
+ cleanup_registry[i].in_use = false;
+ return;
+ }
+ }
+}
+
+/**
+ * igt_cleanup_forget_all:
+ *
+ * Clears all registered resources from the cleanup registry without
+ * cleaning them up. This is DANGEROUS and will leak resources if they
+ * have not been manually cleaned up first.
+ *
+ * Use this only when you need to reset the registry state at the start
+ * of a new test or subtest where you have already manually cleaned up
+ * all resources and want a clean slate.
+ *
+ * WARNING: This does NOT clean up the resources themselves, it only
+ * forgets about them. The resources will leak if not cleaned up manually
+ * before calling this function.
+ *
+ * Note: The exit handler remains installed even after forgetting all resources.
+ */
+void igt_cleanup_forget_all(void)
+{
+ memset(cleanup_registry, 0, sizeof(cleanup_registry));
+}
+
+/**
+ * igt_cleanup_run:
+ *
+ * Explicitly runs cleanup on all registered resources and clears the registry.
+ * Unlike the automatic cleanup at exit, this can be called at any point during
+ * test execution to clean up resources (e.g., at end of subtests).
+ *
+ * This performs the same cleanup as the exit handler: resources are cleaned up
+ * in proper order (FBs/CRCs first, then file descriptors), and the registry
+ * is cleared afterward.
+ *
+ * Useful for:
+ * - Cleaning up between subtests without process exit
+ * - Testing the cleanup framework itself
+ * - Freeing resources before moving to next test phase
+ *
+ * Note: This cleans up ALL registered resources. Only call between subtests
+ * if you have no remaining registered resources you intend to keep.
+ *
+ * Example:
+ * |[<!-- language="C" -->
+ * // Run subtest with automatic cleanup
+ * igt_subtest("test1") {
+ * // ... create and register resources ...
+ * }
+ * // Explicitly clean up before next subtest
+ * igt_cleanup_run();
+ * ]|
+ */
+void igt_cleanup_run(void)
+{
+ cleanup_all_resources_internal();
+}
diff --git a/lib/igt_cleanup.h b/lib/igt_cleanup.h
new file mode 100644
index 000000000..d71880ce8
--- /dev/null
+++ b/lib/igt_cleanup.h
@@ -0,0 +1,63 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2026 Intel Corporation
+ */
+
+#ifndef IGT_CLEANUP_H
+#define IGT_CLEANUP_H
+
+#include "igt_fb.h"
+#include "igt_pipe_crc.h"
+
+/**
+ * SECTION:igt_cleanup
+ * @short_description: IGT resource cleanup infrastructure
+ * @title: Resource Cleanup
+ * @include: igt_cleanup.h
+ *
+ * This library provides infrastructure for automatic cleanup of IGT resources
+ * on test exit, including early exits due to failures, skips (igt_require/
+ * igt_skip), or assertion failures (igt_assert). This prevents resource leaks
+ * when tests exit early through these mechanisms, which bypass normal cleanup
+ * paths in test fixtures.
+ *
+ * Without this framework, resources like framebuffers or pipe CRCs can be
+ * leaked when tests exit early, leaving lingering objects that can affect
+ * subsequent subtests or consume system resources.
+ *
+ * Supported resource types:
+ * - Framebuffers (struct igt_fb)
+ * - Pipe CRC (igt_pipe_crc_t)
+ * - DRM file descriptors (closed last, after dependent resources)
+ */
+
+/**
+ * igt_cleanup_resource_type:
+ * @IGT_CLEANUP_FB: Framebuffer resource
+ * @IGT_CLEANUP_PIPE_CRC: Pipe CRC resource
+ * @IGT_CLEANUP_FD: DRM file descriptor
+ *
+ * Types of resources that can be registered for cleanup.
+ * Note: FD cleanup happens last, after all other resources.
+ */
+enum igt_cleanup_resource_type {
+ IGT_CLEANUP_FB,
+ IGT_CLEANUP_PIPE_CRC,
+ IGT_CLEANUP_FD,
+ /* Add more types here as needed:
+ * IGT_CLEANUP_OUTPUT,
+ * IGT_CLEANUP_BO,
+ * etc.
+ */
+};
+
+void igt_cleanup_register_fb(int drm_fd, struct igt_fb *fb);
+void igt_cleanup_unregister_fb(struct igt_fb *fb);
+void igt_cleanup_register_pipe_crc(igt_pipe_crc_t *pipe_crc);
+void igt_cleanup_unregister_pipe_crc(igt_pipe_crc_t *pipe_crc);
+void igt_cleanup_register_fd(int drm_fd);
+void igt_cleanup_unregister_fd(int drm_fd);
+void igt_cleanup_forget_all(void);
+void igt_cleanup_run(void);
+
+#endif /* IGT_CLEANUP_H */
diff --git a/lib/meson.build b/lib/meson.build
index d851029e0..46145f3d5 100644
--- a/lib/meson.build
+++ b/lib/meson.build
@@ -94,6 +94,7 @@ lib_sources = [
'intel_wa.c',
'igt_kms.c',
'igt_fb.c',
+ 'igt_cleanup.c',
'igt_core.c',
'igt_dir.c',
'igt_draw.c',
--
2.43.0
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH i-g-t 3/6] tests/kms_pipe_crc_basic: Use cleanup framework for framebuffers
2026-02-02 8:45 [PATCH i-g-t 0/6] tests/kms_pipe_crc_basic: add mst suspend-resume test Kunal Joshi
2026-02-02 8:45 ` [PATCH i-g-t 1/6] tests/intel/kms_mst_helper: Add helper to check for MST outputs Kunal Joshi
2026-02-02 8:45 ` [PATCH i-g-t 2/6] lib/igt_cleanup: Add general resource cleanup infrastructure Kunal Joshi
@ 2026-02-02 8:45 ` Kunal Joshi
2026-02-02 8:45 ` [PATCH i-g-t 4/6] tests/kms_pipe_crc_basic: Use cleanup framework for pipe CRC Kunal Joshi
` (6 subsequent siblings)
9 siblings, 0 replies; 12+ messages in thread
From: Kunal Joshi @ 2026-02-02 8:45 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
Register framebuffers with igt_cleanup_register_fb() after creation.
The exit handler will automatically clean up registered framebuffers
on test exit, including early exits from failures, skips, or assertions.
Remove manual igt_remove_fb() calls at end of test functions since
the cleanup framework handles this automatically.
Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
---
tests/kms_pipe_crc_basic.c | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/tests/kms_pipe_crc_basic.c b/tests/kms_pipe_crc_basic.c
index fb2f5f8eb..455b44d38 100644
--- a/tests/kms_pipe_crc_basic.c
+++ b/tests/kms_pipe_crc_basic.c
@@ -32,6 +32,7 @@
#include "igt.h"
#include "igt_sysfs.h"
+#include "igt_cleanup.h"
#include <errno.h>
#include <stdbool.h>
#include <stdio.h>
@@ -158,6 +159,7 @@ static void test_read_crc(data_t *data, enum pipe pipe,
colors[c].g,
colors[c].b,
&data->fb);
+ igt_cleanup_register_fb(data->drm_fd, &data->fb);
igt_plane_set_fb(primary, &data->fb);
@@ -258,11 +260,14 @@ static void test_compare_crc(data_t *data, enum pipe pipe, igt_output_t *output,
DRM_FORMAT_MOD_LINEAR,
1.0, 1.0, 1.0,
&fb0);
+ igt_cleanup_register_fb(data->drm_fd, &fb0);
+
igt_create_color_fb(data->drm_fd,
mode->hdisplay, mode->vdisplay, plane_format,
DRM_FORMAT_MOD_LINEAR,
1.0, 1.0, 1.0,
&fb1);
+ igt_cleanup_register_fb(data->drm_fd, &fb1);
/* Flip FB0 with the primary plane & collect the CRC as ref CRC. */
igt_plane_set_fb(primary, &fb0);
@@ -284,9 +289,6 @@ static void test_compare_crc(data_t *data, enum pipe pipe, igt_output_t *output,
igt_plane_set_fb(primary, NULL);
igt_output_set_crtc(output, NULL);
igt_display_commit(display);
-
- igt_remove_fb(data->drm_fd, &fb0);
- igt_remove_fb(data->drm_fd, &fb1);
}
static void test_disable_crc_after_crtc(data_t *data, enum pipe pipe,
@@ -310,6 +312,7 @@ static void test_disable_crc_after_crtc(data_t *data, enum pipe pipe,
DRM_FORMAT_XRGB8888,
DRM_FORMAT_MOD_LINEAR,
0.0, 1.0, 0.0, &data->fb);
+ igt_cleanup_register_fb(data->drm_fd, &data->fb);
primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
igt_plane_set_fb(primary, &data->fb);
@@ -332,7 +335,6 @@ static void test_disable_crc_after_crtc(data_t *data, enum pipe pipe,
igt_plane_set_fb(primary, NULL);
igt_output_set_crtc(output, NULL);
igt_display_commit(display);
- igt_remove_fb(data->drm_fd, &data->fb);
}
static bool pipe_output_combo_valid(igt_display_t *display,
--
2.43.0
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH i-g-t 4/6] tests/kms_pipe_crc_basic: Use cleanup framework for pipe CRC
2026-02-02 8:45 [PATCH i-g-t 0/6] tests/kms_pipe_crc_basic: add mst suspend-resume test Kunal Joshi
` (2 preceding siblings ...)
2026-02-02 8:45 ` [PATCH i-g-t 3/6] tests/kms_pipe_crc_basic: Use cleanup framework for framebuffers Kunal Joshi
@ 2026-02-02 8:45 ` Kunal Joshi
2026-02-02 8:45 ` [PATCH i-g-t 5/6] tests/kms_pipe_crc_basic: Use cleanup framework for drm_fd Kunal Joshi
` (5 subsequent siblings)
9 siblings, 0 replies; 12+ messages in thread
From: Kunal Joshi @ 2026-02-02 8:45 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
Register pipe CRC resources with igt_cleanup_register_pipe_crc() after
creation. The exit handler will automatically clean up registered CRC
resources on test exit.
Remove manual igt_pipe_crc_free() calls at end of test functions since
the cleanup framework handles this automatically.
Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
---
tests/kms_pipe_crc_basic.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tests/kms_pipe_crc_basic.c b/tests/kms_pipe_crc_basic.c
index 455b44d38..386cb15ef 100644
--- a/tests/kms_pipe_crc_basic.c
+++ b/tests/kms_pipe_crc_basic.c
@@ -275,6 +275,7 @@ static void test_compare_crc(data_t *data, enum pipe pipe, igt_output_t *output,
pipe_crc = igt_crtc_crc_new(igt_crtc_for_pipe(&data->display, pipe),
IGT_PIPE_CRC_SOURCE_AUTO);
+ igt_cleanup_register_pipe_crc(pipe_crc);
igt_pipe_crc_collect_crc(pipe_crc, &ref_crc);
/* Flip FB1 with the primary plane & compare the CRC with ref CRC. */
@@ -285,7 +286,6 @@ static void test_compare_crc(data_t *data, enum pipe pipe, igt_output_t *output,
igt_assert_crc_equal(&crc, &ref_crc);
/* Clean-up */
- igt_pipe_crc_free(pipe_crc);
igt_plane_set_fb(primary, NULL);
igt_output_set_crtc(output, NULL);
igt_display_commit(display);
@@ -302,6 +302,7 @@ static void test_disable_crc_after_crtc(data_t *data, enum pipe pipe,
pipe_crc = igt_crtc_crc_new(igt_crtc_for_pipe(&data->display, pipe),
IGT_PIPE_CRC_SOURCE_AUTO);
+ igt_cleanup_register_pipe_crc(pipe_crc);
igt_display_reset(display);
igt_output_set_crtc(output, igt_crtc_for_pipe(output->display, pipe));
@@ -331,7 +332,6 @@ static void test_disable_crc_after_crtc(data_t *data, enum pipe pipe,
igt_assert_crc_equal(&crc[0], &crc[1]);
/* Clean-up */
- igt_pipe_crc_free(pipe_crc);
igt_plane_set_fb(primary, NULL);
igt_output_set_crtc(output, NULL);
igt_display_commit(display);
--
2.43.0
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH i-g-t 5/6] tests/kms_pipe_crc_basic: Use cleanup framework for drm_fd
2026-02-02 8:45 [PATCH i-g-t 0/6] tests/kms_pipe_crc_basic: add mst suspend-resume test Kunal Joshi
` (3 preceding siblings ...)
2026-02-02 8:45 ` [PATCH i-g-t 4/6] tests/kms_pipe_crc_basic: Use cleanup framework for pipe CRC Kunal Joshi
@ 2026-02-02 8:45 ` Kunal Joshi
2026-02-02 8:45 ` [PATCH i-g-t 6/6] tests/kms_pipe_crc_basic: Add MST suspend-resume test Kunal Joshi
` (4 subsequent siblings)
9 siblings, 0 replies; 12+ messages in thread
From: Kunal Joshi @ 2026-02-02 8:45 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
Use the cleanup framework to automatically close the drm_fd, ensuring it is
closed after all resources that depend on it (framebuffers, pipe CRCs) have
been cleaned up. This removes the manual drm_close_driver() call from the
final fixture.
---
tests/kms_pipe_crc_basic.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/kms_pipe_crc_basic.c b/tests/kms_pipe_crc_basic.c
index 386cb15ef..f1deaf081 100644
--- a/tests/kms_pipe_crc_basic.c
+++ b/tests/kms_pipe_crc_basic.c
@@ -397,6 +397,7 @@ int igt_main_args("e", NULL, help_str, opt_handler, NULL)
igt_fixture() {
data.drm_fd = drm_open_driver_master(DRIVER_ANY);
+ igt_cleanup_register_fd(data.drm_fd);
kmstest_set_vt_graphics_mode();
@@ -503,6 +504,5 @@ int igt_main_args("e", NULL, help_str, opt_handler, NULL)
igt_fixture() {
igt_display_fini(&data.display);
- drm_close_driver(data.drm_fd);
}
}
--
2.43.0
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [PATCH i-g-t 6/6] tests/kms_pipe_crc_basic: Add MST suspend-resume test
2026-02-02 8:45 [PATCH i-g-t 0/6] tests/kms_pipe_crc_basic: add mst suspend-resume test Kunal Joshi
` (4 preceding siblings ...)
2026-02-02 8:45 ` [PATCH i-g-t 5/6] tests/kms_pipe_crc_basic: Use cleanup framework for drm_fd Kunal Joshi
@ 2026-02-02 8:45 ` Kunal Joshi
2026-02-04 10:40 ` Bilal, Mohammed
2026-02-03 0:13 ` ✓ Xe.CI.BAT: success for tests/kms_pipe_crc_basic: add mst suspend-resume test (rev3) Patchwork
` (3 subsequent siblings)
9 siblings, 1 reply; 12+ messages in thread
From: Kunal Joshi @ 2026-02-02 8:45 UTC (permalink / raw)
To: igt-dev; +Cc: Kunal Joshi
Add mst-suspend-read-crc subtest that:
- Validates CRCs across MST topology outputs
- Tests CRC consistency before and after system suspend
- Iterates through MST output subsets for comprehensive testing
v2:
- Add error handling for igt_pipe_crc_new (Thasleem)
- Improve log format with index for clarity (Thasleem)
- Order declarations in decreasing line length (Thasleem)
- Add print message when no MST found (Thasleem)
- Add bounds check for idx in subset loop (Thasleem)
- Use igt_crtc_crc_new() instead of igt_pipe_crc_new() (Ville)
v3:
- framebuffers missing in commit (Bilal)
Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
---
tests/kms_pipe_crc_basic.c | 246 +++++++++++++++++++++++++++++++++++++
tests/meson.build | 3 +
2 files changed, 249 insertions(+)
diff --git a/tests/kms_pipe_crc_basic.c b/tests/kms_pipe_crc_basic.c
index f1deaf081..005960dfd 100644
--- a/tests/kms_pipe_crc_basic.c
+++ b/tests/kms_pipe_crc_basic.c
@@ -33,6 +33,8 @@
#include "igt.h"
#include "igt_sysfs.h"
#include "igt_cleanup.h"
+#include "intel/kms_mst_helper.h"
+#include "intel/kms_joiner_helper.h"
#include <errno.h>
#include <stdbool.h>
#include <stdio.h>
@@ -78,6 +80,11 @@
* CRTC does not cause issues.
*/
+/**
+ * SUBTEST: mst-suspend-read-crc
+ * Description: MST suspend test for pipe CRC reads.
+ */
+
static bool extended;
static enum pipe active_pipes[IGT_MAX_PIPES];
static uint32_t last_pipe;
@@ -97,6 +104,239 @@ static struct {
{ .r = 0.0, .g = 1.0, .b = 1.0 },
};
+#define MAX_MST_OUTPUT 3
+
+static void collect_single_crc(igt_crtc_t *crtc, igt_crc_t *crc)
+{
+ igt_pipe_crc_t *pipe_crc;
+
+ pipe_crc = igt_crtc_crc_new(crtc, IGT_PIPE_CRC_SOURCE_AUTO);
+ igt_assert(pipe_crc);
+ igt_pipe_crc_collect_crc(pipe_crc, crc);
+ igt_pipe_crc_free(pipe_crc);
+}
+
+static void collect_crc_for_active_outputs(igt_display_t *display,
+ igt_output_t **outputs,
+ int num_outputs,
+ igt_crc_t *crcs)
+{
+ int i;
+
+ for (i = 0; i < num_outputs; i++) {
+ igt_output_t *output = outputs[i];
+ igt_crtc_t *crtc = igt_output_get_driving_crtc(output);
+
+ igt_assert(crtc != NULL);
+ collect_single_crc(crtc, &crcs[i]);
+ }
+}
+
+static void wait_for_vblanks(igt_output_t **outputs, int num_outputs)
+{
+ int i;
+
+ for (i = 0; i < num_outputs; i++) {
+ igt_crtc_t *crtc = igt_output_get_driving_crtc(outputs[i]);
+ igt_wait_for_vblank(crtc);
+ }
+}
+
+static void log_crc_for_outputs(igt_output_t **outputs, int num_outputs,
+ igt_crc_t *crcs, const char *stage)
+{
+ int i;
+
+ for (i = 0; i < num_outputs; i++) {
+ igt_output_t *o = outputs[i];
+ drmModeModeInfo *m = igt_output_get_mode(o);
+ char *s = igt_crc_to_string(&crcs[i]);
+ igt_crtc_t *crtc = igt_output_get_driving_crtc(o);
+
+ igt_info("[%d] %s: output %s -> crtc %s, CRC %s, mode %dx%d@%d\n",
+ i, stage, o->name,
+ igt_crtc_name(crtc),
+ s,
+ m ? m->hdisplay : -1,
+ m ? m->vdisplay : -1,
+ m ? m->vrefresh : 0);
+ free(s);
+ }
+}
+
+static void create_fbs_for_outputs(int drm_fd, igt_output_t **outputs,
+ int num_outputs, struct igt_fb *fbs)
+{
+ int i;
+
+ for (i = 0; i < num_outputs; i++) {
+ igt_output_t *output = outputs[i];
+ drmModeModeInfo *mode = igt_output_get_mode(output);
+ igt_plane_t *primary = igt_output_get_plane_type(output,
+ DRM_PLANE_TYPE_PRIMARY);
+
+ igt_create_color_fb(drm_fd,
+ mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888,
+ DRM_FORMAT_MOD_LINEAR,
+ 0.0, 1.0, 0.0, /* Green color */
+ &fbs[i]);
+ igt_cleanup_register_fb(drm_fd, &fbs[i]);
+ igt_plane_set_fb(primary, &fbs[i]);
+ }
+}
+
+/*FIXME: crc for joiners*/
+static void run_mst_subset_and_verify(igt_display_t *display,
+ igt_output_t **active_outputs,
+ int num_active,
+ int n_crtcs,
+ uint32_t master_pipes_mask,
+ uint32_t valid_pipes_mask)
+{
+ igt_crc_t pre_crcs[IGT_MAX_PIPES];
+ igt_crc_t post_crcs[IGT_MAX_PIPES];
+ struct igt_fb fbs[MAX_MST_OUTPUT];
+ uint32_t used_pipes_mask = 0;
+ enum igt_suspend_test stest = SUSPEND_TEST_NONE;
+ int drm_fd = display->drm_fd;
+ int a;
+
+ igt_require_f(num_active <= n_crtcs,
+ "Not enough crtcs for MST subset\n");
+
+ igt_require(igt_assign_pipes_for_outputs(drm_fd,
+ active_outputs,
+ num_active,
+ n_crtcs,
+ &used_pipes_mask,
+ master_pipes_mask,
+ valid_pipes_mask));
+
+ igt_require_f(igt_fit_modes_in_bw(display),
+ "Unable to fit modes in bw\n");
+
+ create_fbs_for_outputs(drm_fd, active_outputs, num_active, fbs);
+
+ igt_display_commit2(display, COMMIT_ATOMIC);
+
+ /* rtcwake cmd is not supported on MTK devices */
+ if (is_mtk_device(drm_fd))
+ stest = SUSPEND_TEST_DEVICES;
+
+ igt_info("MST subset: %d outputs, n_crtcs=%d\n",
+ num_active, n_crtcs);
+
+ wait_for_vblanks(active_outputs, num_active);
+
+ collect_crc_for_active_outputs(display,
+ active_outputs,
+ num_active,
+ pre_crcs);
+
+ log_crc_for_outputs(active_outputs, num_active, pre_crcs, "PRE-SUSPEND");
+
+ igt_system_suspend_autoresume(SUSPEND_STATE_MEM, stest);
+
+ wait_for_vblanks(active_outputs, num_active);
+
+ collect_crc_for_active_outputs(display,
+ active_outputs,
+ num_active,
+ post_crcs);
+
+ log_crc_for_outputs(active_outputs, num_active, post_crcs, "POST-SUSPEND");
+
+ for (a = 0; a < num_active; a++)
+ igt_assert_crc_equal(&pre_crcs[a], &post_crcs[a]);
+}
+
+static void mst_suspend_read_crc(igt_display_t *display)
+{
+ int n_crtcs = igt_display_n_crtcs(display);
+ igt_output_t *active_outputs[MAX_MST_OUTPUT];
+ igt_output_t *mst_outputs[MAX_MST_OUTPUT];
+ int traversed_roots[IGT_MAX_PIPES];
+ int drm_fd = display->drm_fd;
+ uint32_t valid_pipes_mask = 0;
+ int num_mst, i, num_active;
+ uint32_t master_pipes_mask;
+ igt_output_t *output;
+ int num_roots = 0;
+
+ for (i = 0; i < IGT_MAX_PIPES; i++) {
+ if (display->crtcs[i].valid)
+ valid_pipes_mask |= BIT(i);
+ }
+
+ igt_set_all_master_pipes_for_platform(display, &master_pipes_mask);
+
+ for_each_connected_output(display, output) {
+ int root_id;
+ bool root_seen = false;
+
+ root_id = igt_get_dp_mst_connector_id(output);
+ if (root_id < 0) {
+ igt_info("Skipping non-mst output %s\n", output->name);
+ continue;
+ }
+
+ for (i = 0; i < num_roots; i++)
+ if (traversed_roots[i] == root_id)
+ root_seen = true;
+
+ if (root_seen)
+ continue;
+
+ num_mst = 0;
+ igt_require(igt_find_all_mst_output_in_topology(drm_fd, display,
+ output, mst_outputs,
+ &num_mst) == 0);
+ if (num_mst == 0) {
+ igt_info("No MST outputs found in topology for output %s\n",
+ output->name);
+ igt_skip("No MST outputs found in topology\n");
+ }
+
+ if (num_roots < IGT_MAX_PIPES)
+ traversed_roots[num_roots++] = root_id;
+
+ if (num_mst > MAX_MST_OUTPUT)
+ num_mst = MAX_MST_OUTPUT;
+
+ /* In future if we can print name of MST hub will be great */
+ igt_dynamic_f("mst-topo-%d", num_roots) {
+ int mask;
+
+ for (mask = 1; mask < (1 << num_mst); mask++) {
+ int bit, idx = 0;
+
+ /* build subset for this bitmask */
+ for (bit = 0; bit < num_mst; bit++) {
+ if (!(mask & (1 << bit)))
+ continue;
+
+ if (idx >= MAX_MST_OUTPUT)
+ break;
+
+ active_outputs[idx++] = mst_outputs[bit];
+ }
+
+ num_active = idx;
+ if (!num_active)
+ continue;
+
+ igt_display_reset(display);
+
+ run_mst_subset_and_verify(display, active_outputs,
+ num_active, n_crtcs,
+ master_pipes_mask,
+ valid_pipes_mask);
+ }
+ }
+ }
+}
+
static bool simulation_constraint(enum pipe pipe)
{
if (igt_run_in_simulation() && !extended &&
@@ -502,6 +742,12 @@ int igt_main_args("e", NULL, help_str, opt_handler, NULL)
}
}
+ igt_describe("MST suspend test for pipe CRC reads.");
+ igt_subtest_with_dynamic("mst-suspend-read-crc") {
+ igt_require(igt_display_has_mst_output(&data.display));
+ mst_suspend_read_crc(&data.display);
+ }
+
igt_fixture() {
igt_display_fini(&data.display);
}
diff --git a/tests/meson.build b/tests/meson.build
index ef4edaa0d..ab70948bc 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -398,6 +398,9 @@ extra_sources = {
join_paths ('intel', 'kms_joiner_helper.c') ],
'kms_dsc': [ join_paths ('intel', 'kms_dsc_helper.c') ],
'kms_joiner': [ join_paths ('intel', 'kms_joiner_helper.c') ],
+ 'kms_pipe_crc_basic': [
+ join_paths ('intel', 'kms_mst_helper.c'),
+ join_paths ('intel', 'kms_joiner_helper.c') ],
'kms_psr2_sf': [ join_paths ('intel', 'kms_dsc_helper.c') ],
}
--
2.43.0
^ permalink raw reply related [flat|nested] 12+ messages in thread
* ✓ Xe.CI.BAT: success for tests/kms_pipe_crc_basic: add mst suspend-resume test (rev3)
2026-02-02 8:45 [PATCH i-g-t 0/6] tests/kms_pipe_crc_basic: add mst suspend-resume test Kunal Joshi
` (5 preceding siblings ...)
2026-02-02 8:45 ` [PATCH i-g-t 6/6] tests/kms_pipe_crc_basic: Add MST suspend-resume test Kunal Joshi
@ 2026-02-03 0:13 ` Patchwork
2026-02-03 0:19 ` ✓ i915.CI.BAT: " Patchwork
` (2 subsequent siblings)
9 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2026-02-03 0:13 UTC (permalink / raw)
To: Kunal Joshi; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1585 bytes --]
== Series Details ==
Series: tests/kms_pipe_crc_basic: add mst suspend-resume test (rev3)
URL : https://patchwork.freedesktop.org/series/158091/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8729_BAT -> XEIGTPW_14465_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 12)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_14465_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_waitfence@abstime:
- bat-dg2-oem2: [PASS][1] -> [TIMEOUT][2] ([Intel XE#6506])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/bat-dg2-oem2/igt@xe_waitfence@abstime.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/bat-dg2-oem2/igt@xe_waitfence@abstime.html
[Intel XE#6506]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6506
Build changes
-------------
* IGT: IGT_8729 -> IGTPW_14465
* Linux: xe-4480-88c5cd5324a45f418e99c62974a746596bc81d93 -> xe-4485-e5eaf587a4015d3b3b18f05c6f5799b950824bf1
IGTPW_14465: 3632000153fa9ce6befa2be2f637640166f47e02 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8729: 8729
xe-4480-88c5cd5324a45f418e99c62974a746596bc81d93: 88c5cd5324a45f418e99c62974a746596bc81d93
xe-4485-e5eaf587a4015d3b3b18f05c6f5799b950824bf1: e5eaf587a4015d3b3b18f05c6f5799b950824bf1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/index.html
[-- Attachment #2: Type: text/html, Size: 2161 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ i915.CI.BAT: success for tests/kms_pipe_crc_basic: add mst suspend-resume test (rev3)
2026-02-02 8:45 [PATCH i-g-t 0/6] tests/kms_pipe_crc_basic: add mst suspend-resume test Kunal Joshi
` (6 preceding siblings ...)
2026-02-03 0:13 ` ✓ Xe.CI.BAT: success for tests/kms_pipe_crc_basic: add mst suspend-resume test (rev3) Patchwork
@ 2026-02-03 0:19 ` Patchwork
2026-02-03 7:54 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-02-03 8:55 ` ✗ i915.CI.Full: " Patchwork
9 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2026-02-03 0:19 UTC (permalink / raw)
To: Kunal Joshi; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5795 bytes --]
== Series Details ==
Series: tests/kms_pipe_crc_basic: add mst suspend-resume test (rev3)
URL : https://patchwork.freedesktop.org/series/158091/
State : success
== Summary ==
CI Bug Log - changes from IGT_8729 -> IGTPW_14465
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/index.html
Participating hosts (42 -> 41)
------------------------------
Additional (1): bat-adls-6
Missing (2): bat-dg2-13 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_14465 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-adls-6: NOTRUN -> [SKIP][1] ([i915#4613]) +3 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/bat-adls-6/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_tiled_pread_basic:
- bat-adls-6: NOTRUN -> [SKIP][2] ([i915#3282])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/bat-adls-6/igt@gem_tiled_pread_basic.html
* igt@i915_selftest@live@workarounds:
- bat-dg2-9: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8729/bat-dg2-9/igt@i915_selftest@live@workarounds.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/bat-dg2-9/igt@i915_selftest@live@workarounds.html
- bat-dg2-14: [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8729/bat-dg2-14/igt@i915_selftest@live@workarounds.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/bat-dg2-14/igt@i915_selftest@live@workarounds.html
* igt@intel_hwmon@hwmon-read:
- bat-adls-6: NOTRUN -> [SKIP][7] ([i915#7707]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/bat-adls-6/igt@intel_hwmon@hwmon-read.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-adls-6: NOTRUN -> [SKIP][8] ([i915#4103]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/bat-adls-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-adls-6: NOTRUN -> [SKIP][9] ([i915#3555] / [i915#3840])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/bat-adls-6/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-adls-6: NOTRUN -> [SKIP][10]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/bat-adls-6/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_pm_backlight@basic-brightness:
- bat-adls-6: NOTRUN -> [SKIP][11] ([i915#5354])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/bat-adls-6/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-primary-mmap-gtt:
- bat-adls-6: NOTRUN -> [SKIP][12] ([i915#1072] / [i915#9732]) +3 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/bat-adls-6/igt@kms_psr@psr-primary-mmap-gtt.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-adls-6: NOTRUN -> [SKIP][13] ([i915#3555])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/bat-adls-6/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-read:
- bat-adls-6: NOTRUN -> [SKIP][14] ([i915#3291]) +2 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/bat-adls-6/igt@prime_vgem@basic-fence-read.html
#### Possible fixes ####
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [DMESG-FAIL][15] ([i915#12061]) -> [PASS][16] +1 other test pass
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8729/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/bat-arlh-3/igt@i915_selftest@live@workarounds.html
- bat-arls-5: [DMESG-FAIL][17] ([i915#12061]) -> [PASS][18] +1 other test pass
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8729/bat-arls-5/igt@i915_selftest@live@workarounds.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/bat-arls-5/igt@i915_selftest@live@workarounds.html
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8729 -> IGTPW_14465
* Linux: CI_DRM_17916 -> CI_DRM_17921
CI-20190529: 20190529
CI_DRM_17916: cd1fd615b2ba56ea3fb033262d4fbd0503055d3c @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_17921: 67c3b61c4451b33dbf846f97cb2389b7fb6db09d @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14465: 3632000153fa9ce6befa2be2f637640166f47e02 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8729: 8729
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/index.html
[-- Attachment #2: Type: text/html, Size: 7012 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ Xe.CI.FULL: failure for tests/kms_pipe_crc_basic: add mst suspend-resume test (rev3)
2026-02-02 8:45 [PATCH i-g-t 0/6] tests/kms_pipe_crc_basic: add mst suspend-resume test Kunal Joshi
` (7 preceding siblings ...)
2026-02-03 0:19 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-02-03 7:54 ` Patchwork
2026-02-03 8:55 ` ✗ i915.CI.Full: " Patchwork
9 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2026-02-03 7:54 UTC (permalink / raw)
To: Joshi, Kunal1; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 63577 bytes --]
== Series Details ==
Series: tests/kms_pipe_crc_basic: add mst suspend-resume test (rev3)
URL : https://patchwork.freedesktop.org/series/158091/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8729_FULL -> XEIGTPW_14465_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_14465_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_14465_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_14465_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x:
- shard-bmg: NOTRUN -> [SKIP][1] +2 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-9/igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x.html
* igt@kms_pipe_crc_basic@mst-suspend-read-crc (NEW):
- shard-lnl: NOTRUN -> [SKIP][2] +2 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-5/igt@kms_pipe_crc_basic@mst-suspend-read-crc.html
#### Warnings ####
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-bmg: [SKIP][3] ([Intel XE#1124]) -> [ABORT][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-bmg-7/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-3/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
New tests
---------
New tests have been introduced between XEIGT_8729_FULL and XEIGTPW_14465_FULL:
### New IGT tests (1) ###
* igt@kms_pipe_crc_basic@mst-suspend-read-crc:
- Statuses : 2 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in XEIGTPW_14465_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@test-cursor-atomic:
- shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#664])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-2/igt@kms_async_flips@test-cursor-atomic.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#1407]) +2 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-7/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#3658])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2327])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-7/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
- shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#7059])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-8/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#1124]) +10 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-2/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1477])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-5/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1124]) +6 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#610])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-10/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2314] / [Intel XE#2894])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-4/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-1-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#367])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-7/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2887]) +6 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-10/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#2887]) +18 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-3/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#3432]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#3432])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html
* igt@kms_cdclk@mode-transition:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2724])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-8/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#4417]) +3 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-7/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html
* igt@kms_cdclk@plane-scaling:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#4416]) +3 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-1/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#306]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-8/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2325])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-10/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#373]) +7 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-7/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2252]) +3 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-8/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_chamelium_sharpness_filter@filter-basic:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#6507])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-5/igt@kms_chamelium_sharpness_filter@filter-basic.html
* igt@kms_color_pipeline@plane-lut1d-pre-ctm3x4@pipe-c-edp-1:
- shard-lnl: NOTRUN -> [FAIL][29] ([Intel XE#6968]) +7 other tests fail
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-7/igt@kms_color_pipeline@plane-lut1d-pre-ctm3x4@pipe-c-edp-1.html
* igt@kms_content_protection@atomic-dpms-hdcp14:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#6973])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-8/igt@kms_content_protection@atomic-dpms-hdcp14.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][31] ([Intel XE#1178] / [Intel XE#3304]) +1 other test fail
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-1/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#307] / [Intel XE#6974])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-1/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@uevent:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#3278])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-3/igt@kms_content_protection@uevent.html
- shard-bmg: NOTRUN -> [FAIL][34] ([Intel XE#6707]) +1 other test fail
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-7/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#1424]) +4 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-7/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2320]) +2 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-3/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#2321]) +4 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-2/igt@kms_cursor_crc@cursor-sliding-512x512.html
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2321]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-4/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#309]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-3/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [PASS][40] -> [FAIL][41] ([Intel XE#6715])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-bmg-10/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#4210])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-8/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#1508])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-9/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#4354])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-5/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#4331])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-1/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-with-bpc:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#2244]) +3 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-2/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-formats:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2244]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-4/igt@kms_dsc@dsc-with-formats.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#1421]) +6 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-1/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@flip-vs-suspend@d-hdmi-a3:
- shard-bmg: [PASS][49] -> [INCOMPLETE][50] ([Intel XE#2049] / [Intel XE#2597])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-bmg-3/igt@kms_flip@flip-vs-suspend@d-hdmi-a3.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-9/igt@kms_flip@flip-vs-suspend@d-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#7178]) +5 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#6312]) +3 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-render:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#7061]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2311]) +26 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#4141]) +8 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-render:
- shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#651]) +12 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2313]) +19 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#656]) +38 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#7061]) +4 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-2/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt.html
* igt@kms_hdr@brightness-with-hdr:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#3374] / [Intel XE#3544])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-7/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#1450]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-8/igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1.html
* igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1:
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#1450] / [Intel XE#2568]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-8/igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1.html
* igt@kms_joiner@basic-big-joiner:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#6901])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-1/igt@kms_joiner@basic-big-joiner.html
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#6901])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-2/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#6900])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-2/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#7173])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-5/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#6912])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-4/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping:
- shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#7130] / [Intel XE#7131])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-3/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping@pipe-b-plane-5:
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#7131]) +3 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-3/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#7111] / [Intel XE#7130] / [Intel XE#7131]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-1/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping@pipe-b-plane-0:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#7130]) +9 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-1/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping@pipe-b-plane-0.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping@pipe-b-plane-5:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#7111] / [Intel XE#7131]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-1/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-b-plane-0:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#7130]) +24 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-3/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-b-plane-0.html
* igt@kms_plane@pixel-format-linear-modifier-source-clamping@pipe-b-plane-5:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#7131]) +3 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-2/igt@kms_plane@pixel-format-linear-modifier-source-clamping@pipe-b-plane-5.html
* igt@kms_plane_lowres@tiling-y:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#2393])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-1/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_lowres@tiling-yf:
- shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#599])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-2/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#4596]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-4/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@tiling-yf:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#5020])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-2/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-bmg: [PASS][79] -> [SKIP][80] ([Intel XE#2685] / [Intel XE#3307])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-bmg-9/igt@kms_plane_scaling@intel-max-src-size.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-2/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-c:
- shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#6886]) +15 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-4/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-c.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [PASS][82] -> [FAIL][83] ([Intel XE#718])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-lnl-8/igt@kms_pm_dc@dc6-psr.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-2/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@deep-pkgc:
- shard-lnl: [PASS][84] -> [FAIL][85] ([Intel XE#2029])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-lnl-3/igt@kms_pm_dc@deep-pkgc.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-7/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#1439] / [Intel XE#3141]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#1406] / [Intel XE#1489]) +4 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-1/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608]) +2 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1406] / [Intel XE#4608]) +5 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#1406] / [Intel XE#2893]) +2 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-5/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#1406] / [Intel XE#2387]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-3/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr2-sprite-plane-move@edp-1:
- shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#1406] / [Intel XE#4609]) +3 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-7/igt@kms_psr@fbc-psr2-sprite-plane-move@edp-1.html
* igt@kms_psr@pr-cursor-plane-move:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#1406]) +8 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-3/igt@kms_psr@pr-cursor-plane-move.html
* igt@kms_psr@psr-suspend:
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +8 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-8/igt@kms_psr@psr-suspend.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#3414] / [Intel XE#3904]) +2 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-3/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#1127])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#1435]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-5/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_sharpness_filter@invalid-filter-with-plane:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#6503]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-7/igt@kms_sharpness_filter@invalid-filter-with-plane.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#2426])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#362])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_tv_load_detect@load-detect:
- shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2450])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-9/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@flip-basic:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#1499]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-4/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#1499]) +1 other test skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-4/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@xe_compute@ccs-mode-basic:
- shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#1447])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-1/igt@xe_compute@ccs-mode-basic.html
* igt@xe_compute_preempt@compute-preempt-many-vram-evict:
- shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#5191])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-1/igt@xe_compute_preempt@compute-preempt-many-vram-evict.html
* igt@xe_eudebug@basic-vm-bind-ufence:
- shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#4837]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-3/igt@xe_eudebug@basic-vm-bind-ufence.html
* igt@xe_eudebug@discovery-empty-clients:
- shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#4837]) +8 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-7/igt@xe_eudebug@discovery-empty-clients.html
* igt@xe_eudebug_online@breakpoint-many-sessions-tiles:
- shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#4837] / [Intel XE#6665]) +2 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-4/igt@xe_eudebug_online@breakpoint-many-sessions-tiles.html
* igt@xe_eudebug_online@interrupt-other-debuggable:
- shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#4837] / [Intel XE#6665]) +3 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-7/igt@xe_eudebug_online@interrupt-other-debuggable.html
* igt@xe_eudebug_sriov@deny-sriov:
- shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#4518])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-2/igt@xe_eudebug_sriov@deny-sriov.html
* igt@xe_evict@evict-beng-cm-threads-small:
- shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#688]) +12 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-5/igt@xe_evict@evict-beng-cm-threads-small.html
* igt@xe_evict@evict-small-external-multi-queue-cm:
- shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#7140])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-1/igt@xe_evict@evict-small-external-multi-queue-cm.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
- shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#2322]) +7 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-7/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#1392]) +10 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-prefetch:
- shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#7136]) +10 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-10/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-prefetch.html
* igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind:
- shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#7136]) +13 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-4/igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind.html
* igt@xe_exec_multi_queue@max-queues-preempt-mode-fault-dyn-priority:
- shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#6874]) +30 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-2/igt@xe_exec_multi_queue@max-queues-preempt-mode-fault-dyn-priority.html
* igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-dyn-priority-smem:
- shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#6874]) +14 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-9/igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-dyn-priority-smem.html
* igt@xe_exec_reset@gt-reset-stress:
- shard-lnl: NOTRUN -> [DMESG-WARN][119] ([Intel XE#7023])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-4/igt@xe_exec_reset@gt-reset-stress.html
* igt@xe_exec_system_allocator@many-64k-mmap-huge:
- shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#5007])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-1/igt@xe_exec_system_allocator@many-64k-mmap-huge.html
* igt@xe_exec_system_allocator@many-64k-mmap-new-huge:
- shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#5007]) +1 other test skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-10/igt@xe_exec_system_allocator@many-64k-mmap-new-huge.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-single-vma:
- shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#6196])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-2/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-single-vma.html
* igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-new-huge:
- shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#4943]) +14 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-3/igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-new-huge.html
* igt@xe_exec_system_allocator@twice-mmap-huge:
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#4943]) +29 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-1/igt@xe_exec_system_allocator@twice-mmap-huge.html
* igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-rebind:
- shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#7138]) +9 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-8/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-rebind.html
- shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#7138]) +5 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-10/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-rebind.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#2229])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_module_load@load:
- shard-lnl: ([PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147], [PASS][148]) -> ([PASS][149], [PASS][150], [SKIP][151], [PASS][152], [PASS][153], [PASS][154], [PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169]) ([Intel XE#378])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-lnl-1/igt@xe_module_load@load.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-lnl-4/igt@xe_module_load@load.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-lnl-3/igt@xe_module_load@load.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-lnl-2/igt@xe_module_load@load.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-lnl-2/igt@xe_module_load@load.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-lnl-2/igt@xe_module_load@load.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-lnl-1/igt@xe_module_load@load.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-lnl-4/igt@xe_module_load@load.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-lnl-3/igt@xe_module_load@load.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-lnl-3/igt@xe_module_load@load.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-lnl-4/igt@xe_module_load@load.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-lnl-8/igt@xe_module_load@load.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-lnl-8/igt@xe_module_load@load.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-lnl-8/igt@xe_module_load@load.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-lnl-7/igt@xe_module_load@load.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-lnl-7/igt@xe_module_load@load.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-lnl-7/igt@xe_module_load@load.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-lnl-5/igt@xe_module_load@load.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-lnl-5/igt@xe_module_load@load.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-lnl-5/igt@xe_module_load@load.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-lnl-1/igt@xe_module_load@load.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-7/igt@xe_module_load@load.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-7/igt@xe_module_load@load.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-2/igt@xe_module_load@load.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-7/igt@xe_module_load@load.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-4/igt@xe_module_load@load.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-4/igt@xe_module_load@load.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-5/igt@xe_module_load@load.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-3/igt@xe_module_load@load.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-5/igt@xe_module_load@load.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-5/igt@xe_module_load@load.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-8/igt@xe_module_load@load.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-8/igt@xe_module_load@load.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-1/igt@xe_module_load@load.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-1/igt@xe_module_load@load.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-1/igt@xe_module_load@load.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-4/igt@xe_module_load@load.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-2/igt@xe_module_load@load.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-2/igt@xe_module_load@load.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-3/igt@xe_module_load@load.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-2/igt@xe_module_load@load.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-3/igt@xe_module_load@load.html
- shard-bmg: ([PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185], [PASS][186], [PASS][187], [PASS][188], [PASS][189], [PASS][190], [PASS][191], [PASS][192], [PASS][193], [PASS][194]) -> ([PASS][195], [PASS][196], [PASS][197], [PASS][198], [PASS][199], [PASS][200], [PASS][201], [PASS][202], [PASS][203], [SKIP][204], [PASS][205], [PASS][206], [PASS][207], [PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214], [PASS][215], [PASS][216], [PASS][217], [PASS][218], [PASS][219], [PASS][220]) ([Intel XE#2457])
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-bmg-8/igt@xe_module_load@load.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-bmg-8/igt@xe_module_load@load.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-bmg-8/igt@xe_module_load@load.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-bmg-8/igt@xe_module_load@load.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-bmg-10/igt@xe_module_load@load.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-bmg-10/igt@xe_module_load@load.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-bmg-3/igt@xe_module_load@load.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-bmg-10/igt@xe_module_load@load.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-bmg-3/igt@xe_module_load@load.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-bmg-3/igt@xe_module_load@load.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-bmg-1/igt@xe_module_load@load.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-bmg-1/igt@xe_module_load@load.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-bmg-1/igt@xe_module_load@load.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-bmg-2/igt@xe_module_load@load.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-bmg-2/igt@xe_module_load@load.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-bmg-2/igt@xe_module_load@load.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-bmg-9/igt@xe_module_load@load.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-bmg-9/igt@xe_module_load@load.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-bmg-4/igt@xe_module_load@load.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-bmg-4/igt@xe_module_load@load.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-bmg-9/igt@xe_module_load@load.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-bmg-9/igt@xe_module_load@load.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-bmg-7/igt@xe_module_load@load.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-bmg-7/igt@xe_module_load@load.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-bmg-7/igt@xe_module_load@load.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-8/igt@xe_module_load@load.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-3/igt@xe_module_load@load.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-4/igt@xe_module_load@load.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-1/igt@xe_module_load@load.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-8/igt@xe_module_load@load.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-1/igt@xe_module_load@load.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-3/igt@xe_module_load@load.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-10/igt@xe_module_load@load.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-10/igt@xe_module_load@load.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-9/igt@xe_module_load@load.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-3/igt@xe_module_load@load.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-10/igt@xe_module_load@load.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-8/igt@xe_module_load@load.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-9/igt@xe_module_load@load.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-2/igt@xe_module_load@load.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-9/igt@xe_module_load@load.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-2/igt@xe_module_load@load.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-9/igt@xe_module_load@load.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-1/igt@xe_module_load@load.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-7/igt@xe_module_load@load.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-7/igt@xe_module_load@load.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-7/igt@xe_module_load@load.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-7/igt@xe_module_load@load.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-4/igt@xe_module_load@load.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-4/igt@xe_module_load@load.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-3/igt@xe_module_load@load.html
* igt@xe_multigpu_svm@mgpu-coherency-prefetch:
- shard-lnl: NOTRUN -> [SKIP][221] ([Intel XE#6964]) +3 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-4/igt@xe_multigpu_svm@mgpu-coherency-prefetch.html
* igt@xe_multigpu_svm@mgpu-pagefault-conflict:
- shard-bmg: NOTRUN -> [SKIP][222] ([Intel XE#6964]) +1 other test skip
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-7/igt@xe_multigpu_svm@mgpu-pagefault-conflict.html
* igt@xe_pat@pat-index-xelp:
- shard-lnl: NOTRUN -> [SKIP][223] ([Intel XE#977])
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-2/igt@xe_pat@pat-index-xelp.html
* igt@xe_pm@d3cold-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][224] ([Intel XE#2284] / [Intel XE#366])
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-5/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_pm@s3-multiple-execs:
- shard-lnl: NOTRUN -> [SKIP][225] ([Intel XE#584])
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-8/igt@xe_pm@s3-multiple-execs.html
* igt@xe_pm@s4-multiple-execs:
- shard-lnl: [PASS][226] -> [ABORT][227] ([Intel XE#7169])
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-lnl-2/igt@xe_pm@s4-multiple-execs.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-7/igt@xe_pm@s4-multiple-execs.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-bmg: NOTRUN -> [SKIP][228] ([Intel XE#579])
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-3/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][229] ([Intel XE#944]) +1 other test skip
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-8/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_query@multigpu-query-topology:
- shard-lnl: NOTRUN -> [SKIP][230] ([Intel XE#944]) +3 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-4/igt@xe_query@multigpu-query-topology.html
* igt@xe_sriov_flr@flr-twice:
- shard-bmg: NOTRUN -> [FAIL][231] ([Intel XE#6569])
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-7/igt@xe_sriov_flr@flr-twice.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets:
- shard-lnl: NOTRUN -> [SKIP][232] ([Intel XE#4351])
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-2/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
* igt@xe_sriov_vram@vf-access-after-resize-down:
- shard-bmg: [PASS][233] -> [FAIL][234] ([Intel XE#5937])
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-bmg-9/igt@xe_sriov_vram@vf-access-after-resize-down.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-10/igt@xe_sriov_vram@vf-access-after-resize-down.html
* igt@xe_sriov_vram@vf-access-beyond:
- shard-lnl: NOTRUN -> [SKIP][235] ([Intel XE#6376])
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-3/igt@xe_sriov_vram@vf-access-beyond.html
#### Possible fixes ####
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-bmg: [ABORT][236] ([Intel XE#5545]) -> [PASS][237] +1 other test pass
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [FAIL][238] ([Intel XE#5299]) -> [PASS][239]
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-bmg-9/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-10/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-bmg: [DMESG-WARN][240] ([Intel XE#5208]) -> [PASS][241]
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-bmg-3/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-7/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend@a-dp2:
- shard-bmg: [DMESG-WARN][242] ([Intel XE#3428]) -> [PASS][243] +1 other test pass
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-bmg-3/igt@kms_flip@flip-vs-suspend@a-dp2.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-9/igt@kms_flip@flip-vs-suspend@a-dp2.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [SKIP][244] ([Intel XE#1503]) -> [PASS][245]
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-bmg-4/igt@kms_hdr@invalid-hdr.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-1/igt@kms_hdr@invalid-hdr.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [FAIL][246] ([Intel XE#718]) -> [PASS][247]
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-lnl-1/igt@kms_pm_dc@dc5-dpms.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-4/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_setmode@basic:
- shard-bmg: [FAIL][248] ([Intel XE#6361]) -> [PASS][249] +1 other test pass
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-bmg-3/igt@kms_setmode@basic.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-3/igt@kms_setmode@basic.html
* igt@xe_configfs@gt-types-allowed:
- shard-lnl: [DMESG-WARN][250] -> [PASS][251]
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-lnl-8/igt@xe_configfs@gt-types-allowed.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-5/igt@xe_configfs@gt-types-allowed.html
* igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare:
- shard-bmg: [ABORT][252] -> [PASS][253] +1 other test pass
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-9/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
* igt@xe_pm@s2idle-mocs:
- shard-bmg: [INCOMPLETE][254] ([Intel XE#4504]) -> [PASS][255]
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-bmg-1/igt@xe_pm@s2idle-mocs.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-9/igt@xe_pm@s2idle-mocs.html
* igt@xe_pm@s4-mocs:
- shard-lnl: [ABORT][256] -> [PASS][257]
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-lnl-2/igt@xe_pm@s4-mocs.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-lnl-4/igt@xe_pm@s4-mocs.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-bmg: [FAIL][258] ([Intel XE#6569]) -> [PASS][259]
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-bmg-2/igt@xe_sriov_flr@flr-vfs-parallel.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-3/igt@xe_sriov_flr@flr-vfs-parallel.html
#### Warnings ####
* igt@kms_flip@flip-vs-suspend:
- shard-bmg: [DMESG-WARN][260] ([Intel XE#3428] / [Intel XE#5208]) -> [INCOMPLETE][261] ([Intel XE#2049] / [Intel XE#2597])
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-bmg-3/igt@kms_flip@flip-vs-suspend.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-9/igt@kms_flip@flip-vs-suspend.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][262] ([Intel XE#3544]) -> [SKIP][263] ([Intel XE#3374] / [Intel XE#3544])
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8729/shard-bmg-10/igt@kms_hdr@brightness-with-hdr.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/shard-bmg-3/igt@kms_hdr@brightness-with-hdr.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#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#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
[Intel XE#1450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450
[Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[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#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[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#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2685]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2685
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[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#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[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#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3428
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
[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#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[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#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210
[Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416
[Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417
[Intel XE#4504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4504
[Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191
[Intel XE#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208
[Intel XE#5299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5299
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#6196]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6196
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361
[Intel XE#6376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6376
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6507]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6507
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
[Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
[Intel XE#6715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6715
[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#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6900]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6900
[Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901
[Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6968]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6968
[Intel XE#6973]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6973
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7023]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7023
[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#7111]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7111
[Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130
[Intel XE#7131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7131
[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#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
[Intel XE#7169]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7169
[Intel XE#7173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7173
[Intel XE#7174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7174
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
Build changes
-------------
* IGT: IGT_8729 -> IGTPW_14465
* Linux: xe-4480-88c5cd5324a45f418e99c62974a746596bc81d93 -> xe-4485-e5eaf587a4015d3b3b18f05c6f5799b950824bf1
IGTPW_14465: 3632000153fa9ce6befa2be2f637640166f47e02 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8729: 8729
xe-4480-88c5cd5324a45f418e99c62974a746596bc81d93: 88c5cd5324a45f418e99c62974a746596bc81d93
xe-4485-e5eaf587a4015d3b3b18f05c6f5799b950824bf1: e5eaf587a4015d3b3b18f05c6f5799b950824bf1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14465/index.html
[-- Attachment #2: Type: text/html, Size: 71216 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ i915.CI.Full: failure for tests/kms_pipe_crc_basic: add mst suspend-resume test (rev3)
2026-02-02 8:45 [PATCH i-g-t 0/6] tests/kms_pipe_crc_basic: add mst suspend-resume test Kunal Joshi
` (8 preceding siblings ...)
2026-02-03 7:54 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-02-03 8:55 ` Patchwork
9 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2026-02-03 8:55 UTC (permalink / raw)
To: Joshi, Kunal1; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 137798 bytes --]
== Series Details ==
Series: tests/kms_pipe_crc_basic: add mst suspend-resume test (rev3)
URL : https://patchwork.freedesktop.org/series/158091/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_17921_full -> IGTPW_14465_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_14465_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_14465_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_14465/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_14465_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_workarounds@suspend-resume-context:
- shard-snb: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-snb5/igt@gem_workarounds@suspend-resume-context.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-snb7/igt@gem_workarounds@suspend-resume-context.html
- shard-tglu: [PASS][3] -> [ABORT][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-tglu-6/igt@gem_workarounds@suspend-resume-context.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-4/igt@gem_workarounds@suspend-resume-context.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-tglu: [PASS][5] -> [FAIL][6] +1 other test fail
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-tglu-9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_pipe_crc_basic@mst-suspend-read-crc (NEW):
- shard-tglu: NOTRUN -> [SKIP][7]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-3/igt@kms_pipe_crc_basic@mst-suspend-read-crc.html
- shard-mtlp: NOTRUN -> [SKIP][8]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-mtlp-8/igt@kms_pipe_crc_basic@mst-suspend-read-crc.html
- shard-dg2: NOTRUN -> [SKIP][9]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-6/igt@kms_pipe_crc_basic@mst-suspend-read-crc.html
- shard-rkl: NOTRUN -> [SKIP][10]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-4/igt@kms_pipe_crc_basic@mst-suspend-read-crc.html
- shard-dg1: NOTRUN -> [SKIP][11]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg1-17/igt@kms_pipe_crc_basic@mst-suspend-read-crc.html
New tests
---------
New tests have been introduced between CI_DRM_17921_full and IGTPW_14465_full:
### New IGT tests (1) ###
* igt@kms_pipe_crc_basic@mst-suspend-read-crc:
- Statuses : 7 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_14465_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-rkl: NOTRUN -> [SKIP][12] ([i915#8411]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-4/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@device_reset@cold-reset-bound:
- shard-tglu-1: NOTRUN -> [SKIP][13] ([i915#11078])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-1/igt@device_reset@cold-reset-bound.html
* igt@drm_buddy@drm_buddy@drm_test_buddy_fragmentation_performance:
- shard-rkl: NOTRUN -> [DMESG-WARN][14] ([i915#15095]) +1 other test dmesg-warn
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-4/igt@drm_buddy@drm_buddy@drm_test_buddy_fragmentation_performance.html
- shard-glk10: NOTRUN -> [DMESG-WARN][15] ([i915#15095]) +1 other test dmesg-warn
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-glk10/igt@drm_buddy@drm_buddy@drm_test_buddy_fragmentation_performance.html
* igt@gem_ccs@large-ctrl-surf-copy:
- shard-rkl: NOTRUN -> [SKIP][16] ([i915#13008])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-5/igt@gem_ccs@large-ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: [PASS][17] -> [INCOMPLETE][18] ([i915#13356]) +1 other test incomplete
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-dg2-8/igt@gem_ccs@suspend-resume.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-1/igt@gem_ccs@suspend-resume.html
- shard-rkl: NOTRUN -> [SKIP][19] ([i915#9323])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-7/igt@gem_ccs@suspend-resume.html
* igt@gem_create@create-ext-set-pat:
- shard-rkl: NOTRUN -> [SKIP][20] ([i915#8562])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-7/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_freq@sysfs@gt0:
- shard-dg2: [PASS][21] -> [FAIL][22] ([i915#9561]) +1 other test fail
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-dg2-7/igt@gem_ctx_freq@sysfs@gt0.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-5/igt@gem_ctx_freq@sysfs@gt0.html
* igt@gem_ctx_isolation@preservation-s3:
- shard-glk10: NOTRUN -> [INCOMPLETE][23] ([i915#13356]) +1 other test incomplete
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-glk10/igt@gem_ctx_isolation@preservation-s3.html
* igt@gem_ctx_sseu@invalid-args:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#280])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-4/igt@gem_ctx_sseu@invalid-args.html
- shard-rkl: NOTRUN -> [SKIP][25] ([i915#280])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-3/igt@gem_ctx_sseu@invalid-args.html
- shard-dg1: NOTRUN -> [SKIP][26] ([i915#280])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg1-12/igt@gem_ctx_sseu@invalid-args.html
- shard-mtlp: NOTRUN -> [SKIP][27] ([i915#280])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-mtlp-2/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@mmap-args:
- shard-tglu: NOTRUN -> [SKIP][28] ([i915#280]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-6/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: NOTRUN -> [SKIP][29] ([i915#4525]) +3 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-3/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-tglu: NOTRUN -> [SKIP][30] ([i915#4525])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-8/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-rkl: NOTRUN -> [SKIP][31] ([i915#6334]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-5/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_flush@basic-wb-prw-default:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#3539] / [i915#4852])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-3/igt@gem_exec_flush@basic-wb-prw-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-dg2: NOTRUN -> [SKIP][33] ([i915#5107])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-3/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-rkl: NOTRUN -> [SKIP][34] ([i915#3281]) +3 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-4/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-cpu-read-active:
- shard-dg2: NOTRUN -> [SKIP][35] ([i915#3281]) +3 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-4/igt@gem_exec_reloc@basic-cpu-read-active.html
* igt@gem_exec_reloc@basic-wc-gtt:
- shard-rkl: NOTRUN -> [SKIP][36] ([i915#14544] / [i915#3281])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-6/igt@gem_exec_reloc@basic-wc-gtt.html
* igt@gem_exec_reloc@basic-write-read:
- shard-dg1: NOTRUN -> [SKIP][37] ([i915#3281])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg1-18/igt@gem_exec_reloc@basic-write-read.html
- shard-mtlp: NOTRUN -> [SKIP][38] ([i915#3281]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-mtlp-5/igt@gem_exec_reloc@basic-write-read.html
* igt@gem_exec_suspend@basic-s3:
- shard-rkl: [PASS][39] -> [ABORT][40] ([i915#15131]) +1 other test abort
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-8/igt@gem_exec_suspend@basic-s3.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-1/igt@gem_exec_suspend@basic-s3.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][41] ([i915#2190])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-8/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4613]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-mtlp-7/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-dg1: NOTRUN -> [SKIP][43] ([i915#12193])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg1-14/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#4565])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg1-14/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-tglu: NOTRUN -> [SKIP][45] ([i915#4613]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-10/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-rkl: NOTRUN -> [SKIP][46] ([i915#4613]) +5 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@random-engines:
- shard-tglu-1: NOTRUN -> [SKIP][47] ([i915#4613]) +2 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-1/igt@gem_lmem_swapping@random-engines.html
* igt@gem_lmem_swapping@verify:
- shard-glk: NOTRUN -> [SKIP][48] ([i915#4613]) +4 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-glk3/igt@gem_lmem_swapping@verify.html
* igt@gem_media_vme:
- shard-rkl: NOTRUN -> [SKIP][49] ([i915#284])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-4/igt@gem_media_vme.html
* igt@gem_mmap_gtt@basic-read-write-distinct:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#4077]) +6 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-6/igt@gem_mmap_gtt@basic-read-write-distinct.html
* igt@gem_mmap_gtt@flink-race:
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#4077]) +2 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg1-12/igt@gem_mmap_gtt@flink-race.html
- shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4077]) +3 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-mtlp-5/igt@gem_mmap_gtt@flink-race.html
* igt@gem_mmap_wc@fault-concurrent:
- shard-dg1: NOTRUN -> [SKIP][53] ([i915#4083])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg1-16/igt@gem_mmap_wc@fault-concurrent.html
- shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4083])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-mtlp-4/igt@gem_mmap_wc@fault-concurrent.html
* igt@gem_mmap_wc@write-gtt-read-wc:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#4083]) +3 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-5/igt@gem_mmap_wc@write-gtt-read-wc.html
* igt@gem_pread@exhaustion:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#3282])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-3/igt@gem_pread@exhaustion.html
* igt@gem_pxp@hw-rejects-pxp-context:
- shard-tglu: NOTRUN -> [SKIP][57] ([i915#13398])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-3/igt@gem_pxp@hw-rejects-pxp-context.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#4270]) +2 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-4/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-dg1: NOTRUN -> [SKIP][59] ([i915#4270])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg1-18/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_readwrite@beyond-eob:
- shard-rkl: NOTRUN -> [SKIP][60] ([i915#3282]) +8 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-8/igt@gem_readwrite@beyond-eob.html
* igt@gem_readwrite@new-obj:
- shard-rkl: NOTRUN -> [SKIP][61] ([i915#14544] / [i915#3282])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-6/igt@gem_readwrite@new-obj.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#8428]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-mtlp-5/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs.html
* igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#5190] / [i915#8428]) +4 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-4/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html
* igt@gem_tiled_pread_pwrite:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#4079]) +2 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-11/igt@gem_tiled_pread_pwrite.html
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#4079]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg1-14/igt@gem_tiled_pread_pwrite.html
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4079]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-mtlp-7/igt@gem_tiled_pread_pwrite.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-tglu-1: NOTRUN -> [SKIP][67] ([i915#3297]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-1/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-tglu: NOTRUN -> [SKIP][68] ([i915#3297]) +2 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-7/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#3297])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg1-16/igt@gem_userptr_blits@readonly-pwrite-unsync.html
- shard-mtlp: NOTRUN -> [SKIP][70] ([i915#3297])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-mtlp-7/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gem_userptr_blits@relocations:
- shard-rkl: NOTRUN -> [SKIP][71] ([i915#3281] / [i915#3297])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-3/igt@gem_userptr_blits@relocations.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-rkl: NOTRUN -> [SKIP][72] ([i915#3297]) +4 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-7/igt@gem_userptr_blits@unsync-overlap.html
* igt@gem_workarounds@suspend-resume-fd:
- shard-rkl: [PASS][73] -> [INCOMPLETE][74] ([i915#13356])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-8/igt@gem_workarounds@suspend-resume-fd.html
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-6/igt@gem_workarounds@suspend-resume-fd.html
- shard-glk: [PASS][75] -> [INCOMPLETE][76] ([i915#13356] / [i915#14586])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-glk9/igt@gem_workarounds@suspend-resume-fd.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-glk1/igt@gem_workarounds@suspend-resume-fd.html
* igt@gen9_exec_parse@bb-chained:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#2856])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-1/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@bb-secure:
- shard-tglu: NOTRUN -> [SKIP][78] ([i915#2527] / [i915#2856]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-10/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@bb-start-param:
- shard-rkl: NOTRUN -> [SKIP][79] ([i915#2527]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-7/igt@gen9_exec_parse@bb-start-param.html
* igt@i915_drm_fdinfo@all-busy-check-all:
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#14123])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-6/igt@i915_drm_fdinfo@all-busy-check-all.html
* igt@i915_drm_fdinfo@virtual-busy:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#14118]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-11/igt@i915_drm_fdinfo@virtual-busy.html
- shard-dg1: NOTRUN -> [SKIP][82] ([i915#14118])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg1-17/igt@i915_drm_fdinfo@virtual-busy.html
- shard-mtlp: NOTRUN -> [SKIP][83] ([i915#14118])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-mtlp-2/igt@i915_drm_fdinfo@virtual-busy.html
* igt@i915_module_load@resize-bar:
- shard-tglu: NOTRUN -> [SKIP][84] ([i915#6412])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-8/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-rkl: NOTRUN -> [SKIP][85] ([i915#8399])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-7/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][86] ([i915#8399]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-1/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglu: [PASS][87] -> [WARN][88] ([i915#13790] / [i915#2681]) +1 other test warn
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-fence.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-rkl: NOTRUN -> [SKIP][89] ([i915#14498])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-8/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_query@hwconfig_table:
- shard-rkl: NOTRUN -> [SKIP][90] ([i915#6245])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-3/igt@i915_query@hwconfig_table.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-mtlp: NOTRUN -> [SKIP][91] ([i915#6188])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-mtlp-6/igt@i915_query@query-topology-coherent-slice-mask.html
- shard-dg2: NOTRUN -> [SKIP][92] ([i915#6188])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-5/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_query@test-query-geometry-subslices:
- shard-rkl: NOTRUN -> [SKIP][93] ([i915#5723])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-2/igt@i915_query@test-query-geometry-subslices.html
- shard-tglu-1: NOTRUN -> [SKIP][94] ([i915#5723])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-1/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_selftest@live@gem_contexts:
- shard-dg2: [PASS][95] -> [DMESG-FAIL][96] ([i915#15558])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-dg2-1/igt@i915_selftest@live@gem_contexts.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-4/igt@i915_selftest@live@gem_contexts.html
* igt@i915_selftest@live@objects:
- shard-dg2: [PASS][97] -> [DMESG-FAIL][98] ([i915#15559])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-dg2-1/igt@i915_selftest@live@objects.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-4/igt@i915_selftest@live@objects.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][99] ([i915#4212]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-8/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#4215] / [i915#5190])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-3/igt@kms_addfb_basic@basic-y-tiled-legacy.html
- shard-dg1: NOTRUN -> [SKIP][101] ([i915#4215])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg1-14/igt@kms_addfb_basic@basic-y-tiled-legacy.html
- shard-mtlp: NOTRUN -> [SKIP][102] ([i915#4212])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-mtlp-5/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg1: NOTRUN -> [SKIP][103] ([i915#4212])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg1-13/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-rkl: NOTRUN -> [SKIP][104] ([i915#12454] / [i915#12712])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-4/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-rkl: NOTRUN -> [INCOMPLETE][105] ([i915#12761]) +1 other test incomplete
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-4/igt@kms_async_flips@async-flip-suspend-resume.html
- shard-glk10: NOTRUN -> [INCOMPLETE][106] ([i915#12761])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-glk10/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2:
- shard-glk10: NOTRUN -> [INCOMPLETE][107] ([i915#12761] / [i915#14995])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-glk10/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-glk: NOTRUN -> [SKIP][108] ([i915#1769])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-glk6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-rkl: NOTRUN -> [SKIP][109] ([i915#14544] / [i915#1769] / [i915#3555])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][110] ([i915#5286]) +5 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-5/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-180:
- shard-tglu-1: NOTRUN -> [SKIP][111] ([i915#5286]) +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-1/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-tglu: NOTRUN -> [SKIP][112] ([i915#5286]) +3 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][113] +6 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-mtlp-2/igt@kms_big_fb@linear-16bpp-rotate-270.html
- shard-dg1: NOTRUN -> [SKIP][114] ([i915#3638])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg1-12/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][115] ([i915#3638]) +5 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-5/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
- shard-tglu: NOTRUN -> [SKIP][116] ([i915#3828]) +1 other test skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-4/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#4538] / [i915#5190]) +8 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][118] ([i915#4538]) +1 other test skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg1-16/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-tglu-1: NOTRUN -> [SKIP][119] +30 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][120] +25 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#6095]) +221 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg1-16/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#10307] / [i915#10434] / [i915#6095]) +5 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][123] ([i915#12313])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-1/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc:
- shard-mtlp: NOTRUN -> [SKIP][124] ([i915#6095]) +14 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-mtlp-7/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][125] ([i915#6095]) +39 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-6/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][126] ([i915#6095]) +48 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-11/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][127] ([i915#12313]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][128] ([i915#14098] / [i915#14544] / [i915#6095]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][129] ([i915#14544] / [i915#6095]) +1 other test skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][130] ([i915#14098] / [i915#6095]) +50 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][131] ([i915#12805])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][132] ([i915#6095]) +67 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-1/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc@pipe-c-dp-3:
- shard-dg2: NOTRUN -> [SKIP][133] ([i915#10307] / [i915#6095]) +108 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-11/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc@pipe-c-dp-3.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][134] ([i915#6095]) +29 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-1/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][135] ([i915#12313])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-10/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-tglu: NOTRUN -> [SKIP][136] ([i915#3742])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-2/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#13781]) +3 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-5/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: NOTRUN -> [SKIP][138] ([i915#3742])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-4/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-tglu: NOTRUN -> [SKIP][139] ([i915#11151] / [i915#7828]) +3 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-5/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_edid@dp-mode-timings:
- shard-rkl: NOTRUN -> [SKIP][140] ([i915#11151] / [i915#14544] / [i915#7828])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-6/igt@kms_chamelium_edid@dp-mode-timings.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-dg1: NOTRUN -> [SKIP][141] ([i915#11151] / [i915#4423] / [i915#7828])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg1-18/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#11151] / [i915#7828]) +4 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-11/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_frames@vga-frame-dump:
- shard-dg1: NOTRUN -> [SKIP][143] ([i915#11151] / [i915#7828])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg1-12/igt@kms_chamelium_frames@vga-frame-dump.html
- shard-mtlp: NOTRUN -> [SKIP][144] ([i915#11151] / [i915#7828]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-mtlp-5/igt@kms_chamelium_frames@vga-frame-dump.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][145] ([i915#11151] / [i915#7828]) +4 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-3/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
- shard-tglu-1: NOTRUN -> [SKIP][146] ([i915#11151] / [i915#7828]) +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
* igt@kms_color@deep-color:
- shard-tglu: NOTRUN -> [SKIP][147] ([i915#3555] / [i915#9979])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-9/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic-dpms-hdcp14:
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#6944])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-8/igt@kms_content_protection@atomic-dpms-hdcp14.html
- shard-dg1: NOTRUN -> [SKIP][149] ([i915#6944])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg1-17/igt@kms_content_protection@atomic-dpms-hdcp14.html
- shard-tglu: NOTRUN -> [SKIP][150] ([i915#6944])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-8/igt@kms_content_protection@atomic-dpms-hdcp14.html
- shard-mtlp: NOTRUN -> [SKIP][151] ([i915#6944])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-mtlp-2/igt@kms_content_protection@atomic-dpms-hdcp14.html
* igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [FAIL][152] ([i915#7173]) +1 other test fail
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-11/igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-3.html
* igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
- shard-tglu: NOTRUN -> [SKIP][153] ([i915#15330])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-9/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-tglu: NOTRUN -> [SKIP][154] ([i915#15330] / [i915#3116] / [i915#3299])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-3/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-1-suspend-resume:
- shard-dg2: NOTRUN -> [SKIP][155] ([i915#15330])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-3/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
- shard-tglu-1: NOTRUN -> [SKIP][156] ([i915#15330])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-1/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
* igt@kms_content_protection@legacy:
- shard-tglu-1: NOTRUN -> [SKIP][157] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-1/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-0:
- shard-rkl: NOTRUN -> [SKIP][158] ([i915#6944] / [i915#9424]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-8/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-1:
- shard-mtlp: NOTRUN -> [SKIP][159] ([i915#6944] / [i915#9424])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-mtlp-4/igt@kms_content_protection@lic-type-1.html
- shard-dg2: NOTRUN -> [SKIP][160] ([i915#6944] / [i915#9424])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-5/igt@kms_content_protection@lic-type-1.html
- shard-dg1: NOTRUN -> [SKIP][161] ([i915#6944] / [i915#9424])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg1-16/igt@kms_content_protection@lic-type-1.html
- shard-tglu: NOTRUN -> [SKIP][162] ([i915#6944] / [i915#9424])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-2/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@type1:
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#6944] / [i915#7118] / [i915#9424]) +2 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-4/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-mtlp: NOTRUN -> [SKIP][164] ([i915#3555] / [i915#8814])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-mtlp-3/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-tglu: [PASS][165] -> [FAIL][166] ([i915#13566]) +1 other test fail
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#3555]) +2 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-tglu: NOTRUN -> [SKIP][168] ([i915#13049]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-8/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#13049])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][170] ([i915#13566])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][171] ([i915#12358] / [i915#14152] / [i915#7882])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-glk6/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][172] ([i915#12358] / [i915#14152])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-glk6/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-rkl: NOTRUN -> [SKIP][173] ([i915#4103]) +2 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-dg2: NOTRUN -> [SKIP][174] ([i915#13046] / [i915#5354]) +2 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-4/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
- shard-mtlp: NOTRUN -> [SKIP][175] ([i915#9809])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-mtlp-3/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-tglu-1: NOTRUN -> [SKIP][176] ([i915#4103])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-tglu-1: NOTRUN -> [SKIP][177] ([i915#9723])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][178] ([i915#9723]) +1 other test skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-8/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-rkl: NOTRUN -> [SKIP][179] ([i915#13691])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-7/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][180] ([i915#3804])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-tglu: NOTRUN -> [SKIP][181] ([i915#13707])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-7/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-dg2: NOTRUN -> [SKIP][182] ([i915#13707])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-3/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][183] ([i915#8812])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg1-17/igt@kms_draw_crc@draw-method-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][184] ([i915#3555] / [i915#8812])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-mtlp-6/igt@kms_draw_crc@draw-method-mmap-gtt.html
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#8812])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-6/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-basic:
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#3555] / [i915#3840]) +1 other test skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-3/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#3840] / [i915#9688])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-11/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-rkl: NOTRUN -> [INCOMPLETE][188] ([i915#9878])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-3/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-tglu: NOTRUN -> [SKIP][189] ([i915#2065] / [i915#4854])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-10/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@dp-mst:
- shard-tglu: NOTRUN -> [SKIP][190] ([i915#9337])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-2/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#9934]) +2 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-4/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-tglu: NOTRUN -> [SKIP][192] ([i915#3637] / [i915#9934]) +7 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-8/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-rkl: NOTRUN -> [SKIP][193] ([i915#14544] / [i915#9934])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-6/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-rkl: NOTRUN -> [SKIP][194] ([i915#9934]) +7 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-5/igt@kms_flip@2x-plain-flip-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][195] ([i915#9934]) +1 other test skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg1-13/igt@kms_flip@2x-plain-flip-interruptible.html
- shard-mtlp: NOTRUN -> [SKIP][196] ([i915#3637] / [i915#9934]) +1 other test skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-mtlp-3/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-tglu-1: NOTRUN -> [SKIP][197] ([i915#3637] / [i915#9934]) +1 other test skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-1/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip@flip-vs-fences:
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#8381])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-7/igt@kms_flip@flip-vs-fences.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-glk: NOTRUN -> [INCOMPLETE][199] ([i915#12745] / [i915#4839])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-glk9/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][200] ([i915#12745])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-glk9/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][201] ([i915#15643]) +3 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#15643])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#15643] / [i915#5190]) +2 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-6/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: NOTRUN -> [SKIP][204] ([i915#15643]) +3 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-mtlp: NOTRUN -> [SKIP][205] ([i915#15643])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x:
- shard-tglu-1: NOTRUN -> [SKIP][206] ([i915#15645])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-dg1: NOTRUN -> [SKIP][207] ([i915#15643]) +1 other test skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
- shard-mtlp: NOTRUN -> [SKIP][208] ([i915#3555] / [i915#8813])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][209] ([i915#8810] / [i915#8813])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][210] ([i915#14544] / [i915#15643])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][211] ([i915#15643])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][212] ([i915#15104])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt:
- shard-dg2: [PASS][213] -> [FAIL][214] ([i915#15389] / [i915#6880])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-dg1: NOTRUN -> [SKIP][215] +6 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][216] ([i915#15574]) +4 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][217] ([i915#15102]) +5 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#15102] / [i915#3023]) +17 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
- shard-dg1: NOTRUN -> [SKIP][219] ([i915#15102] / [i915#3458]) +4 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][220] ([i915#1825]) +43 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-mtlp: NOTRUN -> [SKIP][221] ([i915#1825]) +5 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-suspend:
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#14544] / [i915#15102] / [i915#3023])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#15102]) +1 other test skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][224] ([i915#15102]) +11 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-blt:
- shard-tglu: NOTRUN -> [SKIP][225] ([i915#15102]) +14 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-blt.html
- shard-dg1: NOTRUN -> [SKIP][226] ([i915#15102])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw:
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#15102] / [i915#3458]) +9 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@psr-2p-pri-indfb-multidraw:
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#5354]) +12 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][229] ([i915#14544] / [i915#1825]) +4 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][230] ([i915#8708]) +3 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-tglu: NOTRUN -> [SKIP][231] +41 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-render:
- shard-dg2: NOTRUN -> [SKIP][232] ([i915#15574])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-render.html
- shard-dg1: NOTRUN -> [SKIP][233] ([i915#15574])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-render.html
- shard-tglu: NOTRUN -> [SKIP][234] ([i915#15574])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-render.html
- shard-mtlp: NOTRUN -> [SKIP][235] ([i915#15574])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-render.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][236] ([i915#8708]) +13 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#8708]) +6 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
* igt@kms_getfb@getfb-reject-nv12:
- shard-dg1: [PASS][238] -> [DMESG-WARN][239] ([i915#4423]) +1 other test dmesg-warn
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-dg1-12/igt@kms_getfb@getfb-reject-nv12.html
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg1-14/igt@kms_getfb@getfb-reject-nv12.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#3555] / [i915#8228])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-4/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@brightness-with-hdr:
- shard-mtlp: NOTRUN -> [SKIP][241] ([i915#12713])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-mtlp-6/igt@kms_hdr@brightness-with-hdr.html
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#12713])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-5/igt@kms_hdr@brightness-with-hdr.html
- shard-rkl: NOTRUN -> [SKIP][243] ([i915#12713])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-8/igt@kms_hdr@brightness-with-hdr.html
- shard-dg1: NOTRUN -> [SKIP][244] ([i915#12713])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg1-12/igt@kms_hdr@brightness-with-hdr.html
- shard-tglu: NOTRUN -> [SKIP][245] ([i915#12713])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-4/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-tglu-1: NOTRUN -> [SKIP][246] ([i915#3555] / [i915#8228]) +1 other test skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-1/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle-dpms:
- shard-rkl: NOTRUN -> [SKIP][247] ([i915#3555] / [i915#8228])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-8/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_hdr@static-toggle-suspend:
- shard-tglu: NOTRUN -> [SKIP][248] ([i915#3555] / [i915#8228])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-3/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-rkl: NOTRUN -> [SKIP][249] ([i915#13688])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-7/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][250] ([i915#15460])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-2/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][251] ([i915#15458])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-2/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
- shard-tglu-1: NOTRUN -> [SKIP][252] ([i915#15458])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#15458])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-7/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-mtlp: NOTRUN -> [SKIP][254] ([i915#4816])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-mtlp-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-dg2: NOTRUN -> [SKIP][255] ([i915#4816])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-rkl: NOTRUN -> [SKIP][256] ([i915#1839] / [i915#4816])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-dg1: NOTRUN -> [SKIP][257] ([i915#1839])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg1-13/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-tglu: NOTRUN -> [SKIP][258] ([i915#1839])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@legacy:
- shard-tglu: NOTRUN -> [SKIP][259] ([i915#6301]) +1 other test skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-8/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_crc_basic@mst-suspend-read-crc (NEW):
- shard-snb: NOTRUN -> [SKIP][260] +74 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-snb6/igt@kms_pipe_crc_basic@mst-suspend-read-crc.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-rkl: [PASS][261] -> [INCOMPLETE][262] ([i915#12756] / [i915#13476])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-4/igt@kms_pipe_crc_basic@suspend-read-crc.html
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][263] ([i915#12756] / [i915#13409] / [i915#13476]) +1 other test incomplete
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-glk6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2:
- shard-rkl: [PASS][264] -> [INCOMPLETE][265] ([i915#13476])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2.html
* igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier@pipe-b-plane-5:
- shard-dg2: NOTRUN -> [SKIP][266] ([i915#15608] / [i915#8825]) +1 other test skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-4/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier:
- shard-glk10: NOTRUN -> [SKIP][267] +132 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-glk10/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping:
- shard-tglu-1: NOTRUN -> [SKIP][268] ([i915#15608] / [i915#15609] / [i915#8825])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping@pipe-a-plane-7:
- shard-tglu-1: NOTRUN -> [SKIP][269] ([i915#15609]) +2 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping@pipe-a-plane-7.html
* igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping@pipe-b-plane-7:
- shard-tglu-1: NOTRUN -> [SKIP][270] ([i915#15609] / [i915#8825])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping:
- shard-dg2: NOTRUN -> [SKIP][271] ([i915#15608] / [i915#15609] / [i915#8825])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-4/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping@pipe-a-plane-5:
- shard-dg2: NOTRUN -> [SKIP][272] ([i915#15609]) +2 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-4/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping@pipe-b-plane-0:
- shard-dg2: NOTRUN -> [SKIP][273] ([i915#15608]) +8 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-4/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping@pipe-b-plane-0.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping@pipe-b-plane-5:
- shard-dg2: NOTRUN -> [SKIP][274] ([i915#15609] / [i915#8825])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-4/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-3:
- shard-tglu-1: NOTRUN -> [SKIP][275] ([i915#15608]) +19 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-3.html
* igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-5:
- shard-rkl: NOTRUN -> [SKIP][276] ([i915#15608] / [i915#8825]) +1 other test skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-2/igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-7:
- shard-tglu-1: NOTRUN -> [SKIP][277] ([i915#15608] / [i915#8825]) +3 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping:
- shard-rkl: NOTRUN -> [SKIP][278] ([i915#15608] / [i915#15609] / [i915#8825]) +2 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping@pipe-a-plane-5:
- shard-rkl: NOTRUN -> [SKIP][279] ([i915#15609]) +2 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping@pipe-b-plane-5:
- shard-rkl: NOTRUN -> [SKIP][280] ([i915#15609] / [i915#8825]) +2 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping:
- shard-tglu: NOTRUN -> [SKIP][281] ([i915#15608] / [i915#15609] / [i915#8825]) +1 other test skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping@pipe-a-plane-3:
- shard-tglu: NOTRUN -> [SKIP][282] ([i915#15608]) +11 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping@pipe-a-plane-3.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping@pipe-b-plane-7:
- shard-tglu: NOTRUN -> [SKIP][283] ([i915#15609] / [i915#8825]) +1 other test skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-7:
- shard-dg1: NOTRUN -> [SKIP][284] ([i915#15608]) +1 other test skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg1-17/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping@pipe-b-plane-7:
- shard-tglu: NOTRUN -> [SKIP][285] ([i915#15609]) +3 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-8/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping@pipe-a-plane-0:
- shard-rkl: NOTRUN -> [SKIP][286] ([i915#15608]) +16 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-8/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping@pipe-a-plane-0.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][287] ([i915#13026]) +1 other test incomplete
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-glk5/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb:
- shard-glk: NOTRUN -> [FAIL][288] ([i915#10647] / [i915#12169])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-glk3/igt@kms_plane_alpha_blend@alpha-opaque-fb.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][289] ([i915#10647]) +1 other test fail
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-glk3/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-x:
- shard-mtlp: NOTRUN -> [SKIP][290] ([i915#11614] / [i915#3582]) +1 other test skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-mtlp-5/igt@kms_plane_lowres@tiling-x.html
* igt@kms_plane_lowres@tiling-x@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][291] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-mtlp-5/igt@kms_plane_lowres@tiling-x@pipe-c-edp-1.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-dg2: NOTRUN -> [SKIP][292] ([i915#13958])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-6/igt@kms_plane_multiple@2x-tiling-4.html
- shard-dg1: NOTRUN -> [SKIP][293] ([i915#13958])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg1-17/igt@kms_plane_multiple@2x-tiling-4.html
- shard-tglu: NOTRUN -> [SKIP][294] ([i915#13958]) +1 other test skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-3/igt@kms_plane_multiple@2x-tiling-4.html
- shard-mtlp: NOTRUN -> [SKIP][295] ([i915#13958])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-mtlp-8/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@tiling-yf:
- shard-rkl: NOTRUN -> [SKIP][296] ([i915#14259]) +1 other test skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-8/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- shard-tglu-1: NOTRUN -> [SKIP][297] ([i915#15329]) +4 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][298] ([i915#15329]) +3 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
- shard-dg1: NOTRUN -> [SKIP][299] ([i915#15329]) +4 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg1-16/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][300] ([i915#15329]) +9 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-5/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d:
- shard-mtlp: NOTRUN -> [SKIP][301] ([i915#15329]) +4 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d.html
* igt@kms_pm_backlight@bad-brightness:
- shard-tglu-1: NOTRUN -> [SKIP][302] ([i915#9812])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-1/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@basic-brightness:
- shard-tglu: NOTRUN -> [SKIP][303] ([i915#9812])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-4/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@fade:
- shard-rkl: NOTRUN -> [SKIP][304] ([i915#5354])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-2/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2: NOTRUN -> [SKIP][305] ([i915#9685]) +1 other test skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-1/igt@kms_pm_dc@dc5-psr.html
- shard-rkl: NOTRUN -> [SKIP][306] ([i915#14544] / [i915#9685])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-6/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-rkl: NOTRUN -> [SKIP][307] ([i915#3828])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-1/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-psr:
- shard-rkl: NOTRUN -> [SKIP][308] ([i915#9685]) +2 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-2/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: NOTRUN -> [SKIP][309] ([i915#4281])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-5/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-dg1: [PASS][310] -> [SKIP][311] ([i915#15073])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-dg1-14/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg1-12/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg2: [PASS][312] -> [SKIP][313] ([i915#15073])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [PASS][314] -> [SKIP][315] ([i915#15073]) +1 other test skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@modeset-pc8-residency-stress:
- shard-dg2: NOTRUN -> [SKIP][316] +5 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-11/igt@kms_pm_rpm@modeset-pc8-residency-stress.html
* igt@kms_pm_rpm@package-g7:
- shard-rkl: NOTRUN -> [SKIP][317] ([i915#15403])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-1/igt@kms_pm_rpm@package-g7.html
* igt@kms_prime@basic-crc-hybrid:
- shard-rkl: NOTRUN -> [SKIP][318] ([i915#6524])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-3/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
- shard-tglu: NOTRUN -> [SKIP][319] ([i915#11520]) +7 other tests skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-4/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
- shard-mtlp: NOTRUN -> [SKIP][320] ([i915#12316]) +1 other test skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-mtlp-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][321] ([i915#11520]) +7 other tests skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-4/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][322] ([i915#11520]) +3 other tests skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
- shard-glk: NOTRUN -> [SKIP][323] ([i915#11520]) +10 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-glk5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-tglu-1: NOTRUN -> [SKIP][324] ([i915#11520]) +4 other tests skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-snb: NOTRUN -> [SKIP][325] ([i915#11520]) +1 other test skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-snb1/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
- shard-dg1: NOTRUN -> [SKIP][326] ([i915#11520]) +1 other test skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg1-16/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
- shard-glk10: NOTRUN -> [SKIP][327] ([i915#11520]) +3 other tests skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-glk10/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr@fbc-pr-sprite-plane-onoff:
- shard-rkl: NOTRUN -> [SKIP][328] ([i915#1072] / [i915#9732]) +22 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-7/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
* igt@kms_psr@fbc-psr-basic:
- shard-dg2: NOTRUN -> [SKIP][329] ([i915#1072] / [i915#9732]) +11 other tests skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-6/igt@kms_psr@fbc-psr-basic.html
- shard-tglu-1: NOTRUN -> [SKIP][330] ([i915#9732]) +10 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-1/igt@kms_psr@fbc-psr-basic.html
* igt@kms_psr@fbc-psr-cursor-blt:
- shard-dg1: NOTRUN -> [SKIP][331] ([i915#1072] / [i915#9732]) +3 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg1-16/igt@kms_psr@fbc-psr-cursor-blt.html
* igt@kms_psr@fbc-psr-cursor-blt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][332] ([i915#9688]) +4 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-mtlp-7/igt@kms_psr@fbc-psr-cursor-blt@edp-1.html
* igt@kms_psr@fbc-psr2-cursor-mmap-gtt:
- shard-glk: NOTRUN -> [SKIP][333] +353 other tests skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-glk9/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html
* igt@kms_psr@pr-primary-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][334] ([i915#1072] / [i915#14544] / [i915#9732])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-6/igt@kms_psr@pr-primary-mmap-cpu.html
* igt@kms_psr@psr2-cursor-plane-onoff:
- shard-tglu: NOTRUN -> [SKIP][335] ([i915#9732]) +17 other tests skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-9/igt@kms_psr@psr2-cursor-plane-onoff.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg1: NOTRUN -> [SKIP][336] ([i915#9685]) +2 other tests skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg1-17/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
- shard-tglu: NOTRUN -> [SKIP][337] ([i915#9685]) +1 other test skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
- shard-glk10: NOTRUN -> [INCOMPLETE][338] ([i915#15500])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-glk10/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-top:
- shard-glk10: NOTRUN -> [INCOMPLETE][339] ([i915#15492])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-glk10/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-rkl: NOTRUN -> [SKIP][340] ([i915#5289])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-3/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-dg2: NOTRUN -> [SKIP][341] ([i915#12755])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-7/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][342] ([i915#12755] / [i915#5190])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
- shard-mtlp: NOTRUN -> [SKIP][343] ([i915#12755])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-mtlp-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-tglu: NOTRUN -> [SKIP][344] ([i915#3555]) +7 other tests skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-10/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_selftest@drm_framebuffer:
- shard-rkl: NOTRUN -> [ABORT][345] ([i915#13179]) +1 other test abort
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-3/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@basic:
- shard-snb: [PASS][346] -> [FAIL][347] ([i915#15106]) +2 other tests fail
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-snb6/igt@kms_setmode@basic.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-snb4/igt@kms_setmode@basic.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-dg2: NOTRUN -> [SKIP][348] ([i915#3555]) +4 other tests skip
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-7/igt@kms_setmode@invalid-clone-single-crtc.html
- shard-rkl: NOTRUN -> [SKIP][349] ([i915#3555]) +1 other test skip
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-5/igt@kms_setmode@invalid-clone-single-crtc.html
- shard-dg1: NOTRUN -> [SKIP][350] ([i915#3555]) +1 other test skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg1-13/igt@kms_setmode@invalid-clone-single-crtc.html
- shard-mtlp: NOTRUN -> [SKIP][351] ([i915#3555] / [i915#8809])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-mtlp-3/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-tglu: NOTRUN -> [SKIP][352] ([i915#8623])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-7/igt@kms_tiled_display@basic-test-pattern.html
- shard-glk: NOTRUN -> [FAIL][353] ([i915#10959])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-glk6/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][354] ([i915#12276]) +1 other test incomplete
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-glk5/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2.html
* igt@kms_vrr@flip-suspend:
- shard-rkl: NOTRUN -> [SKIP][355] ([i915#15243] / [i915#3555])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-3/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-tglu-1: NOTRUN -> [SKIP][356] ([i915#9906])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-tglu: NOTRUN -> [SKIP][357] ([i915#9906])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-10/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-rkl: NOTRUN -> [SKIP][358] ([i915#9906]) +2 other tests skip
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-7/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: NOTRUN -> [FAIL][359] ([i915#9100]) +1 other test fail
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-3/igt@perf@non-zero-reason@0-rcs0.html
* igt@perf_pmu@busy-idle:
- shard-mtlp: [PASS][360] -> [FAIL][361] ([i915#4349]) +4 other tests fail
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-mtlp-7/igt@perf_pmu@busy-idle.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-mtlp-6/igt@perf_pmu@busy-idle.html
* igt@perf_pmu@module-unload:
- shard-rkl: NOTRUN -> [FAIL][362] ([i915#14433])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-8/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-rkl: NOTRUN -> [SKIP][363] ([i915#8516])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-2/igt@perf_pmu@rc6@other-idle-gt0.html
- shard-tglu-1: NOTRUN -> [SKIP][364] ([i915#8516])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-1/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2: NOTRUN -> [SKIP][365] ([i915#9917])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-5/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-dg1: NOTRUN -> [SKIP][366] ([i915#9917])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg1-18/igt@sriov_basic@enable-vfs-autoprobe-on.html
#### Possible fixes ####
* igt@gem_eio@throttle:
- shard-dg1: [DMESG-WARN][367] ([i915#4423]) -> [PASS][368] +4 other tests pass
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-dg1-13/igt@gem_eio@throttle.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg1-18/igt@gem_eio@throttle.html
* igt@gem_workarounds@suspend-resume-context:
- shard-rkl: [INCOMPLETE][369] ([i915#13356]) -> [PASS][370]
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-6/igt@gem_workarounds@suspend-resume-context.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-7/igt@gem_workarounds@suspend-resume-context.html
* igt@i915_pm_freq_api@freq-suspend@gt0:
- shard-dg2: [INCOMPLETE][371] ([i915#13356] / [i915#13820]) -> [PASS][372] +1 other test pass
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-dg2-4/igt@i915_pm_freq_api@freq-suspend@gt0.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-3/igt@i915_pm_freq_api@freq-suspend@gt0.html
* igt@i915_selftest@live:
- shard-mtlp: [DMESG-FAIL][373] ([i915#12061] / [i915#15560]) -> [PASS][374]
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-mtlp-5/igt@i915_selftest@live.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-mtlp-2/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- shard-mtlp: [DMESG-FAIL][375] ([i915#12061]) -> [PASS][376]
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-mtlp-5/igt@i915_selftest@live@workarounds.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-mtlp-2/igt@i915_selftest@live@workarounds.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3:
- shard-dg2: [FAIL][377] ([i915#5956]) -> [PASS][378] +1 other test pass
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-dg2-1/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3.html
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-6/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-tglu: [FAIL][379] ([i915#13566]) -> [PASS][380] +5 other tests pass
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-256x85.html
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-tglu-7/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-rkl: [FAIL][381] ([i915#13566]) -> [PASS][382] +3 other tests pass
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-128x42.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-snb: [SKIP][383] -> [PASS][384]
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-snb5/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-snb5/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1:
- shard-snb: [TIMEOUT][385] ([i915#14033]) -> [PASS][386] +1 other test pass
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-snb5/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-snb7/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend:
- shard-rkl: [INCOMPLETE][387] ([i915#6113]) -> [PASS][388]
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-6/igt@kms_flip@flip-vs-suspend.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-2/igt@kms_flip@flip-vs-suspend.html
* igt@kms_hdr@static-toggle:
- shard-rkl: [SKIP][389] ([i915#3555] / [i915#8228]) -> [PASS][390]
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-3/igt@kms_hdr@static-toggle.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-1/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-dpms:
- shard-dg2: [SKIP][391] ([i915#3555] / [i915#8228]) -> [PASS][392]
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-dg2-6/igt@kms_hdr@static-toggle-dpms.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-11/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2: [SKIP][393] ([i915#15073]) -> [PASS][394]
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-dg2-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: [SKIP][395] ([i915#15073]) -> [PASS][396]
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp-stress.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg1: [SKIP][397] ([i915#15073]) -> [PASS][398]
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-dg1-17/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [FAIL][399] ([i915#4349]) -> [PASS][400] +4 other tests pass
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-dg2-5/igt@perf_pmu@busy-double-start@vecs1.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html
#### Warnings ####
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-rkl: [SKIP][401] ([i915#8411]) -> [SKIP][402] ([i915#14544] / [i915#8411])
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-8/igt@api_intel_bb@object-reloc-keep-cache.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-6/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-rkl: [SKIP][403] ([i915#14544] / [i915#3281]) -> [SKIP][404] ([i915#3281]) +3 other tests skip
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-6/igt@gem_bad_reloc@negative-reloc-lut.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-5/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_exec_balancer@parallel-keep-in-fence:
- shard-rkl: [SKIP][405] ([i915#14544] / [i915#4525]) -> [SKIP][406] ([i915#4525])
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-6/igt@gem_exec_balancer@parallel-keep-in-fence.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-8/igt@gem_exec_balancer@parallel-keep-in-fence.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: [SKIP][407] ([i915#4613] / [i915#7582]) -> [SKIP][408] ([i915#14544] / [i915#4613] / [i915#7582])
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-7/igt@gem_lmem_evict@dontneed-evict-race.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-6/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-rkl: [SKIP][409] ([i915#14544] / [i915#4613]) -> [SKIP][410] ([i915#4613])
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-5/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@parallel-random-engines:
- shard-rkl: [SKIP][411] ([i915#4613]) -> [SKIP][412] ([i915#14544] / [i915#4613])
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-5/igt@gem_lmem_swapping@parallel-random-engines.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_partial_pwrite_pread@write-display:
- shard-rkl: [SKIP][413] ([i915#3282]) -> [SKIP][414] ([i915#14544] / [i915#3282])
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-7/igt@gem_partial_pwrite_pread@write-display.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-6/igt@gem_partial_pwrite_pread@write-display.html
* igt@gem_pwrite@basic-random:
- shard-rkl: [SKIP][415] ([i915#14544] / [i915#3282]) -> [SKIP][416] ([i915#3282]) +1 other test skip
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-6/igt@gem_pwrite@basic-random.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-5/igt@gem_pwrite@basic-random.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-rkl: [SKIP][417] ([i915#3297]) -> [SKIP][418] ([i915#14544] / [i915#3297])
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-5/igt@gem_userptr_blits@dmabuf-unsync.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-6/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-rkl: [SKIP][419] ([i915#14544] / [i915#3297]) -> [SKIP][420] ([i915#3297])
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-6/igt@gem_userptr_blits@readonly-unsync.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-2/igt@gem_userptr_blits@readonly-unsync.html
* igt@gen9_exec_parse@allowed-all:
- shard-rkl: [SKIP][421] ([i915#14544] / [i915#2527]) -> [SKIP][422] ([i915#2527])
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-6/igt@gen9_exec_parse@allowed-all.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-8/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@bb-chained:
- shard-rkl: [SKIP][423] ([i915#2527]) -> [SKIP][424] ([i915#14544] / [i915#2527])
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-4/igt@gen9_exec_parse@bb-chained.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-6/igt@gen9_exec_parse@bb-chained.html
* igt@i915_module_load@fault-injection@__uc_init:
- shard-rkl: [SKIP][425] ([i915#15479]) -> [SKIP][426] ([i915#14544] / [i915#15479]) +4 other tests skip
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-7/igt@i915_module_load@fault-injection@__uc_init.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-6/igt@i915_module_load@fault-injection@__uc_init.html
* igt@i915_selftest@live:
- shard-dg2: [DMESG-FAIL][427] ([i915#12061]) -> [DMESG-FAIL][428] ([i915#12061] / [i915#15559])
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-dg2-1/igt@i915_selftest@live.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-4/igt@i915_selftest@live.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-rkl: [INCOMPLETE][429] ([i915#4817]) -> [ABORT][430] ([i915#15140])
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-6/igt@i915_suspend@fence-restore-tiled2untiled.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-1/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-rkl: [SKIP][431] ([i915#14544] / [i915#5286]) -> [SKIP][432] ([i915#5286])
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-rkl: [SKIP][433] ([i915#5286]) -> [SKIP][434] ([i915#14544] / [i915#5286]) +2 other tests skip
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
- shard-rkl: [SKIP][435] ([i915#3828]) -> [SKIP][436] ([i915#14544] / [i915#3828])
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-8/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-rkl: [SKIP][437] ([i915#14544] / [i915#3638]) -> [SKIP][438] ([i915#3638]) +1 other test skip
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-2/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
- shard-rkl: [SKIP][439] ([i915#14544]) -> [SKIP][440] +3 other tests skip
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-6/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-8/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][441] ([i915#12313] / [i915#14544]) -> [SKIP][442] ([i915#12313]) +1 other test skip
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-3/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-dg1: [SKIP][443] ([i915#12313]) -> [SKIP][444] ([i915#12313] / [i915#4423])
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-dg1-13/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg1-12/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][445] ([i915#6095]) -> [SKIP][446] ([i915#14544] / [i915#6095]) +1 other test skip
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][447] ([i915#14098] / [i915#6095]) -> [SKIP][448] ([i915#14098] / [i915#14544] / [i915#6095]) +1 other test skip
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][449] ([i915#14544] / [i915#6095]) -> [SKIP][450] ([i915#6095]) +1 other test skip
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-6/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2.html
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-3/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][451] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][452] ([i915#14098] / [i915#6095]) +3 other tests skip
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-6/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-3/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-rkl: [SKIP][453] -> [SKIP][454] ([i915#14544]) +1 other test skip
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-2/igt@kms_chamelium_color@ctm-green-to-red.html
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-6/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_frames@dp-crc-multiple:
- shard-rkl: [SKIP][455] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][456] ([i915#11151] / [i915#7828]) +1 other test skip
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-6/igt@kms_chamelium_frames@dp-crc-multiple.html
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-1/igt@kms_chamelium_frames@dp-crc-multiple.html
* igt@kms_chamelium_hpd@vga-hpd-after-suspend:
- shard-rkl: [SKIP][457] ([i915#11151] / [i915#7828]) -> [SKIP][458] ([i915#11151] / [i915#14544] / [i915#7828])
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-2/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html
* igt@kms_content_protection@atomic:
- shard-rkl: [SKIP][459] ([i915#6944] / [i915#7118] / [i915#9424]) -> [SKIP][460] ([i915#14544] / [i915#6944] / [i915#7118] / [i915#9424])
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-8/igt@kms_content_protection@atomic.html
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-6/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-hdcp14:
- shard-dg2: [FAIL][461] ([i915#7173]) -> [SKIP][462] ([i915#6944])
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-dg2-11/igt@kms_content_protection@atomic-hdcp14.html
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-8/igt@kms_content_protection@atomic-hdcp14.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-rkl: [SKIP][463] ([i915#14544] / [i915#15330] / [i915#3116]) -> [SKIP][464] ([i915#15330] / [i915#3116])
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1.html
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-4/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-rkl: [SKIP][465] ([i915#14544] / [i915#3555]) -> [SKIP][466] ([i915#3555])
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-32x32.html
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-dg1: [SKIP][467] ([i915#3555] / [i915#4423]) -> [SKIP][468] ([i915#3555])
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-dg1-13/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg1-17/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-rkl: [SKIP][469] ([i915#13049] / [i915#14544]) -> [SKIP][470] ([i915#13049])
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-rkl: [SKIP][471] ([i915#3555]) -> [SKIP][472] ([i915#14544] / [i915#3555])
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-32x10.html
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-rkl: [SKIP][473] ([i915#14544] / [i915#4103]) -> [SKIP][474] ([i915#4103])
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-rkl: [SKIP][475] ([i915#14544] / [i915#3555] / [i915#3804]) -> [SKIP][476] ([i915#3555] / [i915#3804])
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_feature_discovery@display-2x:
- shard-rkl: [SKIP][477] ([i915#14544] / [i915#1839]) -> [SKIP][478] ([i915#1839])
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-6/igt@kms_feature_discovery@display-2x.html
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-8/igt@kms_feature_discovery@display-2x.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-rkl: [SKIP][479] ([i915#14544] / [i915#9934]) -> [SKIP][480] ([i915#9934])
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-6/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-7/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-rkl: [SKIP][481] ([i915#9934]) -> [SKIP][482] ([i915#14544] / [i915#9934])
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-2/igt@kms_flip@2x-nonexisting-fb.html
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-6/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-rkl: [SKIP][483] ([i915#14544]) -> [SKIP][484] ([i915#15643]) +3 other tests skip
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-rkl: [SKIP][485] ([i915#15643]) -> [SKIP][486] ([i915#14544] / [i915#15643])
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2: [SKIP][487] ([i915#5190]) -> [SKIP][488] ([i915#15643] / [i915#5190]) +9 other tests skip
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt:
- shard-dg1: [SKIP][489] ([i915#4423]) -> [SKIP][490] +2 other tests skip
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: [SKIP][491] ([i915#14544] / [i915#1825]) -> [SKIP][492] ([i915#1825]) +7 other tests skip
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-dg2: [SKIP][493] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][494] ([i915#15102] / [i915#3458]) +1 other test skip
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt:
- shard-rkl: [SKIP][495] ([i915#1825]) -> [SKIP][496] ([i915#14544] / [i915#1825]) +5 other tests skip
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt.html
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-pwrite:
- shard-rkl: [SKIP][497] ([i915#15574]) -> [SKIP][498] ([i915#14544] / [i915#15574]) +1 other test skip
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-pwrite.html
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt:
- shard-rkl: [SKIP][499] ([i915#15102] / [i915#3023]) -> [SKIP][500] ([i915#14544] / [i915#15102] / [i915#3023]) +4 other tests skip
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt:
- shard-rkl: [SKIP][501] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][502] ([i915#15102] / [i915#3023]) +8 other tests skip
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite:
- shard-rkl: [SKIP][503] ([i915#14544] / [i915#15102]) -> [SKIP][504] ([i915#15102]) +3 other tests skip
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite.html
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: [SKIP][505] ([i915#15102] / [i915#3458]) -> [SKIP][506] ([i915#10433] / [i915#15102] / [i915#3458]) +2 other tests skip
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_hdr@invalid-hdr:
- shard-rkl: [SKIP][507] ([i915#3555] / [i915#8228]) -> [SKIP][508] ([i915#14544] / [i915#3555] / [i915#8228])
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-8/igt@kms_hdr@invalid-hdr.html
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-6/igt@kms_hdr@invalid-hdr.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier:
- shard-rkl: [SKIP][509] ([i915#15608] / [i915#8825]) -> [SKIP][510] ([i915#14544] / [i915#15608] / [i915#8825]) +1 other test skip
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-8/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-a-plane-0:
- shard-rkl: [SKIP][511] ([i915#15608]) -> [SKIP][512] ([i915#14544] / [i915#15608])
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-8/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-a-plane-0.html
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-a-plane-0.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-rkl: [SKIP][513] ([i915#13958]) -> [SKIP][514] ([i915#13958] / [i915#14544])
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-3/igt@kms_plane_multiple@2x-tiling-y.html
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-rkl: [SKIP][515] ([i915#15073]) -> [SKIP][516] ([i915#14544] / [i915#15073])
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: [SKIP][517] ([i915#14544] / [i915#6524]) -> [SKIP][518] ([i915#6524])
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-6/igt@kms_prime@basic-modeset-hybrid.html
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-4/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-dg1: [SKIP][519] ([i915#11520]) -> [SKIP][520] ([i915#11520] / [i915#4423])
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-dg1-12/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-dg1-18/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-rkl: [SKIP][521] ([i915#11520] / [i915#14544]) -> [SKIP][522] ([i915#11520]) +1 other test skip
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-6/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-3/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
- shard-rkl: [SKIP][523] ([i915#11520]) -> [SKIP][524] ([i915#11520] / [i915#14544])
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-7/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr@fbc-pr-cursor-plane-move:
- shard-rkl: [SKIP][525] ([i915#1072] / [i915#9732]) -> [SKIP][526] ([i915#1072] / [i915#14544] / [i915#9732]) +4 other tests skip
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-5/igt@kms_psr@fbc-pr-cursor-plane-move.html
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-6/igt@kms_psr@fbc-pr-cursor-plane-move.html
* igt@kms_psr@psr-sprite-plane-onoff:
- shard-rkl: [SKIP][527] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][528] ([i915#1072] / [i915#9732]) +6 other tests skip
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-6/igt@kms_psr@psr-sprite-plane-onoff.html
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-3/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-rkl: [SKIP][529] ([i915#14544] / [i915#5289]) -> [SKIP][530] ([i915#5289])
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/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-rkl: [SKIP][531] ([i915#5289]) -> [SKIP][532] ([i915#14544] / [i915#5289])
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-rkl: [SKIP][533] ([i915#8623]) -> [SKIP][534] ([i915#14544] / [i915#8623])
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-3/igt@kms_tiled_display@basic-test-pattern.html
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@flip-basic:
- shard-rkl: [SKIP][535] ([i915#15243] / [i915#3555]) -> [SKIP][536] ([i915#14544] / [i915#15243] / [i915#3555])
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17921/shard-rkl-8/igt@kms_vrr@flip-basic.html
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/shard-rkl-6/igt@kms_vrr@flip-basic.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959
[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#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
[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#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
[i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
[i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[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#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008
[i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
[i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409
[i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
[i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781
[i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790
[i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
[i915#14123]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14123
[i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14433
[i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586
[i915#14995]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14995
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15095
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
[i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106
[i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
[i915#15140]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15140
[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#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389
[i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403
[i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460
[i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479
[i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492
[i915#15500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15500
[i915#15558]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15558
[i915#15559]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15559
[i915#15560]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15560
[i915#15574]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15574
[i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608
[i915#15609]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15609
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15645]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15645
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816
[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#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
[i915#5107]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107
[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#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#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#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882
[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#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825
[i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9561]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9561
[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#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878
[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
[i915#9979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9979
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8729 -> IGTPW_14465
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_17921: 67c3b61c4451b33dbf846f97cb2389b7fb6db09d @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14465: 3632000153fa9ce6befa2be2f637640166f47e02 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8729: 8729
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14465/index.html
[-- Attachment #2: Type: text/html, Size: 184829 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* RE: [PATCH i-g-t 6/6] tests/kms_pipe_crc_basic: Add MST suspend-resume test
2026-02-02 8:45 ` [PATCH i-g-t 6/6] tests/kms_pipe_crc_basic: Add MST suspend-resume test Kunal Joshi
@ 2026-02-04 10:40 ` Bilal, Mohammed
0 siblings, 0 replies; 12+ messages in thread
From: Bilal, Mohammed @ 2026-02-04 10:40 UTC (permalink / raw)
To: Joshi, Kunal1, igt-dev@lists.freedesktop.org; +Cc: Joshi, Kunal1
Hi Kunal ,
> -----Original Message-----
> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Kunal Joshi
> Sent: 02 February 2026 14:16
> To: igt-dev@lists.freedesktop.org
> Cc: Joshi, Kunal1 <kunal1.joshi@intel.com>
> Subject: [PATCH i-g-t 6/6] tests/kms_pipe_crc_basic: Add MST suspend-resume
> test
>
> Add mst-suspend-read-crc subtest that:
> - Validates CRCs across MST topology outputs
> - Tests CRC consistency before and after system suspend
> - Iterates through MST output subsets for comprehensive testing
>
> v2:
> - Add error handling for igt_pipe_crc_new (Thasleem)
> - Improve log format with index for clarity (Thasleem)
> - Order declarations in decreasing line length (Thasleem)
> - Add print message when no MST found (Thasleem)
> - Add bounds check for idx in subset loop (Thasleem)
> - Use igt_crtc_crc_new() instead of igt_pipe_crc_new() (Ville)
>
> v3:
> - framebuffers missing in commit (Bilal)
>
> Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
> ---
> tests/kms_pipe_crc_basic.c | 246 +++++++++++++++++++++++++++++++++++++
> tests/meson.build | 3 +
> 2 files changed, 249 insertions(+)
>
> diff --git a/tests/kms_pipe_crc_basic.c b/tests/kms_pipe_crc_basic.c index
> f1deaf081..005960dfd 100644
> --- a/tests/kms_pipe_crc_basic.c
> +++ b/tests/kms_pipe_crc_basic.c
> @@ -33,6 +33,8 @@
> #include "igt.h"
> #include "igt_sysfs.h"
> #include "igt_cleanup.h"
> +#include "intel/kms_mst_helper.h"
> +#include "intel/kms_joiner_helper.h"
> #include <errno.h>
> #include <stdbool.h>
> #include <stdio.h>
> @@ -78,6 +80,11 @@
> * CRTC does not cause issues.
> */
>
> +/**
> + * SUBTEST: mst-suspend-read-crc
> + * Description: MST suspend test for pipe CRC reads.
> + */
> +
> static bool extended;
> static enum pipe active_pipes[IGT_MAX_PIPES]; static uint32_t last_pipe; @@ -
> 97,6 +104,239 @@ static struct {
> { .r = 0.0, .g = 1.0, .b = 1.0 },
> };
>
> +#define MAX_MST_OUTPUT 3
> +
> +static void collect_single_crc(igt_crtc_t *crtc, igt_crc_t *crc) {
> + igt_pipe_crc_t *pipe_crc;
> +
> + pipe_crc = igt_crtc_crc_new(crtc, IGT_PIPE_CRC_SOURCE_AUTO);
> + igt_assert(pipe_crc);
> + igt_pipe_crc_collect_crc(pipe_crc, crc);
> + igt_pipe_crc_free(pipe_crc);
> +}
> +
> +static void collect_crc_for_active_outputs(igt_display_t *display,
> + igt_output_t **outputs,
> + int num_outputs,
> + igt_crc_t *crcs)
> +{
> + int i;
> +
> + for (i = 0; i < num_outputs; i++) {
> + igt_output_t *output = outputs[i];
> + igt_crtc_t *crtc = igt_output_get_driving_crtc(output);
> +
> + igt_assert(crtc != NULL);
> + collect_single_crc(crtc, &crcs[i]);
> + }
> +}
> +
> +static void wait_for_vblanks(igt_output_t **outputs, int num_outputs) {
> + int i;
> +
> + for (i = 0; i < num_outputs; i++) {
> + igt_crtc_t *crtc = igt_output_get_driving_crtc(outputs[i]);
> + igt_wait_for_vblank(crtc);
> + }
> +}
> +
> +static void log_crc_for_outputs(igt_output_t **outputs, int num_outputs,
> + igt_crc_t *crcs, const char *stage) {
> + int i;
> +
> + for (i = 0; i < num_outputs; i++) {
> + igt_output_t *o = outputs[i];
> + drmModeModeInfo *m = igt_output_get_mode(o);
> + char *s = igt_crc_to_string(&crcs[i]);
> + igt_crtc_t *crtc = igt_output_get_driving_crtc(o);
> +
> + igt_info("[%d] %s: output %s -> crtc %s, CRC %s, mode
> %dx%d@%d\n",
> + i, stage, o->name,
> + igt_crtc_name(crtc),
> + s,
> + m ? m->hdisplay : -1,
> + m ? m->vdisplay : -1,
> + m ? m->vrefresh : 0);
> + free(s);
> + }
> +}
> +
> +static void create_fbs_for_outputs(int drm_fd, igt_output_t **outputs,
> + int num_outputs, struct igt_fb *fbs) {
> + int i;
> +
> + for (i = 0; i < num_outputs; i++) {
> + igt_output_t *output = outputs[i];
> + drmModeModeInfo *mode = igt_output_get_mode(output);
> + igt_plane_t *primary = igt_output_get_plane_type(output,
> +
> DRM_PLANE_TYPE_PRIMARY);
> +
> + igt_create_color_fb(drm_fd,
> + mode->hdisplay, mode->vdisplay,
> + DRM_FORMAT_XRGB8888,
> + DRM_FORMAT_MOD_LINEAR,
> + 0.0, 1.0, 0.0, /* Green color */
> + &fbs[i]);
> + igt_cleanup_register_fb(drm_fd, &fbs[i]);
> + igt_plane_set_fb(primary, &fbs[i]);
> + }
> +}
> +
> +/*FIXME: crc for joiners*/
> +static void run_mst_subset_and_verify(igt_display_t *display,
> + igt_output_t **active_outputs,
> + int num_active,
> + int n_crtcs,
> + uint32_t master_pipes_mask,
> + uint32_t valid_pipes_mask)
> +{
Fb's created in this function are local stack
variables but they're being registered in the global cleanup registry. This
creates dangling pointers when the function returns .
Regards,
Mohammed Bilal
> + igt_crc_t pre_crcs[IGT_MAX_PIPES];
> + igt_crc_t post_crcs[IGT_MAX_PIPES];
> + struct igt_fb fbs[MAX_MST_OUTPUT];
> + uint32_t used_pipes_mask = 0;
> + enum igt_suspend_test stest = SUSPEND_TEST_NONE;
> + int drm_fd = display->drm_fd;
> + int a;
> +
> + igt_require_f(num_active <= n_crtcs,
> + "Not enough crtcs for MST subset\n");
> +
> + igt_require(igt_assign_pipes_for_outputs(drm_fd,
> + active_outputs,
> + num_active,
> + n_crtcs,
> + &used_pipes_mask,
> + master_pipes_mask,
> + valid_pipes_mask));
> +
> + igt_require_f(igt_fit_modes_in_bw(display),
> + "Unable to fit modes in bw\n");
> +
> + create_fbs_for_outputs(drm_fd, active_outputs, num_active, fbs);
> +
> + igt_display_commit2(display, COMMIT_ATOMIC);
> +
> + /* rtcwake cmd is not supported on MTK devices */
> + if (is_mtk_device(drm_fd))
> + stest = SUSPEND_TEST_DEVICES;
> +
> + igt_info("MST subset: %d outputs, n_crtcs=%d\n",
> + num_active, n_crtcs);
> +
> + wait_for_vblanks(active_outputs, num_active);
> +
> + collect_crc_for_active_outputs(display,
> + active_outputs,
> + num_active,
> + pre_crcs);
> +
> + log_crc_for_outputs(active_outputs, num_active, pre_crcs,
> +"PRE-SUSPEND");
> +
> + igt_system_suspend_autoresume(SUSPEND_STATE_MEM, stest);
> +
> + wait_for_vblanks(active_outputs, num_active);
> +
> + collect_crc_for_active_outputs(display,
> + active_outputs,
> + num_active,
> + post_crcs);
> +
> + log_crc_for_outputs(active_outputs, num_active, post_crcs,
> +"POST-SUSPEND");
> +
> + for (a = 0; a < num_active; a++)
> + igt_assert_crc_equal(&pre_crcs[a], &post_crcs[a]); }
> +
> +static void mst_suspend_read_crc(igt_display_t *display) {
> + int n_crtcs = igt_display_n_crtcs(display);
> + igt_output_t *active_outputs[MAX_MST_OUTPUT];
> + igt_output_t *mst_outputs[MAX_MST_OUTPUT];
> + int traversed_roots[IGT_MAX_PIPES];
> + int drm_fd = display->drm_fd;
> + uint32_t valid_pipes_mask = 0;
> + int num_mst, i, num_active;
> + uint32_t master_pipes_mask;
> + igt_output_t *output;
> + int num_roots = 0;
> +
> + for (i = 0; i < IGT_MAX_PIPES; i++) {
> + if (display->crtcs[i].valid)
> + valid_pipes_mask |= BIT(i);
> + }
> +
> + igt_set_all_master_pipes_for_platform(display, &master_pipes_mask);
> +
> + for_each_connected_output(display, output) {
> + int root_id;
> + bool root_seen = false;
> +
> + root_id = igt_get_dp_mst_connector_id(output);
> + if (root_id < 0) {
> + igt_info("Skipping non-mst output %s\n", output-
> >name);
> + continue;
> + }
> +
> + for (i = 0; i < num_roots; i++)
> + if (traversed_roots[i] == root_id)
> + root_seen = true;
> +
> + if (root_seen)
> + continue;
> +
> + num_mst = 0;
> + igt_require(igt_find_all_mst_output_in_topology(drm_fd, display,
> + output,
> mst_outputs,
> + &num_mst) ==
> 0);
> + if (num_mst == 0) {
> + igt_info("No MST outputs found in topology for output
> %s\n",
> + output->name);
> + igt_skip("No MST outputs found in topology\n");
> + }
> +
> + if (num_roots < IGT_MAX_PIPES)
> + traversed_roots[num_roots++] = root_id;
> +
> + if (num_mst > MAX_MST_OUTPUT)
> + num_mst = MAX_MST_OUTPUT;
> +
> + /* In future if we can print name of MST hub will be great */
> + igt_dynamic_f("mst-topo-%d", num_roots) {
> + int mask;
> +
> + for (mask = 1; mask < (1 << num_mst); mask++) {
> + int bit, idx = 0;
> +
> + /* build subset for this bitmask */
> + for (bit = 0; bit < num_mst; bit++) {
> + if (!(mask & (1 << bit)))
> + continue;
> +
> + if (idx >= MAX_MST_OUTPUT)
> + break;
> +
> + active_outputs[idx++] =
> mst_outputs[bit];
> + }
> +
> + num_active = idx;
> + if (!num_active)
> + continue;
> +
> + igt_display_reset(display);
> +
> + run_mst_subset_and_verify(display,
> active_outputs,
> + num_active, n_crtcs,
> + master_pipes_mask,
> + valid_pipes_mask);
> + }
> + }
> + }
> +}
> +
> static bool simulation_constraint(enum pipe pipe) {
> if (igt_run_in_simulation() && !extended && @@ -502,6 +742,12 @@ int
> igt_main_args("e", NULL, help_str, opt_handler, NULL)
> }
> }
>
> + igt_describe("MST suspend test for pipe CRC reads.");
> + igt_subtest_with_dynamic("mst-suspend-read-crc") {
> + igt_require(igt_display_has_mst_output(&data.display));
> + mst_suspend_read_crc(&data.display);
> + }
> +
> igt_fixture() {
> igt_display_fini(&data.display);
> }
> diff --git a/tests/meson.build b/tests/meson.build index ef4edaa0d..ab70948bc
> 100644
> --- a/tests/meson.build
> +++ b/tests/meson.build
> @@ -398,6 +398,9 @@ extra_sources = {
> join_paths ('intel', 'kms_joiner_helper.c') ],
> 'kms_dsc': [ join_paths ('intel', 'kms_dsc_helper.c') ],
> 'kms_joiner': [ join_paths ('intel', 'kms_joiner_helper.c') ],
> + 'kms_pipe_crc_basic': [
> + join_paths ('intel', 'kms_mst_helper.c'),
> + join_paths ('intel', 'kms_joiner_helper.c') ],
> 'kms_psr2_sf': [ join_paths ('intel', 'kms_dsc_helper.c') ], }
>
> --
> 2.43.0
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2026-02-04 10:40 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-02 8:45 [PATCH i-g-t 0/6] tests/kms_pipe_crc_basic: add mst suspend-resume test Kunal Joshi
2026-02-02 8:45 ` [PATCH i-g-t 1/6] tests/intel/kms_mst_helper: Add helper to check for MST outputs Kunal Joshi
2026-02-02 8:45 ` [PATCH i-g-t 2/6] lib/igt_cleanup: Add general resource cleanup infrastructure Kunal Joshi
2026-02-02 8:45 ` [PATCH i-g-t 3/6] tests/kms_pipe_crc_basic: Use cleanup framework for framebuffers Kunal Joshi
2026-02-02 8:45 ` [PATCH i-g-t 4/6] tests/kms_pipe_crc_basic: Use cleanup framework for pipe CRC Kunal Joshi
2026-02-02 8:45 ` [PATCH i-g-t 5/6] tests/kms_pipe_crc_basic: Use cleanup framework for drm_fd Kunal Joshi
2026-02-02 8:45 ` [PATCH i-g-t 6/6] tests/kms_pipe_crc_basic: Add MST suspend-resume test Kunal Joshi
2026-02-04 10:40 ` Bilal, Mohammed
2026-02-03 0:13 ` ✓ Xe.CI.BAT: success for tests/kms_pipe_crc_basic: add mst suspend-resume test (rev3) Patchwork
2026-02-03 0:19 ` ✓ i915.CI.BAT: " Patchwork
2026-02-03 7:54 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-02-03 8:55 ` ✗ i915.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox