* [PATCH i-g-t v4 1/5] lib/igt_aux: Move is_mountpoint() to igt_aux
2025-05-20 6:49 [PATCH i-g-t v4 0/5] Add test to validate survivability mode Riana Tauro
@ 2025-05-20 6:49 ` Riana Tauro
2025-05-20 6:49 ` [PATCH i-g-t v4 2/5] lib/igt_configfs: Add helper to mount configfs Riana Tauro
` (8 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: Riana Tauro @ 2025-05-20 6:49 UTC (permalink / raw)
To: igt-dev
Cc: riana.tauro, anshuman.gupta, lucas.demarchi, kamil.konieczny,
rodrigo.vivi, aravind.iddamsetty, louis.chauvet
From: José Expósito <jose.exposito89@gmail.com>
Rename is_mountpoint() to igt_is_mountpoint() and make it available in
igt_aux.h/c.
Refactor, no functional change.
Reviewed-by: Louis Chauvet <louis.chauvet@bootlin.com>
Co-developed-by: Jim Shargo <jshargo@chromium.org>
Signed-off-by: Jim Shargo <jshargo@chromium.org>
Co-developed-by: Marius Vlad <marius.vlad@collabora.com>
Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
Signed-off-by: José Expósito <jose.exposito89@gmail.com>
Signed-off-by: Riana Tauro <riana.tauro@intel.com>
---
lib/igt_aux.c | 31 +++++++++++++++++++++++++++++++
lib/igt_aux.h | 2 ++
lib/igt_debugfs.c | 29 ++---------------------------
3 files changed, 35 insertions(+), 27 deletions(-)
diff --git a/lib/igt_aux.c b/lib/igt_aux.c
index f5bf48da6..2905824a5 100644
--- a/lib/igt_aux.c
+++ b/lib/igt_aux.c
@@ -1374,6 +1374,37 @@ static bool get_process_ids(struct igt_process *prcs)
return prcs->tid != 0;
}
+/**
+ * igt_is_mountpoint() - Check if a path is a mounted filesystem
+ * @path: Root directory to test
+ *
+ * Returns: true if @path is the root of a mounted filesystem
+ */
+bool igt_is_mountpoint(const char *path)
+{
+ char buf[strlen(path) + 4];
+ struct stat st;
+ dev_t dev;
+
+ igt_assert_lt(snprintf(buf, sizeof(buf), "%s/.", path), sizeof(buf));
+ if (stat(buf, &st))
+ return false;
+
+ if (!S_ISDIR(st.st_mode))
+ return false;
+
+ dev = st.st_dev;
+
+ igt_assert_lt(snprintf(buf, sizeof(buf), "%s/..", path), sizeof(buf));
+ if (stat(buf, &st))
+ return false;
+
+ if (!S_ISDIR(st.st_mode))
+ return false;
+
+ return dev != st.st_dev;
+}
+
/**
* igt_is_process_running:
* @comm: Name of process in the form found in /proc/pid/comm (limited to 15
diff --git a/lib/igt_aux.h b/lib/igt_aux.h
index bfd83adca..e8a1788b2 100644
--- a/lib/igt_aux.h
+++ b/lib/igt_aux.h
@@ -314,6 +314,8 @@ double igt_stop_siglatency(struct igt_mean *result);
bool igt_allow_unlimited_files(void);
+bool igt_is_mountpoint(const char *path);
+
int igt_is_process_running(const char *comm);
int igt_terminate_process(int sig, const char *comm);
void igt_lsof(const char *dpath);
diff --git a/lib/igt_debugfs.c b/lib/igt_debugfs.c
index 8ac215a76..210a9cea0 100644
--- a/lib/igt_debugfs.c
+++ b/lib/igt_debugfs.c
@@ -67,37 +67,12 @@
* General debugfs helpers
*/
-static bool is_mountpoint(const char *path)
-{
- char buf[strlen(path) + 4];
- struct stat st;
- dev_t dev;
-
- igt_assert_lt(snprintf(buf, sizeof(buf), "%s/.", path), sizeof(buf));
- if (stat(buf, &st))
- return false;
-
- if (!S_ISDIR(st.st_mode))
- return false;
-
- dev = st.st_dev;
-
- igt_assert_lt(snprintf(buf, sizeof(buf), "%s/..", path), sizeof(buf));
- if (stat(buf, &st))
- return false;
-
- if (!S_ISDIR(st.st_mode))
- return false;
-
- return dev != st.st_dev;
-}
-
static const char *__igt_debugfs_mount(void)
{
- if (is_mountpoint("/sys/kernel/debug"))
+ if (igt_is_mountpoint("/sys/kernel/debug"))
return "/sys/kernel/debug";
- if (is_mountpoint("/debug"))
+ if (igt_is_mountpoint("/debug"))
return "/debug";
if (mount("debug", "/sys/kernel/debug", "debugfs", 0, 0))
--
2.47.1
^ permalink raw reply related [flat|nested] 11+ messages in thread* [PATCH i-g-t v4 2/5] lib/igt_configfs: Add helper to mount configfs
2025-05-20 6:49 [PATCH i-g-t v4 0/5] Add test to validate survivability mode Riana Tauro
2025-05-20 6:49 ` [PATCH i-g-t v4 1/5] lib/igt_aux: Move is_mountpoint() to igt_aux Riana Tauro
@ 2025-05-20 6:49 ` Riana Tauro
2025-05-20 6:49 ` [PATCH i-g-t v4 3/5] lib/igt_fs: Rename igt_io to igt_fs to add additional helpers Riana Tauro
` (7 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: Riana Tauro @ 2025-05-20 6:49 UTC (permalink / raw)
To: igt-dev
Cc: riana.tauro, anshuman.gupta, lucas.demarchi, kamil.konieczny,
rodrigo.vivi, aravind.iddamsetty, louis.chauvet
From: José Expósito <jose.exposito89@gmail.com>
Add a new helper function to mount and open configfs
v2: reorder headers
do not use asserts in libs (Kamil)
use O_DIRECTORY (Aravind)
Co-developed-by: Jim Shargo <jshargo@chromium.org>
Signed-off-by: Jim Shargo <jshargo@chromium.org>
Co-developed-by: Marius Vlad <marius.vlad@collabora.com>
Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
Co-developed-by: Riana Tauro <riana.tauro@intel.com>
Signed-off-by: Riana Tauro <riana.tauro@intel.com>
Signed-off-by: José Expósito <jose.exposito89@gmail.com>
Reviewed-by: Aravind Iddamsetty <aravind.iddamsetty@linux.intel.com>
Reviewed-by: José Expósito <jose.exposito89@gmail.com>
---
lib/igt.h | 1 +
lib/igt_configfs.c | 86 ++++++++++++++++++++++++++++++++++++++++++++++
lib/igt_configfs.h | 15 ++++++++
lib/meson.build | 1 +
4 files changed, 103 insertions(+)
create mode 100644 lib/igt_configfs.c
create mode 100644 lib/igt_configfs.h
diff --git a/lib/igt.h b/lib/igt.h
index 58c39e098..173ca70bf 100644
--- a/lib/igt.h
+++ b/lib/igt.h
@@ -27,6 +27,7 @@
#include "drmtest.h"
#include "i915_3d.h"
#include "igt_aux.h"
+#include "igt_configfs.h"
#include "igt_core.h"
#include "igt_debugfs.h"
#include "igt_draw.h"
diff --git a/lib/igt_configfs.c b/lib/igt_configfs.c
new file mode 100644
index 000000000..e0cba92a1
--- /dev/null
+++ b/lib/igt_configfs.c
@@ -0,0 +1,86 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2023 Google LLC.
+ * Copyright © 2023 Collabora, Ltd.
+ * Copyright © 2024 Red Hat, Inc.
+ * Copyright © 2025 Intel Corporation
+ */
+
+#include <errno.h>
+#include <fcntl.h>
+#include <limits.h>
+#include <sys/mount.h>
+
+#include "igt_aux.h"
+#include "igt_configfs.h"
+
+/**
+ * SECTION:igt_configfs
+ * @short_description: Support code for configfs features
+ * @title: configfs
+ * @include: igt_configfs.h
+ *
+ * This library provides helpers to access configfs features.
+ */
+
+/*
+ * General configfs helpers
+ */
+
+static const char *__igt_configfs_mount(void)
+{
+ if (igt_is_mountpoint("/sys/kernel/config"))
+ return "/sys/kernel/config";
+
+ if (igt_is_mountpoint("/config"))
+ return "/config";
+
+ if (mount("config", "/sys/kernel/config", "configfs", 0, 0))
+ return NULL;
+
+ return "/sys/kernel/config";
+}
+
+/**
+ * igt_configfs_mount:
+ *
+ * This attempts to locate where configfs is mounted on the filesystem,
+ * and if not found, will then try to mount configfs at /sys/kernel/config.
+ *
+ * Returns:
+ * The path to the configfs mount point (e.g. /sys/kernel/config)
+ */
+const char *igt_configfs_mount(void)
+{
+ static const char *path;
+
+ if (!path)
+ path = __igt_configfs_mount();
+
+ return path;
+}
+
+/**
+ * igt_configfs_open: open configfs path
+ * @name: name of the configfs directory
+ *
+ * Opens the configfs directory corresponding to the name
+ *
+ * Returns:
+ * The directory fd, or -1 on failure.
+ */
+int igt_configfs_open(const char *name)
+{
+ char path[PATH_MAX];
+ const char *configfs_path;
+
+ configfs_path = igt_configfs_mount();
+ if (!configfs_path) {
+ igt_debug("configfs not mounted, errno=%d\n", errno);
+ return -1;
+ }
+
+ snprintf(path, sizeof(path), "%s/%s", configfs_path, name);
+
+ return open(path, O_DIRECTORY | O_RDONLY);
+}
diff --git a/lib/igt_configfs.h b/lib/igt_configfs.h
new file mode 100644
index 000000000..91f95659b
--- /dev/null
+++ b/lib/igt_configfs.h
@@ -0,0 +1,15 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright © 2023 Google LLC.
+ * Copyright © 2023 Collabora, Ltd.
+ * Copyright © 2024 Red Hat, Inc.
+ * Copyright © 2025 Intel Corporation
+ */
+
+#ifndef __IGT_CONFIGFS_H__
+#define __IGT_CONFIGFS_H__
+
+const char *igt_configfs_mount(void);
+int igt_configfs_open(const char *name);
+
+#endif /* __IGT_CONFIGFS_H__ */
diff --git a/lib/meson.build b/lib/meson.build
index b58976a43..4a9213375 100644
--- a/lib/meson.build
+++ b/lib/meson.build
@@ -18,6 +18,7 @@ lib_sources = [
'i915/i915_crc.c',
'igt_collection.c',
'igt_color_encoding.c',
+ 'igt_configfs.c',
'igt_facts.c',
'igt_crc.c',
'igt_debugfs.c',
--
2.47.1
^ permalink raw reply related [flat|nested] 11+ messages in thread* [PATCH i-g-t v4 3/5] lib/igt_fs: Rename igt_io to igt_fs to add additional helpers
2025-05-20 6:49 [PATCH i-g-t v4 0/5] Add test to validate survivability mode Riana Tauro
2025-05-20 6:49 ` [PATCH i-g-t v4 1/5] lib/igt_aux: Move is_mountpoint() to igt_aux Riana Tauro
2025-05-20 6:49 ` [PATCH i-g-t v4 2/5] lib/igt_configfs: Add helper to mount configfs Riana Tauro
@ 2025-05-20 6:49 ` Riana Tauro
2025-05-20 6:49 ` [PATCH i-g-t v4 4/5] lib/igt_fs: Add helper functions to create and remove directories Riana Tauro
` (6 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: Riana Tauro @ 2025-05-20 6:49 UTC (permalink / raw)
To: igt-dev
Cc: riana.tauro, anshuman.gupta, lucas.demarchi, kamil.konieczny,
rodrigo.vivi, aravind.iddamsetty, louis.chauvet
Rename igt_io to igt_fs to add additional helper functions
to create and remove directories
v2: add docs (José)
reorder headers (Kamil)
Cc: Louis Chauvet <louis.chauvet@bootlin.com>
Cc: José Expósito <jose.exposito89@gmail.com>
Signed-off-by: Riana Tauro <riana.tauro@intel.com>
Reviewed-by: Aravind Iddamsetty <aravind.iddamsetty@linux.intel.com>
Reviewed-by: José Expósito <jose.exposito89@gmail.com>
---
docs/reference/igt-gpu-tools/igt-gpu-tools-docs.xml | 2 +-
lib/{igt_io.c => igt_fs.c} | 12 ++++++------
lib/{igt_io.h => igt_fs.h} | 6 +++---
lib/igt_sysfs.c | 2 +-
lib/meson.build | 2 +-
tests/msm/msm_mapping.c | 2 +-
tests/msm/msm_recovery.c | 2 +-
7 files changed, 14 insertions(+), 14 deletions(-)
rename lib/{igt_io.c => igt_fs.c} (93%)
rename lib/{igt_io.h => igt_fs.h} (94%)
diff --git a/docs/reference/igt-gpu-tools/igt-gpu-tools-docs.xml b/docs/reference/igt-gpu-tools/igt-gpu-tools-docs.xml
index 11458c681..4cba804c3 100644
--- a/docs/reference/igt-gpu-tools/igt-gpu-tools-docs.xml
+++ b/docs/reference/igt-gpu-tools/igt-gpu-tools-docs.xml
@@ -31,9 +31,9 @@
<xi:include href="xml/igt_dummyload.xml"/>
<xi:include href="xml/igt_fb.xml"/>
<xi:include href="xml/igt_frame.xml"/>
+ <xi:include href="xml/igt_fs.xml"/>
<xi:include href="xml/igt_gt.xml"/>
<xi:include href="xml/igt_hook.xml"/>
- <xi:include href="xml/igt_io.xml"/>
<xi:include href="xml/igt_kmod.xml"/>
<xi:include href="xml/igt_kms.xml"/>
<xi:include href="xml/igt_list.xml"/>
diff --git a/lib/igt_io.c b/lib/igt_fs.c
similarity index 93%
rename from lib/igt_io.c
rename to lib/igt_fs.c
index b5143184f..917ee80de 100644
--- a/lib/igt_io.c
+++ b/lib/igt_fs.c
@@ -26,15 +26,15 @@
#include <stdlib.h>
#include <unistd.h>
-#include "igt_io.h"
+#include "igt_fs.h"
/**
- * SECTION:igt_io
- * @short_description: Helpers for file I/O
- * @title: io
- * @include: igt_io.h
+ * SECTION:igt_fs
+ * @short_description: Helpers for file operations
+ * @title: fs
+ * @include: igt_fs.h
*
- * This library provides helpers for file I/O
+ * This library provides helpers for file operations
*/
/**
diff --git a/lib/igt_io.h b/lib/igt_fs.h
similarity index 94%
rename from lib/igt_io.h
rename to lib/igt_fs.h
index eb9ffee1b..84c3fed62 100644
--- a/lib/igt_io.h
+++ b/lib/igt_fs.h
@@ -22,12 +22,12 @@
*
*/
-#ifndef __IGT_IO_H__
-#define __IGT_IO_H__
+#ifndef __IGT_FS_H__
+#define __IGT_FS_H__
#include <stdio.h>
ssize_t igt_readn(int fd, char *buf, size_t len);
ssize_t igt_writen(int fd, const char *buf, size_t len);
-#endif /* __IGT_IO_H__ */
+#endif /* __IGT_FS_H__ */
diff --git a/lib/igt_sysfs.c b/lib/igt_sysfs.c
index bc68cf61b..2ba96ca7f 100644
--- a/lib/igt_sysfs.c
+++ b/lib/igt_sysfs.c
@@ -46,7 +46,7 @@
#include "igt_core.h"
#include "igt_sysfs.h"
#include "igt_device.h"
-#include "igt_io.h"
+#include "igt_fs.h"
#include "intel_chipset.h"
#include "xe/xe_query.h"
diff --git a/lib/meson.build b/lib/meson.build
index 4a9213375..6f3a1150c 100644
--- a/lib/meson.build
+++ b/lib/meson.build
@@ -26,11 +26,11 @@ lib_sources = [
'igt_device_scan.c',
'igt_drm_clients.h',
'igt_drm_fdinfo.c',
+ 'igt_fs.c',
'igt_aux.c',
'igt_gt.c',
'igt_halffloat.c',
'igt_hwmon.c',
- 'igt_io.c',
'igt_matrix.c',
'igt_os.c',
'igt_params.c',
diff --git a/tests/msm/msm_mapping.c b/tests/msm/msm_mapping.c
index e24618607..ac20ca91d 100644
--- a/tests/msm/msm_mapping.c
+++ b/tests/msm/msm_mapping.c
@@ -28,8 +28,8 @@
#include <sys/stat.h>
#include "igt.h"
+#include "igt_fs.h"
#include "igt_msm.h"
-#include "igt_io.h"
/*
* Tests to ensure various kernel controlled buffers are mapped with the
diff --git a/tests/msm/msm_recovery.c b/tests/msm/msm_recovery.c
index 608836866..fbe26e687 100644
--- a/tests/msm/msm_recovery.c
+++ b/tests/msm/msm_recovery.c
@@ -25,8 +25,8 @@
#include <glob.h>
#include "igt.h"
+#include "igt_fs.h"
#include "igt_msm.h"
-#include "igt_io.h"
static struct msm_device *dev;
static struct msm_bo *scratch_bo;
--
2.47.1
^ permalink raw reply related [flat|nested] 11+ messages in thread* [PATCH i-g-t v4 4/5] lib/igt_fs: Add helper functions to create and remove directories
2025-05-20 6:49 [PATCH i-g-t v4 0/5] Add test to validate survivability mode Riana Tauro
` (2 preceding siblings ...)
2025-05-20 6:49 ` [PATCH i-g-t v4 3/5] lib/igt_fs: Rename igt_io to igt_fs to add additional helpers Riana Tauro
@ 2025-05-20 6:49 ` Riana Tauro
2025-05-20 6:49 ` [PATCH i-g-t v4 5/5] tests/intel/xe_configfs: Add test to validate survivability mode Riana Tauro
` (5 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: Riana Tauro @ 2025-05-20 6:49 UTC (permalink / raw)
To: igt-dev
Cc: riana.tauro, anshuman.gupta, lucas.demarchi, kamil.konieczny,
rodrigo.vivi, aravind.iddamsetty, louis.chauvet
Add helper function to create directory and return fd of
the created directory. Also add a function to remove
directories. This will be used by configfs
v2: reorder headers (Kamil)
Cc: Louis Chauvet <louis.chauvet@bootlin.com>
Cc: José Expósito <jose.exposito89@gmail.com>
Signed-off-by: Riana Tauro <riana.tauro@intel.com>
Reviewed-by: Aravind Iddamsetty <aravind.iddamsetty@linux.intel.com>
Reviewed-by: José Expósito <jose.exposito89@gmail.com>
---
lib/igt_fs.c | 49 ++++++++++++++++++++++++++++++++++++++++++++++++-
lib/igt_fs.h | 2 ++
2 files changed, 50 insertions(+), 1 deletion(-)
diff --git a/lib/igt_fs.c b/lib/igt_fs.c
index 917ee80de..8f4d17546 100644
--- a/lib/igt_fs.c
+++ b/lib/igt_fs.c
@@ -21,9 +21,10 @@
* IN THE SOFTWARE.
*
*/
-
#include <errno.h>
+#include <fcntl.h>
#include <stdlib.h>
+#include <sys/stat.h>
#include <unistd.h>
#include "igt_fs.h"
@@ -94,3 +95,49 @@ ssize_t igt_writen(int fd, const char *buf, size_t len)
} while (total != len);
return total ?: ret;
}
+
+/**
+ * igt_fs_create_dir: creates and opens directory
+ * @fd: file descriptor of parent directory
+ * @name: name of the directory to create
+ * @mode: permissions for the directory
+ *
+ * creates a directory under parent directory and returns
+ * the fd
+ *
+ * Returns: directory fd on success, -errno otherwise
+ */
+int igt_fs_create_dir(int fd, const char *name, mode_t mode)
+{
+ int ret;
+ int dirfd;
+
+ ret = mkdirat(fd, name, mode);
+ if (ret)
+ return -errno;
+
+ dirfd = openat(fd, name, O_DIRECTORY);
+ if (dirfd < 0)
+ return -errno;
+
+ return dirfd;
+}
+
+/**
+ * igt_fs_remove_directory: removes directory
+ * @fd: fd of parent directory
+ * @name: name of directory to remove
+ *
+ * removes directory under parent directory
+ *
+ * Returns: 0 on success, -errno otherwise
+ */
+int igt_fs_remove_dir(int fd, const char *name)
+{
+ int ret = unlinkat(fd, name, AT_REMOVEDIR);
+
+ if (ret)
+ return -errno;
+
+ return 0;
+}
diff --git a/lib/igt_fs.h b/lib/igt_fs.h
index 84c3fed62..ee3e7593b 100644
--- a/lib/igt_fs.h
+++ b/lib/igt_fs.h
@@ -27,6 +27,8 @@
#include <stdio.h>
+int igt_fs_create_dir(int fd, const char *name, mode_t mode);
+int igt_fs_remove_dir(int fd, const char *name);
ssize_t igt_readn(int fd, char *buf, size_t len);
ssize_t igt_writen(int fd, const char *buf, size_t len);
--
2.47.1
^ permalink raw reply related [flat|nested] 11+ messages in thread* [PATCH i-g-t v4 5/5] tests/intel/xe_configfs: Add test to validate survivability mode
2025-05-20 6:49 [PATCH i-g-t v4 0/5] Add test to validate survivability mode Riana Tauro
` (3 preceding siblings ...)
2025-05-20 6:49 ` [PATCH i-g-t v4 4/5] lib/igt_fs: Add helper functions to create and remove directories Riana Tauro
@ 2025-05-20 6:49 ` Riana Tauro
2025-05-20 14:39 ` ✓ Xe.CI.BAT: success for Add test to validate survivability mode (rev4) Patchwork
` (4 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: Riana Tauro @ 2025-05-20 6:49 UTC (permalink / raw)
To: igt-dev
Cc: riana.tauro, anshuman.gupta, lucas.demarchi, kamil.konieczny,
rodrigo.vivi, aravind.iddamsetty, louis.chauvet
The test validates if survivability mode is enabled on supported
platforms when configured using configfs attribute.
v2: make test platform specific
check for presence of file for survivability mode
use mode_t flags (Aravind)
v3: rename dir_fd to configfs_device_fd (Rodrigo)
Signed-off-by: Riana Tauro <riana.tauro@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Reviewed-by: Aravind Iddamsetty <aravind.iddamsetty@linux.intel.com>
---
tests/intel/xe_configfs.c | 100 ++++++++++++++++++++++++++++++++++++++
tests/meson.build | 1 +
2 files changed, 101 insertions(+)
create mode 100644 tests/intel/xe_configfs.c
diff --git a/tests/intel/xe_configfs.c b/tests/intel/xe_configfs.c
new file mode 100644
index 000000000..e5701b7d1
--- /dev/null
+++ b/tests/intel/xe_configfs.c
@@ -0,0 +1,100 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2025 Intel Corporation
+ */
+#include <limits.h>
+
+#include "igt.h"
+#include "igt_configfs.h"
+#include "igt_device.h"
+#include "igt_fs.h"
+#include "igt_kmod.h"
+#include "igt_sysfs.h"
+
+/**
+ * TEST: Check configfs userspace API
+ * Category: Core
+ * Mega feature: General Core features
+ * Sub-category: uapi
+ * Functionality: configfs
+ * Description: validate configfs entries
+ * Test category: functionality test
+ */
+
+static char bus_addr[NAME_MAX];
+
+static void restore(int sig)
+{
+ /* Restore after survivability mode */
+ igt_kmod_unbind("xe", bus_addr);
+ igt_kmod_bind("xe", bus_addr);
+}
+
+static void set_survivability_mode(int configfs_device_fd, bool value)
+{
+ igt_kmod_unbind("xe", bus_addr);
+ igt_sysfs_set_boolean(configfs_device_fd, "survivability_mode", value);
+ igt_kmod_bind("xe", bus_addr);
+}
+
+/**
+ * SUBTEST: survivability-mode
+ * Description: Validate survivability mode by setting configfs
+ */
+static void test_survivability_mode(int configfs_device_fd)
+{
+ char path[PATH_MAX];
+ int fd;
+
+ /* Enable survivability mode */
+ set_survivability_mode(configfs_device_fd, true);
+
+ /* check presence of survivability mode sysfs */
+ snprintf(path, PATH_MAX, "/sys/bus/pci/devices/%s/survivability_mode", bus_addr);
+
+ fd = open(path, O_RDONLY);
+ igt_assert_f(fd >= 0, "Survivability mode not set\n");
+ close(fd);
+}
+
+static int create_device_configfs_group(int configfs_fd, int fd)
+{
+ int configfs_device_fd;
+ struct pci_device *pci_dev;
+ mode_t mode = S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH;
+
+ pci_dev = igt_device_get_pci_device(fd);
+ snprintf(bus_addr, sizeof(bus_addr), "%04x:%02x:%02x.%01x",
+ pci_dev->domain, pci_dev->bus, pci_dev->dev, pci_dev->func);
+
+ configfs_device_fd = igt_fs_create_dir(configfs_fd, bus_addr, mode);
+ igt_assert(configfs_device_fd);
+
+ return configfs_device_fd;
+}
+
+igt_main
+{
+ int fd, configfs_fd, configfs_device_fd;
+
+ igt_fixture {
+ fd = drm_open_driver(DRIVER_XE);
+ configfs_fd = igt_configfs_open("xe");
+ igt_require(configfs_fd != -1);
+ configfs_device_fd = create_device_configfs_group(configfs_fd, fd);
+ }
+
+ igt_describe("Validate survivability mode");
+ igt_subtest("survivability-mode") {
+ igt_require(IS_BATTLEMAGE(intel_get_drm_devid(fd)));
+ igt_install_exit_handler(restore);
+ test_survivability_mode(configfs_device_fd);
+ }
+
+ igt_fixture {
+ igt_fs_remove_dir(configfs_fd, bus_addr);
+ close(configfs_device_fd);
+ close(configfs_fd);
+ close(fd);
+ }
+}
diff --git a/tests/meson.build b/tests/meson.build
index 20ddddb89..55bcf57ec 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -279,6 +279,7 @@ intel_xe_progs = [
'xe_compute',
'xe_compute_preempt',
'xe_copy_basic',
+ 'xe_configfs',
'xe_dma_buf_sync',
'xe_drm_fdinfo',
'xe_eu_stall',
--
2.47.1
^ permalink raw reply related [flat|nested] 11+ messages in thread* ✓ Xe.CI.BAT: success for Add test to validate survivability mode (rev4)
2025-05-20 6:49 [PATCH i-g-t v4 0/5] Add test to validate survivability mode Riana Tauro
` (4 preceding siblings ...)
2025-05-20 6:49 ` [PATCH i-g-t v4 5/5] tests/intel/xe_configfs: Add test to validate survivability mode Riana Tauro
@ 2025-05-20 14:39 ` Patchwork
2025-05-20 15:01 ` ✓ i915.CI.BAT: " Patchwork
` (3 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2025-05-20 14:39 UTC (permalink / raw)
To: Riana Tauro; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 774 bytes --]
== Series Details ==
Series: Add test to validate survivability mode (rev4)
URL : https://patchwork.freedesktop.org/series/147506/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8370_BAT -> XEIGTPW_13150_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (8 -> 8)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8370 -> IGTPW_13150
IGTPW_13150: 13150
IGT_8370: 8370
xe-3114-943adcb1bc226246125ec1d18a387b4295e73703: 943adcb1bc226246125ec1d18a387b4295e73703
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/index.html
[-- Attachment #2: Type: text/html, Size: 1319 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread* ✓ i915.CI.BAT: success for Add test to validate survivability mode (rev4)
2025-05-20 6:49 [PATCH i-g-t v4 0/5] Add test to validate survivability mode Riana Tauro
` (5 preceding siblings ...)
2025-05-20 14:39 ` ✓ Xe.CI.BAT: success for Add test to validate survivability mode (rev4) Patchwork
@ 2025-05-20 15:01 ` Patchwork
2025-05-20 15:18 ` [PATCH i-g-t v4 0/5] Add test to validate survivability mode Rodrigo Vivi
` (2 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2025-05-20 15:01 UTC (permalink / raw)
To: Riana Tauro; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 4358 bytes --]
== Series Details ==
Series: Add test to validate survivability mode (rev4)
URL : https://patchwork.freedesktop.org/series/147506/
State : success
== Summary ==
CI Bug Log - changes from IGT_8370 -> IGTPW_13150
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/index.html
Participating hosts (45 -> 44)
------------------------------
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_13150 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_pm_rpm@module-reload:
- bat-adlp-6: [PASS][1] -> [DMESG-WARN][2] ([i915#13890]) +78 other tests dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/bat-adlp-6/igt@i915_pm_rpm@module-reload.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/bat-adlp-6/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live:
- bat-mtlp-8: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/bat-mtlp-8/igt@i915_selftest@live.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/bat-mtlp-8/igt@i915_selftest@live.html
- bat-arlh-2: [PASS][5] -> [INCOMPLETE][6] ([i915#14046]) +1 other test incomplete
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/bat-arlh-2/igt@i915_selftest@live.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/bat-arlh-2/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-mtlp-6: [PASS][7] -> [DMESG-FAIL][8] ([i915#12061]) +1 other test dmesg-fail
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@i915_module_load@load:
- bat-mtlp-9: [DMESG-WARN][9] ([i915#13494]) -> [PASS][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/bat-mtlp-9/igt@i915_module_load@load.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/bat-mtlp-9/igt@i915_module_load@load.html
* igt@i915_selftest@live@workarounds:
- bat-dg2-9: [DMESG-FAIL][11] ([i915#12061]) -> [PASS][12] +1 other test pass
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/bat-dg2-9/igt@i915_selftest@live@workarounds.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/bat-dg2-9/igt@i915_selftest@live@workarounds.html
- bat-dg2-11: [DMESG-FAIL][13] ([i915#12061]) -> [PASS][14] +1 other test pass
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/bat-dg2-11/igt@i915_selftest@live@workarounds.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/bat-dg2-11/igt@i915_selftest@live@workarounds.html
- bat-arls-6: [DMESG-FAIL][15] ([i915#12061]) -> [PASS][16] +1 other test pass
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/bat-arls-6/igt@i915_selftest@live@workarounds.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/bat-arls-6/igt@i915_selftest@live@workarounds.html
* igt@kms_hdmi_inject@inject-audio:
- fi-tgl-1115g4: [FAIL][17] ([i915#13930]) -> [PASS][18]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/fi-tgl-1115g4/igt@kms_hdmi_inject@inject-audio.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/fi-tgl-1115g4/igt@kms_hdmi_inject@inject-audio.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494
[i915#13890]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13890
[i915#13930]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13930
[i915#14046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14046
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8370 -> IGTPW_13150
CI-20190529: 20190529
CI_DRM_16571: 943adcb1bc226246125ec1d18a387b4295e73703 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_13150: 13150
IGT_8370: 8370
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/index.html
[-- Attachment #2: Type: text/html, Size: 5405 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread* Re: [PATCH i-g-t v4 0/5] Add test to validate survivability mode
2025-05-20 6:49 [PATCH i-g-t v4 0/5] Add test to validate survivability mode Riana Tauro
` (6 preceding siblings ...)
2025-05-20 15:01 ` ✓ i915.CI.BAT: " Patchwork
@ 2025-05-20 15:18 ` Rodrigo Vivi
2025-05-20 17:51 ` ✗ i915.CI.Full: failure for Add test to validate survivability mode (rev4) Patchwork
2025-05-20 18:03 ` ✗ Xe.CI.Full: " Patchwork
9 siblings, 0 replies; 11+ messages in thread
From: Rodrigo Vivi @ 2025-05-20 15:18 UTC (permalink / raw)
To: Riana Tauro
Cc: igt-dev, anshuman.gupta, lucas.demarchi, kamil.konieczny,
aravind.iddamsetty, louis.chauvet
On Tue, May 20, 2025 at 12:19:05PM +0530, Riana Tauro wrote:
> Add helper functions for configfs and add test to validate
> survivability mode using configfs attribute. This tests unbinds the card,
> sets survivability mode and rebinds the card.
>
> The card enters survivability mode if supported.
>
> Rev3: Fix review comments
> Rev4: rename dir_fd to configfs_device_fd
pushed, thanks!
>
> José Expósito (2):
> lib/igt_aux: Move is_mountpoint() to igt_aux
> lib/igt_configfs: Add helper to mount configfs
>
> Riana Tauro (3):
> lib/igt_fs: Rename igt_io to igt_fs to add additional helpers
> lib/igt_fs: Add helper functions to create and remove directories
> tests/intel/xe_configfs: Add test to validate survivability mode
>
> .../igt-gpu-tools/igt-gpu-tools-docs.xml | 2 +-
> lib/igt.h | 1 +
> lib/igt_aux.c | 31 ++++++
> lib/igt_aux.h | 2 +
> lib/igt_configfs.c | 86 +++++++++++++++
> lib/igt_configfs.h | 15 +++
> lib/igt_debugfs.c | 29 +----
> lib/{igt_io.c => igt_fs.c} | 61 +++++++++--
> lib/{igt_io.h => igt_fs.h} | 8 +-
> lib/igt_sysfs.c | 2 +-
> lib/meson.build | 3 +-
> tests/intel/xe_configfs.c | 100 ++++++++++++++++++
> tests/meson.build | 1 +
> tests/msm/msm_mapping.c | 2 +-
> tests/msm/msm_recovery.c | 2 +-
> 15 files changed, 303 insertions(+), 42 deletions(-)
> create mode 100644 lib/igt_configfs.c
> create mode 100644 lib/igt_configfs.h
> rename lib/{igt_io.c => igt_fs.c} (68%)
> rename lib/{igt_io.h => igt_fs.h} (87%)
> create mode 100644 tests/intel/xe_configfs.c
>
> --
> 2.47.1
>
^ permalink raw reply [flat|nested] 11+ messages in thread* ✗ i915.CI.Full: failure for Add test to validate survivability mode (rev4)
2025-05-20 6:49 [PATCH i-g-t v4 0/5] Add test to validate survivability mode Riana Tauro
` (7 preceding siblings ...)
2025-05-20 15:18 ` [PATCH i-g-t v4 0/5] Add test to validate survivability mode Rodrigo Vivi
@ 2025-05-20 17:51 ` Patchwork
2025-05-20 18:03 ` ✗ Xe.CI.Full: " Patchwork
9 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2025-05-20 17:51 UTC (permalink / raw)
To: Riana Tauro; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 123097 bytes --]
== Series Details ==
Series: Add test to validate survivability mode (rev4)
URL : https://patchwork.freedesktop.org/series/147506/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8370_full -> IGTPW_13150_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_13150_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_13150_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_13150/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_13150_full:
### IGT changes ###
#### Possible regressions ####
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-dg2: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-dg2-5/igt@i915_pm_rpm@system-suspend-execbuf.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-10/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a2:
- shard-rkl: NOTRUN -> [INCOMPLETE][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-3/igt@kms_flip@flip-vs-suspend@a-hdmi-a2.html
* igt@kms_plane_cursor@viewport@pipe-d-edp-1-size-128:
- shard-mtlp: [PASS][4] -> [FAIL][5] +3 other tests fail
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-mtlp-2/igt@kms_plane_cursor@viewport@pipe-d-edp-1-size-128.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-mtlp-6/igt@kms_plane_cursor@viewport@pipe-d-edp-1-size-128.html
Known issues
------------
Here are the changes found in IGTPW_13150_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][6] ([i915#8411])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-5/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@crc32:
- shard-rkl: NOTRUN -> [SKIP][7] ([i915#6230])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-7/igt@api_intel_bb@crc32.html
* igt@gem_basic@multigpu-create-close:
- shard-dg1: NOTRUN -> [SKIP][8] ([i915#7697])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg1-13/igt@gem_basic@multigpu-create-close.html
- shard-tglu: NOTRUN -> [SKIP][9] ([i915#7697])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-10/igt@gem_basic@multigpu-create-close.html
- shard-mtlp: NOTRUN -> [SKIP][10] ([i915#7697])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-mtlp-7/igt@gem_basic@multigpu-create-close.html
- shard-dg2: NOTRUN -> [SKIP][11] ([i915#7697])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-8/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-rkl: NOTRUN -> [SKIP][12] ([i915#3555] / [i915#9323])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-8/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-rkl: NOTRUN -> [SKIP][13] ([i915#9323])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-5/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@large-ctrl-surf-copy:
- shard-tglu: NOTRUN -> [SKIP][14] ([i915#13008])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-7/igt@gem_ccs@large-ctrl-surf-copy.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-rkl: NOTRUN -> [SKIP][15] ([i915#7697])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-5/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-tglu-1: NOTRUN -> [SKIP][16] ([i915#6335])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-1/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-rkl: NOTRUN -> [SKIP][17] ([i915#6335])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-4/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_create@create-ext-set-pat:
- shard-dg2-9: NOTRUN -> [SKIP][18] ([i915#8562])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@gem_create@create-ext-set-pat.html
* igt@gem_cs_tlb@engines@rcs0:
- shard-rkl: [PASS][19] -> [DMESG-WARN][20] ([i915#12964]) +25 other tests dmesg-warn
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-rkl-8/igt@gem_cs_tlb@engines@rcs0.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-3/igt@gem_cs_tlb@engines@rcs0.html
* igt@gem_ctx_isolation@preservation-s3@bcs0:
- shard-glk: NOTRUN -> [INCOMPLETE][21] ([i915#12353])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-glk3/igt@gem_ctx_isolation@preservation-s3@bcs0.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-dg2: NOTRUN -> [SKIP][22] ([i915#8555])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-3/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg2-9: NOTRUN -> [SKIP][23] ([i915#8555])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_sseu@engines:
- shard-rkl: NOTRUN -> [SKIP][24] ([i915#280])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-3/igt@gem_ctx_sseu@engines.html
* igt@gem_eio@in-flight-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][25] ([i915#13197] / [i915#13390])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-glk8/igt@gem_eio@in-flight-suspend.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-dg2-9: NOTRUN -> [SKIP][26] ([i915#4812])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@parallel:
- shard-tglu: NOTRUN -> [SKIP][27] ([i915#4525]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-7/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: NOTRUN -> [SKIP][28] ([i915#4525]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-8/igt@gem_exec_balancer@parallel-balancer.html
- shard-tglu-1: NOTRUN -> [SKIP][29] ([i915#4525])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-1/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_capture@capture-invisible:
- shard-tglu-1: NOTRUN -> [SKIP][30] ([i915#6334]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-1/igt@gem_exec_capture@capture-invisible.html
* igt@gem_exec_flush@basic-uc-prw-default:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#3539])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-8/igt@gem_exec_flush@basic-uc-prw-default.html
* igt@gem_exec_flush@basic-wb-ro-before-default:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#3539] / [i915#4852])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-10/igt@gem_exec_flush@basic-wb-ro-before-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-dg2-9: NOTRUN -> [SKIP][33] ([i915#5107])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-cpu-gtt:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#3281]) +8 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-1/igt@gem_exec_reloc@basic-cpu-gtt.html
- shard-dg1: NOTRUN -> [SKIP][35] ([i915#3281]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg1-17/igt@gem_exec_reloc@basic-cpu-gtt.html
* igt@gem_exec_reloc@basic-cpu-read:
- shard-dg2-9: NOTRUN -> [SKIP][36] ([i915#3281]) +6 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@gem_exec_reloc@basic-cpu-read.html
* igt@gem_exec_reloc@basic-cpu-wc-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][37] ([i915#3281]) +3 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-mtlp-8/igt@gem_exec_reloc@basic-cpu-wc-noreloc.html
* igt@gem_exec_reloc@basic-gtt-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][38] ([i915#3281]) +15 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-read-noreloc.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: NOTRUN -> [SKIP][39] ([i915#7276])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-7/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-tglu: [PASS][40] -> [ABORT][41] ([i915#7975] / [i915#8213]) +1 other test abort
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-tglu-7/igt@gem_exec_suspend@basic-s4-devices.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices.html
- shard-rkl: NOTRUN -> [ABORT][42] ([i915#7975] / [i915#8213]) +1 other test abort
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-5/igt@gem_exec_suspend@basic-s4-devices.html
* igt@gem_fence_thrash@bo-write-verify-y:
- shard-dg2-9: NOTRUN -> [SKIP][43] ([i915#4860])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@gem_fence_thrash@bo-write-verify-y.html
* igt@gem_lmem_swapping@heavy-random:
- shard-tglu: NOTRUN -> [SKIP][44] ([i915#4613]) +3 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-2/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-glk: NOTRUN -> [SKIP][45] ([i915#4613]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-glk3/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@parallel-random:
- shard-rkl: NOTRUN -> [SKIP][46] ([i915#4613]) +6 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-3/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4613])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-mtlp-1/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@smem-oom:
- shard-tglu-1: NOTRUN -> [SKIP][48] ([i915#4613])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-1/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_madvise@dontneed-before-exec:
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#3282]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-5/igt@gem_madvise@dontneed-before-exec.html
* igt@gem_media_fill@media-fill:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#8289])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-5/igt@gem_media_fill@media-fill.html
* igt@gem_mmap_gtt@basic-small-copy-odd:
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#4077]) +4 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg1-19/igt@gem_mmap_gtt@basic-small-copy-odd.html
* igt@gem_mmap_gtt@cpuset-big-copy:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#4077]) +9 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-2/igt@gem_mmap_gtt@cpuset-big-copy.html
* igt@gem_mmap_gtt@cpuset-big-copy-odd:
- shard-dg2-9: NOTRUN -> [SKIP][53] ([i915#4077]) +9 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
* igt@gem_mmap_wc@write-cpu-read-wc:
- shard-dg2-9: NOTRUN -> [SKIP][54] ([i915#4083]) +2 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@gem_mmap_wc@write-cpu-read-wc.html
* igt@gem_mmap_wc@write-gtt-read-wc:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#4083])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-6/igt@gem_mmap_wc@write-gtt-read-wc.html
* igt@gem_partial_pwrite_pread@write-uncached:
- shard-dg2-9: NOTRUN -> [SKIP][56] ([i915#3282]) +2 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@gem_partial_pwrite_pread@write-uncached.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][57] ([i915#3282]) +9 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-8/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pread@uncached:
- shard-dg1: NOTRUN -> [SKIP][58] ([i915#3282])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg1-17/igt@gem_pread@uncached.html
* igt@gem_pwrite@basic-exhaustion:
- shard-glk: NOTRUN -> [WARN][59] ([i915#2658])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-glk3/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@fail-invalid-protected-context:
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#4270])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg1-12/igt@gem_pxp@fail-invalid-protected-context.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-rkl: [PASS][61] -> [TIMEOUT][62] ([i915#12917] / [i915#12964]) +1 other test timeout
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-rkl-8/igt@gem_pxp@protected-raw-src-copy-not-readible.html
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-6/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#4270])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-7/igt@gem_pxp@regular-baseline-src-copy-readible.html
- shard-rkl: [PASS][64] -> [TIMEOUT][65] ([i915#12964])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-rkl-8/igt@gem_pxp@regular-baseline-src-copy-readible.html
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-3/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-rkl: NOTRUN -> [TIMEOUT][66] ([i915#12917] / [i915#12964]) +2 other tests timeout
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-5/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-dg2-9: NOTRUN -> [SKIP][67] ([i915#4270]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_render_copy@linear-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#5190] / [i915#8428]) +4 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-2/igt@gem_render_copy@linear-to-vebox-yf-tiled.html
* igt@gem_render_copy@yf-tiled-ccs-to-y-tiled-ccs:
- shard-dg2-9: NOTRUN -> [SKIP][69] ([i915#5190] / [i915#8428]) +3 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled-ccs.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-rkl: NOTRUN -> [SKIP][70] ([i915#8411])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#4079])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg1-15/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_softpin@evict-snoop:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#4885])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-2/igt@gem_softpin@evict-snoop.html
* igt@gem_tiled_pread_basic:
- shard-dg2-9: NOTRUN -> [SKIP][73] ([i915#4079])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@gem_tiled_pread_basic.html
* igt@gem_tiling_max_stride:
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4077]) +2 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-mtlp-5/igt@gem_tiling_max_stride.html
* igt@gem_unfence_active_buffers:
- shard-dg2-9: NOTRUN -> [SKIP][75] ([i915#4879])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@coherency-sync:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#3297])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-2/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#3297] / [i915#4880])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg1-12/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#3297] / [i915#4880])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-5/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@relocations:
- shard-rkl: NOTRUN -> [SKIP][79] ([i915#3281] / [i915#3297])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-3/igt@gem_userptr_blits@relocations.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-rkl: NOTRUN -> [SKIP][80] ([i915#3297]) +3 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-8/igt@gem_userptr_blits@unsync-unmap.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-tglu: NOTRUN -> [SKIP][81] ([i915#3297]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-10/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gem_workarounds@suspend-resume-context:
- shard-glk: NOTRUN -> [INCOMPLETE][82] ([i915#13356])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-glk1/igt@gem_workarounds@suspend-resume-context.html
* igt@gen7_exec_parse@basic-offset:
- shard-mtlp: NOTRUN -> [SKIP][83] +5 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-mtlp-2/igt@gen7_exec_parse@basic-offset.html
* igt@gen9_exec_parse@bb-chained:
- shard-rkl: NOTRUN -> [SKIP][84] ([i915#2527]) +9 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-4/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#2856])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-5/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@bb-start-out:
- shard-tglu-1: NOTRUN -> [SKIP][86] ([i915#2527] / [i915#2856]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-1/igt@gen9_exec_parse@bb-start-out.html
* igt@gen9_exec_parse@bb-start-param:
- shard-tglu: NOTRUN -> [SKIP][87] ([i915#2527] / [i915#2856]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-2/igt@gen9_exec_parse@bb-start-param.html
* igt@gen9_exec_parse@unaligned-access:
- shard-dg2-9: NOTRUN -> [SKIP][88] ([i915#2856]) +2 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@gen9_exec_parse@unaligned-access.html
* igt@i915_drm_fdinfo@busy-check-all@vcs1:
- shard-dg2-9: NOTRUN -> [SKIP][89] ([i915#11527]) +7 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@i915_drm_fdinfo@busy-check-all@vcs1.html
* igt@i915_drm_fdinfo@busy@vecs1:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#14073]) +15 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-10/igt@i915_drm_fdinfo@busy@vecs1.html
* igt@i915_drm_fdinfo@isolation@bcs0:
- shard-dg1: NOTRUN -> [SKIP][91] ([i915#14073]) +11 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg1-12/igt@i915_drm_fdinfo@isolation@bcs0.html
* igt@i915_drm_fdinfo@isolation@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][92] ([i915#14073]) +13 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-mtlp-4/igt@i915_drm_fdinfo@isolation@rcs0.html
* igt@i915_drm_fdinfo@virtual-busy-idle:
- shard-dg2: NOTRUN -> [SKIP][93] ([i915#14118]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-6/igt@i915_drm_fdinfo@virtual-busy-idle.html
* igt@i915_drm_fdinfo@virtual-busy-idle-all:
- shard-dg2-9: NOTRUN -> [SKIP][94] ([i915#14118])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@i915_drm_fdinfo@virtual-busy-idle-all.html
- shard-dg1: NOTRUN -> [SKIP][95] ([i915#14118])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg1-14/igt@i915_drm_fdinfo@virtual-busy-idle-all.html
* igt@i915_fb_tiling@basic-x-tiling:
- shard-dg2-9: NOTRUN -> [SKIP][96] ([i915#13786])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@i915_fb_tiling@basic-x-tiling.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-rkl: NOTRUN -> [SKIP][97] ([i915#8399])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-8/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-glk: NOTRUN -> [INCOMPLETE][98] ([i915#12797])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-glk9/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg2-9: NOTRUN -> [SKIP][99] ([i915#11681] / [i915#6621])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@thresholds:
- shard-dg2-9: NOTRUN -> [SKIP][100] ([i915#11681])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@i915_pm_rps@thresholds.html
* igt@i915_pm_rps@thresholds-idle:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#11681])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-1/igt@i915_pm_rps@thresholds-idle.html
* igt@i915_power@sanity:
- shard-rkl: NOTRUN -> [SKIP][102] ([i915#7984])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-7/igt@i915_power@sanity.html
* igt@i915_query@hwconfig_table:
- shard-tglu: NOTRUN -> [SKIP][103] ([i915#6245])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-2/igt@i915_query@hwconfig_table.html
* igt@i915_selftest@live@workarounds:
- shard-dg2: NOTRUN -> [DMESG-FAIL][104] ([i915#12061]) +1 other test dmesg-fail
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-2/igt@i915_selftest@live@workarounds.html
- shard-mtlp: [PASS][105] -> [DMESG-FAIL][106] ([i915#12061]) +1 other test dmesg-fail
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-mtlp-4/igt@i915_selftest@live@workarounds.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-mtlp-8/igt@i915_selftest@live@workarounds.html
* igt@i915_suspend@debugfs-reader:
- shard-glk: NOTRUN -> [INCOMPLETE][107] ([i915#4817])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-glk2/igt@i915_suspend@debugfs-reader.html
* igt@intel_hwmon@hwmon-read:
- shard-tglu: NOTRUN -> [SKIP][108] ([i915#7707])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-8/igt@intel_hwmon@hwmon-read.html
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-hdmi-a-1-y-rc-ccs-cc:
- shard-tglu: NOTRUN -> [SKIP][109] ([i915#8709]) +3 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-6/igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-hdmi-a-1-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-c-edp-1-4-rc-ccs-cc:
- shard-mtlp: NOTRUN -> [SKIP][110] ([i915#8709]) +7 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-mtlp-6/igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-c-edp-1-4-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-c-hdmi-a-3-y-rc-ccs-cc:
- shard-dg1: NOTRUN -> [SKIP][111] ([i915#8709]) +7 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg1-13/igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-c-hdmi-a-3-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-d-hdmi-a-3-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#8709]) +15 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-6/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-d-hdmi-a-3-4-mc-ccs.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-dg2-9: NOTRUN -> [FAIL][113] ([i915#5956]) +1 other test fail
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-glk: NOTRUN -> [SKIP][114] ([i915#1769])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-glk3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][115] ([i915#5286]) +2 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-3/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-0:
- shard-tglu-1: NOTRUN -> [SKIP][116] ([i915#5286]) +1 other test skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-1/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][117] ([i915#5286]) +11 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-dg1: NOTRUN -> [SKIP][118] ([i915#4538] / [i915#5286])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg1-14/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-32bpp-rotate-0:
- shard-rkl: NOTRUN -> [DMESG-WARN][119] ([i915#12964]) +20 other tests dmesg-warn
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-4/igt@kms_big_fb@linear-32bpp-rotate-0.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#3638]) +1 other test skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg1-16/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-dg2-9: NOTRUN -> [SKIP][121] +5 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
- shard-rkl: NOTRUN -> [SKIP][122] ([i915#3638]) +5 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-4/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-0:
- shard-dg2-9: NOTRUN -> [SKIP][123] ([i915#4538] / [i915#5190]) +5 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@kms_big_fb@y-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][124] ([i915#4538] / [i915#5190]) +8 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-5/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-mtlp: NOTRUN -> [SKIP][125] ([i915#6187])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-mtlp-5/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
- shard-dg2: NOTRUN -> [SKIP][126] ([i915#5190])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-3/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg2-9: NOTRUN -> [SKIP][127] ([i915#5190])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-glk: NOTRUN -> [SKIP][128] +339 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-glk1/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][129] ([i915#6095]) +55 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-8/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][130] ([i915#6095]) +148 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg1-15/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#10307] / [i915#6095]) +149 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-1/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][132] ([i915#6095]) +34 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-dg2-9: NOTRUN -> [SKIP][133] ([i915#12805])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][134] ([i915#6095]) +24 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-glk: NOTRUN -> [INCOMPLETE][135] ([i915#12796]) +1 other test incomplete
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-glk3/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][136] ([i915#6095]) +24 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-10/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-dg1: NOTRUN -> [SKIP][137] ([i915#12313])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg1-14/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#12313])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-b-hdmi-a-2:
- shard-dg2-9: NOTRUN -> [SKIP][139] ([i915#10307] / [i915#6095]) +54 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][140] ([i915#10307] / [i915#10434] / [i915#6095])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-8/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-dg2-9: NOTRUN -> [SKIP][141] ([i915#12313])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
- shard-rkl: NOTRUN -> [SKIP][142] ([i915#12313]) +1 other test skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-7/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][143] ([i915#14098] / [i915#6095]) +75 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-4/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][144] ([i915#6095]) +14 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-mtlp-3/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-b-edp-1.html
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2:
- shard-dg2-9: NOTRUN -> [SKIP][145] ([i915#13783]) +4 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-tglu-1: NOTRUN -> [SKIP][146] ([i915#11151] / [i915#7828]) +5 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-1/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@degamma:
- shard-dg2: NOTRUN -> [SKIP][147] +12 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-6/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#11151] / [i915#7828]) +12 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-5/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_frames@dp-crc-multiple:
- shard-dg2: NOTRUN -> [SKIP][149] ([i915#11151] / [i915#7828]) +5 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-5/igt@kms_chamelium_frames@dp-crc-multiple.html
* igt@kms_chamelium_frames@hdmi-crc-single:
- shard-dg1: NOTRUN -> [SKIP][150] ([i915#11151] / [i915#7828]) +3 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg1-16/igt@kms_chamelium_frames@hdmi-crc-single.html
- shard-mtlp: NOTRUN -> [SKIP][151] ([i915#11151] / [i915#7828]) +1 other test skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-mtlp-6/igt@kms_chamelium_frames@hdmi-crc-single.html
* igt@kms_chamelium_hpd@dp-hpd-storm:
- shard-dg2-9: NOTRUN -> [SKIP][152] ([i915#11151] / [i915#7828]) +7 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@kms_chamelium_hpd@dp-hpd-storm.html
* igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
- shard-tglu: NOTRUN -> [SKIP][153] ([i915#11151] / [i915#7828]) +4 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-2/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#7118] / [i915#9424])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-8/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-rkl: NOTRUN -> [SKIP][155] ([i915#3116])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg1: NOTRUN -> [SKIP][156] ([i915#3299])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg1-16/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-tglu-1: NOTRUN -> [SKIP][157] ([i915#3116] / [i915#3299])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-1/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@srm@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [FAIL][158] ([i915#7173]) +1 other test fail
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-11/igt@kms_content_protection@srm@pipe-a-dp-3.html
* igt@kms_content_protection@uevent:
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#7118] / [i915#9424]) +2 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-6/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-mtlp: NOTRUN -> [SKIP][160] ([i915#8814])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-mtlp-4/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-dg1: NOTRUN -> [SKIP][161] ([i915#3555])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg1-14/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-random-256x85:
- shard-rkl: [PASS][162] -> [FAIL][163] ([i915#13566]) +1 other test fail
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-rkl-3/igt@kms_cursor_crc@cursor-random-256x85.html
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-5/igt@kms_cursor_crc@cursor-random-256x85.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2: NOTRUN -> [SKIP][164] ([i915#13049])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-8/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-dg2-9: NOTRUN -> [SKIP][165] ([i915#3555]) +2 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-tglu: NOTRUN -> [SKIP][166] ([i915#13049])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-2/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
- shard-mtlp: NOTRUN -> [SKIP][167] ([i915#13049])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-mtlp-5/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][168] ([i915#13566]) +2 other tests fail
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-tglu: [PASS][169] -> [FAIL][170] ([i915#13566]) +7 other tests fail
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-256x85.html
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-10/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-tglu: NOTRUN -> [SKIP][171] ([i915#3555]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-rkl: NOTRUN -> [SKIP][172] ([i915#13049]) +4 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-512x512.html
- shard-tglu-1: NOTRUN -> [SKIP][173] ([i915#13049]) +2 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-512x512.html
- shard-dg2-9: NOTRUN -> [SKIP][174] ([i915#13049])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-dg2-9: NOTRUN -> [SKIP][175] ([i915#13046] / [i915#5354]) +1 other test skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][176] +44 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-8/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
- shard-mtlp: NOTRUN -> [SKIP][177] ([i915#9809])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-mtlp-2/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-tglu: NOTRUN -> [SKIP][178] ([i915#4103])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-rkl: NOTRUN -> [SKIP][179] ([i915#4103]) +2 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#13046] / [i915#5354]) +1 other test skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-10/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-tglu: NOTRUN -> [SKIP][181] +57 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-10/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-rkl: NOTRUN -> [FAIL][182] ([i915#2346])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2-9: NOTRUN -> [SKIP][183] ([i915#4103] / [i915#4213])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
- shard-tglu-1: NOTRUN -> [SKIP][184] ([i915#4103])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#4103] / [i915#4213])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#9723])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-3/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#9833])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-7/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-tglu-1: NOTRUN -> [SKIP][188] ([i915#1769] / [i915#3555] / [i915#3804])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#3804])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
- shard-tglu-1: NOTRUN -> [SKIP][190] ([i915#3804])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_aux_dev:
- shard-dg2: [PASS][191] -> [SKIP][192] ([i915#1257])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-dg2-11/igt@kms_dp_aux_dev.html
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-1/igt@kms_dp_aux_dev.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-tglu-1: NOTRUN -> [SKIP][193] ([i915#13749])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-1/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-dg2-9: NOTRUN -> [SKIP][194] ([i915#13748])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@kms_dp_link_training@uhbr-mst.html
- shard-rkl: NOTRUN -> [SKIP][195] ([i915#13748])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-4/igt@kms_dp_link_training@uhbr-mst.html
- shard-tglu-1: NOTRUN -> [SKIP][196] ([i915#13748])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-1/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-dg2: NOTRUN -> [SKIP][197] ([i915#13748])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-3/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-tglu: NOTRUN -> [SKIP][198] ([i915#13707])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-4/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#8812])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-4/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-basic:
- shard-dg2-9: NOTRUN -> [SKIP][200] ([i915#3555] / [i915#3840]) +2 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][201] ([i915#3840])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-rkl: NOTRUN -> [SKIP][202] ([i915#3555] / [i915#3840]) +2 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-7/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-formats:
- shard-tglu-1: NOTRUN -> [SKIP][203] ([i915#3555] / [i915#3840])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-1/igt@kms_dsc@dsc-with-formats.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][204] ([i915#9878])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-glk9/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: NOTRUN -> [SKIP][205] ([i915#3955])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-8/igt@kms_fbcon_fbt@psr.html
- shard-tglu-1: NOTRUN -> [SKIP][206] ([i915#3469])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-1/igt@kms_fbcon_fbt@psr.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg1: NOTRUN -> [SKIP][207] ([i915#3469])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg1-13/igt@kms_fbcon_fbt@psr-suspend.html
- shard-tglu: NOTRUN -> [SKIP][208] ([i915#3469])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-6/igt@kms_fbcon_fbt@psr-suspend.html
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#3469])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-5/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-2x:
- shard-dg2-9: NOTRUN -> [SKIP][210] ([i915#1839])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-3x:
- shard-tglu: NOTRUN -> [SKIP][211] ([i915#1839])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-10/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-rkl: NOTRUN -> [SKIP][212] ([i915#1839]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-5/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-rkl: NOTRUN -> [SKIP][213] ([i915#9337])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-5/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-tglu-1: NOTRUN -> [SKIP][214] ([i915#658])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-1/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1:
- shard-snb: [PASS][215] -> [FAIL][216] ([i915#11832] / [i915#13734]) +3 other tests fail
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-snb1/igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1.html
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-snb4/igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-tglu-1: NOTRUN -> [SKIP][217] ([i915#9934])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-tglu-1: NOTRUN -> [SKIP][218] ([i915#3637] / [i915#9934]) +1 other test skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-1/igt@kms_flip@2x-flip-vs-fences.html
- shard-dg2-9: NOTRUN -> [SKIP][219] ([i915#8381])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-wf_vblank:
- shard-dg2-9: NOTRUN -> [SKIP][220] ([i915#9934]) +3 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@kms_flip@2x-flip-vs-wf_vblank.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#9934]) +3 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-3/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-tglu: NOTRUN -> [SKIP][222] ([i915#3637] / [i915#9934]) +1 other test skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-4/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#9934]) +12 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-3/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-dg1: NOTRUN -> [SKIP][224] ([i915#9934]) +1 other test skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg1-12/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-rkl: [PASS][225] -> [FAIL][226] ([i915#13734]) +3 other tests fail
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-rkl-8/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1:
- shard-tglu: NOTRUN -> [FAIL][227] ([i915#13734]) +2 other tests fail
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-2/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend:
- shard-rkl: NOTRUN -> [INCOMPLETE][228] ([i915#6113])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-3/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-snb: [PASS][229] -> [INCOMPLETE][230] ([i915#12314] / [i915#12745] / [i915#4839])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-snb6/igt@kms_flip@flip-vs-suspend-interruptible.html
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-snb2/igt@kms_flip@flip-vs-suspend-interruptible.html
- shard-glk: NOTRUN -> [INCOMPLETE][231] ([i915#12745] / [i915#4839]) +1 other test incomplete
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-glk5/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-snb: [PASS][232] -> [INCOMPLETE][233] ([i915#12314] / [i915#12745])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-snb6/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-snb2/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][234] ([i915#12745]) +1 other test incomplete
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-glk6/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][235] ([i915#2587] / [i915#2672]) +3 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][236] ([i915#2672] / [i915#3555]) +1 other test skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][237] ([i915#2587] / [i915#2672]) +1 other test skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-dg2-9: NOTRUN -> [SKIP][238] ([i915#2672] / [i915#3555])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-dg2-9: NOTRUN -> [SKIP][239] ([i915#2672]) +2 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][240] ([i915#2587] / [i915#2672] / [i915#3555])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-dg1: NOTRUN -> [SKIP][241] ([i915#2672] / [i915#3555])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
- shard-mtlp: NOTRUN -> [SKIP][242] ([i915#2672] / [i915#3555] / [i915#8813])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][243] ([i915#2672] / [i915#8813])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][244] ([i915#2587] / [i915#2672])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][245] ([i915#2672] / [i915#3555]) +2 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][246] ([i915#2672] / [i915#3555]) +8 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][247] ([i915#2672]) +8 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2-9: NOTRUN -> [SKIP][248] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][249] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#2672]) +1 other test skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][251] ([i915#8708]) +11 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-dg2-9: NOTRUN -> [SKIP][252] ([i915#8708]) +13 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-tglu-1: NOTRUN -> [SKIP][253] +50 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move:
- shard-dg2-9: NOTRUN -> [SKIP][254] ([i915#5354]) +21 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-tglu-1: NOTRUN -> [SKIP][255] ([i915#5439])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
- shard-dg1: NOTRUN -> [SKIP][256] ([i915#5439])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][257] ([i915#8708])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][258] ([i915#8708])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite:
- shard-dg2-9: NOTRUN -> [SKIP][259] ([i915#3458]) +11 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt:
- shard-dg1: NOTRUN -> [SKIP][260] ([i915#3458]) +4 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][261] +12 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][262] ([i915#3023]) +39 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][263] ([i915#3458]) +11 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][264] ([i915#5354]) +19 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][265] ([i915#1825]) +78 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
- shard-mtlp: NOTRUN -> [SKIP][266] ([i915#1825]) +5 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render:
- shard-snb: NOTRUN -> [SKIP][267] +35 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-snb4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_hdr@bpc-switch:
- shard-dg1: NOTRUN -> [SKIP][268] ([i915#3555] / [i915#8228])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg1-14/igt@kms_hdr@bpc-switch.html
- shard-tglu: NOTRUN -> [SKIP][269] ([i915#3555] / [i915#8228]) +1 other test skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-2/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-rkl: NOTRUN -> [SKIP][270] ([i915#3555] / [i915#8228]) +5 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-7/igt@kms_hdr@bpc-switch-dpms.html
- shard-dg2: [PASS][271] -> [SKIP][272] ([i915#3555] / [i915#8228])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-dg2-11/igt@kms_hdr@bpc-switch-dpms.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-3/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-dg2: NOTRUN -> [SKIP][273] ([i915#3555] / [i915#8228]) +1 other test skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-2/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@static-toggle-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][274] ([i915#3555] / [i915#8228])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-1/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][275] ([i915#12394])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-1/igt@kms_joiner@basic-force-ultra-joiner.html
- shard-rkl: NOTRUN -> [SKIP][276] ([i915#12394])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-4/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-tglu: NOTRUN -> [SKIP][277] ([i915#13688])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-10/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][278] ([i915#12339])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-5/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-dg2-9: NOTRUN -> [SKIP][279] ([i915#10656]) +1 other test skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-dg1: NOTRUN -> [SKIP][280] ([i915#13522])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg1-15/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-dg2-9: NOTRUN -> [SKIP][281] ([i915#13522])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_legacy_colorkey@invalid-plane:
- shard-dg1: [PASS][282] -> [DMESG-WARN][283] ([i915#4423]) +1 other test dmesg-warn
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-dg1-18/igt@kms_legacy_colorkey@invalid-plane.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg1-17/igt@kms_legacy_colorkey@invalid-plane.html
* igt@kms_plane_alpha_blend@alpha-basic:
- shard-glk: NOTRUN -> [FAIL][284] ([i915#12178])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-glk6/igt@kms_plane_alpha_blend@alpha-basic.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][285] ([i915#7862]) +1 other test fail
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-glk6/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb:
- shard-glk: NOTRUN -> [FAIL][286] ([i915#10647] / [i915#12169]) +1 other test fail
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-glk8/igt@kms_plane_alpha_blend@alpha-opaque-fb.html
* igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][287] ([i915#10647]) +3 other tests fail
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-glk5/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][288] ([i915#8821])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-6/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-tglu-1: NOTRUN -> [SKIP][289] ([i915#13958])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-rkl: NOTRUN -> [SKIP][290] ([i915#13958]) +1 other test skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-4/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@tiling-4:
- shard-rkl: NOTRUN -> [SKIP][291] ([i915#14259])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-5/igt@kms_plane_multiple@tiling-4.html
* igt@kms_plane_multiple@tiling-yf:
- shard-dg2-9: NOTRUN -> [SKIP][292] ([i915#14259])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: [PASS][293] -> [SKIP][294] ([i915#6953] / [i915#9423])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-dg2-10/igt@kms_plane_scaling@intel-max-src-size.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-2/igt@kms_plane_scaling@intel-max-src-size.html
- shard-rkl: NOTRUN -> [SKIP][295] ([i915#6953])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-4/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][296] ([i915#12247]) +8 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a:
- shard-dg1: NOTRUN -> [SKIP][297] ([i915#12247]) +4 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg1-12/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-rkl: NOTRUN -> [SKIP][298] ([i915#3555]) +10 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b:
- shard-tglu: NOTRUN -> [SKIP][299] ([i915#12247]) +9 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20:
- shard-dg2: NOTRUN -> [SKIP][300] ([i915#12247] / [i915#9423])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a:
- shard-dg2: NOTRUN -> [SKIP][301] ([i915#12247]) +3 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a.html
* igt@kms_pm_backlight@bad-brightness:
- shard-rkl: NOTRUN -> [SKIP][302] ([i915#5354]) +1 other test skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-8/igt@kms_pm_backlight@bad-brightness.html
- shard-tglu-1: NOTRUN -> [SKIP][303] ([i915#9812]) +1 other test skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-1/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2: NOTRUN -> [SKIP][304] ([i915#9685])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-11/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2: NOTRUN -> [SKIP][305] ([i915#14104])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-2/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-rkl: NOTRUN -> [SKIP][306] ([i915#9685])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-5/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: [PASS][307] -> [SKIP][308] ([i915#4281])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-4/igt@kms_pm_dc@dc9-dpms.html
- shard-tglu-1: NOTRUN -> [SKIP][309] ([i915#4281])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-1/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-tglu: NOTRUN -> [SKIP][310] ([i915#3828])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-5/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-tglu-1: NOTRUN -> [SKIP][311] ([i915#8430])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-1/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: [PASS][312] -> [SKIP][313] ([i915#9519])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-dg2-8/igt@kms_pm_rpm@dpms-lpsp.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-10/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-tglu-1: NOTRUN -> [SKIP][314] ([i915#9519])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2-9: NOTRUN -> [SKIP][315] ([i915#9519])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
- shard-dg1: NOTRUN -> [SKIP][316] ([i915#9519])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [PASS][317] -> [SKIP][318] ([i915#9519])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-tglu: NOTRUN -> [SKIP][319] ([i915#9519])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-10/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
- shard-mtlp: NOTRUN -> [SKIP][320] ([i915#9519])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-mtlp-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg2-9: NOTRUN -> [SKIP][321] ([i915#6524] / [i915#6805])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@kms_prime@basic-crc-vgem.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: NOTRUN -> [SKIP][322] ([i915#6524])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-4/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_prime@d3hot:
- shard-dg2: NOTRUN -> [SKIP][323] ([i915#6524] / [i915#6805])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-11/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf:
- shard-dg2-9: NOTRUN -> [SKIP][324] ([i915#11520]) +5 other tests skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
- shard-rkl: NOTRUN -> [SKIP][325] ([i915#11520]) +14 other tests skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-tglu: NOTRUN -> [SKIP][326] ([i915#11520]) +4 other tests skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-10/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][327] ([i915#11520]) +11 other tests skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-glk8/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][328] ([i915#11520]) +1 other test skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg1-16/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html
- shard-snb: NOTRUN -> [SKIP][329] ([i915#11520])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-snb4/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][330] ([i915#11520]) +7 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-8/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-tglu-1: NOTRUN -> [SKIP][331] ([i915#11520]) +5 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-1/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-dg2-9: NOTRUN -> [SKIP][332] ([i915#9683])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-tglu: NOTRUN -> [SKIP][333] ([i915#9683])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-8/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-rkl: NOTRUN -> [SKIP][334] ([i915#9683])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-4/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-psr-sprite-mmap-cpu:
- shard-dg2-9: NOTRUN -> [SKIP][335] ([i915#1072] / [i915#9732]) +14 other tests skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@kms_psr@fbc-psr-sprite-mmap-cpu.html
* igt@kms_psr@fbc-psr2-no-drrs:
- shard-tglu: NOTRUN -> [SKIP][336] ([i915#9732]) +12 other tests skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-5/igt@kms_psr@fbc-psr2-no-drrs.html
* igt@kms_psr@fbc-psr2-sprite-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][337] ([i915#1072] / [i915#9732]) +7 other tests skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg1-17/igt@kms_psr@fbc-psr2-sprite-mmap-gtt.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-mtlp: NOTRUN -> [SKIP][338] ([i915#9688]) +3 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-mtlp-6/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@psr-sprite-plane-move:
- shard-rkl: NOTRUN -> [SKIP][339] ([i915#1072] / [i915#9732]) +38 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-7/igt@kms_psr@psr-sprite-plane-move.html
* igt@kms_psr@psr2-cursor-blt:
- shard-dg2: NOTRUN -> [SKIP][340] ([i915#1072] / [i915#9732]) +17 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-6/igt@kms_psr@psr2-cursor-blt.html
* igt@kms_psr@psr2-primary-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][341] ([i915#9732]) +12 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-1/igt@kms_psr@psr2-primary-mmap-cpu.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg1: NOTRUN -> [SKIP][342] ([i915#4884])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg1-19/igt@kms_rotation_crc@exhaust-fences.html
- shard-mtlp: NOTRUN -> [SKIP][343] ([i915#4235])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-mtlp-2/igt@kms_rotation_crc@exhaust-fences.html
- shard-dg2: NOTRUN -> [SKIP][344] ([i915#4235])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-6/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-dg2: NOTRUN -> [SKIP][345] ([i915#12755])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-2/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-rkl: NOTRUN -> [SKIP][346] ([i915#5289])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-dg2-9: NOTRUN -> [SKIP][347] ([i915#12755]) +1 other test skip
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_selftest@drm_framebuffer:
- shard-tglu-1: NOTRUN -> [ABORT][348] ([i915#13179]) +1 other test abort
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-1/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-dg2: NOTRUN -> [SKIP][349] ([i915#3555]) +2 other tests skip
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-4/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-rkl: NOTRUN -> [SKIP][350] ([i915#8623])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-dg2: NOTRUN -> [SKIP][351] ([i915#8623])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1:
- shard-mtlp: [PASS][352] -> [FAIL][353] ([i915#9196]) +1 other test fail
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-mtlp-4/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html
* igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [INCOMPLETE][354] ([i915#12276]) +1 other test incomplete
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-3/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2.html
* igt@kms_vrr@flip-basic-fastset:
- shard-tglu: NOTRUN -> [SKIP][355] ([i915#9906])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-5/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@flip-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][356] ([i915#3555])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-1/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@lobf:
- shard-dg2-9: NOTRUN -> [SKIP][357] ([i915#11920])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@kms_vrr@lobf.html
* igt@kms_vrr@negative-basic:
- shard-rkl: NOTRUN -> [SKIP][358] ([i915#3555] / [i915#9906])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-4/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-dg1: NOTRUN -> [SKIP][359] ([i915#9906])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg1-17/igt@kms_vrr@seamless-rr-switch-drrs.html
- shard-dg2: NOTRUN -> [SKIP][360] ([i915#9906])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-7/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-dg2-9: NOTRUN -> [SKIP][361] ([i915#9906])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@kms_vrr@seamless-rr-switch-virtual.html
- shard-tglu-1: NOTRUN -> [SKIP][362] ([i915#9906])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_writeback@writeback-check-output:
- shard-tglu: NOTRUN -> [SKIP][363] ([i915#2437])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-6/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-fb-id:
- shard-glk: NOTRUN -> [SKIP][364] ([i915#2437]) +3 other tests skip
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-glk1/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-rkl: NOTRUN -> [SKIP][365] ([i915#2437] / [i915#9412])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-8/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
- shard-tglu: NOTRUN -> [SKIP][366] ([i915#2437] / [i915#9412])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-2/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-dg2-9: NOTRUN -> [SKIP][367] ([i915#2436])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@mi-rpc:
- shard-dg2: NOTRUN -> [SKIP][368] ([i915#2434])
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-2/igt@perf@mi-rpc.html
- shard-rkl: NOTRUN -> [SKIP][369] ([i915#2434])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-8/igt@perf@mi-rpc.html
* igt@perf_pmu@frequency@gt0:
- shard-dg2-9: NOTRUN -> [FAIL][370] ([i915#12549] / [i915#6806]) +1 other test fail
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@perf_pmu@frequency@gt0.html
* igt@perf_pmu@module-unload:
- shard-snb: [PASS][371] -> [INCOMPLETE][372] ([i915#13520])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-snb7/igt@perf_pmu@module-unload.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-snb1/igt@perf_pmu@module-unload.html
- shard-tglu: [PASS][373] -> [INCOMPLETE][374] ([i915#13520])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-tglu-9/igt@perf_pmu@module-unload.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-10/igt@perf_pmu@module-unload.html
* igt@perf_pmu@most-busy-check-all:
- shard-rkl: [PASS][375] -> [FAIL][376] ([i915#4349]) +1 other test fail
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-rkl-7/igt@perf_pmu@most-busy-check-all.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-7/igt@perf_pmu@most-busy-check-all.html
* igt@perf_pmu@rc6-all-gts:
- shard-tglu: NOTRUN -> [SKIP][377] ([i915#8516])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-5/igt@perf_pmu@rc6-all-gts.html
* igt@perf_pmu@semaphore-busy@vcs1:
- shard-dg1: [PASS][378] -> [FAIL][379] ([i915#4349]) +3 other tests fail
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-dg1-16/igt@perf_pmu@semaphore-busy@vcs1.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg1-14/igt@perf_pmu@semaphore-busy@vcs1.html
* igt@perf_pmu@semaphore-busy@vecs0:
- shard-mtlp: [PASS][380] -> [FAIL][381] ([i915#4349]) +7 other tests fail
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-mtlp-7/igt@perf_pmu@semaphore-busy@vecs0.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-mtlp-5/igt@perf_pmu@semaphore-busy@vecs0.html
- shard-dg2: [PASS][382] -> [FAIL][383] ([i915#4349]) +5 other tests fail
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-dg2-10/igt@perf_pmu@semaphore-busy@vecs0.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-3/igt@perf_pmu@semaphore-busy@vecs0.html
* igt@prime_mmap@test_aperture_limit:
- shard-dg2-9: NOTRUN -> [SKIP][384] ([i915#14121]) +1 other test skip
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@prime_mmap@test_aperture_limit.html
* igt@prime_vgem@basic-fence-mmap:
- shard-dg2-9: NOTRUN -> [SKIP][385] ([i915#3708] / [i915#4077])
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-9/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-write:
- shard-dg2: NOTRUN -> [SKIP][386] ([i915#3291] / [i915#3708])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-6/igt@prime_vgem@basic-write.html
- shard-rkl: NOTRUN -> [SKIP][387] ([i915#3291] / [i915#3708])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-8/igt@prime_vgem@basic-write.html
* igt@prime_vgem@coherency-gtt:
- shard-rkl: NOTRUN -> [SKIP][388] ([i915#3708]) +1 other test skip
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-3/igt@prime_vgem@coherency-gtt.html
* igt@sriov_basic@bind-unbind-vf:
- shard-rkl: NOTRUN -> [SKIP][389] ([i915#9917]) +1 other test skip
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-6/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-all:
- shard-tglu-1: NOTRUN -> [FAIL][390] ([i915#12910]) +9 other tests fail
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-all.html
* igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random:
- shard-tglu: NOTRUN -> [FAIL][391] ([i915#12910]) +8 other tests fail
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-7/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random.html
#### Possible fixes ####
* igt@gem_ctx_isolation@preservation-s3@rcs0:
- shard-glk: [INCOMPLETE][392] ([i915#12353]) -> [PASS][393]
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-glk6/igt@gem_ctx_isolation@preservation-s3@rcs0.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-glk3/igt@gem_ctx_isolation@preservation-s3@rcs0.html
* igt@gem_eio@in-flight-1us:
- shard-mtlp: [ABORT][394] ([i915#13723]) -> [PASS][395]
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-mtlp-4/igt@gem_eio@in-flight-1us.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-mtlp-5/igt@gem_eio@in-flight-1us.html
* igt@gem_pxp@create-regular-buffer:
- shard-rkl: [TIMEOUT][396] ([i915#12917] / [i915#12964]) -> [PASS][397]
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-rkl-5/igt@gem_pxp@create-regular-buffer.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-8/igt@gem_pxp@create-regular-buffer.html
* igt@gem_softpin@noreloc-s3:
- shard-rkl: [INCOMPLETE][398] ([i915#13809]) -> [PASS][399]
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-rkl-6/igt@gem_softpin@noreloc-s3.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-7/igt@gem_softpin@noreloc-s3.html
* igt@i915_module_load@reload-no-display:
- shard-tglu: [DMESG-WARN][400] ([i915#13029]) -> [PASS][401]
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-tglu-9/igt@i915_module_load@reload-no-display.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-4/igt@i915_module_load@reload-no-display.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
- shard-dg1: [FAIL][402] ([i915#3591]) -> [PASS][403]
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* igt@i915_power@sanity:
- shard-mtlp: [SKIP][404] ([i915#7984]) -> [PASS][405]
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-mtlp-7/igt@i915_power@sanity.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-mtlp-5/igt@i915_power@sanity.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][406] ([i915#11808]) -> [PASS][407] +1 other test pass
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-tglu-6/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-4/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [FAIL][408] ([i915#5138]) -> [PASS][409]
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs:
- shard-rkl: [DMESG-WARN][410] ([i915#12964]) -> [PASS][411] +21 other tests pass
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html
* igt@kms_cursor_crc@cursor-random-128x42:
- shard-tglu: [FAIL][412] ([i915#13566]) -> [PASS][413] +5 other tests pass
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-tglu-3/igt@kms_cursor_crc@cursor-random-128x42.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-tglu-6/igt@kms_cursor_crc@cursor-random-128x42.html
* igt@kms_cursor_edge_walk@128x128-right-edge@pipe-b-hdmi-a-1:
- shard-snb: [INCOMPLETE][414] -> [PASS][415] +1 other test pass
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-snb6/igt@kms_cursor_edge_walk@128x128-right-edge@pipe-b-hdmi-a-1.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-snb4/igt@kms_cursor_edge_walk@128x128-right-edge@pipe-b-hdmi-a-1.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-dg2: [SKIP][416] ([i915#13749]) -> [PASS][417]
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-dg2-2/igt@kms_dp_link_training@non-uhbr-sst.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-11/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg2: [SKIP][418] ([i915#13707]) -> [PASS][419]
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-dg2-7/igt@kms_dp_linktrain_fallback@dp-fallback.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-10/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_flip@flip-vs-suspend:
- shard-snb: [INCOMPLETE][420] ([i915#12314] / [i915#12745] / [i915#4839]) -> [PASS][421]
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-snb2/igt@kms_flip@flip-vs-suspend.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-snb7/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@b-hdmi-a1:
- shard-snb: [INCOMPLETE][422] ([i915#12314] / [i915#4839]) -> [PASS][423]
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-snb2/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-snb7/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
* igt@kms_invalid_mode@bad-hsync-end:
- shard-dg1: [DMESG-WARN][424] ([i915#4423]) -> [PASS][425]
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-dg1-16/igt@kms_invalid_mode@bad-hsync-end.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg1-12/igt@kms_invalid_mode@bad-hsync-end.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-rkl: [INCOMPLETE][426] ([i915#13476]) -> [PASS][427]
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-rkl-7/igt@kms_pipe_crc_basic@suspend-read-crc.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-8/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: [SKIP][428] ([i915#9340]) -> [PASS][429]
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-dg2-6/igt@kms_pm_lpsp@kms-lpsp.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-8/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: [SKIP][430] ([i915#9519]) -> [PASS][431]
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg2: [SKIP][432] ([i915#9519]) -> [PASS][433] +1 other test pass
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-snb: [SKIP][434] -> [PASS][435]
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-snb1/igt@kms_setmode@basic-clone-single-crtc.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-snb4/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_vrr@negative-basic:
- shard-dg2: [SKIP][436] ([i915#3555] / [i915#9906]) -> [PASS][437]
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-dg2-5/igt@kms_vrr@negative-basic.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-11/igt@kms_vrr@negative-basic.html
* igt@perf_pmu@render-node-busy-idle@vcs1:
- shard-mtlp: [FAIL][438] ([i915#4349]) -> [PASS][439] +4 other tests pass
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-mtlp-8/igt@perf_pmu@render-node-busy-idle@vcs1.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-mtlp-4/igt@perf_pmu@render-node-busy-idle@vcs1.html
#### Warnings ####
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-rkl: [FAIL][440] ([i915#14040]) -> [TIMEOUT][441] ([i915#12917] / [i915#12964])
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-buffer.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg1: [SKIP][442] ([i915#4538] / [i915#5286]) -> [SKIP][443] ([i915#4423] / [i915#4538] / [i915#5286])
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg1-14/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][444] ([i915#6095]) -> [SKIP][445] ([i915#14098] / [i915#6095]) +6 other tests skip
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-rkl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][446] ([i915#14098] / [i915#6095]) -> [SKIP][447] ([i915#6095]) +3 other tests skip
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-rkl-5/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-8/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_content_protection@legacy:
- shard-dg2: [FAIL][448] ([i915#7173]) -> [SKIP][449] ([i915#7118] / [i915#9424])
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-dg2-10/igt@kms_content_protection@legacy.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-2/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2: [SKIP][450] ([i915#9424]) -> [FAIL][451] ([i915#7173])
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-dg2-6/igt@kms_content_protection@lic-type-0.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-11/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@srm:
- shard-dg2: [SKIP][452] ([i915#7118]) -> [FAIL][453] ([i915#7173])
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-dg2-5/igt@kms_content_protection@srm.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-11/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-dg1: [SKIP][454] ([i915#3555]) -> [SKIP][455] ([i915#3555] / [i915#4423])
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-dg1-13/igt@kms_cursor_crc@cursor-random-32x32.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg1-17/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-rkl: [DMESG-FAIL][456] ([i915#12964]) -> [FAIL][457] ([i915#13566])
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-128x42.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-dg1: [SKIP][458] -> [SKIP][459] ([i915#4423])
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-dg1-12/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg1-19/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
- shard-dg1: [SKIP][460] ([i915#9934]) -> [SKIP][461] ([i915#4423] / [i915#9934])
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-dg1-19/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg1-17/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-dg1: [SKIP][462] ([i915#4423] / [i915#9934]) -> [SKIP][463] ([i915#9934])
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-dg1-16/igt@kms_flip@2x-nonexisting-fb-interruptible.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg1-14/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move:
- shard-dg2: [SKIP][464] ([i915#3458]) -> [SKIP][465] ([i915#10433] / [i915#3458])
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-1p-rte:
- shard-dg1: [SKIP][466] ([i915#3458]) -> [SKIP][467] ([i915#3458] / [i915#4423])
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-rte.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-rte.html
* igt@kms_frontbuffer_tracking@psr-slowdraw:
- shard-dg2: [SKIP][468] ([i915#10433] / [i915#3458]) -> [SKIP][469] ([i915#3458]) +2 other tests skip
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-slowdraw.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-slowdraw.html
* igt@kms_hdr@brightness-with-hdr:
- shard-rkl: [SKIP][470] ([i915#1187] / [i915#12713]) -> [SKIP][471] ([i915#12713])
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-rkl-3/igt@kms_hdr@brightness-with-hdr.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-4/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][472] ([i915#4816]) -> [SKIP][473] ([i915#4070] / [i915#4816])
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_psr@fbc-psr-cursor-render:
- shard-dg1: [SKIP][474] ([i915#1072] / [i915#9732]) -> [SKIP][475] ([i915#1072] / [i915#4423] / [i915#9732])
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8370/shard-dg1-18/igt@kms_psr@fbc-psr-cursor-render.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/shard-dg1-17/igt@kms_psr@fbc-psr-cursor-render.html
[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#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808
[i915#11832]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11832
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
[i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
[i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339
[i915#12353]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12353
[i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394
[i915#12549]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12549
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[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#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796
[i915#12797]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12797
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008
[i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#13197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13197
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390
[i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
[i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520
[i915#13522]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13522
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13723
[i915#13734]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13734
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783
[i915#13786]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13786
[i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14040]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14040
[i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14104
[i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
[i915#14121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14121
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[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#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
[i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
[i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#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#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
[i915#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070
[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#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
[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#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[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#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4879
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#4884]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4884
[i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
[i915#5107]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#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#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
[i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
[i915#6806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6806
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862
[i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975
[i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
[i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
[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#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
[i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833
[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
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8370 -> IGTPW_13150
CI-20190529: 20190529
CI_DRM_16571: 943adcb1bc226246125ec1d18a387b4295e73703 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_13150: 13150
IGT_8370: 8370
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13150/index.html
[-- Attachment #2: Type: text/html, Size: 157131 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread* ✗ Xe.CI.Full: failure for Add test to validate survivability mode (rev4)
2025-05-20 6:49 [PATCH i-g-t v4 0/5] Add test to validate survivability mode Riana Tauro
` (8 preceding siblings ...)
2025-05-20 17:51 ` ✗ i915.CI.Full: failure for Add test to validate survivability mode (rev4) Patchwork
@ 2025-05-20 18:03 ` Patchwork
9 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2025-05-20 18:03 UTC (permalink / raw)
To: Riana Tauro; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 60099 bytes --]
== Series Details ==
Series: Add test to validate survivability mode (rev4)
URL : https://patchwork.freedesktop.org/series/147506/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8370_FULL -> XEIGTPW_13150_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_13150_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_13150_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 3)
------------------------------
Missing (1): shard-adlp
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_13150_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_configfs@survivability-mode (NEW):
- shard-dg2-set2: NOTRUN -> [SKIP][1]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-433/igt@xe_configfs@survivability-mode.html
* igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-busy:
- shard-bmg: [PASS][2] -> [ABORT][3]
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-bmg-3/igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-busy.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-4/igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-busy.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-race-nomemset:
- shard-bmg: NOTRUN -> [INCOMPLETE][4]
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-8/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-race-nomemset.html
New tests
---------
New tests have been introduced between XEIGT_8370_FULL and XEIGTPW_13150_FULL:
### New IGT tests (1) ###
* igt@xe_configfs@survivability-mode:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.0, 0.65] s
Known issues
------------
Here are the changes found in XEIGTPW_13150_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2233])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-d-dp-4-4-rc-ccs-cc:
- shard-dg2-set2: NOTRUN -> [SKIP][6] ([Intel XE#3767]) +31 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-433/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-d-dp-4-4-rc-ccs-cc.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][7] ([Intel XE#316]) +2 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-433/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#1407])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-lnl-2/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2327])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-3/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-180:
- shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#1124]) +3 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-432/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#1124]) +5 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1124]) +2 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-lnl-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#607]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-435/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#2191])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-435/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-2-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#367])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-2/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2887]) +10 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-7/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#3432])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-lnl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-2:
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#787]) +265 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-432/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-b-dp-2:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-b-dp-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [PASS][20] -> [INCOMPLETE][21] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][22] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#2887]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-lnl-7/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-4:
- shard-dg2-set2: [PASS][24] -> [INCOMPLETE][25] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-4.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-d-dp-2:
- shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#455] / [Intel XE#787]) +43 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-d-dp-2.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2724]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-4/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_audio@dp-audio:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#373]) +5 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-432/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#306])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-435/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#373]) +3 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-lnl-4/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_chamelium_frames@hdmi-cmp-planes-random:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2252]) +5 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-6/igt@kms_chamelium_frames@hdmi-cmp-planes-random.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-2:
- shard-dg2-set2: NOTRUN -> [FAIL][32] ([Intel XE#1178]) +1 other test fail
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-432/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][33] ([Intel XE#1178]) +1 other test fail
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-7/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
* igt@kms_content_protection@lic-type-1:
- shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#455]) +9 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-432/igt@kms_content_protection@lic-type-1.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2321]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-4/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2320])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-7/igt@kms_cursor_crc@cursor-random-32x32.html
- shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#1424]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-lnl-1/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#309])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-lnl-3/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [PASS][39] -> [SKIP][40] ([Intel XE#2291]) +3 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2286])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#1508])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-7/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-bmg: [PASS][43] -> [SKIP][44] ([Intel XE#4302])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-bmg-1/igt@kms_display_modes@extended-mode-basic.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-4/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-bmg: [PASS][45] -> [SKIP][46] ([Intel XE#1340])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-bmg-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#776])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-432/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@psr1:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2374])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-2/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3:
- shard-bmg: [PASS][49] -> [FAIL][50] ([Intel XE#3321]) +1 other test fail
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-bmg: [PASS][51] -> [SKIP][52] ([Intel XE#2316]) +4 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-bmg-6/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-4/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#1421]) +2 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-lnl-4/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp2:
- shard-dg2-set2: NOTRUN -> [FAIL][54] ([Intel XE#301]) +6 other tests fail
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-432/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp2.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2:
- shard-dg2-set2: NOTRUN -> [FAIL][55] ([Intel XE#301] / [Intel XE#3321])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-432/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a3:
- shard-bmg: [PASS][56] -> [FAIL][57] ([Intel XE#2882]) +1 other test fail
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-bmg-7/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a3.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-4/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#1401] / [Intel XE#1745])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#1401])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode.html
* igt@kms_force_connector_basic@force-connector-state:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#352])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-lnl-5/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-move:
- shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#651]) +6 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-plflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#651]) +16 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#656]) +12 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-lnl-3/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2311]) +15 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2312] / [Intel XE#5042]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#4141]) +2 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2312]) +5 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-pgflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#653]) +13 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2313]) +13 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_hdmi_inject@inject-4k:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#1470])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-lnl-1/igt@kms_hdmi_inject@inject-4k.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#4090])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-4/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_plane_cursor@primary@pipe-a-hdmi-a-2-size-256:
- shard-dg2-set2: NOTRUN -> [FAIL][72] ([Intel XE#616]) +2 other tests fail
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-432/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-2-size-256.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2-set2: NOTRUN -> [SKIP][73] ([Intel XE#5020])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-435/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4:
- shard-dg2-set2: [PASS][74] -> [DMESG-WARN][75] ([Intel XE#4212])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-dg2-464/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][76] -> [ABORT][77] ([Intel XE#4760]) +1 other test abort
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-dg2-464/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-435/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#2763]) +7 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-lnl-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a.html
* igt@kms_pm_backlight@basic-brightness:
- shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#870])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-435/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@fade:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#870])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-8/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#3309])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-435/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#1489]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-435/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#1489]) +3 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-7/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#1128])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-lnl-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2387])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-4/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#1122])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-464/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-psr2-basic@edp-1:
- shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#4609])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-lnl-2/igt@kms_psr@fbc-psr2-basic@edp-1.html
* igt@kms_psr@fbc-psr2-cursor-plane-move:
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2234] / [Intel XE#2850]) +9 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-3/igt@kms_psr@fbc-psr2-cursor-plane-move.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#2850] / [Intel XE#929]) +6 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-432/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@pr-cursor-plane-move:
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#1406]) +2 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-lnl-4/igt@kms_psr@pr-cursor-plane-move.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-4/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2330]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2413])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-8/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#1435])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-lnl-3/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-2:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][95] ([Intel XE#4488]) +1 other test incomplete
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-432/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-2.html
* igt@kms_vrr@cmrr:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2168])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-3/igt@kms_vrr@cmrr.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [PASS][97] -> [FAIL][98] ([Intel XE#4459]) +1 other test fail
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-lnl-1/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@kms_vrr@max-min:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#1499]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-2/igt@kms_vrr@max-min.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#756])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-lnl-1/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#1091] / [Intel XE#2849])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-433/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@testdisplay:
- shard-dg2-set2: NOTRUN -> [ABORT][102] ([Intel XE#2705])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-464/igt@testdisplay.html
* igt@xe_compute@ccs-mode-compute-kernel:
- shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#1447])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-lnl-6/igt@xe_compute@ccs-mode-compute-kernel.html
* igt@xe_copy_basic@mem-copy-linear-0x369:
- shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#1123])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-435/igt@xe_copy_basic@mem-copy-linear-0x369.html
* igt@xe_eudebug@basic-vm-access-userptr-faultable:
- shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#4837]) +9 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-433/igt@xe_eudebug@basic-vm-access-userptr-faultable.html
* igt@xe_eudebug@basic-vm-bind-metadata-discovery:
- shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#4837]) +9 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-4/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
* igt@xe_eudebug_online@reset-with-attention:
- shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#4837]) +2 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-lnl-8/igt@xe_eudebug_online@reset-with-attention.html
* igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd:
- shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#688])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-lnl-5/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
- shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#1392]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind:
- shard-dg2-set2: [PASS][110] -> [SKIP][111] ([Intel XE#1392]) +6 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-dg2-433/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind:
- shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#2322]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html
* igt@xe_exec_basic@multigpu-once-rebind:
- shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#1392]) +2 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-lnl-5/igt@xe_exec_basic@multigpu-once-rebind.html
* igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#288]) +12 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-432/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
- shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#2360])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-433/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
* igt@xe_exec_system_allocator@many-large-execqueues-mmap-shared-remap-dontunmap:
- shard-bmg: [PASS][116] -> [DMESG-WARN][117] ([Intel XE#3428]) +3 other tests dmesg-warn
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-bmg-7/igt@xe_exec_system_allocator@many-large-execqueues-mmap-shared-remap-dontunmap.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-6/igt@xe_exec_system_allocator@many-large-execqueues-mmap-shared-remap-dontunmap.html
* igt@xe_exec_system_allocator@once-large-mmap-free-huge:
- shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#4943]) +7 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-lnl-3/igt@xe_exec_system_allocator@once-large-mmap-free-huge.html
* igt@xe_exec_system_allocator@process-many-execqueues-mmap-new-huge:
- shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#4943]) +11 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-4/igt@xe_exec_system_allocator@process-many-execqueues-mmap-new-huge.html
* igt@xe_exec_system_allocator@threads-many-stride-new-nomemset:
- shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#4915]) +143 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-432/igt@xe_exec_system_allocator@threads-many-stride-new-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-stride-new-bo-map-nomemset:
- shard-lnl: [PASS][121] -> [FAIL][122] ([Intel XE#5018])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-lnl-5/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-new-bo-map-nomemset.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-lnl-3/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-new-bo-map-nomemset.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][123] ([Intel XE#4911])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-435/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
* igt@xe_live_ktest@xe_eudebug:
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#2833])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-lnl-1/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#2229])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-433/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_oa@syncs-userptr-wait:
- shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-435/igt@xe_oa@syncs-userptr-wait.html
* igt@xe_oa@whitelisted-registers-userspace-config:
- shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#2541] / [Intel XE#3573]) +2 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-432/igt@xe_oa@whitelisted-registers-userspace-config.html
* igt@xe_pat@pat-index-xelpg:
- shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#2236])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-2/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm@d3cold-mmap-system:
- shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#2284])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-4/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pmu@fn-engine-activity-load:
- shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#4650])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-8/igt@xe_pmu@fn-engine-activity-load.html
* igt@xe_pmu@gt-frequency:
- shard-dg2-set2: [PASS][131] -> [FAIL][132] ([Intel XE#4819]) +1 other test fail
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-dg2-464/igt@xe_pmu@gt-frequency.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-435/igt@xe_pmu@gt-frequency.html
* igt@xe_pxp@display-black-pxp-fb:
- shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#4733])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-435/igt@xe_pxp@display-black-pxp-fb.html
* igt@xe_pxp@pxp-stale-queue-post-termination-irq:
- shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#4733])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-3/igt@xe_pxp@pxp-stale-queue-post-termination-irq.html
* igt@xe_sriov_auto_provisioning@fair-allocation:
- shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#4130])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-4/igt@xe_sriov_auto_provisioning@fair-allocation.html
* igt@xe_sriov_auto_provisioning@selfconfig-basic:
- shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#4130])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-lnl-8/igt@xe_sriov_auto_provisioning@selfconfig-basic.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets:
- shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#4351])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-432/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
#### Possible fixes ####
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [INCOMPLETE][138] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) -> [PASS][139]
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-bmg: [SKIP][140] ([Intel XE#2291]) -> [PASS][141] +2 other tests pass
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-bmg: [SKIP][142] ([Intel XE#2316]) -> [PASS][143] +3 other tests pass
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-bmg-4/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-1/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3:
- shard-bmg: [FAIL][144] ([Intel XE#3321]) -> [PASS][145] +4 other tests pass
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html
* igt@kms_flip@basic-flip-vs-wf_vblank:
- shard-dg2-set2: [FAIL][146] -> [PASS][147]
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-dg2-433/igt@kms_flip@basic-flip-vs-wf_vblank.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-432/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-dg2-set2: [FAIL][148] ([Intel XE#301]) -> [PASS][149] +1 other test pass
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-432/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_flip@plain-flip-ts-check@a-edp1:
- shard-lnl: [FAIL][150] ([Intel XE#886]) -> [PASS][151] +1 other test pass
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-lnl-7/igt@kms_flip@plain-flip-ts-check@a-edp1.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-lnl-1/igt@kms_flip@plain-flip-ts-check@a-edp1.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-bmg: [SKIP][152] ([Intel XE#3012]) -> [PASS][153]
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-bmg-4/igt@kms_joiner@basic-force-big-joiner.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-1/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-bmg: [SKIP][154] ([Intel XE#1435]) -> [PASS][155]
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-bmg-4/igt@kms_setmode@invalid-clone-single-crtc.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-7/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_vblank@accuracy-idle@pipe-a-dp-2:
- shard-bmg: [FAIL][156] -> [PASS][157] +1 other test pass
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-bmg-6/igt@kms_vblank@accuracy-idle@pipe-a-dp-2.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-3/igt@kms_vblank@accuracy-idle@pipe-a-dp-2.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind:
- shard-dg2-set2: [SKIP][158] ([Intel XE#1392]) -> [PASS][159] +5 other tests pass
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-433/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html
* igt@xe_exec_system_allocator@process-many-execqueues-mmap-shared-remap-dontunmap:
- shard-bmg: [DMESG-WARN][160] ([Intel XE#3428]) -> [PASS][161] +4 other tests pass
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-bmg-6/igt@xe_exec_system_allocator@process-many-execqueues-mmap-shared-remap-dontunmap.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-7/igt@xe_exec_system_allocator@process-many-execqueues-mmap-shared-remap-dontunmap.html
* igt@xe_module_load@load:
- shard-dg2-set2: ([PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167], [PASS][168], [SKIP][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185], [PASS][186]) ([Intel XE#378]) -> ([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], [PASS][204], [PASS][205], [PASS][206], [PASS][207], [PASS][208], [PASS][209], [PASS][210])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-dg2-435/igt@xe_module_load@load.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-dg2-435/igt@xe_module_load@load.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-dg2-435/igt@xe_module_load@load.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-dg2-435/igt@xe_module_load@load.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-dg2-435/igt@xe_module_load@load.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-dg2-435/igt@xe_module_load@load.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-dg2-433/igt@xe_module_load@load.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-dg2-432/igt@xe_module_load@load.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-dg2-433/igt@xe_module_load@load.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-dg2-432/igt@xe_module_load@load.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-dg2-432/igt@xe_module_load@load.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-dg2-432/igt@xe_module_load@load.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-dg2-432/igt@xe_module_load@load.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-dg2-433/igt@xe_module_load@load.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-dg2-433/igt@xe_module_load@load.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-dg2-433/igt@xe_module_load@load.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-dg2-432/igt@xe_module_load@load.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-dg2-432/igt@xe_module_load@load.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-dg2-464/igt@xe_module_load@load.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-dg2-433/igt@xe_module_load@load.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-dg2-432/igt@xe_module_load@load.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-dg2-464/igt@xe_module_load@load.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-dg2-464/igt@xe_module_load@load.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-dg2-464/igt@xe_module_load@load.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-dg2-464/igt@xe_module_load@load.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-433/igt@xe_module_load@load.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-435/igt@xe_module_load@load.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-435/igt@xe_module_load@load.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-432/igt@xe_module_load@load.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-435/igt@xe_module_load@load.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-435/igt@xe_module_load@load.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-435/igt@xe_module_load@load.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-433/igt@xe_module_load@load.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-433/igt@xe_module_load@load.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-433/igt@xe_module_load@load.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-433/igt@xe_module_load@load.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-435/igt@xe_module_load@load.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-432/igt@xe_module_load@load.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-464/igt@xe_module_load@load.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-432/igt@xe_module_load@load.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-432/igt@xe_module_load@load.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-433/igt@xe_module_load@load.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-432/igt@xe_module_load@load.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-432/igt@xe_module_load@load.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-464/igt@xe_module_load@load.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-464/igt@xe_module_load@load.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-464/igt@xe_module_load@load.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-464/igt@xe_module_load@load.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-dg2-432/igt@xe_module_load@load.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-lnl: [ABORT][211] ([Intel XE#1794]) -> [PASS][212] +1 other test pass
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-lnl-2/igt@xe_pm@s4-vm-bind-userptr.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-lnl-1/igt@xe_pm@s4-vm-bind-userptr.html
#### Warnings ####
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-2:
- shard-bmg: [FAIL][213] ([Intel XE#1178]) -> [TIMEOUT][214] ([Intel XE#4862]) +1 other test timeout
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-bmg-2/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-6/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html
* igt@kms_content_protection@srm:
- shard-bmg: [SKIP][215] ([Intel XE#2341]) -> [FAIL][216] ([Intel XE#1178]) +1 other test fail
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-bmg-4/igt@kms_content_protection@srm.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-2/igt@kms_content_protection@srm.html
* igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw:
- shard-bmg: [SKIP][217] ([Intel XE#2311]) -> [SKIP][218] ([Intel XE#2312]) +7 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][219] ([Intel XE#2312]) -> [SKIP][220] ([Intel XE#2311]) +9 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][221] ([Intel XE#4141]) -> [SKIP][222] ([Intel XE#4141] / [Intel XE#5042])
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-rte:
- shard-bmg: [SKIP][223] ([Intel XE#4141] / [Intel XE#5042]) -> [SKIP][224] ([Intel XE#4141])
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][225] ([Intel XE#2312]) -> [SKIP][226] ([Intel XE#4141]) +2 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][227] ([Intel XE#4141]) -> [SKIP][228] ([Intel XE#2312]) +4 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][229] ([Intel XE#2313]) -> [SKIP][230] ([Intel XE#2312]) +9 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][231] ([Intel XE#2312]) -> [SKIP][232] ([Intel XE#2313]) +8 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d:
- shard-bmg: [SKIP][233] ([Intel XE#2763] / [Intel XE#5042]) -> [SKIP][234] ([Intel XE#2763]) +1 other test skip
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8370/shard-bmg-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/shard-bmg-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d.html
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[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#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
[Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[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#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[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#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[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#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[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#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767
[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#4090]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[Intel XE#4488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4488
[Intel XE#4501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4501
[Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4760
[Intel XE#4819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4819
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4862
[Intel XE#4911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4911
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5018]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5018
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5042
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
Build changes
-------------
* IGT: IGT_8370 -> IGTPW_13150
IGTPW_13150: 13150
IGT_8370: 8370
xe-3114-943adcb1bc226246125ec1d18a387b4295e73703: 943adcb1bc226246125ec1d18a387b4295e73703
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13150/index.html
[-- Attachment #2: Type: text/html, Size: 69168 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread