* [PATCH v2 i-g-t 1/6] lib/igt_dir: Directory processing and file handling
2025-06-13 10:51 [PATCH v2 i-g-t 0/6] Replace intel_sysfs_debugfs Peter Senna Tschudin
@ 2025-06-13 10:51 ` Peter Senna Tschudin
2025-06-13 10:51 ` [PATCH v2 i-g-t 2/6] tests: Add core_debugfs Peter Senna Tschudin
` (8 subsequent siblings)
9 siblings, 0 replies; 14+ messages in thread
From: Peter Senna Tschudin @ 2025-06-13 10:51 UTC (permalink / raw)
To: igt-dev
Cc: Peter Senna Tschudin, marcin.bernatowicz, kamil.konieczny,
katarzyna.piecielska, zbigniew.kempczynski, ewelina.musial
Add new utilities to facilitate reading and processing files within a
directory.
For example, to read and discard all files from debugfs:
fd = drm_open_driver_master(DRIVER_ANY);
debugfs = igt_debugfs_dir(fd);
igt_dir = igt_dir_create(debugfs);
igt_dir_scan_dirfd(igt_dir, -1); /* -1 is unlimited scan depth */
igt_dir_process_files(igt_dir, NULL, NULL);
The igt_dir_scan_dirfd() function builds a linked list of files (using
igt_list), making it easy to add or remove specific files before
processing. If you only want to process a predetermined set of files,
you can skip the scan step and add the files directly to the list.
The last two parameters of igt_dir_process_files() specify a callback
function and user data. If the callback is NULL, a default read and
discard function is used.
Cc: marcin.bernatowicz@intel.com
Cc: kamil.konieczny@linux.intel.com
Cc: katarzyna.piecielska@intel.com
Cc: zbigniew.kempczynski@intel.com
Cc: ewelina.musial@intel.com
Signed-off-by: Peter Senna Tschudin <peter.senna@linux.intel.com>
---
v2:
- changed style of comparison to NULL
lib/igt_dir.c | 260 ++++++++++++++++++++++++++++++++++++++++++++++++
lib/igt_dir.h | 61 ++++++++++++
lib/meson.build | 1 +
3 files changed, 322 insertions(+)
create mode 100644 lib/igt_dir.c
create mode 100644 lib/igt_dir.h
diff --git a/lib/igt_dir.c b/lib/igt_dir.c
new file mode 100644
index 000000000..8f5a25e35
--- /dev/null
+++ b/lib/igt_dir.c
@@ -0,0 +1,260 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2025 Intel Corporation
+ */
+
+#include <dirent.h>
+#include <fcntl.h>
+
+#include "igt.h"
+#include "lib/igt_dir.h"
+
+/**
+ * igt_dir_get_fd_path: Get the path of a file descriptor
+ * @fd: file descriptor to get the path for
+ * @path: buffer to store the path
+ * @path_len: length of the buffer
+ *
+ * Returns: 0 on success, a negative error code on failure
+ */
+int igt_dir_get_fd_path(int fd, char *path, size_t path_len)
+{
+ ssize_t len;
+ char proc_path[64];
+
+ snprintf(proc_path, sizeof(proc_path), "/proc/self/fd/%d", fd);
+ len = readlink(proc_path, path, path_len - 1);
+ if (len == -1)
+ return -1;
+
+ path[path_len] = '\0';
+ return 0;
+}
+
+/**
+ * igt_dir_callback_read_discard: Default callback function for reading and
+ * discarding file contents
+ * @filename: Path to the file
+ * @callback_data: Optional pointer to user-defined data passed to the callback
+ *
+ * Returns: 0 on success, a negative error code on failure
+ */
+int igt_dir_callback_read_discard(const char *filename,
+ void *callback_data)
+{
+ int fd;
+ char buf[4096];
+ ssize_t bytes_read;
+
+ fd = open(filename, O_RDONLY);
+ if (fd < 0) {
+ igt_debug("Failed to open file %s\n", filename);
+ return -1;
+ }
+ bytes_read = read(fd, buf, sizeof(buf) - 1);
+ if (bytes_read < 0) {
+ igt_debug("Failed to read file %s\n", filename);
+ close(fd);
+ return -1;
+ }
+ buf[bytes_read] = '\0';
+ igt_debug("Read %zd bytes from file %s: %s\n", bytes_read,
+ filename, buf);
+ close(fd);
+ return 0;
+}
+
+/**
+ * igt_dir_create: Create a new igt_dir_t struct
+ * @dirfd: file descriptor of the root directory
+ *
+ * Returns: Pointer to the new igt_dir_t struct, or NULL on failure
+ */
+igt_dir_t *igt_dir_create(int dirfd)
+{
+ igt_dir_t *config;
+ size_t path_len = 512;
+ char path[path_len];
+
+ config = malloc(sizeof(igt_dir_t));
+ if (!config)
+ return NULL;
+
+ config->dirfd = dirfd;
+
+ igt_dir_get_fd_path(dirfd, path, path_len);
+ igt_require(path[0] != '\0');
+
+ config->root_path = malloc(path_len);
+ if (!config->root_path) {
+ free(config);
+ return NULL;
+ }
+
+ strncpy(config->root_path, path, path_len);
+
+ IGT_INIT_LIST_HEAD(&config->file_list_head);
+
+ config->callback = NULL;
+
+ return config;
+}
+
+static int _igt_dir_scan_dirfd(igt_dir_t *config, int scan_maxdepth,
+ int depth, const char *current_path)
+{
+ struct dirent *entry;
+ igt_dir_file_list_t *file_list_entry;
+ DIR *dirp;
+ int dirfd;
+ int ret = 0;
+
+ if (depth > scan_maxdepth && scan_maxdepth != -1)
+ return 0;
+
+ if (!current_path) {
+ igt_debug("Invalid current path\n");
+ return -1;
+ }
+
+ dirfd = open(current_path, O_RDONLY | O_DIRECTORY);
+ if (dirfd < 0) {
+ igt_debug("Failed to open directory %s\n", current_path);
+ return -1;
+ }
+
+ dirp = fdopendir(dirfd);
+ if (!dirp) {
+ igt_debug("Failed to fdopendir %s\n", current_path);
+ close(dirfd);
+ return -1;
+ }
+
+ while ((entry = readdir(dirp))) {
+ char entry_path[PATH_MAX];
+
+ if (strcmp(entry->d_name, ".") == 0 ||
+ strcmp(entry->d_name, "..") == 0)
+ continue;
+
+ snprintf(entry_path, sizeof(entry_path),
+ "%s/%s", current_path, entry->d_name);
+
+ if (entry->d_type == DT_DIR) {
+ ret = _igt_dir_scan_dirfd(config, scan_maxdepth,
+ depth + 1, entry_path);
+ if (ret)
+ break;
+ } else {
+ /* Compute path relative to the scan root */
+ const char *relative_path = entry_path +
+ strlen(config->root_path);
+ if (*relative_path == '/')
+ relative_path++; /* skip leading slash */
+
+ file_list_entry = malloc(sizeof(igt_dir_file_list_t));
+ if (!file_list_entry) {
+ igt_debug("Failed to allocate memory for file list entry\n");
+ continue;
+ }
+ file_list_entry->relative_path = strdup(relative_path);
+ file_list_entry->match = true;
+ igt_list_add(&file_list_entry->link,
+ &config->file_list_head);
+ }
+ }
+
+ closedir(dirp);
+ close(dirfd);
+ return ret;
+}
+
+/**
+ * igt_dir_scan_dirfd: Perform a directory scan based on config.
+ * @config: Pointer to the igt_dir struct
+ * @scan_maxdepth: Maximum depth to scan the directory. -1 means no limit
+ *
+ * Returns: 0 on success, a negative error code on failure
+ */
+int igt_dir_scan_dirfd(igt_dir_t *config, int scan_maxdepth)
+{
+ igt_require(config);
+ igt_require(config->root_path);
+ igt_require(config->dirfd >= 0);
+ igt_require(scan_maxdepth >= -1);
+ igt_require(scan_maxdepth != 0);
+
+ /* If the linked list is not empty, clean it first */
+ if (!igt_list_empty(&config->file_list_head)) {
+ igt_dir_file_list_t *file_list_entry, *tmp;
+
+ igt_list_for_each_entry_safe(file_list_entry, tmp,
+ &config->file_list_head, link) {
+ free(file_list_entry->relative_path);
+ free(file_list_entry);
+ }
+ }
+
+ return _igt_dir_scan_dirfd(config, scan_maxdepth, 0, config->root_path);
+}
+
+/**
+ * igt_dir_process_files: Process files in the directory
+ * @config: Pointer to the igt_dir struct
+ * @callback: Callback function to process each file
+ * @callback_data: Optional pointer to user-defined data passed to the callback
+ *
+ * Returns: 0 on success, a negative error code on failure
+ */
+int igt_dir_process_files(igt_dir_t *config,
+ igt_dir_file_callback callback,
+ void *callback_data)
+{
+ igt_dir_file_list_t *file_list_entry;
+ int ret = 0;
+
+ igt_require(config);
+ igt_require(config->root_path);
+ igt_require(config->dirfd >= 0);
+
+ if (!callback)
+ callback = igt_dir_callback_read_discard;
+
+ igt_list_for_each_entry(file_list_entry, &config->file_list_head, link) {
+ /* Only if match is true */
+ if (file_list_entry->match) {
+ char full_path[PATH_MAX];
+
+ snprintf(full_path, sizeof(full_path),
+ "%s/%s", config->root_path,
+ file_list_entry->relative_path);
+ ret = callback(full_path, callback_data);
+ if (ret)
+ break;
+ }
+ }
+
+ return ret;
+}
+
+/**
+ * igt_dir_destroy: Destroy the igt_dir struct
+ * @config: Pointer to the igt_dir struct
+ *
+ * Returns: 0 on success, a negative error code on failure
+ */
+void igt_dir_destroy(igt_dir_t *config)
+{
+ igt_dir_file_list_t *file_list_entry, *tmp;
+
+ igt_require(config);
+
+ igt_list_for_each_entry_safe(file_list_entry, tmp,
+ &config->file_list_head, link) {
+ free(file_list_entry->relative_path);
+ free(file_list_entry);
+ }
+
+ free(config->root_path);
+ free(config);
+}
diff --git a/lib/igt_dir.h b/lib/igt_dir.h
new file mode 100644
index 000000000..fb9230862
--- /dev/null
+++ b/lib/igt_dir.h
@@ -0,0 +1,61 @@
+/* SPDX-License-Identifier: MIT
+ * Copyright © 2025 Intel Corporation
+ */
+
+#ifndef IGT_DIR_H
+#define IGT_DIR_H
+
+#include "igt_list.h"
+
+/**
+ * Callback function type for processing files
+ * The callback is blocking, meaning traversal waits for it to return
+ * before proceeding to the next file
+ * @filename: Path to the file
+ * @callback_data: Optional pointer to user-defined data passed to the callback
+ *
+ * Returns:
+ * 0 on success, a negative error code on failure.
+ */
+typedef int (*igt_dir_file_callback)(const char *filename,
+ void *callback_data);
+
+/**
+ * igt_dir_file_list_t: List of files with a relative path
+ * @relative_path: path to a file, relative to the root directory
+ * @match: a boolean used to filter the list of files. When match=true the
+ * file is processed, otherwise it is skipped
+ * @link: list head for linking files in the list
+ */
+typedef struct {
+ char *relative_path;
+ bool match;
+ struct igt_list_head link;
+} igt_dir_file_list_t;
+
+/**
+ * igt_dir_t: Main struct for igt_dir
+ * @dirfd: file descriptor of the root directory
+ * @root_path: string of the root path, for example:
+ * /sys/kernel/debug/dri/0000:00:02.0/
+ * @file_list_head: head of the list of files
+ * @callback: Callback function for file operations. If NULL, defaults
+ * to reading and discarding file contents
+ */
+typedef struct {
+ int dirfd;
+ char *root_path;
+ struct igt_list_head file_list_head;
+ igt_dir_file_callback callback;
+} igt_dir_t;
+
+int igt_dir_get_fd_path(int fd, char *path, size_t path_len);
+int igt_dir_callback_read_discard(const char *filename,
+ void *callback_data);
+igt_dir_t *igt_dir_create(int dirfd);
+int igt_dir_scan_dirfd(igt_dir_t *config, int scan_maxdepth);
+int igt_dir_process_files(igt_dir_t *config,
+ igt_dir_file_callback callback,
+ void *callback_data);
+void igt_dir_destroy(igt_dir_t *config);
+#endif /* IGT_DIR_H */
diff --git a/lib/meson.build b/lib/meson.build
index ff81baae1..ec4a71bd7 100644
--- a/lib/meson.build
+++ b/lib/meson.build
@@ -91,6 +91,7 @@ lib_sources = [
'igt_kms.c',
'igt_fb.c',
'igt_core.c',
+ 'igt_dir.c',
'igt_draw.c',
'igt_list.c',
'igt_map.c',
--
2.43.0
^ permalink raw reply related [flat|nested] 14+ messages in thread* [PATCH v2 i-g-t 2/6] tests: Add core_debugfs
2025-06-13 10:51 [PATCH v2 i-g-t 0/6] Replace intel_sysfs_debugfs Peter Senna Tschudin
2025-06-13 10:51 ` [PATCH v2 i-g-t 1/6] lib/igt_dir: Directory processing and file handling Peter Senna Tschudin
@ 2025-06-13 10:51 ` Peter Senna Tschudin
2025-06-13 13:49 ` Michal Wajdeczko
2025-06-13 10:51 ` [PATCH v2 i-g-t 3/6] tests: Add core_debugfs_display_on_off Peter Senna Tschudin
` (7 subsequent siblings)
9 siblings, 1 reply; 14+ messages in thread
From: Peter Senna Tschudin @ 2025-06-13 10:51 UTC (permalink / raw)
To: igt-dev
Cc: Peter Senna Tschudin, marcin.bernatowicz, kamil.konieczny,
katarzyna.piecielska, zbigniew.kempczynski, ewelina.musial
Introduce core_debugfs that is expected to work with any GPU, not
limited to i915 and Xe. The test attempts to open every file in debugfs
associated with the GPU.
Cc: marcin.bernatowicz@intel.com
Cc: kamil.konieczny@linux.intel.com
Cc: katarzyna.piecielska@intel.com
Cc: zbigniew.kempczynski@intel.com
Cc: ewelina.musial@intel.com
Signed-off-by: Peter Senna Tschudin <peter.senna@linux.intel.com>
---
v2:
- changed style of comparison to NULL
docs/code_coverage.md | 18 ++++----
scripts/code_cov_selftest.sh | 2 +-
tests/core_debugfs.c | 54 ++++++++++++++++++++++++
tests/intel-ci/fast-feedback.testlist | 1 +
tests/intel-ci/xe-fast-feedback.testlist | 1 +
tests/meson.build | 1 +
6 files changed, 67 insertions(+), 10 deletions(-)
create mode 100644 tests/core_debugfs.c
diff --git a/docs/code_coverage.md b/docs/code_coverage.md
index 031611e69..236dbc70b 100644
--- a/docs/code_coverage.md
+++ b/docs/code_coverage.md
@@ -162,23 +162,23 @@ For each script, the igt_runner passes just one parameter: the results
directory + the test name.
For instance, if it is needed to run a test called
-`intel_sysfs_debugfs (i915-debugfs-read-all-entries)` using `code_cov_capture`
+`core_debugfs (debugfs-read-all-entries)` using `code_cov_capture`
parameter, e. g.:
```
-$ echo "igt@intel_sysfs_debugfs@i915-debugfs-read-all-entries" > my.testlist
+$ echo "igt@core_debugfs@debugfs-read-all-entries" > my.testlist
$ ./scripts/run-tests.sh -T my.testlist -k ~/linux -c code_cov_capture -P
Found test list: "/basedir/igt/build/tests/test-list.txt"
-[31410.499969] [1/1] intel_sysfs_debugfs (i915-debugfs-read-all-entries)
+[31410.499969] [1/1] core_debugfs (debugfs-read-all-entries)
[31411.060446] Storing code coverage results...
-[31418.01] Code coverage wrote to /basedir/igt/results/code_cov/intel_sysfs_debugfs_i915_debugfs_read_all_entries.info
+[31418.01] Code coverage wrote to /basedir/igt/results/code_cov/core_debugfs_debugfs_read_all_entries.info
Done.
```
The script will be called as:
```
-code_cov_capture results/code_cov/intel_sysfs_debugfs_i915_debugfs_read_all_entries
+code_cov_capture results/code_cov/core_debugfs_debugfs_read_all_entries
```
Please notice that any character that it is not a number nor a letter at the
@@ -376,7 +376,7 @@ OUT_DIR="${HOME}/results"
mkdir -p $OUT_DIR/html
-echo "igt@intel_sysfs_debugfs@i915-debugfs-read-all-entries" > $TESTLIST
+echo "igt@core_debugfs@debugfs-read-all-entries" > $TESTLIST
echo "igt@core_auth@basic-auth" >> $TESTLIST
echo "igt@gem_exec_basic@basic" >> $TESTLIST
@@ -401,8 +401,8 @@ genhtml -q -s --legend --branch-coverage $OUT_DIR/results.info
Running such script produces the following output:
```
-[3622.993304] [1/3] intel_sysfs_debugfs (i915-debugfs-read-all-entries)
-[3631.95] Code coverage wrote to results/code_cov/intel_sysfs_debugfs_i915_debugfs_read_all_entries.info
+[3622.993304] [1/3] core_debugfs (debugfs-read-all-entries)
+[3631.95] Code coverage wrote to results/code_cov/core_debugfs_debugfs_read_all_entries.info
[3626.217016] Storing code coverage results...
[3631.957998] [2/3] core_auth (basic-auth)
[3638.03] Code coverage wrote to results/code_cov/core_auth_basic_auth.info
@@ -419,7 +419,7 @@ core_auth_basic_auth.info:
Ignored......: non-drm headers and source files where none of its code ran.
Source files.: 23.27% (165 of 709 total), 29.57% (165 of 558 filtered)
-intel_sysfs_debugfs_i915_debugfs_read_all_entries.info:
+core_debugfs_debugfs_read_all_entries.info:
lines......: 19.3% (20266 of 104802 lines)
functions..: 17.5% (1922 of 10971 functions)
branches...: 12.7% (9462 of 74555 branches)
diff --git a/scripts/code_cov_selftest.sh b/scripts/code_cov_selftest.sh
index bc5ef7458..374068140 100755
--- a/scripts/code_cov_selftest.sh
+++ b/scripts/code_cov_selftest.sh
@@ -13,7 +13,7 @@ if [ -z "$IGT_KERNEL_TREE" ] ; then
exit 1
fi
-TEST="igt@intel_sysfs_debugfs@i915-debugfs-read-all-entries"
+TEST="igt@core_debugfs@debugfs-read-all-entries"
TESTLIST="my_tests.testlist"
GATHER="scripts/code_cov_gather_on_test.py"
diff --git a/tests/core_debugfs.c b/tests/core_debugfs.c
new file mode 100644
index 000000000..278cb4f6d
--- /dev/null
+++ b/tests/core_debugfs.c
@@ -0,0 +1,54 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2025 Intel Corporation
+ */
+
+#include "igt.h"
+#include "igt_debugfs.h"
+#include "igt_dir.h"
+
+/**
+ * TEST: debugfs test
+ * Description: Read entries from debugfs
+ * Category: Core
+ * Mega feature: General Core features
+ * Sub-category: uapi
+ * Functionality: debugfs
+ * Feature: core
+ * Test category: uapi
+ *
+ * SUBTEST: debugfs-read-all-entries
+ * Description: Read all entries from debugfs path validating debugfs entries
+ */
+
+IGT_TEST_DESCRIPTION("Read entries from debugfs");
+
+igt_main
+{
+ int debugfs = -1;
+ int fd = -1;
+ igt_dir_t *igt_dir = NULL;
+
+ igt_fixture {
+ fd = drm_open_driver_master(DRIVER_ANY);
+ debugfs = igt_debugfs_dir(fd);
+ igt_require(debugfs >= 0);
+
+ igt_dir = igt_dir_create(debugfs);
+ igt_require(igt_dir);
+
+ kmstest_set_vt_graphics_mode();
+ }
+
+ igt_describe("Read all entries from debugfs path.");
+ igt_subtest("debugfs-read-all-entries") {
+ igt_dir_scan_dirfd(igt_dir, -1);
+ igt_dir_process_files(igt_dir, NULL, NULL);
+ }
+
+ igt_fixture {
+ igt_dir_destroy(igt_dir);
+ close(debugfs);
+ drm_close_driver(fd);
+ }
+}
diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist
index 82395e7ea..7902bbdae 100644
--- a/tests/intel-ci/fast-feedback.testlist
+++ b/tests/intel-ci/fast-feedback.testlist
@@ -53,6 +53,7 @@ igt@i915_getparams_basic@basic-subslice-total
igt@i915_hangman@error-state-basic
igt@i915_pciid
igt@intel_hwmon
+igt@core_debugfs@debugfs-read-all-entries
igt@intel_sysfs_debugfs@i915-debugfs-read-all-entries
igt@intel_sysfs_debugfs@i915-sysfs-read-all-entries
igt@kms_addfb_basic@addfb25-4-tiled
diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist
index d9d180d87..5fb233fb4 100644
--- a/tests/intel-ci/xe-fast-feedback.testlist
+++ b/tests/intel-ci/xe-fast-feedback.testlist
@@ -7,6 +7,7 @@ igt@fbdev@nullptr
igt@fbdev@read
igt@fbdev@write
+igt@core_debugfs@debugfs-read-all-entries
igt@intel_sysfs_debugfs@xe-base
igt@intel_sysfs_debugfs@xe-debugfs-read-all-entries
igt@intel_sysfs_debugfs@xe-forcewake
diff --git a/tests/meson.build b/tests/meson.build
index 55bcf57ec..fa62cbeb9 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -1,5 +1,6 @@
test_progs = [
'core_auth',
+ 'core_debugfs',
'core_getclient',
'core_getstats',
'core_getversion',
--
2.43.0
^ permalink raw reply related [flat|nested] 14+ messages in thread* Re: [PATCH v2 i-g-t 2/6] tests: Add core_debugfs
2025-06-13 10:51 ` [PATCH v2 i-g-t 2/6] tests: Add core_debugfs Peter Senna Tschudin
@ 2025-06-13 13:49 ` Michal Wajdeczko
0 siblings, 0 replies; 14+ messages in thread
From: Michal Wajdeczko @ 2025-06-13 13:49 UTC (permalink / raw)
To: Peter Senna Tschudin, igt-dev
Cc: marcin.bernatowicz, kamil.konieczny, katarzyna.piecielska,
zbigniew.kempczynski, ewelina.musial
Hi,
some drive-by comments...
On 13.06.2025 12:51, Peter Senna Tschudin wrote:
> Introduce core_debugfs that is expected to work with any GPU, not
> limited to i915 and Xe. The test attempts to open every file in debugfs
> associated with the GPU.
>
...
> --- /dev/null
> +++ b/tests/core_debugfs.c
> @@ -0,0 +1,54 @@
> +// SPDX-License-Identifier: MIT
> +/*
> + * Copyright © 2025 Intel Corporation
> + */
> +
> +#include "igt.h"
> +#include "igt_debugfs.h"
> +#include "igt_dir.h"
> +
> +/**
> + * TEST: debugfs test
> + * Description: Read entries from debugfs
> + * Category: Core
> + * Mega feature: General Core features
> + * Sub-category: uapi
> + * Functionality: debugfs
> + * Feature: core
> + * Test category: uapi
> + *
> + * SUBTEST: debugfs-read-all-entries
> + * Description: Read all entries from debugfs path validating debugfs entries
> + */
> +
> +IGT_TEST_DESCRIPTION("Read entries from debugfs");
> +
> +igt_main
> +{
> + int debugfs = -1;
> + int fd = -1;
> + igt_dir_t *igt_dir = NULL;
> +
> + igt_fixture {
> + fd = drm_open_driver_master(DRIVER_ANY);
> + debugfs = igt_debugfs_dir(fd);
> + igt_require(debugfs >= 0);
> +
> + igt_dir = igt_dir_create(debugfs);
> + igt_require(igt_dir);
> +
> + kmstest_set_vt_graphics_mode();
> + }
> +
> + igt_describe("Read all entries from debugfs path.");
> + igt_subtest("debugfs-read-all-entries") {
since this test is named "core_debugfs" then there is no need to repeat
"debugfs" in the subtest/case name, and this could be just:
igt@core_debugfs@read-all-entries
> + igt_dir_scan_dirfd(igt_dir, -1);
> + igt_dir_process_files(igt_dir, NULL, NULL);
> + }
> +
> + igt_fixture {
> + igt_dir_destroy(igt_dir);
> + close(debugfs);
> + drm_close_driver(fd);
> + }
> +}
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH v2 i-g-t 3/6] tests: Add core_debugfs_display_on_off
2025-06-13 10:51 [PATCH v2 i-g-t 0/6] Replace intel_sysfs_debugfs Peter Senna Tschudin
2025-06-13 10:51 ` [PATCH v2 i-g-t 1/6] lib/igt_dir: Directory processing and file handling Peter Senna Tschudin
2025-06-13 10:51 ` [PATCH v2 i-g-t 2/6] tests: Add core_debugfs Peter Senna Tschudin
@ 2025-06-13 10:51 ` Peter Senna Tschudin
2025-06-13 17:54 ` Kamil Konieczny
2025-06-13 10:51 ` [PATCH v2 i-g-t 4/6] tests: Add core_sysfs Peter Senna Tschudin
` (6 subsequent siblings)
9 siblings, 1 reply; 14+ messages in thread
From: Peter Senna Tschudin @ 2025-06-13 10:51 UTC (permalink / raw)
To: igt-dev
Cc: Peter Senna Tschudin, marcin.bernatowicz, kamil.konieczny,
katarzyna.piecielska, zbigniew.kempczynski, ewelina.musial
Introduce core_debugfs_display_on_off that is expected to work with any
GPU, not limited to i915 and Xe. The test powers on all available
displays before reading debugfs files, and then powers off all displays
before reading the files again.
Cc: marcin.bernatowicz@intel.com
Cc: kamil.konieczny@linux.intel.com
Cc: katarzyna.piecielska@intel.com
Cc: zbigniew.kempczynski@intel.com
Cc: ewelina.musial@intel.com
Signed-off-by: Peter Senna Tschudin <peter.senna@linux.intel.com>
---
v2:
- changed style of comparison to NULL
- moved to a separate patch
tests/core_debugfs_display_on_off.c | 171 ++++++++++++++++++++++++++++
tests/meson.build | 1 +
2 files changed, 172 insertions(+)
create mode 100644 tests/core_debugfs_display_on_off.c
diff --git a/tests/core_debugfs_display_on_off.c b/tests/core_debugfs_display_on_off.c
new file mode 100644
index 000000000..b7dd96208
--- /dev/null
+++ b/tests/core_debugfs_display_on_off.c
@@ -0,0 +1,171 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2025 Intel Corporation
+ */
+
+#include "igt.h"
+#include "igt_debugfs.h"
+#include "igt_dir.h"
+
+/**
+ * TEST: debugfs display on/off test
+ * Description: Read entries from debugfs, and sysfs paths.
+ * Category: Core
+ * Mega feature: General Core features
+ * Sub-category: uapi
+ * Functionality: debugfs
+ * Feature: core
+ * Test category: uapi
+ *
+ * SUBTEST: debugfs-read-all-entries-display-off
+ * Description: Read all debugfs entries with display off.
+ *
+ * SUBTEST: debugfs-read-all-entries-display-on
+ * Description: Read all debugfs entries with display on.
+ */
+
+/** bool igt_kms_all_displays_on: Try to turn on all displays
+ * @fd: file descriptor for the drm device
+ *
+ * Returns: void
+ */
+static void igt_display_all_on(igt_display_t *display)
+{
+ struct igt_fb fb[IGT_MAX_PIPES];
+ enum pipe pipe;
+ int ret;
+
+ /* try to light all pipes */
+retry:
+ for_each_pipe(display, pipe) {
+ igt_output_t *output;
+
+ for_each_valid_output_on_pipe(display, pipe, output) {
+ igt_plane_t *primary;
+ drmModeModeInfo *mode;
+
+ if (output->pending_pipe != PIPE_NONE)
+ continue;
+
+ igt_output_set_pipe(output, pipe);
+ primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
+ mode = igt_output_get_mode(output);
+ igt_create_pattern_fb(display->drm_fd,
+ mode->hdisplay, mode->vdisplay,
+ DRM_FORMAT_XRGB8888,
+ DRM_FORMAT_MOD_LINEAR, &fb[pipe]);
+
+ /* Set a valid fb as some debugfs like to
+ * inspect it on a active pipe
+ */
+ igt_plane_set_fb(primary, &fb[pipe]);
+ break;
+ }
+ }
+
+ if (display->is_atomic)
+ ret = igt_display_try_commit_atomic(display,
+ DRM_MODE_ATOMIC_TEST_ONLY |
+ DRM_MODE_ATOMIC_ALLOW_MODESET,
+ NULL);
+ else
+ ret = igt_display_try_commit2(display, COMMIT_LEGACY);
+
+ if (ret) {
+ igt_output_t *output;
+ bool found = igt_override_all_active_output_modes_to_fit_bw(display);
+
+ igt_require_f(found, "No valid mode combo found.\n");
+
+ for_each_connected_output(display, output)
+ igt_output_set_pipe(output, PIPE_NONE);
+
+ goto retry;
+ }
+
+ igt_display_commit2(display, display->is_atomic ? COMMIT_ATOMIC : COMMIT_LEGACY);
+}
+
+/** bool igt_kms_all_displays_off: Try to turn off all displays
+ * @fd: file descriptor for the drm device
+ *
+ * Returns: void
+ */
+static void igt_display_all_off(igt_display_t *display)
+{
+ enum pipe pipe;
+ igt_output_t *output;
+ igt_plane_t *plane;
+
+ for_each_connected_output(display, output)
+ igt_output_set_pipe(output, PIPE_NONE);
+
+ for_each_pipe(display, pipe)
+ for_each_plane_on_pipe(display, pipe, plane)
+ igt_plane_set_fb(plane, NULL);
+
+ igt_display_commit2(display, display->is_atomic ? COMMIT_ATOMIC : COMMIT_LEGACY);
+}
+
+static void kms_tests(int fd, igt_dir_t *igt_dir)
+{
+ igt_display_t *display;
+ char test_name[64];
+
+ display = calloc(1, sizeof(*display));
+
+ igt_fixture
+ igt_display_require(display, fd);
+
+ snprintf(test_name, sizeof(test_name),
+ "debugfs-read-all-entries-display-on");
+
+ igt_subtest(test_name) {
+ /* try to light all pipes */
+ igt_display_all_on(display);
+
+ igt_dir_scan_dirfd(igt_dir, -1);
+ igt_dir_process_files(igt_dir, NULL, NULL);
+ }
+
+ snprintf(test_name, sizeof(test_name),
+ "debugfs-read-all-entries-display-off");
+
+ igt_subtest(test_name) {
+ igt_display_all_off(display);
+
+ igt_dir_scan_dirfd(igt_dir, -1);
+ igt_dir_process_files(igt_dir, NULL, NULL);
+ }
+
+ igt_fixture
+ igt_display_fini(display);
+}
+
+IGT_TEST_DESCRIPTION("Read entries from debugfs with display on/off.");
+
+igt_main
+{
+ int debugfs = -1;
+ int fd = -1;
+ igt_dir_t *igt_dir = NULL;
+
+ igt_fixture {
+ fd = drm_open_driver_master(DRIVER_ANY);
+ debugfs = igt_debugfs_dir(fd);
+ igt_require(debugfs >= 0);
+
+ igt_dir = igt_dir_create(debugfs);
+ igt_require(igt_dir);
+
+ kmstest_set_vt_graphics_mode();
+ }
+
+ igt_subtest_group
+ kms_tests(fd, igt_dir);
+
+ igt_fixture {
+ close(debugfs);
+ drm_close_driver(fd);
+ }
+}
diff --git a/tests/meson.build b/tests/meson.build
index fa62cbeb9..c05c023ef 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -1,6 +1,7 @@
test_progs = [
'core_auth',
'core_debugfs',
+ 'core_debugfs_display_on_off',
'core_getclient',
'core_getstats',
'core_getversion',
--
2.43.0
^ permalink raw reply related [flat|nested] 14+ messages in thread* Re: [PATCH v2 i-g-t 3/6] tests: Add core_debugfs_display_on_off
2025-06-13 10:51 ` [PATCH v2 i-g-t 3/6] tests: Add core_debugfs_display_on_off Peter Senna Tschudin
@ 2025-06-13 17:54 ` Kamil Konieczny
2025-06-24 5:21 ` Karthik B S
0 siblings, 1 reply; 14+ messages in thread
From: Kamil Konieczny @ 2025-06-13 17:54 UTC (permalink / raw)
To: Peter Senna Tschudin
Cc: igt-dev, marcin.bernatowicz, katarzyna.piecielska,
zbigniew.kempczynski, ewelina.musial, Karthik B S,
Juha-Pekka Heikkila, Juha-Pekka Heikkila, Swati Sharma
Hi Peter,
On 2025-06-13 at 12:51:42 +0200, Peter Senna Tschudin wrote:
this is not full review, I only have few nits, see below.
> Introduce core_debugfs_display_on_off that is expected to work with any
> GPU, not limited to i915 and Xe. The test powers on all available
> displays before reading debugfs files, and then powers off all displays
> before reading the files again.
>
> Cc: marcin.bernatowicz@intel.com
> Cc: kamil.konieczny@linux.intel.com
> Cc: katarzyna.piecielska@intel.com
> Cc: zbigniew.kempczynski@intel.com
> Cc: ewelina.musial@intel.com
> Signed-off-by: Peter Senna Tschudin <peter.senna@linux.intel.com>
> ---
> v2:
> - changed style of comparison to NULL
> - moved to a separate patch
>
> tests/core_debugfs_display_on_off.c | 171 ++++++++++++++++++++++++++++
> tests/meson.build | 1 +
> 2 files changed, 172 insertions(+)
> create mode 100644 tests/core_debugfs_display_on_off.c
imho test name should be shorter, like core_debugfs_display.c
>
> diff --git a/tests/core_debugfs_display_on_off.c b/tests/core_debugfs_display_on_off.c
> new file mode 100644
> index 000000000..b7dd96208
> --- /dev/null
> +++ b/tests/core_debugfs_display_on_off.c
> @@ -0,0 +1,171 @@
> +// SPDX-License-Identifier: MIT
> +/*
> + * Copyright © 2025 Intel Corporation
> + */
> +
> +#include "igt.h"
> +#include "igt_debugfs.h"
> +#include "igt_dir.h"
> +
> +/**
> + * TEST: debugfs display on/off test
> + * Description: Read entries from debugfs, and sysfs paths.
Please also write about display in description.
Is this for both debugfs and sysfs? Test name has only 'debugfs'
so imho you should remove 'sysfs'
> + * Category: Core
> + * Mega feature: General Core features
> + * Sub-category: uapi
> + * Functionality: debugfs
> + * Feature: core
> + * Test category: uapi
> + *
> + * SUBTEST: debugfs-read-all-entries-display-off
imho subtest name should be shorter, like: off-read-all
> + * Description: Read all debugfs entries with display off.
> + *
> + * SUBTEST: debugfs-read-all-entries-display-on
Same here, imho better: on-read-all
Or it could go with 'display-' prefix:
display-off-read-all
display-on-read-all
+cc Karthik, Juha-Pekka and Swati
Cc: Karthik B S <karthik.b.s@intel.com>
Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
Cc: Juha-Pekka Heikkila <juha-pekka.heikkila@intel.com>
Cc: Swati Sharma <swati2.sharma@intel.com>
> + * Description: Read all debugfs entries with display on.
> + */
> +
> +/** bool igt_kms_all_displays_on: Try to turn on all displays
imho:
/**
* bool igt_kms_all_displays_on: Try to turn on all displays
> + * @fd: file descriptor for the drm device
> + *
> + * Returns: void
> + */
> +static void igt_display_all_on(igt_display_t *display)
> +{
> + struct igt_fb fb[IGT_MAX_PIPES];
> + enum pipe pipe;
> + int ret;
> +
> + /* try to light all pipes */
> +retry:
> + for_each_pipe(display, pipe) {
> + igt_output_t *output;
> +
> + for_each_valid_output_on_pipe(display, pipe, output) {
> + igt_plane_t *primary;
> + drmModeModeInfo *mode;
> +
> + if (output->pending_pipe != PIPE_NONE)
> + continue;
> +
> + igt_output_set_pipe(output, pipe);
> + primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
> + mode = igt_output_get_mode(output);
> + igt_create_pattern_fb(display->drm_fd,
> + mode->hdisplay, mode->vdisplay,
> + DRM_FORMAT_XRGB8888,
> + DRM_FORMAT_MOD_LINEAR, &fb[pipe]);
> +
> + /* Set a valid fb as some debugfs like to
> + * inspect it on a active pipe
> + */
> + igt_plane_set_fb(primary, &fb[pipe]);
> + break;
> + }
> + }
> +
> + if (display->is_atomic)
> + ret = igt_display_try_commit_atomic(display,
> + DRM_MODE_ATOMIC_TEST_ONLY |
> + DRM_MODE_ATOMIC_ALLOW_MODESET,
> + NULL);
> + else
> + ret = igt_display_try_commit2(display, COMMIT_LEGACY);
> +
> + if (ret) {
> + igt_output_t *output;
> + bool found = igt_override_all_active_output_modes_to_fit_bw(display);
> +
> + igt_require_f(found, "No valid mode combo found.\n");
Why require here? We want just displays on, why break when
not hi-res here? Karthik or Swati, please help with this.
> +
> + for_each_connected_output(display, output)
> + igt_output_set_pipe(output, PIPE_NONE);
> +
> + goto retry;
> + }
> +
> + igt_display_commit2(display, display->is_atomic ? COMMIT_ATOMIC : COMMIT_LEGACY);
> +}
> +
> +/** bool igt_kms_all_displays_off: Try to turn off all displays
> + * @fd: file descriptor for the drm device
> + *
> + * Returns: void
> + */
> +static void igt_display_all_off(igt_display_t *display)
> +{
> + enum pipe pipe;
> + igt_output_t *output;
> + igt_plane_t *plane;
> +
> + for_each_connected_output(display, output)
> + igt_output_set_pipe(output, PIPE_NONE);
> +
> + for_each_pipe(display, pipe)
> + for_each_plane_on_pipe(display, pipe, plane)
> + igt_plane_set_fb(plane, NULL);
> +
> + igt_display_commit2(display, display->is_atomic ? COMMIT_ATOMIC : COMMIT_LEGACY);
> +}
> +
> +static void kms_tests(int fd, igt_dir_t *igt_dir)
> +{
Please move this code to igt_main below.
> + igt_display_t *display;
> + char test_name[64];
> +
> + display = calloc(1, sizeof(*display));
> +
> + igt_fixture
> + igt_display_require(display, fd);
> +
> + snprintf(test_name, sizeof(test_name),
> + "debugfs-read-all-entries-display-on");
> +
> + igt_subtest(test_name) {
Use directly name, why snprintf to test_name?
igt_subtest("on-read-all") {
> + /* try to light all pipes */
> + igt_display_all_on(display);
> +
> + igt_dir_scan_dirfd(igt_dir, -1);
> + igt_dir_process_files(igt_dir, NULL, NULL);
> + }
> +
> + snprintf(test_name, sizeof(test_name),
> + "debugfs-read-all-entries-display-off");
> +
> + igt_subtest(test_name) {
Same here:
igt_subtest("off-read-all") {
> + igt_display_all_off(display);
> +
> + igt_dir_scan_dirfd(igt_dir, -1);
> + igt_dir_process_files(igt_dir, NULL, NULL);
> + }
> +
> + igt_fixture
> + igt_display_fini(display);
> +}
> +
> +IGT_TEST_DESCRIPTION("Read entries from debugfs with display on/off.");
> +
> +igt_main
> +{
> + int debugfs = -1;
> + int fd = -1;
> + igt_dir_t *igt_dir = NULL;
> +
> + igt_fixture {
> + fd = drm_open_driver_master(DRIVER_ANY);
> + debugfs = igt_debugfs_dir(fd);
> + igt_require(debugfs >= 0);
> +
> + igt_dir = igt_dir_create(debugfs);
> + igt_require(igt_dir);
> +
> + kmstest_set_vt_graphics_mode();
> + }
> +
> + igt_subtest_group
> + kms_tests(fd, igt_dir);
No need for subtest group when only display is here.
> +
> + igt_fixture {
Should we turn on all displays here?
Regards,
Kamil
> + close(debugfs);
> + drm_close_driver(fd);
> + }
> +}
> diff --git a/tests/meson.build b/tests/meson.build
> index fa62cbeb9..c05c023ef 100644
> --- a/tests/meson.build
> +++ b/tests/meson.build
> @@ -1,6 +1,7 @@
> test_progs = [
> 'core_auth',
> 'core_debugfs',
> + 'core_debugfs_display_on_off',
> 'core_getclient',
> 'core_getstats',
> 'core_getversion',
> --
> 2.43.0
>
^ permalink raw reply [flat|nested] 14+ messages in thread* Re: [PATCH v2 i-g-t 3/6] tests: Add core_debugfs_display_on_off
2025-06-13 17:54 ` Kamil Konieczny
@ 2025-06-24 5:21 ` Karthik B S
0 siblings, 0 replies; 14+ messages in thread
From: Karthik B S @ 2025-06-24 5:21 UTC (permalink / raw)
To: Kamil Konieczny, Peter Senna Tschudin, igt-dev,
marcin.bernatowicz, katarzyna.piecielska, zbigniew.kempczynski,
ewelina.musial, Juha-Pekka Heikkila, Juha-Pekka Heikkila,
Swati Sharma
On 6/13/2025 11:24 PM, Kamil Konieczny wrote:
> Hi Peter,
> On 2025-06-13 at 12:51:42 +0200, Peter Senna Tschudin wrote:
>
> this is not full review, I only have few nits, see below.
>
>> Introduce core_debugfs_display_on_off that is expected to work with any
>> GPU, not limited to i915 and Xe. The test powers on all available
>> displays before reading debugfs files, and then powers off all displays
>> before reading the files again.
>>
>> Cc: marcin.bernatowicz@intel.com
>> Cc: kamil.konieczny@linux.intel.com
>> Cc: katarzyna.piecielska@intel.com
>> Cc: zbigniew.kempczynski@intel.com
>> Cc: ewelina.musial@intel.com
>> Signed-off-by: Peter Senna Tschudin <peter.senna@linux.intel.com>
>> ---
>> v2:
>> - changed style of comparison to NULL
>> - moved to a separate patch
>>
>> tests/core_debugfs_display_on_off.c | 171 ++++++++++++++++++++++++++++
>> tests/meson.build | 1 +
>> 2 files changed, 172 insertions(+)
>> create mode 100644 tests/core_debugfs_display_on_off.c
> imho test name should be shorter, like core_debugfs_display.c
>
>> diff --git a/tests/core_debugfs_display_on_off.c b/tests/core_debugfs_display_on_off.c
>> new file mode 100644
>> index 000000000..b7dd96208
>> --- /dev/null
>> +++ b/tests/core_debugfs_display_on_off.c
>> @@ -0,0 +1,171 @@
>> +// SPDX-License-Identifier: MIT
>> +/*
>> + * Copyright © 2025 Intel Corporation
>> + */
>> +
>> +#include "igt.h"
>> +#include "igt_debugfs.h"
>> +#include "igt_dir.h"
>> +
>> +/**
>> + * TEST: debugfs display on/off test
>> + * Description: Read entries from debugfs, and sysfs paths.
> Please also write about display in description.
> Is this for both debugfs and sysfs? Test name has only 'debugfs'
> so imho you should remove 'sysfs'
>
>> + * Category: Core
>> + * Mega feature: General Core features
>> + * Sub-category: uapi
>> + * Functionality: debugfs
>> + * Feature: core
>> + * Test category: uapi
>> + *
>> + * SUBTEST: debugfs-read-all-entries-display-off
> imho subtest name should be shorter, like: off-read-all
>
>> + * Description: Read all debugfs entries with display off.
>> + *
>> + * SUBTEST: debugfs-read-all-entries-display-on
> Same here, imho better: on-read-all
>
> Or it could go with 'display-' prefix:
>
> display-off-read-all
>
> display-on-read-all
>
> +cc Karthik, Juha-Pekka and Swati
>
> Cc: Karthik B S <karthik.b.s@intel.com>
> Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
> Cc: Juha-Pekka Heikkila <juha-pekka.heikkila@intel.com>
> Cc: Swati Sharma <swati2.sharma@intel.com>
>
>> + * Description: Read all debugfs entries with display on.
>> + */
>> +
>> +/** bool igt_kms_all_displays_on: Try to turn on all displays
> imho:
>
> /**
> * bool igt_kms_all_displays_on: Try to turn on all displays
>
>> + * @fd: file descriptor for the drm device
>> + *
>> + * Returns: void
>> + */
>> +static void igt_display_all_on(igt_display_t *display)
>> +{
>> + struct igt_fb fb[IGT_MAX_PIPES];
>> + enum pipe pipe;
>> + int ret;
>> +
>> + /* try to light all pipes */
>> +retry:
>> + for_each_pipe(display, pipe) {
>> + igt_output_t *output;
>> +
>> + for_each_valid_output_on_pipe(display, pipe, output) {
>> + igt_plane_t *primary;
>> + drmModeModeInfo *mode;
>> +
>> + if (output->pending_pipe != PIPE_NONE)
>> + continue;
>> +
>> + igt_output_set_pipe(output, pipe);
>> + primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
>> + mode = igt_output_get_mode(output);
>> + igt_create_pattern_fb(display->drm_fd,
>> + mode->hdisplay, mode->vdisplay,
>> + DRM_FORMAT_XRGB8888,
>> + DRM_FORMAT_MOD_LINEAR, &fb[pipe]);
>> +
>> + /* Set a valid fb as some debugfs like to
>> + * inspect it on a active pipe
>> + */
>> + igt_plane_set_fb(primary, &fb[pipe]);
>> + break;
>> + }
>> + }
>> +
>> + if (display->is_atomic)
>> + ret = igt_display_try_commit_atomic(display,
>> + DRM_MODE_ATOMIC_TEST_ONLY |
>> + DRM_MODE_ATOMIC_ALLOW_MODESET,
>> + NULL);
>> + else
>> + ret = igt_display_try_commit2(display, COMMIT_LEGACY);
>> +
>> + if (ret) {
>> + igt_output_t *output;
>> + bool found = igt_override_all_active_output_modes_to_fit_bw(display);
>> +
>> + igt_require_f(found, "No valid mode combo found.\n");
> Why require here? We want just displays on, why break when
> not hi-res here? Karthik or Swati, please help with this.
Hi Kamil,
Sorry for getting back late on this one.
This break happens only if no valid combination of modes is found across
all connected displays. So this require check is valid.
Regards,
Karthik.B.S
>
>> +
>> + for_each_connected_output(display, output)
>> + igt_output_set_pipe(output, PIPE_NONE);
>> +
>> + goto retry;
>> + }
>> +
>> + igt_display_commit2(display, display->is_atomic ? COMMIT_ATOMIC : COMMIT_LEGACY);
>> +}
>> +
>> +/** bool igt_kms_all_displays_off: Try to turn off all displays
>> + * @fd: file descriptor for the drm device
>> + *
>> + * Returns: void
>> + */
>> +static void igt_display_all_off(igt_display_t *display)
>> +{
>> + enum pipe pipe;
>> + igt_output_t *output;
>> + igt_plane_t *plane;
>> +
>> + for_each_connected_output(display, output)
>> + igt_output_set_pipe(output, PIPE_NONE);
>> +
>> + for_each_pipe(display, pipe)
>> + for_each_plane_on_pipe(display, pipe, plane)
>> + igt_plane_set_fb(plane, NULL);
>> +
>> + igt_display_commit2(display, display->is_atomic ? COMMIT_ATOMIC : COMMIT_LEGACY);
>> +}
>> +
>> +static void kms_tests(int fd, igt_dir_t *igt_dir)
>> +{
> Please move this code to igt_main below.
>
>> + igt_display_t *display;
>> + char test_name[64];
>> +
>> + display = calloc(1, sizeof(*display));
>> +
>> + igt_fixture
>> + igt_display_require(display, fd);
>> +
>> + snprintf(test_name, sizeof(test_name),
>> + "debugfs-read-all-entries-display-on");
>> +
>> + igt_subtest(test_name) {
> Use directly name, why snprintf to test_name?
>
> igt_subtest("on-read-all") {
>
>> + /* try to light all pipes */
>> + igt_display_all_on(display);
>> +
>> + igt_dir_scan_dirfd(igt_dir, -1);
>> + igt_dir_process_files(igt_dir, NULL, NULL);
>> + }
>> +
>> + snprintf(test_name, sizeof(test_name),
>> + "debugfs-read-all-entries-display-off");
>> +
>> + igt_subtest(test_name) {
> Same here:
> igt_subtest("off-read-all") {
>
>> + igt_display_all_off(display);
>> +
>> + igt_dir_scan_dirfd(igt_dir, -1);
>> + igt_dir_process_files(igt_dir, NULL, NULL);
>> + }
>> +
>> + igt_fixture
>> + igt_display_fini(display);
>> +}
>> +
>> +IGT_TEST_DESCRIPTION("Read entries from debugfs with display on/off.");
>> +
>> +igt_main
>> +{
>> + int debugfs = -1;
>> + int fd = -1;
>> + igt_dir_t *igt_dir = NULL;
>> +
>> + igt_fixture {
>> + fd = drm_open_driver_master(DRIVER_ANY);
>> + debugfs = igt_debugfs_dir(fd);
>> + igt_require(debugfs >= 0);
>> +
>> + igt_dir = igt_dir_create(debugfs);
>> + igt_require(igt_dir);
>> +
>> + kmstest_set_vt_graphics_mode();
>> + }
>> +
>> + igt_subtest_group
>> + kms_tests(fd, igt_dir);
> No need for subtest group when only display is here.
>
>> +
>> + igt_fixture {
> Should we turn on all displays here?
>
> Regards,
> Kamil
>
>> + close(debugfs);
>> + drm_close_driver(fd);
>> + }
>> +}
>> diff --git a/tests/meson.build b/tests/meson.build
>> index fa62cbeb9..c05c023ef 100644
>> --- a/tests/meson.build
>> +++ b/tests/meson.build
>> @@ -1,6 +1,7 @@
>> test_progs = [
>> 'core_auth',
>> 'core_debugfs',
>> + 'core_debugfs_display_on_off',
>> 'core_getclient',
>> 'core_getstats',
>> 'core_getversion',
>> --
>> 2.43.0
>>
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH v2 i-g-t 4/6] tests: Add core_sysfs
2025-06-13 10:51 [PATCH v2 i-g-t 0/6] Replace intel_sysfs_debugfs Peter Senna Tschudin
` (2 preceding siblings ...)
2025-06-13 10:51 ` [PATCH v2 i-g-t 3/6] tests: Add core_debugfs_display_on_off Peter Senna Tschudin
@ 2025-06-13 10:51 ` Peter Senna Tschudin
2025-06-13 10:51 ` [PATCH v2 i-g-t 5/6] tests: Add xe_debugfs Peter Senna Tschudin
` (5 subsequent siblings)
9 siblings, 0 replies; 14+ messages in thread
From: Peter Senna Tschudin @ 2025-06-13 10:51 UTC (permalink / raw)
To: igt-dev
Cc: Peter Senna Tschudin, marcin.bernatowicz, kamil.konieczny,
katarzyna.piecielska, zbigniew.kempczynski, ewelina.musial
core_sysfs is GPU-agnostic test designed to work with any GPU, not
limited to i915 and Xe. The test scans the sysfs directory associated
with the GPU, reads all files, and discards the content.
Cc: marcin.bernatowicz@intel.com
Cc: kamil.konieczny@linux.intel.com
Cc: katarzyna.piecielska@intel.com
Cc: zbigniew.kempczynski@intel.com
Cc: ewelina.musial@intel.com
Signed-off-by: Peter Senna Tschudin <peter.senna@linux.intel.com>
---
v2:
- changed style of comparison to NULL
tests/core_sysfs.c | 58 ++++++++++++++++++++++++
tests/intel-ci/fast-feedback.testlist | 3 +-
tests/intel-ci/xe-fast-feedback.testlist | 1 +
tests/meson.build | 1 +
4 files changed, 62 insertions(+), 1 deletion(-)
create mode 100644 tests/core_sysfs.c
diff --git a/tests/core_sysfs.c b/tests/core_sysfs.c
new file mode 100644
index 000000000..fc97bd77b
--- /dev/null
+++ b/tests/core_sysfs.c
@@ -0,0 +1,58 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2025 Intel Corporation
+ */
+
+#include "igt.h"
+#include "igt_dir.h"
+#include "igt_sysfs.h"
+
+struct {
+ bool warn_on_not_hit;
+} opt = { 0 };
+
+/**
+ * TEST: sysfs test
+ * Description: Read entries from sysfs path.
+ * Category: Core
+ * Mega feature: General Core features
+ * Sub-category: uapi
+ * Functionality: sysfs
+ * Feature: core
+ * Test category: uapi
+ *
+ * SUBTEST: sysfs-read-all-entries
+ * Description: Read all entries from sysfs path
+ *
+ */
+
+IGT_TEST_DESCRIPTION("Read entries from sysfs paths.");
+
+igt_main
+{
+ int fd = -1;
+ int sysfs = -1;
+ igt_dir_t *igt_dir = NULL;
+
+ igt_fixture {
+ fd = drm_open_driver_master(DRIVER_ANY);
+ sysfs = igt_sysfs_open(fd);
+ igt_require(sysfs >= 0);
+
+ igt_dir = igt_dir_create(sysfs);
+ igt_require(igt_dir);
+
+ kmstest_set_vt_graphics_mode();
+ }
+
+ igt_describe("Read all entries from sysfs path.");
+ igt_subtest("sysfs-read-all-entries") {
+ igt_dir_scan_dirfd(igt_dir, -1);
+ igt_dir_process_files(igt_dir, NULL, NULL);
+ }
+
+ igt_fixture {
+ close(sysfs);
+ drm_close_driver(fd);
+ }
+}
diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist
index 7902bbdae..7415c51ef 100644
--- a/tests/intel-ci/fast-feedback.testlist
+++ b/tests/intel-ci/fast-feedback.testlist
@@ -3,6 +3,8 @@ igt@i915_module_load@load
# Keep alphabetically sorted by default
igt@core_auth@basic-auth
+igt@core_debugfs@debugfs-read-all-entries
+igt@core_sysfs@sysfs-read-all-entries
igt@fbdev@eof
igt@fbdev@info
igt@fbdev@nullptr
@@ -53,7 +55,6 @@ igt@i915_getparams_basic@basic-subslice-total
igt@i915_hangman@error-state-basic
igt@i915_pciid
igt@intel_hwmon
-igt@core_debugfs@debugfs-read-all-entries
igt@intel_sysfs_debugfs@i915-debugfs-read-all-entries
igt@intel_sysfs_debugfs@i915-sysfs-read-all-entries
igt@kms_addfb_basic@addfb25-4-tiled
diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist
index 5fb233fb4..1626e5d7c 100644
--- a/tests/intel-ci/xe-fast-feedback.testlist
+++ b/tests/intel-ci/xe-fast-feedback.testlist
@@ -8,6 +8,7 @@ igt@fbdev@read
igt@fbdev@write
igt@core_debugfs@debugfs-read-all-entries
+igt@core_sysfs@sysfs-read-all-entries
igt@intel_sysfs_debugfs@xe-base
igt@intel_sysfs_debugfs@xe-debugfs-read-all-entries
igt@intel_sysfs_debugfs@xe-forcewake
diff --git a/tests/meson.build b/tests/meson.build
index c05c023ef..da9247ddc 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -8,6 +8,7 @@ test_progs = [
'core_hotunplug',
'core_setmaster',
'core_setmaster_vs_auth',
+ 'core_sysfs',
'dmabuf',
'dmabuf_sync_file',
'device_reset',
--
2.43.0
^ permalink raw reply related [flat|nested] 14+ messages in thread* [PATCH v2 i-g-t 5/6] tests: Add xe_debugfs
2025-06-13 10:51 [PATCH v2 i-g-t 0/6] Replace intel_sysfs_debugfs Peter Senna Tschudin
` (3 preceding siblings ...)
2025-06-13 10:51 ` [PATCH v2 i-g-t 4/6] tests: Add core_sysfs Peter Senna Tschudin
@ 2025-06-13 10:51 ` Peter Senna Tschudin
2025-06-13 10:51 ` [PATCH v2 i-g-t 6/6] tests/intel: Remove intel_sysfs_debugfs Peter Senna Tschudin
` (4 subsequent siblings)
9 siblings, 0 replies; 14+ messages in thread
From: Peter Senna Tschudin @ 2025-06-13 10:51 UTC (permalink / raw)
To: igt-dev
Cc: Peter Senna Tschudin, marcin.bernatowicz, kamil.konieczny,
katarzyna.piecielska, zbigniew.kempczynski, ewelina.musial
xe_debugfs is a test specific to Xe GPUs. It is intended to complement
the existing generic debugfs tests core_debugfs and
core_debugfs_display_on_off.
Additionally, this test has been updated to use the igt_dir
infrastructure, resulting in simpler code.
Cc: marcin.bernatowicz@intel.com
Cc: kamil.konieczny@linux.intel.com
Cc: katarzyna.piecielska@intel.com
Cc: zbigniew.kempczynski@intel.com
Cc: ewelina.musial@intel.com
Signed-off-by: Peter Senna Tschudin <peter.senna@linux.intel.com>
---
v2:
- changed style of comparison to NULL
tests/intel-ci/xe-fast-feedback.testlist | 2 +
tests/intel/xe_debugfs.c | 208 +++++++++++++++++++++++
tests/meson.build | 1 +
3 files changed, 211 insertions(+)
create mode 100644 tests/intel/xe_debugfs.c
diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist
index 1626e5d7c..d988404a2 100644
--- a/tests/intel-ci/xe-fast-feedback.testlist
+++ b/tests/intel-ci/xe-fast-feedback.testlist
@@ -78,6 +78,8 @@ igt@xe_create@create-execqueues-noleak
igt@xe_create@create-execqueues-leak
igt@xe_create@create-invalid-mbz
igt@xe_create@create-massive-size
+igt@xe_debugfs@xe-base
+igt@xe_debugfs@xe-forcewake
igt@xe_dma_buf_sync@export-dma-buf-once-write-sync
igt@xe_dma_buf_sync@export-dma-buf-once-read-sync
igt@xe_dma_buf_sync@export-dma-buf-once-read-write-sync
diff --git a/tests/intel/xe_debugfs.c b/tests/intel/xe_debugfs.c
new file mode 100644
index 000000000..66a5fa0f6
--- /dev/null
+++ b/tests/intel/xe_debugfs.c
@@ -0,0 +1,208 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2025 Intel Corporation
+ */
+
+#include <dirent.h>
+#include <fcntl.h>
+
+#include "igt.h"
+#include "igt_debugfs.h"
+#include "igt_dir.h"
+#include "igt_sysfs.h"
+#include "xe/xe_query.h"
+
+
+struct {
+ bool warn_on_not_hit;
+} opt = { 0 };
+
+/**
+ * TEST: Xe debugfs test
+ * Description: Xe-specific debugfs tests. These are complementary to the
+ * core_debugfs and core_debugfs_display_on_off tests.
+ *
+ * Category: Core
+ * Mega feature: General Core features
+ * Sub-category: uapi
+ * Functionality: debugfs
+ * Feature: core
+ * Test category: uapi
+ *
+ */
+
+IGT_TEST_DESCRIPTION("Read entries from debugfs, and sysfs paths.");
+
+static int xe_validate_entries(igt_dir_t *igt_dir,
+ const char * const str_val[], int str_cnt)
+{
+ igt_dir_file_list_t *file_list_entry;
+
+ if (!igt_dir)
+ return -1;
+
+ igt_dir_scan_dirfd(igt_dir, -1);
+
+ for (int i = 0; i < str_cnt; i++) {
+ int hit = 0;
+
+ igt_list_for_each_entry(file_list_entry,
+ &igt_dir->file_list_head, link) {
+ if (strcmp(file_list_entry->relative_path,
+ str_val[i]) == 0) {
+ hit = 1;
+ break;
+ }
+ }
+
+ if (!hit && opt.warn_on_not_hit)
+ igt_warn("no test for: %s\n", str_val[i]);
+ }
+
+ return 0;
+}
+
+/**
+ * SUBTEST: xe-base
+ * Description: Check if various debugfs devnodes exist and test reading them
+ */
+static void
+xe_test_base(int fd, struct drm_xe_query_config *config, igt_dir_t *igt_dir)
+{
+ uint16_t devid = intel_get_drm_devid(fd);
+ static const char * const expected_files[] = {
+ "gt0",
+ "gt1",
+ "stolen_mm",
+ "gtt_mm",
+ "vram0_mm",
+ "forcewake_all",
+ "info",
+ "gem_names",
+ "clients",
+ "name"
+ };
+ char reference[4096];
+ int val = 0;
+
+ igt_assert(config);
+ sprintf(reference, "devid 0x%llx",
+ config->info[DRM_XE_QUERY_CONFIG_REV_AND_DEVICE_ID] & 0xffff);
+ igt_assert(igt_debugfs_search(fd, "info", reference));
+
+ sprintf(reference, "revid %lld",
+ config->info[DRM_XE_QUERY_CONFIG_REV_AND_DEVICE_ID] >> 16);
+ igt_assert(igt_debugfs_search(fd, "info", reference));
+
+ sprintf(reference, "is_dgfx %s", config->info[DRM_XE_QUERY_CONFIG_FLAGS] &
+ DRM_XE_QUERY_CONFIG_FLAG_HAS_VRAM ? "yes" : "no");
+
+ igt_assert(igt_debugfs_search(fd, "info", reference));
+
+ if (intel_gen(devid) < 20) {
+ switch (config->info[DRM_XE_QUERY_CONFIG_VA_BITS]) {
+ case 48:
+ val = 3;
+ break;
+ case 57:
+ val = 4;
+ break;
+ }
+
+ sprintf(reference, "vm_max_level %d", val);
+ igt_assert(igt_debugfs_search(fd, "info", reference));
+ }
+
+ snprintf(reference, sizeof(reference), "tile_count %d", xe_sysfs_get_num_tiles(fd));
+ igt_assert(igt_debugfs_search(fd, "info", reference));
+
+ igt_assert(igt_debugfs_exists(fd, "gt0", O_RDONLY));
+
+ igt_assert(igt_debugfs_exists(fd, "gtt_mm", O_RDONLY));
+ igt_debugfs_dump(fd, "gtt_mm");
+
+ if (config->info[DRM_XE_QUERY_CONFIG_FLAGS] & DRM_XE_QUERY_CONFIG_FLAG_HAS_VRAM) {
+ igt_assert(igt_debugfs_exists(fd, "vram0_mm", O_RDONLY));
+ igt_debugfs_dump(fd, "vram0_mm");
+ }
+
+ if (igt_debugfs_exists(fd, "stolen_mm", O_RDONLY))
+ igt_debugfs_dump(fd, "stolen_mm");
+
+ igt_assert(igt_debugfs_exists(fd, "clients", O_RDONLY));
+ igt_debugfs_dump(fd, "clients");
+
+ igt_assert(igt_debugfs_exists(fd, "gem_names", O_RDONLY));
+ igt_debugfs_dump(fd, "gem_names");
+
+ xe_validate_entries(igt_dir, expected_files,
+ ARRAY_SIZE(expected_files));
+}
+
+/**
+ * SUBTEST: xe-forcewake
+ * Description: Check forcewake debugfs devnode
+ */
+static void
+xe_test_forcewake(int fd)
+{
+ int handle = igt_debugfs_open(fd, "forcewake_all", O_WRONLY);
+
+ igt_assert_neq(handle, -1);
+ close(handle);
+}
+
+const char *help_str =
+ " -w\t--warn-not-hit Produce warnings if it founds a devfs node without tests";
+
+struct option long_options[] = {
+ { "--warn-not-hit", no_argument, NULL, 'w'},
+ { 0, 0, 0, 0 }
+};
+
+static int opt_handler(int option, int option_index, void *input)
+{
+ switch (option) {
+ case 'w':
+ opt.warn_on_not_hit = true;
+ break;
+ default:
+ return IGT_OPT_HANDLER_ERROR;
+ }
+
+ return IGT_OPT_HANDLER_SUCCESS;
+}
+
+igt_main_args("", long_options, help_str, opt_handler, NULL)
+{
+ int debugfs = -1;
+ int fd = -1;
+ igt_dir_t *igt_dir = NULL;
+
+ igt_fixture {
+ fd = drm_open_driver_master(DRIVER_XE);
+ __igt_debugfs_dump(fd, "info", IGT_LOG_INFO);
+ debugfs = igt_debugfs_dir(fd);
+
+ igt_dir = igt_dir_create(debugfs);
+ igt_require(igt_dir);
+
+ kmstest_set_vt_graphics_mode();
+ }
+
+ igt_describe("Check if various debugfs devnodes exist and test reading them.");
+ igt_subtest("xe-base") {
+ xe_test_base(fd, xe_config(fd), igt_dir);
+ }
+
+ igt_describe("Check forcewake debugfs devnode");
+ igt_subtest("xe-forcewake") {
+ xe_test_forcewake(fd);
+ }
+
+ igt_fixture {
+ igt_dir_destroy(igt_dir);
+ close(debugfs);
+ drm_close_driver(fd);
+ }
+}
diff --git a/tests/meson.build b/tests/meson.build
index da9247ddc..cf2ae048e 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -283,6 +283,7 @@ intel_xe_progs = [
'xe_compute_preempt',
'xe_copy_basic',
'xe_configfs',
+ 'xe_debugfs',
'xe_dma_buf_sync',
'xe_drm_fdinfo',
'xe_eu_stall',
--
2.43.0
^ permalink raw reply related [flat|nested] 14+ messages in thread* [PATCH v2 i-g-t 6/6] tests/intel: Remove intel_sysfs_debugfs
2025-06-13 10:51 [PATCH v2 i-g-t 0/6] Replace intel_sysfs_debugfs Peter Senna Tschudin
` (4 preceding siblings ...)
2025-06-13 10:51 ` [PATCH v2 i-g-t 5/6] tests: Add xe_debugfs Peter Senna Tschudin
@ 2025-06-13 10:51 ` Peter Senna Tschudin
2025-06-13 13:04 ` ✓ Xe.CI.BAT: success for Replace intel_sysfs_debugfs (rev3) Patchwork
` (3 subsequent siblings)
9 siblings, 0 replies; 14+ messages in thread
From: Peter Senna Tschudin @ 2025-06-13 10:51 UTC (permalink / raw)
To: igt-dev
Cc: Peter Senna Tschudin, marcin.bernatowicz, kamil.konieczny,
katarzyna.piecielska, zbigniew.kempczynski, ewelina.musial
The intel_sysfs_debugfs test was originally introduced to unify testing
for both i915 and Xe drivers, aiming to prevent gaps in test coverage.
However, the implementation fell short in addressing scenarios where
both i915 and Xe were present in the system.
To address these limitations, it was replaced by:
- tests/core_debugfs (gpu agnostic)
- tests/core_sysfs (gpu agnostic)
- tests/intel/xe_debugfs (complementary to core_debugfs)
Cc: marcin.bernatowicz@intel.com
Cc: kamil.konieczny@linux.intel.com
Cc: katarzyna.piecielska@intel.com
Cc: zbigniew.kempczynski@intel.com
Cc: ewelina.musial@intel.com
Signed-off-by: Peter Senna Tschudin <peter.senna@linux.intel.com>
---
v2:
- changed style of comparison to NULL
- moved to last patch
tests/intel-ci/fast-feedback.testlist | 2 -
tests/intel-ci/xe-fast-feedback.testlist | 4 -
tests/intel/intel_sysfs_debugfs.c | 430 -----------------------
tests/intel/xe_test_config.json | 2 +-
tests/meson.build | 1 -
5 files changed, 1 insertion(+), 438 deletions(-)
delete mode 100644 tests/intel/intel_sysfs_debugfs.c
diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist
index 7415c51ef..aa7f57b1f 100644
--- a/tests/intel-ci/fast-feedback.testlist
+++ b/tests/intel-ci/fast-feedback.testlist
@@ -55,8 +55,6 @@ igt@i915_getparams_basic@basic-subslice-total
igt@i915_hangman@error-state-basic
igt@i915_pciid
igt@intel_hwmon
-igt@intel_sysfs_debugfs@i915-debugfs-read-all-entries
-igt@intel_sysfs_debugfs@i915-sysfs-read-all-entries
igt@kms_addfb_basic@addfb25-4-tiled
igt@kms_addfb_basic@addfb25-bad-modifier
igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling
diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist
index d988404a2..5a75c2584 100644
--- a/tests/intel-ci/xe-fast-feedback.testlist
+++ b/tests/intel-ci/xe-fast-feedback.testlist
@@ -9,10 +9,6 @@ igt@fbdev@write
igt@core_debugfs@debugfs-read-all-entries
igt@core_sysfs@sysfs-read-all-entries
-igt@intel_sysfs_debugfs@xe-base
-igt@intel_sysfs_debugfs@xe-debugfs-read-all-entries
-igt@intel_sysfs_debugfs@xe-forcewake
-igt@intel_sysfs_debugfs@xe-sysfs-read-all-entries
igt@kms_addfb_basic@addfb25-4-tiled
igt@kms_addfb_basic@addfb25-bad-modifier
igt@kms_addfb_basic@addfb25-modifier-no-flag
diff --git a/tests/intel/intel_sysfs_debugfs.c b/tests/intel/intel_sysfs_debugfs.c
deleted file mode 100644
index dfd8d52d8..000000000
--- a/tests/intel/intel_sysfs_debugfs.c
+++ /dev/null
@@ -1,430 +0,0 @@
-// SPDX-License-Identifier: MIT
-/*
- * Copyright © 2025 Intel Corporation
- */
-
-#include <dirent.h>
-#include <fcntl.h>
-
-#include "i915/gem.h"
-#include "igt.h"
-#include "igt_sysfs.h"
-#include "xe/xe_query.h"
-
-struct {
- bool warn_on_not_hit;
-} opt = { 0 };
-
-/**
- * TEST: debugfs test
- * Description: Read entries from debugfs, and sysfs paths.
- * Category: Core
- * Mega feature: General Core features
- * Sub-category: uapi
- * Functionality: debugfs
- * Feature: core
- * Test category: uapi
- *
- * SUBTEST: i915-debugfs-read-all-entries
- * Description: Read all entries from debugfs path validating debugfs entries
- *
- * SUBTEST: i915-debugfs-read-all-entries-display-off
- * Description: Read all debugfs entries with display off.
- *
- * SUBTEST: i915-debugfs-read-all-entries-display-on
- * Description: Read all debugfs entries with display on.
- *
- * SUBTEST: i915-sysfs-read-all-entries
- * Description: Read all entries from sysfs path validating debugfs entries
- *
- * SUBTEST: xe-debugfs-read-all-entries
- * Description: Read all entries from debugfs path validating debugfs entries
- *
- * SUBTEST: xe-debugfs-read-all-entries-display-off
- * Description: Read all debugfs entries with display off.
- *
- * SUBTEST: xe-debugfs-read-all-entries-display-on
- * Description: Read all debugfs entries with display on.
- *
- * SUBTEST: xe-sysfs-read-all-entries
- * Description: Read all entries from sysfs path validating debugfs entries
- *
- */
-
-IGT_TEST_DESCRIPTION("Read entries from debugfs, and sysfs paths.");
-
-static void read_and_discard_sysfs_entries(int path_fd, int indent)
-{
- struct dirent *dirent;
- DIR *dir;
- char tabs[8];
- int i;
-
- igt_assert(indent < sizeof(tabs) - 1);
-
- for (i = 0; i < indent; i++)
- tabs[i] = '\t';
- tabs[i] = '\0';
-
- dir = fdopendir(path_fd);
- if (!dir)
- return;
-
- while ((dirent = readdir(dir))) {
- if (!strcmp(dirent->d_name, ".") ||
- !strcmp(dirent->d_name, ".."))
- continue;
-
- if (dirent->d_type == DT_DIR) {
- int sub_fd;
-
- sub_fd = openat(path_fd, dirent->d_name,
- O_RDONLY | O_DIRECTORY);
- if (sub_fd < 0)
- continue;
-
- igt_debug("%sEntering subdir %s\n", tabs, dirent->d_name);
- read_and_discard_sysfs_entries(sub_fd, indent + 1);
- close(sub_fd);
- } else if (dirent->d_type == DT_REG) {
- char buf[512];
- int sub_fd;
- ssize_t ret;
-
- igt_kmsg(KMSG_DEBUG "Reading file \"%s\"\n", dirent->d_name);
- igt_debug("%sReading file \"%s\"\n", tabs, dirent->d_name);
-
- sub_fd = openat(path_fd, dirent->d_name, O_RDONLY | O_NONBLOCK);
- if (sub_fd == -1) {
- igt_debug("%sCould not open file \"%s\" with error: %m\n",
- tabs, dirent->d_name);
- continue;
- }
-
- do {
- ret = read(sub_fd, buf, sizeof(buf));
- } while (ret == sizeof(buf));
-
- if (ret == -1)
- igt_debug("%sCould not read file \"%s\" with error: %m\n",
- tabs, dirent->d_name);
-
- close(sub_fd);
- }
- }
- closedir(dir);
-}
-
-static void kms_tests(int fd, int debugfs, const char *card_name)
-{
- igt_display_t display;
- struct igt_fb fb[IGT_MAX_PIPES];
- enum pipe pipe;
- int ret;
- char test_name[64];
-
- igt_fixture
- igt_display_require(&display, fd);
-
- snprintf(test_name, sizeof(test_name),
- "%s-debugfs-read-all-entries-display-on", card_name);
-
- igt_subtest(test_name) {
- /* try to light all pipes */
-retry:
- for_each_pipe(&display, pipe) {
- igt_output_t *output;
-
- for_each_valid_output_on_pipe(&display, pipe, output) {
- igt_plane_t *primary;
- drmModeModeInfo *mode;
-
- if (output->pending_pipe != PIPE_NONE)
- continue;
-
- igt_output_set_pipe(output, pipe);
- primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
- mode = igt_output_get_mode(output);
- igt_create_pattern_fb(display.drm_fd,
- mode->hdisplay, mode->vdisplay,
- DRM_FORMAT_XRGB8888,
- DRM_FORMAT_MOD_LINEAR, &fb[pipe]);
-
- /* Set a valid fb as some debugfs like to
- * inspect it on a active pipe
- */
- igt_plane_set_fb(primary, &fb[pipe]);
- break;
- }
- }
-
- if (display.is_atomic)
- ret = igt_display_try_commit_atomic(&display,
- DRM_MODE_ATOMIC_TEST_ONLY |
- DRM_MODE_ATOMIC_ALLOW_MODESET,
- NULL);
- else
- ret = igt_display_try_commit2(&display, COMMIT_LEGACY);
-
- if (ret) {
- igt_output_t *output;
- bool found = igt_override_all_active_output_modes_to_fit_bw(&display);
-
- igt_require_f(found, "No valid mode combo found.\n");
-
- for_each_connected_output(&display, output)
- igt_output_set_pipe(output, PIPE_NONE);
-
- goto retry;
- }
-
- igt_display_commit2(&display, display.is_atomic ? COMMIT_ATOMIC : COMMIT_LEGACY);
-
- read_and_discard_sysfs_entries(debugfs, 0);
- }
-
- snprintf(test_name, sizeof(test_name),
- "%s-debugfs-read-all-entries-display-off", card_name);
-
- igt_subtest(test_name) {
- igt_output_t *output;
- igt_plane_t *plane;
-
- for_each_connected_output(&display, output)
- igt_output_set_pipe(output, PIPE_NONE);
-
- for_each_pipe(&display, pipe)
- for_each_plane_on_pipe(&display, pipe, plane)
- igt_plane_set_fb(plane, NULL);
-
- igt_display_commit2(&display, display.is_atomic ? COMMIT_ATOMIC : COMMIT_LEGACY);
-
- read_and_discard_sysfs_entries(debugfs, 0);
- }
-
- igt_fixture
- igt_display_fini(&display);
-}
-
-static int xe_validate_entries(int fd, const char *add_path,
- const char * const str_val[], int str_cnt)
-{
- int i;
- int hit;
- int found = 0;
- int not_found = 0;
- DIR *dir;
- struct dirent *de;
- char path[PATH_MAX];
-
- if (!igt_debugfs_path(fd, path, sizeof(path)))
- return -1;
-
- strcat(path, add_path);
- dir = opendir(path);
- if (!dir)
- return -1;
-
- while ((de = readdir(dir))) {
- if (de->d_name[0] == '.')
- continue;
- hit = 0;
- for (i = 0; i < str_cnt; i++) {
- if (!strcmp(str_val[i], de->d_name)) {
- hit = 1;
- break;
- }
- }
- if (hit) {
- found++;
- } else if (opt.warn_on_not_hit) {
- not_found++;
- igt_warn("no test for: %s/%s\n", path, de->d_name);
- }
- }
- closedir(dir);
- return 0;
-}
-
-/**
- * SUBTEST: xe-base
- * Description: Check if various debugfs devnodes exist and test reading them
- */
-static void
-xe_test_base(int fd, struct drm_xe_query_config *config)
-{
- uint16_t devid = intel_get_drm_devid(fd);
- static const char * const expected_files[] = {
- "gt0",
- "gt1",
- "stolen_mm",
- "gtt_mm",
- "vram0_mm",
- "forcewake_all",
- "info",
- "gem_names",
- "clients",
- "name"
- };
- char reference[4096];
- int val = 0;
-
- igt_assert(config);
- sprintf(reference, "devid 0x%llx",
- config->info[DRM_XE_QUERY_CONFIG_REV_AND_DEVICE_ID] & 0xffff);
- igt_assert(igt_debugfs_search(fd, "info", reference));
-
- sprintf(reference, "revid %lld",
- config->info[DRM_XE_QUERY_CONFIG_REV_AND_DEVICE_ID] >> 16);
- igt_assert(igt_debugfs_search(fd, "info", reference));
-
- sprintf(reference, "is_dgfx %s", config->info[DRM_XE_QUERY_CONFIG_FLAGS] &
- DRM_XE_QUERY_CONFIG_FLAG_HAS_VRAM ? "yes" : "no");
-
- igt_assert(igt_debugfs_search(fd, "info", reference));
-
- if (intel_gen(devid) < 20) {
- switch (config->info[DRM_XE_QUERY_CONFIG_VA_BITS]) {
- case 48:
- val = 3;
- break;
- case 57:
- val = 4;
- break;
- }
-
- sprintf(reference, "vm_max_level %d", val);
- igt_assert(igt_debugfs_search(fd, "info", reference));
- }
-
- snprintf(reference, sizeof(reference), "tile_count %d", xe_sysfs_get_num_tiles(fd));
- igt_assert(igt_debugfs_search(fd, "info", reference));
-
- igt_assert(igt_debugfs_exists(fd, "gt0", O_RDONLY));
-
- igt_assert(igt_debugfs_exists(fd, "gtt_mm", O_RDONLY));
- igt_debugfs_dump(fd, "gtt_mm");
-
- if (config->info[DRM_XE_QUERY_CONFIG_FLAGS] & DRM_XE_QUERY_CONFIG_FLAG_HAS_VRAM) {
- igt_assert(igt_debugfs_exists(fd, "vram0_mm", O_RDONLY));
- igt_debugfs_dump(fd, "vram0_mm");
- }
-
- if (igt_debugfs_exists(fd, "stolen_mm", O_RDONLY))
- igt_debugfs_dump(fd, "stolen_mm");
-
- igt_assert(igt_debugfs_exists(fd, "clients", O_RDONLY));
- igt_debugfs_dump(fd, "clients");
-
- igt_assert(igt_debugfs_exists(fd, "gem_names", O_RDONLY));
- igt_debugfs_dump(fd, "gem_names");
-
- xe_validate_entries(fd, "", expected_files, ARRAY_SIZE(expected_files));
-}
-
-/**
- * SUBTEST: xe-forcewake
- * Description: Check forcewake debugfs devnode
- */
-static void
-xe_test_forcewake(int fd)
-{
- int handle = igt_debugfs_open(fd, "forcewake_all", O_WRONLY);
-
- igt_assert_neq(handle, -1);
- close(handle);
-}
-
-const char *help_str =
- " -w\t--warn-not-hit Produce warnings if it founds a devfs node without tests";
-
-struct option long_options[] = {
- { "--warn-not-hit", no_argument, NULL, 'w'},
- { 0, 0, 0, 0 }
-};
-
-static int opt_handler(int option, int option_index, void *input)
-{
- switch (option) {
- case 'w':
- opt.warn_on_not_hit = true;
- break;
- default:
- return IGT_OPT_HANDLER_ERROR;
- }
-
- return IGT_OPT_HANDLER_SUCCESS;
-}
-
-igt_main_args("", long_options, help_str, opt_handler, NULL)
-{
- int debugfs = -1;
- int fd = -1;
- int sysfs = -1;
-
- igt_subtest_group {
- igt_fixture {
- fd = drm_open_driver_master(DRIVER_INTEL);
- igt_require_gem(fd);
- debugfs = igt_debugfs_dir(fd);
- sysfs = igt_sysfs_open(fd);
-
- kmstest_set_vt_graphics_mode();
- }
-
- igt_describe("Read all entries from sysfs path.");
- igt_subtest("i915-sysfs-read-all-entries")
- read_and_discard_sysfs_entries(sysfs, 0);
- igt_describe("Read all entries from debugfs path.");
- igt_subtest("i915-debugfs-read-all-entries")
- read_and_discard_sysfs_entries(debugfs, 0);
-
- igt_describe("Read all debugfs entries with display on/off.");
- igt_subtest_group
- kms_tests(fd, debugfs, "i915");
-
- igt_fixture {
- close(sysfs);
- close(debugfs);
- drm_close_driver(fd);
- }
- }
-
- igt_subtest_group {
- igt_fixture {
- fd = drm_open_driver_master(DRIVER_XE);
- __igt_debugfs_dump(fd, "info", IGT_LOG_INFO);
- debugfs = igt_debugfs_dir(fd);
- sysfs = igt_sysfs_open(fd);
-
- kmstest_set_vt_graphics_mode();
- }
-
- igt_describe("Read all entries from sysfs path.");
- igt_subtest("xe-sysfs-read-all-entries")
- read_and_discard_sysfs_entries(sysfs, 0);
- igt_describe("Read all entries from debugfs path.");
- igt_subtest("xe-debugfs-read-all-entries")
- read_and_discard_sysfs_entries(debugfs, 0);
-
- igt_describe("Read all debugfs entries with display on/off.");
- igt_subtest_group
- kms_tests(fd, debugfs, "xe");
-
- igt_describe("Check if various debugfs devnodes exist and test reading them.");
- igt_subtest("xe-base") {
- xe_test_base(fd, xe_config(fd));
- }
-
- igt_describe("Check forcewake debugfs devnode");
- igt_subtest("xe-forcewake") {
- xe_test_forcewake(fd);
- }
-
- igt_fixture {
- close(sysfs);
- close(debugfs);
- drm_close_driver(fd);
- }
- }
-}
diff --git a/tests/intel/xe_test_config.json b/tests/intel/xe_test_config.json
index edca243f1..27de0efaa 100644
--- a/tests/intel/xe_test_config.json
+++ b/tests/intel/xe_test_config.json
@@ -2,7 +2,7 @@
"description": "JSON file to be used to parse Xe documentation",
"name": "Tests for Xe Driver",
"drivers": [ "xe" ],
- "files": [ "xe_*.c", "../core_*.c", "../device_*.c", "../sriov_basic.c", "intel_hwmon.c", "intel_sysfs_debugfs.c" ],
+ "files": [ "xe_*.c", "../core_*.c", "../device_*.c", "../sriov_basic.c", "intel_hwmon.c" ],
"fields": {
"Run type": {
"_properties_": {
diff --git a/tests/meson.build b/tests/meson.build
index cf2ae048e..50b2ff563 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -86,7 +86,6 @@ test_progs = [
intel_i915_xe_progs = [
'api_intel_allocator',
'intel_hwmon',
- 'intel_sysfs_debugfs',
]
intel_i915_progs = [
--
2.43.0
^ permalink raw reply related [flat|nested] 14+ messages in thread* ✓ Xe.CI.BAT: success for Replace intel_sysfs_debugfs (rev3)
2025-06-13 10:51 [PATCH v2 i-g-t 0/6] Replace intel_sysfs_debugfs Peter Senna Tschudin
` (5 preceding siblings ...)
2025-06-13 10:51 ` [PATCH v2 i-g-t 6/6] tests/intel: Remove intel_sysfs_debugfs Peter Senna Tschudin
@ 2025-06-13 13:04 ` Patchwork
2025-06-13 13:10 ` ✓ i915.CI.BAT: " Patchwork
` (2 subsequent siblings)
9 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-06-13 13:04 UTC (permalink / raw)
To: Peter Senna Tschudin; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1367 bytes --]
== Series Details ==
Series: Replace intel_sysfs_debugfs (rev3)
URL : https://patchwork.freedesktop.org/series/149023/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8411_BAT -> XEIGTPW_13291_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (8 -> 8)
------------------------------
No changes in participating hosts
New tests
---------
New tests have been introduced between XEIGT_8411_BAT and XEIGTPW_13291_BAT:
### New IGT tests (4) ###
* igt@core_debugfs@debugfs-read-all-entries:
- Statuses : 8 pass(s)
- Exec time: [0.0, 0.13] s
* igt@core_sysfs@sysfs-read-all-entries:
- Statuses : 8 pass(s)
- Exec time: [0.0, 0.00] s
* igt@xe_debugfs@xe-base:
- Statuses : 6 pass(s)
- Exec time: [0.00] s
* igt@xe_debugfs@xe-forcewake:
- Statuses : 6 pass(s)
- Exec time: [0.0, 0.00] s
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8411 -> IGTPW_13291
IGTPW_13291: 13291
IGT_8411: d5b5d2bb4f8795a98ea58376a128b74f654b7ec1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-3247-e9c2e2a765de7f0c86d97589871410594ef8e0a7: e9c2e2a765de7f0c86d97589871410594ef8e0a7
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/index.html
[-- Attachment #2: Type: text/html, Size: 2041 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread* ✓ i915.CI.BAT: success for Replace intel_sysfs_debugfs (rev3)
2025-06-13 10:51 [PATCH v2 i-g-t 0/6] Replace intel_sysfs_debugfs Peter Senna Tschudin
` (6 preceding siblings ...)
2025-06-13 13:04 ` ✓ Xe.CI.BAT: success for Replace intel_sysfs_debugfs (rev3) Patchwork
@ 2025-06-13 13:10 ` Patchwork
2025-06-13 14:59 ` ✗ i915.CI.Full: failure " Patchwork
2025-06-15 0:04 ` ✗ Xe.CI.Full: " Patchwork
9 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-06-13 13:10 UTC (permalink / raw)
To: Peter Senna Tschudin; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 6334 bytes --]
== Series Details ==
Series: Replace intel_sysfs_debugfs (rev3)
URL : https://patchwork.freedesktop.org/series/149023/
State : success
== Summary ==
CI Bug Log - changes from IGT_8411 -> IGTPW_13291
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/index.html
Participating hosts (44 -> 42)
------------------------------
Missing (2): bat-arlh-2 fi-snb-2520m
New tests
---------
New tests have been introduced between IGT_8411 and IGTPW_13291:
### New IGT tests (2) ###
* igt@core_debugfs@debugfs-read-all-entries:
- Statuses : 40 pass(s)
- Exec time: [0.00, 0.43] s
* igt@core_sysfs@sysfs-read-all-entries:
- Statuses : 40 pass(s)
- Exec time: [0.0, 0.02] s
Known issues
------------
Here are the changes found in IGTPW_13291 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_mmap@basic:
- bat-mtlp-9: NOTRUN -> [SKIP][1] ([i915#4083])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/bat-mtlp-9/igt@gem_mmap@basic.html
* igt@gem_mmap_gtt@basic:
- bat-mtlp-9: NOTRUN -> [SKIP][2] ([i915#4077]) +2 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/bat-mtlp-9/igt@gem_mmap_gtt@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-mtlp-9: NOTRUN -> [SKIP][3] ([i915#4079]) +1 other test skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/bat-mtlp-9/igt@gem_render_tiled_blits@basic.html
* igt@i915_module_load@load:
- fi-bsw-nick: [PASS][4] -> [DMESG-WARN][5] ([i915#13736])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/fi-bsw-nick/igt@i915_module_load@load.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/fi-bsw-nick/igt@i915_module_load@load.html
* igt@i915_pm_rps@basic-api:
- bat-mtlp-9: NOTRUN -> [SKIP][6] ([i915#11681] / [i915#6621])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/bat-mtlp-9/igt@i915_pm_rps@basic-api.html
* igt@intel_hwmon@hwmon-read:
- bat-mtlp-9: NOTRUN -> [SKIP][7] ([i915#7707]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/bat-mtlp-9/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-mtlp-9: NOTRUN -> [SKIP][8] ([i915#5190])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/bat-mtlp-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-mtlp-9: NOTRUN -> [SKIP][9] ([i915#4212]) +8 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/bat-mtlp-9/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-mtlp-9: NOTRUN -> [SKIP][10] ([i915#4213]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/bat-mtlp-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-mtlp-9: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#3840] / [i915#9159])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/bat-mtlp-9/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-mtlp-9: NOTRUN -> [SKIP][12]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/bat-mtlp-9/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_psr@psr-primary-mmap-gtt:
- bat-mtlp-9: NOTRUN -> [SKIP][13] ([i915#4077] / [i915#9688]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/bat-mtlp-9/igt@kms_psr@psr-primary-mmap-gtt.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-mtlp-9: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#8809])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/bat-mtlp-9/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_self_import@basic-with_one_bo:
- bat-mtlp-9: NOTRUN -> [ABORT][15] ([i915#14463])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/bat-mtlp-9/igt@prime_self_import@basic-with_one_bo.html
#### Possible fixes ####
* igt@i915_module_load@load:
- bat-mtlp-9: [ABORT][16] ([i915#13494]) -> [PASS][17]
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/bat-mtlp-9/igt@i915_module_load@load.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/bat-mtlp-9/igt@i915_module_load@load.html
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494
[i915#13736]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13736
[i915#14463]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14463
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#9159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9159
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8411 -> IGTPW_13291
CI-20190529: 20190529
CI_DRM_16700: cce8a9af1c6cf1776511aa69e5f4b5bef7bf5938 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_13291: 13291
IGT_8411: d5b5d2bb4f8795a98ea58376a128b74f654b7ec1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/index.html
[-- Attachment #2: Type: text/html, Size: 7509 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread* ✗ i915.CI.Full: failure for Replace intel_sysfs_debugfs (rev3)
2025-06-13 10:51 [PATCH v2 i-g-t 0/6] Replace intel_sysfs_debugfs Peter Senna Tschudin
` (7 preceding siblings ...)
2025-06-13 13:10 ` ✓ i915.CI.BAT: " Patchwork
@ 2025-06-13 14:59 ` Patchwork
2025-06-15 0:04 ` ✗ Xe.CI.Full: " Patchwork
9 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-06-13 14:59 UTC (permalink / raw)
To: Peter Senna Tschudin; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 144847 bytes --]
== Series Details ==
Series: Replace intel_sysfs_debugfs (rev3)
URL : https://patchwork.freedesktop.org/series/149023/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8411_full -> IGTPW_13291_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_13291_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_13291_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_13291/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_13291_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][1] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-glk1/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_selftest@drm_format_helper:
- shard-rkl: NOTRUN -> [DMESG-FAIL][2] +1 other test dmesg-fail
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-5/igt@kms_selftest@drm_format_helper.html
* igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_gray8:
- shard-tglu-1: NOTRUN -> [DMESG-FAIL][3] +1 other test dmesg-fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-1/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_gray8.html
New tests
---------
New tests have been introduced between IGT_8411_full and IGTPW_13291_full:
### New IGT tests (30) ###
* igt@core_debugfs@debugfs-read-all-entries:
- Statuses : 6 pass(s)
- Exec time: [0.04, 0.09] s
* igt@core_debugfs_display_on_off@debugfs-read-all-entries-display-off:
- Statuses : 5 pass(s)
- Exec time: [0.04, 0.29] s
* igt@core_debugfs_display_on_off@debugfs-read-all-entries-display-on:
- Statuses : 5 pass(s)
- Exec time: [0.07, 0.15] s
* igt@core_sysfs@sysfs-read-all-entries:
- Statuses :
- Exec time: [None] s
* igt@kms_psr2_sf@256x256-top-edge:
- Statuses :
- Exec time: [None] s
* igt@kms_psr2_sf@basic-uc-set-default:
- Statuses :
- Exec time: [None] s
* igt@kms_psr2_sf@etime-single-wait-all-submitted:
- Statuses :
- Exec time: [None] s
* igt@kms_psr2_sf@fade-with-dpms:
- Statuses :
- Exec time: [None] s
* igt@kms_psr2_sf@fbc-1p-primscrn-spr-indfb-onoff:
- Statuses :
- Exec time: [None] s
* igt@kms_psr2_sf@fbc-2p-primscrn-spr-indfb-draw-mmap-gtt:
- Statuses :
- Exec time: [None] s
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move:
- Statuses :
- Exec time: [None] s
* igt@kms_psr2_sf@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- Statuses :
- Exec time: [None] s
* igt@kms_psr2_sf@fbcpsr-rgb101010-draw-render:
- Statuses :
- Exec time: [None] s
* igt@kms_psr2_sf@import-multiple-read-only:
- Statuses :
- Exec time: [None] s
* igt@kms_psr2_sf@linear-32bpp-rotate-180:
- Statuses :
- Exec time: [None] s
* igt@kms_psr2_sf@memory-info-purgeable:
- Statuses :
- Exec time: [None] s
* igt@kms_psr2_sf@multi-wait-for-submit-available-submitted-signaled:
- Statuses :
- Exec time: [None] s
* igt@kms_psr2_sf@nonexisting-fb-interruptible:
- Statuses :
- Exec time: [None] s
* igt@kms_psr2_sf@psr-2p-primscrn-spr-indfb-draw-render:
- Statuses :
- Exec time: [None] s
* igt@kms_psr2_sf@query-regions-sanity-check:
- Statuses :
- Exec time: [None] s
* igt@kms_psr2_sf@reset-unsignaled:
- Statuses :
- Exec time: [None] s
* igt@kms_psr2_sf@spin-each:
- Statuses :
- Exec time: [None] s
* igt@kms_psr2_sf@static-toggle-suspend:
- Statuses :
- Exec time: [None] s
* igt@kms_psr2_sf@syncobj-timeline-repeat:
- Statuses :
- Exec time: [None] s
* igt@kms_psr2_sf@test-only:
- Statuses :
- Exec time: [None] s
* igt@kms_psr2_sf@wait-wedge-immediate:
- Statuses :
- Exec time: [None] s
* igt@kms_psr2_sf@x-tiled-32bpp-rotate-90:
- Statuses :
- Exec time: [None] s
* igt@kms_psr2_sf@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- Statuses :
- Exec time: [None] s
* igt@kms_psr2_sf@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- Statuses :
- Exec time: [None] s
* igt@kms_psr2_sf@yf-tiled-to-vebox-y-tiled:
- Statuses :
- Exec time: [None] s
Known issues
------------
Here are the changes found in IGTPW_13291_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@crc32:
- shard-rkl: NOTRUN -> [SKIP][4] ([i915#6230])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-4/igt@api_intel_bb@crc32.html
* igt@device_reset@cold-reset-bound:
- shard-tglu-1: NOTRUN -> [SKIP][5] ([i915#11078])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-1/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: NOTRUN -> [SKIP][6] ([i915#11078])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-4/igt@device_reset@unbind-cold-reset-rebind.html
- shard-dg1: NOTRUN -> [SKIP][7] ([i915#11078])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-13/igt@device_reset@unbind-cold-reset-rebind.html
- shard-tglu: NOTRUN -> [SKIP][8] ([i915#11078])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-4/igt@device_reset@unbind-cold-reset-rebind.html
- shard-mtlp: NOTRUN -> [SKIP][9] ([i915#11078])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-2/igt@device_reset@unbind-cold-reset-rebind.html
- shard-dg2: NOTRUN -> [SKIP][10] ([i915#11078])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-4/igt@device_reset@unbind-cold-reset-rebind.html
* igt@gem_busy@semaphore:
- shard-dg1: NOTRUN -> [SKIP][11] ([i915#3936])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-17/igt@gem_busy@semaphore.html
* igt@gem_caching@reads:
- shard-mtlp: NOTRUN -> [SKIP][12] ([i915#4873])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-6/igt@gem_caching@reads.html
* igt@gem_ccs@suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][13] ([i915#9323])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-4/igt@gem_ccs@suspend-resume.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg2: NOTRUN -> [SKIP][14] ([i915#7697])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-5/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-tglu: NOTRUN -> [SKIP][15] ([i915#6335]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-5/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-dg1: NOTRUN -> [SKIP][16] ([i915#8555]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-16/igt@gem_ctx_persistence@heartbeat-close.html
- shard-mtlp: NOTRUN -> [SKIP][17] ([i915#8555]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-5/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-dg2: NOTRUN -> [SKIP][18] ([i915#8555]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-2/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_persistence@legacy-engines-mixed:
- shard-snb: NOTRUN -> [SKIP][19] ([i915#1099]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-snb5/igt@gem_ctx_persistence@legacy-engines-mixed.html
* igt@gem_ctx_sseu@engines:
- shard-tglu: NOTRUN -> [SKIP][20] ([i915#280]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-4/igt@gem_ctx_sseu@engines.html
- shard-dg2: NOTRUN -> [SKIP][21] ([i915#280])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-4/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-args:
- shard-rkl: NOTRUN -> [SKIP][22] ([i915#280])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-7/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@mmap-args:
- shard-dg1: NOTRUN -> [SKIP][23] ([i915#280])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-18/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@hibernate:
- shard-tglu: [PASS][24] -> [ABORT][25] ([i915#10030] / [i915#7975] / [i915#8213])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-tglu-5/igt@gem_eio@hibernate.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-10/igt@gem_eio@hibernate.html
* igt@gem_eio@in-flight-suspend:
- shard-dg1: [PASS][26] -> [DMESG-WARN][27] ([i915#4391] / [i915#4423])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-dg1-17/igt@gem_eio@in-flight-suspend.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-12/igt@gem_eio@in-flight-suspend.html
* igt@gem_eio@kms:
- shard-dg1: NOTRUN -> [FAIL][28] ([i915#5784])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-18/igt@gem_eio@kms.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#4771])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-2/igt@gem_exec_balancer@bonded-sync.html
- shard-dg1: NOTRUN -> [SKIP][30] ([i915#4771])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-16/igt@gem_exec_balancer@bonded-sync.html
- shard-mtlp: NOTRUN -> [SKIP][31] ([i915#4771])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-6/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-tglu: NOTRUN -> [SKIP][32] ([i915#4525]) +2 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-7/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-rkl: NOTRUN -> [SKIP][33] ([i915#4525]) +3 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-7/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_balancer@parallel-out-fence:
- shard-tglu-1: NOTRUN -> [SKIP][34] ([i915#4525])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-1/igt@gem_exec_balancer@parallel-out-fence.html
* igt@gem_exec_big@single:
- shard-tglu: [PASS][35] -> [ABORT][36] ([i915#11713])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-tglu-8/igt@gem_exec_big@single.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-2/igt@gem_exec_big@single.html
* igt@gem_exec_capture@capture:
- shard-mtlp: NOTRUN -> [FAIL][37] ([i915#11965]) +1 other test fail
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-7/igt@gem_exec_capture@capture.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: NOTRUN -> [SKIP][38] ([i915#6344])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-7/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_capture@capture@bcs0-smem:
- shard-dg1: NOTRUN -> [FAIL][39] ([i915#14214]) +10 other tests fail
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-19/igt@gem_exec_capture@capture@bcs0-smem.html
* igt@gem_exec_capture@capture@vecs0-lmem0:
- shard-dg2: NOTRUN -> [FAIL][40] ([i915#11965]) +4 other tests fail
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-6/igt@gem_exec_capture@capture@vecs0-lmem0.html
* igt@gem_exec_endless@dispatch@bcs0:
- shard-dg2: [PASS][41] -> [TIMEOUT][42] ([i915#3778] / [i915#7016]) +1 other test timeout
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-dg2-11/igt@gem_exec_endless@dispatch@bcs0.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-3/igt@gem_exec_endless@dispatch@bcs0.html
* igt@gem_exec_fence@concurrent:
- shard-dg2-9: NOTRUN -> [SKIP][43] ([i915#4812]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-9/igt@gem_exec_fence@concurrent.html
* igt@gem_exec_fence@submit3:
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#4812]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-1/igt@gem_exec_fence@submit3.html
* igt@gem_exec_flush@basic-uc-pro-default:
- shard-dg2-9: NOTRUN -> [SKIP][45] ([i915#3539] / [i915#4852]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-9/igt@gem_exec_flush@basic-uc-pro-default.html
* igt@gem_exec_flush@basic-uc-prw-default:
- shard-dg2-9: NOTRUN -> [SKIP][46] ([i915#3539])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-9/igt@gem_exec_flush@basic-uc-prw-default.html
* igt@gem_exec_flush@basic-uc-rw-default:
- shard-dg1: NOTRUN -> [SKIP][47] ([i915#3539] / [i915#4852])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-12/igt@gem_exec_flush@basic-uc-rw-default.html
* igt@gem_exec_flush@basic-uc-set-default:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#3539])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-1/igt@gem_exec_flush@basic-uc-set-default.html
* igt@gem_exec_flush@basic-wb-set-default:
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#3539] / [i915#4852]) +2 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-8/igt@gem_exec_flush@basic-wb-set-default.html
* igt@gem_exec_reloc@basic-gtt-active:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#3281]) +10 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-4/igt@gem_exec_reloc@basic-gtt-active.html
* igt@gem_exec_reloc@basic-gtt-cpu-noreloc:
- shard-dg2-9: NOTRUN -> [SKIP][51] ([i915#3281])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-9/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html
* igt@gem_exec_reloc@basic-gtt-wc-noreloc:
- shard-rkl: NOTRUN -> [SKIP][52] ([i915#3281]) +15 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
* igt@gem_exec_reloc@basic-wc-gtt-active:
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#3281]) +4 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-5/igt@gem_exec_reloc@basic-wc-gtt-active.html
* igt@gem_exec_reloc@basic-wc-read:
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#3281]) +4 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-18/igt@gem_exec_reloc@basic-wc-read.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg2-9: NOTRUN -> [SKIP][55] ([i915#4537] / [i915#4812])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-9/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4537] / [i915#4812])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-5/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#4537] / [i915#4812])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-3/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
- shard-dg1: NOTRUN -> [SKIP][58] ([i915#4812])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-16/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg2-9: NOTRUN -> [SKIP][59] ([i915#4860])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-9/igt@gem_fence_thrash@bo-write-verify-x.html
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#4860]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-14/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_fence_thrash@bo-write-verify-y:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#4860])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-10/igt@gem_fence_thrash@bo-write-verify-y.html
* igt@gem_fenced_exec_thrash@no-spare-fences-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4860])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-6/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][63] ([i915#2190])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-4/igt@gem_huc_copy@huc-copy.html
- shard-glk: NOTRUN -> [SKIP][64] ([i915#2190])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-glk5/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: NOTRUN -> [SKIP][65] ([i915#4613] / [i915#7582])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-8/igt@gem_lmem_evict@dontneed-evict-race.html
- shard-tglu: NOTRUN -> [SKIP][66] ([i915#4613] / [i915#7582])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-7/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][67] ([i915#4613])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-rkl: NOTRUN -> [SKIP][68] ([i915#4613]) +4 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-7/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
- shard-glk: NOTRUN -> [SKIP][69] ([i915#4613]) +2 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-glk2/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@massive:
- shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4613]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-4/igt@gem_lmem_swapping@massive.html
* igt@gem_lmem_swapping@parallel-random:
- shard-tglu: NOTRUN -> [SKIP][71] ([i915#4613]) +2 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-9/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_media_vme:
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#284])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-6/igt@gem_media_vme.html
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#284])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-2/igt@gem_media_vme.html
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#284])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-16/igt@gem_media_vme.html
* igt@gem_mmap_gtt@basic-copy:
- shard-mtlp: NOTRUN -> [SKIP][75] ([i915#4077]) +4 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-6/igt@gem_mmap_gtt@basic-copy.html
* igt@gem_mmap_gtt@basic-small-bo:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#4077]) +11 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-10/igt@gem_mmap_gtt@basic-small-bo.html
* igt@gem_mmap_gtt@basic-small-bo-tiledy:
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#4077]) +6 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-17/igt@gem_mmap_gtt@basic-small-bo-tiledy.html
* igt@gem_mmap_gtt@big-copy:
- shard-dg2-9: NOTRUN -> [SKIP][78] ([i915#4077]) +2 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-9/igt@gem_mmap_gtt@big-copy.html
* igt@gem_mmap_wc@bad-object:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#4083]) +2 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-6/igt@gem_mmap_wc@bad-object.html
* igt@gem_mmap_wc@bad-offset:
- shard-mtlp: NOTRUN -> [SKIP][80] ([i915#4083])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-8/igt@gem_mmap_wc@bad-offset.html
* igt@gem_mmap_wc@bad-size:
- shard-dg1: NOTRUN -> [SKIP][81] ([i915#4083])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-12/igt@gem_mmap_wc@bad-size.html
* igt@gem_mmap_wc@write-cpu-read-wc:
- shard-dg2-9: NOTRUN -> [SKIP][82] ([i915#4083]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-9/igt@gem_mmap_wc@write-cpu-read-wc.html
* igt@gem_pread@display:
- shard-dg2-9: NOTRUN -> [SKIP][83] ([i915#3282]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-9/igt@gem_pread@display.html
* igt@gem_pread@snoop:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#3282]) +8 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-11/igt@gem_pread@snoop.html
* igt@gem_pwrite_snooped:
- shard-dg1: NOTRUN -> [SKIP][85] ([i915#3282]) +5 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-17/igt@gem_pwrite_snooped.html
* igt@gem_pxp@create-protected-buffer:
- shard-rkl: NOTRUN -> [SKIP][86] ([i915#4270]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-8/igt@gem_pxp@create-protected-buffer.html
* igt@gem_pxp@create-regular-buffer:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#4270]) +2 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-8/igt@gem_pxp@create-regular-buffer.html
* igt@gem_pxp@display-protected-crc:
- shard-rkl: [PASS][88] -> [TIMEOUT][89] ([i915#12917] / [i915#12964])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-rkl-8/igt@gem_pxp@display-protected-crc.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-5/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-rkl: NOTRUN -> [TIMEOUT][90] ([i915#12964])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-7/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@hw-rejects-pxp-context:
- shard-tglu: NOTRUN -> [SKIP][91] ([i915#13398])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-4/igt@gem_pxp@hw-rejects-pxp-context.html
* igt@gem_pxp@protected-encrypted-src-copy-not-readible:
- shard-rkl: NOTRUN -> [TIMEOUT][92] ([i915#12917] / [i915#12964]) +2 other tests timeout
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-4/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
* igt@gem_pxp@reject-modify-context-protection-off-3:
- shard-snb: NOTRUN -> [SKIP][93] +144 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-snb7/igt@gem_pxp@reject-modify-context-protection-off-3.html
- shard-dg1: NOTRUN -> [SKIP][94] ([i915#4270]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-19/igt@gem_pxp@reject-modify-context-protection-off-3.html
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
- shard-dg2-9: NOTRUN -> [SKIP][95] ([i915#4270])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-9/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
* igt@gem_readwrite@write-bad-handle:
- shard-mtlp: NOTRUN -> [SKIP][96] ([i915#3282]) +3 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-4/igt@gem_readwrite@write-bad-handle.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
- shard-dg2-9: NOTRUN -> [SKIP][97] ([i915#5190] / [i915#8428])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-9/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
* igt@gem_render_copy@yf-tiled-ccs-to-linear:
- shard-mtlp: NOTRUN -> [SKIP][98] ([i915#8428]) +3 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-8/igt@gem_render_copy@yf-tiled-ccs-to-linear.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][99] ([i915#5190] / [i915#8428]) +6 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-7/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#4079]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-rkl: NOTRUN -> [SKIP][101] ([i915#8411]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-8/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_set_tiling_vs_pwrite:
- shard-rkl: NOTRUN -> [SKIP][102] ([i915#3282]) +11 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-5/igt@gem_set_tiling_vs_pwrite.html
- shard-mtlp: NOTRUN -> [SKIP][103] ([i915#4079])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-2/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_tiled_pread_pwrite:
- shard-dg2-9: NOTRUN -> [SKIP][104] ([i915#4079])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-9/igt@gem_tiled_pread_pwrite.html
* igt@gem_userptr_blits@access-control:
- shard-tglu-1: NOTRUN -> [SKIP][105] ([i915#3297])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-1/igt@gem_userptr_blits@access-control.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg1: NOTRUN -> [SKIP][106] ([i915#3297]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-16/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-mtlp: NOTRUN -> [SKIP][107] ([i915#3297]) +5 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-4/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg1: NOTRUN -> [SKIP][108] ([i915#3297] / [i915#4880]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-19/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg2: NOTRUN -> [SKIP][109] ([i915#3297] / [i915#4880]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-11/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-dg2-9: NOTRUN -> [SKIP][110] ([i915#3297]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-9/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-dg2: NOTRUN -> [SKIP][111] ([i915#3297]) +5 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-8/igt@gem_userptr_blits@unsync-unmap.html
- shard-tglu: NOTRUN -> [SKIP][112] ([i915#3297])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-3/igt@gem_userptr_blits@unsync-unmap.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-rkl: NOTRUN -> [SKIP][113] ([i915#3297]) +5 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-8/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gem_workarounds@suspend-resume-context:
- shard-glk: NOTRUN -> [INCOMPLETE][114] ([i915#13356])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-glk1/igt@gem_workarounds@suspend-resume-context.html
* igt@gem_workarounds@suspend-resume-fd:
- shard-glk: [PASS][115] -> [INCOMPLETE][116] ([i915#13356])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-glk1/igt@gem_workarounds@suspend-resume-fd.html
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-glk6/igt@gem_workarounds@suspend-resume-fd.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#2527])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-19/igt@gen9_exec_parse@batch-invalid-length.html
- shard-mtlp: NOTRUN -> [SKIP][118] ([i915#2856])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-7/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@bb-chained:
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#2527]) +5 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-4/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@bb-oversize:
- shard-tglu: NOTRUN -> [SKIP][120] ([i915#2527] / [i915#2856]) +1 other test skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-2/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-secure:
- shard-dg2-9: NOTRUN -> [SKIP][121] ([i915#2856])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-9/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@shadow-peek:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#2856]) +3 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-2/igt@gen9_exec_parse@shadow-peek.html
* igt@gen9_exec_parse@valid-registers:
- shard-tglu-1: NOTRUN -> [SKIP][123] ([i915#2527] / [i915#2856]) +1 other test skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-1/igt@gen9_exec_parse@valid-registers.html
* igt@i915_drm_fdinfo@all-busy-idle-check-all:
- shard-dg2: NOTRUN -> [SKIP][124] ([i915#14123]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-7/igt@i915_drm_fdinfo@all-busy-idle-check-all.html
* igt@i915_drm_fdinfo@busy-check-all@ccs0:
- shard-mtlp: NOTRUN -> [SKIP][125] ([i915#11527]) +6 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-2/igt@i915_drm_fdinfo@busy-check-all@ccs0.html
* igt@i915_drm_fdinfo@busy-check-all@vecs0:
- shard-dg2: NOTRUN -> [SKIP][126] ([i915#11527]) +7 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-11/igt@i915_drm_fdinfo@busy-check-all@vecs0.html
* igt@i915_drm_fdinfo@busy-idle-check-all@ccs0:
- shard-dg2-9: NOTRUN -> [SKIP][127] ([i915#11527]) +7 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-9/igt@i915_drm_fdinfo@busy-idle-check-all@ccs0.html
* igt@i915_drm_fdinfo@isolation@bcs0:
- shard-dg1: NOTRUN -> [SKIP][128] ([i915#14073]) +5 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-14/igt@i915_drm_fdinfo@isolation@bcs0.html
* igt@i915_drm_fdinfo@isolation@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][129] ([i915#14073]) +6 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-2/igt@i915_drm_fdinfo@isolation@rcs0.html
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#14073]) +7 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-11/igt@i915_drm_fdinfo@isolation@rcs0.html
* igt@i915_drm_fdinfo@virtual-busy-idle:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#14118]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-3/igt@i915_drm_fdinfo@virtual-busy-idle.html
* igt@i915_module_load@reload-no-display:
- shard-tglu: [PASS][132] -> [DMESG-WARN][133] ([i915#13029])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-tglu-8/igt@i915_module_load@reload-no-display.html
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-3/igt@i915_module_load@reload-no-display.html
* igt@i915_pm_freq_api@freq-reset:
- shard-tglu-1: NOTRUN -> [SKIP][134] ([i915#8399])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-1/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-tglu: NOTRUN -> [SKIP][135] ([i915#8399])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-3/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: NOTRUN -> [SKIP][136] ([i915#8399]) +2 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-4/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- shard-dg1: NOTRUN -> [FAIL][137] ([i915#3591]) +1 other test fail
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@i915_pm_rps@basic-api:
- shard-dg2-9: NOTRUN -> [SKIP][138] ([i915#11681] / [i915#6621])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-9/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_rps@thresholds-idle:
- shard-mtlp: NOTRUN -> [SKIP][139] ([i915#11681]) +1 other test skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-6/igt@i915_pm_rps@thresholds-idle.html
* igt@i915_pm_rps@thresholds-idle-park:
- shard-dg1: NOTRUN -> [SKIP][140] ([i915#11681])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-12/igt@i915_pm_rps@thresholds-idle-park.html
* igt@i915_pm_rps@thresholds-park:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#11681]) +1 other test skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-8/igt@i915_pm_rps@thresholds-park.html
* igt@i915_power@sanity:
- shard-mtlp: [PASS][142] -> [SKIP][143] ([i915#7984])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-mtlp-6/igt@i915_power@sanity.html
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-2/igt@i915_power@sanity.html
* igt@i915_query@test-query-geometry-subslices:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#5723])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-4/igt@i915_query@test-query-geometry-subslices.html
- shard-dg1: NOTRUN -> [SKIP][145] ([i915#5723])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-12/igt@i915_query@test-query-geometry-subslices.html
- shard-tglu: NOTRUN -> [SKIP][146] ([i915#5723])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-8/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_selftest@live@workarounds:
- shard-dg2: NOTRUN -> [DMESG-FAIL][147] ([i915#12061]) +1 other test dmesg-fail
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-4/igt@i915_selftest@live@workarounds.html
* igt@intel_hwmon@hwmon-write:
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#7707])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-8/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-mtlp: NOTRUN -> [SKIP][149] ([i915#4212])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-1/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#4212]) +1 other test skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-7/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
- shard-dg1: NOTRUN -> [SKIP][151] ([i915#4212])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-13/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-dg2-9: NOTRUN -> [SKIP][152] ([i915#4212])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-9/igt@kms_addfb_basic@bo-too-small-due-to-tiling.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][153] ([i915#8709]) +3 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/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-a-hdmi-a-1-4-rc-ccs-cc:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#8709]) +15 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-4/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-a-hdmi-a-1-4-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][155] ([i915#8709]) +1 other test skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-4/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-b-hdmi-a-1-y-rc-ccs-cc.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-mtlp: NOTRUN -> [SKIP][156] ([i915#3555])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-dg2: NOTRUN -> [SKIP][157] ([i915#9531])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-dg1: NOTRUN -> [SKIP][158] ([i915#9531])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-18/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-tglu: NOTRUN -> [SKIP][159] ([i915#9531])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-8/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#1769] / [i915#3555])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [FAIL][161] ([i915#5956]) +1 other test fail
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][162] ([i915#5286]) +9 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-3/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][163] ([i915#4538] / [i915#5286]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-13/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-tglu: NOTRUN -> [SKIP][164] ([i915#5286]) +7 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-8/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu-1: NOTRUN -> [SKIP][165] ([i915#5286]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [PASS][166] -> [FAIL][167] ([i915#5138])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][168] ([i915#3638]) +2 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-16/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#3638]) +5 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-5/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#4538] / [i915#5190]) +12 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-mtlp: NOTRUN -> [SKIP][171] +12 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-7/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#5190]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][173] ([i915#4538]) +4 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-19/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg2-9: NOTRUN -> [SKIP][174] ([i915#4538] / [i915#5190]) +1 other test skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-9/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][175] ([i915#6095]) +144 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-18/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][176] ([i915#12313]) +2 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-7/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-dg2-9: NOTRUN -> [SKIP][177] ([i915#12313])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-9/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-basic-y-tiled-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][178] ([i915#6095]) +39 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-1/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-c-dp-3:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#10307] / [i915#6095]) +166 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-10/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-c-dp-3.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][181] ([i915#12805])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-10/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
- shard-dg2: NOTRUN -> [SKIP][182] ([i915#12805])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][183] ([i915#6095]) +38 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][184] ([i915#6095]) +39 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-5/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-2:
- shard-dg2-9: NOTRUN -> [SKIP][185] ([i915#6095]) +4 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-9/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][186] ([i915#6095]) +11 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/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-rkl: NOTRUN -> [SKIP][187] ([i915#14098] / [i915#6095]) +52 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#12313])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-7/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
- shard-dg1: NOTRUN -> [SKIP][189] ([i915#12313]) +1 other test skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-16/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
- shard-tglu: NOTRUN -> [SKIP][190] ([i915#12313])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-3/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][191] ([i915#12313])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-8/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][192] ([i915#12313])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc:
- shard-tglu: NOTRUN -> [SKIP][193] ([i915#6095]) +74 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-4/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_cdclk@mode-transition:
- shard-mtlp: NOTRUN -> [SKIP][194] ([i915#13781]) +4 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-7/igt@kms_cdclk@mode-transition.html
- shard-rkl: NOTRUN -> [SKIP][195] ([i915#3742])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-7/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition@pipe-b-dp-3:
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#13781]) +4 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-11/igt@kms_cdclk@mode-transition@pipe-b-dp-3.html
* igt@kms_chamelium_audio@dp-audio-edid:
- shard-dg2: NOTRUN -> [SKIP][197] ([i915#11151] / [i915#7828]) +7 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-10/igt@kms_chamelium_audio@dp-audio-edid.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-dg2-9: NOTRUN -> [SKIP][198] +2 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-9/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-dg1: NOTRUN -> [SKIP][199] +26 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-19/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-rkl: NOTRUN -> [SKIP][200] ([i915#11151] / [i915#7828]) +13 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-5/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
- shard-tglu-1: NOTRUN -> [SKIP][201] ([i915#11151] / [i915#7828]) +5 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-1/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-dg1: NOTRUN -> [SKIP][202] ([i915#11151] / [i915#7828]) +4 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-18/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_chamelium_hpd@dp-hpd:
- shard-dg2-9: NOTRUN -> [SKIP][203] ([i915#11151] / [i915#7828])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-9/igt@kms_chamelium_hpd@dp-hpd.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-tglu: NOTRUN -> [SKIP][204] ([i915#11151] / [i915#7828]) +6 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-9/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@vga-hpd-without-ddc:
- shard-mtlp: NOTRUN -> [SKIP][205] ([i915#11151] / [i915#7828]) +2 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-2/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2-9: NOTRUN -> [SKIP][206] ([i915#7118] / [i915#9424])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-9/igt@kms_content_protection@atomic-dpms.html
- shard-dg1: NOTRUN -> [SKIP][207] ([i915#7116] / [i915#9424])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-14/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#3299]) +2 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-7/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg1: NOTRUN -> [SKIP][209] ([i915#3299])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-16/igt@kms_content_protection@dp-mst-type-0.html
- shard-tglu: NOTRUN -> [SKIP][210] ([i915#3116] / [i915#3299])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-9/igt@kms_content_protection@dp-mst-type-0.html
- shard-mtlp: NOTRUN -> [SKIP][211] ([i915#3299])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-5/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-rkl: NOTRUN -> [SKIP][212] ([i915#3116])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-7/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy:
- shard-tglu-1: NOTRUN -> [SKIP][213] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-1/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][214] ([i915#6944] / [i915#9424])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-4/igt@kms_content_protection@lic-type-0.html
- shard-dg2: NOTRUN -> [SKIP][215] ([i915#9424])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-4/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@mei-interface:
- shard-rkl: NOTRUN -> [SKIP][216] ([i915#9424])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-8/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-tglu: NOTRUN -> [SKIP][217] ([i915#6944] / [i915#7116] / [i915#7118])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-3/igt@kms_content_protection@srm.html
* igt@kms_content_protection@srm@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [FAIL][218] ([i915#7173])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-11/igt@kms_content_protection@srm@pipe-a-dp-3.html
* igt@kms_content_protection@uevent:
- shard-rkl: NOTRUN -> [SKIP][219] ([i915#7118] / [i915#9424]) +1 other test skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-8/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-mtlp: NOTRUN -> [SKIP][220] ([i915#3555] / [i915#8814]) +1 other test skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-6/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-rkl: NOTRUN -> [SKIP][221] ([i915#3555]) +9 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-32x32.html
- shard-tglu-1: NOTRUN -> [SKIP][222] ([i915#3555])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html
- shard-dg1: NOTRUN -> [SKIP][223] ([i915#3555]) +5 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-18/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-64x21:
- shard-mtlp: NOTRUN -> [SKIP][224] ([i915#8814])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-8/igt@kms_cursor_crc@cursor-onscreen-64x21.html
* igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][225] ([i915#13566]) +5 other tests fail
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-7/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-random-256x85:
- shard-tglu: NOTRUN -> [FAIL][226] ([i915#13566]) +1 other test fail
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-10/igt@kms_cursor_crc@cursor-random-256x85.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#13049]) +3 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-10/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-rkl: NOTRUN -> [SKIP][228] ([i915#13049]) +3 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-5/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-tglu-1: NOTRUN -> [SKIP][229] ([i915#13049])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-dg1: NOTRUN -> [SKIP][230] ([i915#13049])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-17/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-mtlp: NOTRUN -> [SKIP][231] ([i915#13049])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-4/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-dg2: NOTRUN -> [SKIP][232] ([i915#3555]) +7 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-tglu: [PASS][233] -> [FAIL][234] ([i915#13566]) +5 other tests fail
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-128x42.html
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-9/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2:
- shard-rkl: [PASS][235] -> [FAIL][236] ([i915#13566]) +2 other tests fail
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2.html
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2.html
* igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
- shard-dg2-9: NOTRUN -> [SKIP][237] ([i915#13046] / [i915#5354]) +2 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-9/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-mtlp: NOTRUN -> [SKIP][238] ([i915#9809]) +1 other test skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
- shard-dg2: NOTRUN -> [SKIP][239] ([i915#13046] / [i915#5354]) +4 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-rkl: [PASS][240] -> [FAIL][241] ([i915#2346])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-rkl-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-rkl: NOTRUN -> [FAIL][242] ([i915#2346])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-mtlp: NOTRUN -> [SKIP][243] ([i915#9067])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-rkl: NOTRUN -> [SKIP][244] ([i915#9067])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-8/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][245] ([i915#4213])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#4103] / [i915#4213])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-rkl: NOTRUN -> [SKIP][247] ([i915#4103]) +2 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-dg1: NOTRUN -> [SKIP][248] ([i915#4103] / [i915#4213]) +1 other test skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-17/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-tglu: NOTRUN -> [SKIP][249] ([i915#4103])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][250] ([i915#9723])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-8/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-rkl: NOTRUN -> [SKIP][251] ([i915#13691])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-3/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-tglu: NOTRUN -> [SKIP][252] ([i915#13749])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-2/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-rkl: NOTRUN -> [SKIP][253] ([i915#13748])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-8/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-rkl: NOTRUN -> [SKIP][254] ([i915#13707])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-5/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- shard-tglu-1: NOTRUN -> [SKIP][255] ([i915#13707])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-1/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#8812])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-7/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-basic:
- shard-dg2: NOTRUN -> [SKIP][257] ([i915#3555] / [i915#3840])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-8/igt@kms_dsc@dsc-basic.html
- shard-rkl: NOTRUN -> [SKIP][258] ([i915#3555] / [i915#3840]) +1 other test skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-5/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-with-bpc:
- shard-tglu: NOTRUN -> [SKIP][259] ([i915#3555] / [i915#3840])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-2/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-formats:
- shard-tglu-1: NOTRUN -> [SKIP][260] ([i915#3555] / [i915#3840])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-1/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg2-9: NOTRUN -> [SKIP][261] ([i915#3840] / [i915#9053])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-9/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
- shard-rkl: NOTRUN -> [SKIP][262] ([i915#3840] / [i915#9053])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
- shard-dg1: NOTRUN -> [SKIP][263] ([i915#3840] / [i915#9053])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-14/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2: NOTRUN -> [SKIP][264] ([i915#3469])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-1/igt@kms_fbcon_fbt@psr.html
- shard-rkl: NOTRUN -> [SKIP][265] ([i915#3955])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-8/igt@kms_fbcon_fbt@psr.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-tglu: NOTRUN -> [SKIP][266] ([i915#3469])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-8/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-rkl: NOTRUN -> [SKIP][267] ([i915#4854])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-4/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2: NOTRUN -> [SKIP][268] ([i915#9337])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-2/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-tglu: NOTRUN -> [SKIP][269] ([i915#658])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-5/igt@kms_feature_discovery@psr1.html
* igt@kms_feature_discovery@psr2:
- shard-dg2: NOTRUN -> [SKIP][270] ([i915#658])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-3/igt@kms_feature_discovery@psr2.html
* igt@kms_fence_pin_leak:
- shard-dg1: NOTRUN -> [SKIP][271] ([i915#4881])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-16/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-rkl: NOTRUN -> [SKIP][272] ([i915#9934]) +12 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-5/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
- shard-tglu-1: NOTRUN -> [SKIP][273] ([i915#3637] / [i915#9934]) +5 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-tglu: NOTRUN -> [SKIP][274] ([i915#9934]) +1 other test skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-2/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][275] ([i915#9934])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-1/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-dg2-9: NOTRUN -> [SKIP][276] ([i915#9934]) +2 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-9/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-dg1: NOTRUN -> [SKIP][277] ([i915#9934]) +1 other test skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-18/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-tglu: NOTRUN -> [SKIP][278] ([i915#3637] / [i915#9934]) +2 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-9/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-snb: [PASS][279] -> [FAIL][280] ([i915#11832] / [i915#13734]) +1 other test fail
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-snb7/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-snb2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-dg2: NOTRUN -> [SKIP][281] ([i915#9934]) +13 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-1/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][282] ([i915#3637] / [i915#9934])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-5/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@blocking-wf_vblank@a-hdmi-a1:
- shard-tglu: [PASS][283] -> [FAIL][284] ([i915#13734]) +1 other test fail
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-tglu-9/igt@kms_flip@blocking-wf_vblank@a-hdmi-a1.html
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-8/igt@kms_flip@blocking-wf_vblank@a-hdmi-a1.html
* igt@kms_flip@dpms-off-confusion-interruptible@a-hdmi-a1:
- shard-rkl: [PASS][285] -> [DMESG-WARN][286] ([i915#12964]) +20 other tests dmesg-warn
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-rkl-4/igt@kms_flip@dpms-off-confusion-interruptible@a-hdmi-a1.html
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-7/igt@kms_flip@dpms-off-confusion-interruptible@a-hdmi-a1.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-mtlp: [PASS][287] -> [FAIL][288] ([i915#13734]) +1 other test fail
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-mtlp-1/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-8/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-blocking-wf-vblank:
- shard-rkl: [PASS][289] -> [FAIL][290] ([i915#13734])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-rkl-8/igt@kms_flip@flip-vs-blocking-wf-vblank.html
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-7/igt@kms_flip@flip-vs-blocking-wf-vblank.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a1:
- shard-rkl: NOTRUN -> [FAIL][291] ([i915#13734]) +1 other test fail
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-7/igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][292] ([i915#12745] / [i915#4839] / [i915#6113])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-glk2/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][293] ([i915#12745] / [i915#6113])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-glk2/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][294] ([i915#2587] / [i915#2672]) +6 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][295] ([i915#2672] / [i915#3555]) +2 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][296] ([i915#2587] / [i915#2672]) +2 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][297] ([i915#2672] / [i915#3555] / [i915#8813]) +3 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
- shard-dg2: NOTRUN -> [SKIP][298] ([i915#2672] / [i915#3555]) +3 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][299] ([i915#2672]) +6 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
- shard-rkl: NOTRUN -> [SKIP][300] ([i915#2672]) +5 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
- shard-dg1: NOTRUN -> [SKIP][301] ([i915#2587] / [i915#2672]) +3 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-19/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][302] ([i915#2672] / [i915#3555]) +4 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][303] ([i915#2672] / [i915#8813]) +3 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-tglu: NOTRUN -> [SKIP][304] ([i915#2587] / [i915#2672] / [i915#3555]) +1 other test skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-dg2-9: NOTRUN -> [SKIP][305] ([i915#2672] / [i915#3555])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
- shard-rkl: NOTRUN -> [SKIP][306] ([i915#2672] / [i915#3555]) +5 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
- shard-dg1: NOTRUN -> [SKIP][307] ([i915#2672] / [i915#3555]) +3 other tests skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-15/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg2-9: NOTRUN -> [SKIP][308] ([i915#2672])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][309] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][310] ([i915#8708]) +15 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:
- shard-dg2-9: NOTRUN -> [SKIP][311] ([i915#5354]) +3 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][312] ([i915#5354]) +32 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render:
- shard-dg2: [PASS][313] -> [FAIL][314] ([i915#6880]) +1 other test fail
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-render:
- shard-dg2-9: NOTRUN -> [SKIP][315] ([i915#3458]) +6 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][316] ([i915#3023]) +44 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-tglu-1: NOTRUN -> [SKIP][317] ([i915#5439])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-dg2: NOTRUN -> [SKIP][318] ([i915#9766])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-4/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-tglu-1: NOTRUN -> [SKIP][319] +46 other tests skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][320] ([i915#8708]) +11 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-dg2-9: NOTRUN -> [SKIP][321] ([i915#8708]) +11 other tests skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt:
- shard-mtlp: NOTRUN -> [SKIP][322] ([i915#1825]) +15 other tests skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][323] ([i915#8708]) +5 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][324] ([i915#1825]) +59 other tests skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-tglu: NOTRUN -> [SKIP][325] +94 other tests skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: NOTRUN -> [SKIP][326] ([i915#3458]) +21 other tests skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-suspend:
- shard-dg1: NOTRUN -> [SKIP][327] ([i915#3458]) +10 other tests skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-suspend.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-rkl: NOTRUN -> [SKIP][328] ([i915#3555] / [i915#8228]) +5 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-5/igt@kms_hdr@bpc-switch-dpms.html
- shard-tglu-1: NOTRUN -> [SKIP][329] ([i915#3555] / [i915#8228]) +2 other tests skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-1/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-tglu: NOTRUN -> [SKIP][330] ([i915#3555] / [i915#8228]) +2 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-9/igt@kms_hdr@bpc-switch-suspend.html
- shard-dg2: NOTRUN -> [SKIP][331] ([i915#3555] / [i915#8228])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-6/igt@kms_hdr@bpc-switch-suspend.html
- shard-dg1: NOTRUN -> [SKIP][332] ([i915#3555] / [i915#8228])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-19/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@brightness-with-hdr:
- shard-rkl: NOTRUN -> [SKIP][333] ([i915#12713])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-7/igt@kms_hdr@brightness-with-hdr.html
- shard-dg1: NOTRUN -> [SKIP][334] ([i915#12713])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-15/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: [PASS][335] -> [SKIP][336] ([i915#3555] / [i915#8228]) +2 other tests skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-dg2-11/igt@kms_hdr@static-toggle-suspend.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-1/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-big-joiner:
- shard-dg1: NOTRUN -> [SKIP][337] ([i915#10656])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-16/igt@kms_joiner@basic-big-joiner.html
- shard-tglu: NOTRUN -> [SKIP][338] ([i915#10656])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-9/igt@kms_joiner@basic-big-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][339] ([i915#10656])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-6/igt@kms_joiner@basic-big-joiner.html
- shard-dg2: NOTRUN -> [SKIP][340] ([i915#10656])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-2/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][341] ([i915#12394])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-5/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-tglu: NOTRUN -> [SKIP][342] ([i915#13688])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-8/igt@kms_joiner@basic-max-non-joiner.html
- shard-dg2: NOTRUN -> [SKIP][343] ([i915#13688])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-10/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-dg2-9: NOTRUN -> [SKIP][344] ([i915#10656])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-9/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][345] ([i915#12388])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html
- shard-tglu-1: NOTRUN -> [SKIP][346] ([i915#12388])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html
- shard-dg1: NOTRUN -> [SKIP][347] ([i915#12388])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-17/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][348] ([i915#12339])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-8/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][349] ([i915#13522])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-2/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: NOTRUN -> [SKIP][350] ([i915#4816])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-dg1: NOTRUN -> [SKIP][351] ([i915#1839])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-15/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-rkl: NOTRUN -> [SKIP][352] ([i915#6301])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-6/igt@kms_panel_fitting@atomic-fastset.html
- shard-tglu-1: NOTRUN -> [SKIP][353] ([i915#6301])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-1/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_panel_fitting@legacy:
- shard-dg2: NOTRUN -> [SKIP][354] ([i915#6301])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-5/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c:
- shard-dg2: NOTRUN -> [SKIP][355] +17 other tests skip
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-8/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a:
- shard-glk: [PASS][356] -> [INCOMPLETE][357] ([i915#13026])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-glk6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-glk5/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
* igt@kms_plane_alpha_blend@constant-alpha-max:
- shard-glk: NOTRUN -> [FAIL][358] ([i915#10647] / [i915#12169])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-glk2/igt@kms_plane_alpha_blend@constant-alpha-max.html
* igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][359] ([i915#10647]) +1 other test fail
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-glk2/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-tglu-1: NOTRUN -> [SKIP][360] ([i915#13958])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-tglu: NOTRUN -> [SKIP][361] ([i915#13958]) +1 other test skip
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-9/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][362] ([i915#13958]) +1 other test skip
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-6/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- shard-dg2-9: NOTRUN -> [SKIP][363] ([i915#12247] / [i915#9423])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-9/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d:
- shard-dg2-9: NOTRUN -> [SKIP][364] ([i915#12247]) +3 other tests skip
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-9/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b:
- shard-rkl: NOTRUN -> [SKIP][365] ([i915#12247]) +19 other tests skip
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
- shard-tglu: NOTRUN -> [SKIP][366] ([i915#12247]) +4 other tests skip
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-4/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
- shard-tglu-1: NOTRUN -> [SKIP][367] ([i915#12247] / [i915#6953]) +1 other test skip
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-dg1: NOTRUN -> [SKIP][368] ([i915#12247] / [i915#6953])
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-14/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c:
- shard-dg1: NOTRUN -> [SKIP][369] ([i915#12247]) +3 other tests skip
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-14/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b:
- shard-tglu-1: NOTRUN -> [SKIP][370] ([i915#12247]) +11 other tests skip
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][371] ([i915#12247] / [i915#6953])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5:
- shard-mtlp: NOTRUN -> [SKIP][372] ([i915#6953])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a:
- shard-mtlp: NOTRUN -> [SKIP][373] ([i915#12247]) +5 other tests skip
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-tglu-1: NOTRUN -> [SKIP][374] ([i915#12247] / [i915#3555])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
- shard-rkl: NOTRUN -> [SKIP][375] ([i915#12247] / [i915#3555])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_pm_backlight@bad-brightness:
- shard-tglu: NOTRUN -> [SKIP][376] ([i915#9812])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-3/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][377] ([i915#12343])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-7/igt@kms_pm_backlight@brightness-with-dpms.html
- shard-dg1: NOTRUN -> [SKIP][378] ([i915#12343])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-15/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][379] ([i915#5354]) +2 other tests skip
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-5/igt@kms_pm_backlight@fade-with-dpms.html
- shard-tglu-1: NOTRUN -> [SKIP][380] ([i915#9812])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-1/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg1: NOTRUN -> [SKIP][381] ([i915#5354])
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-17/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc6-psr:
- shard-tglu-1: NOTRUN -> [SKIP][382] ([i915#9685])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-1/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-dg2: NOTRUN -> [SKIP][383] ([i915#8430])
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-6/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][384] ([i915#9519]) +3 other tests skip
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-2/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-rkl: NOTRUN -> [SKIP][385] ([i915#9519])
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
- shard-tglu: NOTRUN -> [SKIP][386] ([i915#9519])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
- shard-mtlp: NOTRUN -> [SKIP][387] ([i915#9519])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-dg2: [PASS][388] -> [SKIP][389] ([i915#9519])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-dg2-7/igt@kms_pm_rpm@dpms-non-lpsp.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-4/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@fences:
- shard-rkl: [PASS][390] -> [SKIP][391] ([i915#12916])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-rkl-7/igt@kms_pm_rpm@fences.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-4/igt@kms_pm_rpm@fences.html
* igt@kms_pm_rpm@i2c:
- shard-dg1: [PASS][392] -> [DMESG-WARN][393] ([i915#4423]) +1 other test dmesg-warn
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-dg1-18/igt@kms_pm_rpm@i2c.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-19/igt@kms_pm_rpm@i2c.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2-9: NOTRUN -> [SKIP][394] ([i915#9519])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-9/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg1: NOTRUN -> [SKIP][395] ([i915#9519])
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-13/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: [PASS][396] -> [SKIP][397] ([i915#9519]) +1 other test skip
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-tglu-1: NOTRUN -> [SKIP][398] ([i915#9519])
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_prime@basic-crc-hybrid:
- shard-tglu: NOTRUN -> [SKIP][399] ([i915#6524])
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-3/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg2: NOTRUN -> [SKIP][400] ([i915#6524] / [i915#6805])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-4/igt@kms_prime@basic-crc-vgem.html
- shard-dg1: NOTRUN -> [SKIP][401] ([i915#6524])
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-13/igt@kms_prime@basic-crc-vgem.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-dg2: NOTRUN -> [SKIP][402] ([i915#11520]) +8 other tests skip
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
- shard-rkl: NOTRUN -> [SKIP][403] ([i915#11520]) +12 other tests skip
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-8/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area:
- shard-snb: NOTRUN -> [SKIP][404] ([i915#11520]) +2 other tests skip
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-snb4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html
- shard-dg1: NOTRUN -> [SKIP][405] ([i915#11520]) +3 other tests skip
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-18/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html
- shard-mtlp: NOTRUN -> [SKIP][406] ([i915#12316]) +3 other tests skip
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][407] ([i915#9808])
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-dg2-9: NOTRUN -> [SKIP][408] ([i915#11520]) +1 other test skip
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-9/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-tglu: NOTRUN -> [SKIP][409] ([i915#11520]) +5 other tests skip
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-5/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-tglu-1: NOTRUN -> [SKIP][410] ([i915#11520]) +6 other tests skip
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-1/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][411] ([i915#11520]) +7 other tests skip
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-glk1/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-p010:
- shard-tglu: NOTRUN -> [SKIP][412] ([i915#9683]) +1 other test skip
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-2/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-rkl: NOTRUN -> [SKIP][413] ([i915#9683]) +1 other test skip
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-7/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-primary-page-flip:
- shard-dg2: NOTRUN -> [SKIP][414] ([i915#1072] / [i915#9732]) +26 other tests skip
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-7/igt@kms_psr@fbc-psr-primary-page-flip.html
* igt@kms_psr@fbc-psr2-cursor-blt:
- shard-tglu-1: NOTRUN -> [SKIP][415] ([i915#9732]) +14 other tests skip
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-1/igt@kms_psr@fbc-psr2-cursor-blt.html
- shard-dg1: NOTRUN -> [SKIP][416] ([i915#1072] / [i915#9732]) +12 other tests skip
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-17/igt@kms_psr@fbc-psr2-cursor-blt.html
* igt@kms_psr@fbc-psr2-no-drrs:
- shard-tglu: NOTRUN -> [SKIP][417] ([i915#9732]) +24 other tests skip
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-2/igt@kms_psr@fbc-psr2-no-drrs.html
* igt@kms_psr@fbc-psr2-sprite-blt:
- shard-dg2-9: NOTRUN -> [SKIP][418] ([i915#1072] / [i915#9732]) +7 other tests skip
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-9/igt@kms_psr@fbc-psr2-sprite-blt.html
* igt@kms_psr@fbc-psr2-sprite-plane-onoff:
- shard-mtlp: NOTRUN -> [SKIP][419] ([i915#9688]) +12 other tests skip
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-2/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
* igt@kms_psr@psr2-sprite-plane-onoff:
- shard-glk: NOTRUN -> [SKIP][420] +291 other tests skip
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-glk5/igt@kms_psr@psr2-sprite-plane-onoff.html
* igt@kms_psr@psr2-suspend:
- shard-rkl: NOTRUN -> [SKIP][421] ([i915#1072] / [i915#9732]) +46 other tests skip
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-8/igt@kms_psr@psr2-suspend.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-rkl: NOTRUN -> [SKIP][422] ([i915#9685]) +1 other test skip
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-dg2-9: NOTRUN -> [SKIP][423] ([i915#12755])
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-9/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-tglu: NOTRUN -> [SKIP][424] ([i915#5289]) +1 other test skip
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-9/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][425] ([i915#5289]) +2 other tests skip
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-tglu-1: NOTRUN -> [SKIP][426] ([i915#5289])
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-dg1: NOTRUN -> [SKIP][427] ([i915#5289]) +2 other tests skip
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-18/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-tglu: NOTRUN -> [SKIP][428] ([i915#3555]) +5 other tests skip
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-2/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-dg2-9: NOTRUN -> [SKIP][429] ([i915#3555]) +2 other tests skip
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-9/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_selftest@drm_framebuffer:
- shard-rkl: NOTRUN -> [ABORT][430] ([i915#13179]) +1 other test abort
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-6/igt@kms_selftest@drm_framebuffer.html
* igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_create:
- shard-glk: [PASS][431] -> [ABORT][432] ([i915#14448])
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-glk1/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_create.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-glk6/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_create.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg1: NOTRUN -> [SKIP][433] ([i915#8623])
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-19/igt@kms_tiled_display@basic-test-pattern.html
- shard-tglu: NOTRUN -> [SKIP][434] ([i915#8623])
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-8/igt@kms_tiled_display@basic-test-pattern.html
- shard-mtlp: NOTRUN -> [SKIP][435] ([i915#8623])
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-4/igt@kms_tiled_display@basic-test-pattern.html
- shard-dg2: NOTRUN -> [SKIP][436] ([i915#8623])
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-1/igt@kms_tiled_display@basic-test-pattern.html
- shard-rkl: NOTRUN -> [SKIP][437] ([i915#8623])
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-8/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-tglu-1: NOTRUN -> [SKIP][438] ([i915#8623])
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vblank@wait-forked-busy-hang:
- shard-rkl: NOTRUN -> [DMESG-WARN][439] ([i915#12964]) +13 other tests dmesg-warn
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-4/igt@kms_vblank@wait-forked-busy-hang.html
* igt@kms_vrr@flip-basic-fastset:
- shard-tglu: NOTRUN -> [SKIP][440] ([i915#9906]) +1 other test skip
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-4/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@negative-basic:
- shard-mtlp: [PASS][441] -> [FAIL][442] ([i915#10393]) +1 other test fail
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-mtlp-6/igt@kms_vrr@negative-basic.html
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-1/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-rkl: NOTRUN -> [SKIP][443] ([i915#9906])
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-3/igt@kms_vrr@seamless-rr-switch-drrs.html
- shard-dg1: NOTRUN -> [SKIP][444] ([i915#9906]) +1 other test skip
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-15/igt@kms_vrr@seamless-rr-switch-drrs.html
- shard-mtlp: NOTRUN -> [SKIP][445] ([i915#8808] / [i915#9906]) +1 other test skip
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-4/igt@kms_vrr@seamless-rr-switch-drrs.html
- shard-dg2-9: NOTRUN -> [SKIP][446] ([i915#9906])
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-9/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-dg2: NOTRUN -> [SKIP][447] ([i915#9906])
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-2/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_writeback@writeback-check-output:
- shard-rkl: NOTRUN -> [SKIP][448] ([i915#2437]) +1 other test skip
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-8/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg1: NOTRUN -> [SKIP][449] ([i915#2437])
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-19/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg2-9: NOTRUN -> [SKIP][450] ([i915#2437] / [i915#9412])
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-9/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-tglu-1: NOTRUN -> [SKIP][451] ([i915#2437] / [i915#9412])
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-1/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-dg2: NOTRUN -> [SKIP][452] ([i915#2436])
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-2/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@global-sseu-config:
- shard-dg2-9: NOTRUN -> [SKIP][453] ([i915#7387])
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-9/igt@perf@global-sseu-config.html
* igt@perf@mi-rpc:
- shard-dg2-9: NOTRUN -> [SKIP][454] ([i915#2434])
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-9/igt@perf@mi-rpc.html
- shard-rkl: NOTRUN -> [SKIP][455] ([i915#2434])
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-3/igt@perf@mi-rpc.html
- shard-dg1: NOTRUN -> [SKIP][456] ([i915#2434])
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-14/igt@perf@mi-rpc.html
- shard-mtlp: NOTRUN -> [SKIP][457] ([i915#2434])
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-4/igt@perf@mi-rpc.html
* igt@perf_pmu@busy-double-start@bcs0:
- shard-mtlp: [PASS][458] -> [FAIL][459] ([i915#4349])
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-mtlp-6/igt@perf_pmu@busy-double-start@bcs0.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-5/igt@perf_pmu@busy-double-start@bcs0.html
* igt@perf_pmu@frequency@gt0:
- shard-dg2-9: NOTRUN -> [FAIL][460] ([i915#12549] / [i915#6806]) +1 other test fail
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-9/igt@perf_pmu@frequency@gt0.html
* igt@perf_pmu@module-unload:
- shard-tglu-1: NOTRUN -> [FAIL][461] ([i915#14433])
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-1/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6-all-gts:
- shard-tglu: NOTRUN -> [SKIP][462] ([i915#8516]) +1 other test skip
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-5/igt@perf_pmu@rc6-all-gts.html
* igt@prime_self_import@basic-with_one_bo:
- shard-rkl: NOTRUN -> [ABORT][463] ([i915#14463]) +1 other test abort
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-5/igt@prime_self_import@basic-with_one_bo.html
- shard-glk: NOTRUN -> [ABORT][464] ([i915#14463])
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-glk5/igt@prime_self_import@basic-with_one_bo.html
* igt@prime_vgem@basic-fence-read:
- shard-rkl: NOTRUN -> [SKIP][465] ([i915#3291] / [i915#3708])
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-7/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-gtt:
- shard-mtlp: NOTRUN -> [SKIP][466] ([i915#3708] / [i915#4077])
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-6/igt@prime_vgem@basic-gtt.html
- shard-dg2: NOTRUN -> [SKIP][467] ([i915#3708] / [i915#4077])
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-8/igt@prime_vgem@basic-gtt.html
- shard-dg1: NOTRUN -> [SKIP][468] ([i915#3708] / [i915#4077])
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-17/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-write:
- shard-dg2: NOTRUN -> [SKIP][469] ([i915#3291] / [i915#3708]) +1 other test skip
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-8/igt@prime_vgem@basic-write.html
* igt@prime_vgem@coherency-gtt:
- shard-rkl: NOTRUN -> [SKIP][470] ([i915#3708])
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-8/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-read-hang:
- shard-dg2: NOTRUN -> [SKIP][471] ([i915#3708]) +1 other test skip
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-5/igt@prime_vgem@fence-read-hang.html
* igt@prime_vgem@fence-write-hang:
- shard-mtlp: NOTRUN -> [SKIP][472] ([i915#3708])
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-8/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2: NOTRUN -> [SKIP][473] ([i915#9917]) +1 other test skip
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-5/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@tools_test@sysfs_l3_parity:
- shard-rkl: NOTRUN -> [SKIP][474] +28 other tests skip
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-5/igt@tools_test@sysfs_l3_parity.html
- shard-mtlp: NOTRUN -> [SKIP][475] ([i915#4818])
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-2/igt@tools_test@sysfs_l3_parity.html
- shard-dg2: NOTRUN -> [SKIP][476] ([i915#4818])
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-8/igt@tools_test@sysfs_l3_parity.html
#### Possible fixes ####
* igt@gem_ccs@suspend-resume:
- shard-dg2: [INCOMPLETE][477] ([i915#13356]) -> [PASS][478]
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-dg2-5/igt@gem_ccs@suspend-resume.html
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-4/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0:
- shard-dg2: [INCOMPLETE][479] ([i915#12392]) -> [PASS][480]
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-dg2-5/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-4/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html
* igt@gem_eio@hibernate:
- shard-mtlp: [ABORT][481] ([i915#13723] / [i915#7975]) -> [PASS][482]
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-mtlp-4/igt@gem_eio@hibernate.html
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-4/igt@gem_eio@hibernate.html
* igt@i915_pm_rpm@system-suspend:
- shard-rkl: [INCOMPLETE][483] ([i915#12797]) -> [PASS][484]
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-rkl-3/igt@i915_pm_rpm@system-suspend.html
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-5/igt@i915_pm_rpm@system-suspend.html
* igt@i915_selftest@live:
- shard-rkl: [DMESG-FAIL][485] ([i915#13550]) -> [PASS][486] +1 other test pass
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-rkl-4/igt@i915_selftest@live.html
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-4/igt@i915_selftest@live.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-dg1: [DMESG-WARN][487] ([i915#4423]) -> [PASS][488]
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-dg1-18/igt@kms_async_flips@async-flip-suspend-resume.html
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-16/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [FAIL][489] ([i915#5138]) -> [PASS][490]
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-tglu-1: [FAIL][491] ([i915#13566]) -> [PASS][492] +1 other test pass
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-256x85.html
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-256x85.html
- shard-rkl: [FAIL][493] ([i915#13566]) -> [PASS][494]
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-256x85.html
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_legacy@flip-vs-cursor-crc-atomic:
- shard-mtlp: [FAIL][495] ([i915#2346]) -> [PASS][496]
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-mtlp-5/igt@kms_cursor_legacy@flip-vs-cursor-crc-atomic.html
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-2/igt@kms_cursor_legacy@flip-vs-cursor-crc-atomic.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg2: [SKIP][497] ([i915#13707]) -> [PASS][498]
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-dg2-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-10/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-snb: [TIMEOUT][499] ([i915#14033] / [i915#14350]) -> [PASS][500]
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-snb6/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-snb7/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [TIMEOUT][501] ([i915#14033]) -> [PASS][502] +2 other tests pass
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-snb6/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-snb7/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-snb: [FAIL][503] ([i915#11832] / [i915#13734]) -> [PASS][504] +1 other test pass
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-snb2/igt@kms_flip@2x-plain-flip-ts-check.html
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-snb6/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling:
- shard-dg2: [DMESG-FAIL][505] ([i915#13890]) -> [PASS][506] +1 other test pass
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render:
- shard-snb: [SKIP][507] -> [PASS][508]
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render.html
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-stridechange:
- shard-dg2: [FAIL][509] ([i915#6880]) -> [PASS][510]
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-stridechange.html
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-stridechange.html
* igt@kms_hdr@static-toggle:
- shard-dg2: [SKIP][511] ([i915#3555] / [i915#8228]) -> [PASS][512]
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-dg2-6/igt@kms_hdr@static-toggle.html
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-11/igt@kms_hdr@static-toggle.html
* igt@kms_lease@cursor-implicit-plane:
- shard-dg2: [DMESG-WARN][513] ([i915#13890]) -> [PASS][514] +3 other tests pass
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-dg2-11/igt@kms_lease@cursor-implicit-plane.html
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-11/igt@kms_lease@cursor-implicit-plane.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-dg2: [ABORT][515] ([i915#8213]) -> [PASS][516] +1 other test pass
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-dg2-10/igt@kms_plane@plane-panning-bottom-right-suspend.html
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-5/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_psr@psr2-suspend@edp-1:
- shard-mtlp: [FAIL][517] -> [PASS][518] +1 other test pass
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-mtlp-5/igt@kms_psr@psr2-suspend@edp-1.html
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-mtlp-7/igt@kms_psr@psr2-suspend@edp-1.html
* igt@kms_vblank@query-forked-busy:
- shard-rkl: [DMESG-WARN][519] ([i915#12964]) -> [PASS][520] +13 other tests pass
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-rkl-7/igt@kms_vblank@query-forked-busy.html
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-7/igt@kms_vblank@query-forked-busy.html
#### Warnings ####
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: [ABORT][521] ([i915#13427]) -> [INCOMPLETE][522] ([i915#13427])
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-dg2-8/igt@gem_create@create-ext-cpu-access-big.html
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-3/igt@gem_create@create-ext-cpu-access-big.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][523] ([i915#14098] / [i915#6095]) -> [SKIP][524] ([i915#6095]) +2 other tests skip
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-rkl-5/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-8/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-yf-tiled-ccs:
- shard-dg1: [SKIP][525] ([i915#4423] / [i915#6095]) -> [SKIP][526] ([i915#6095])
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-dg1-12/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs.html
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-15/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][527] ([i915#6095]) -> [SKIP][528] ([i915#14098] / [i915#6095]) +1 other test skip
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-rkl-8/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_content_protection@atomic:
- shard-dg2: [FAIL][529] ([i915#7173]) -> [SKIP][530] ([i915#7118] / [i915#9424])
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-dg2-11/igt@kms_content_protection@atomic.html
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-7/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][531] ([i915#9433]) -> [SKIP][532] ([i915#9424])
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-dg1-12/igt@kms_content_protection@mei-interface.html
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-19/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-dg2: [SKIP][533] ([i915#7118]) -> [FAIL][534] ([i915#7173])
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-dg2-8/igt@kms_content_protection@srm.html
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-11/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-dg2: [SKIP][535] ([i915#7118] / [i915#7162] / [i915#9424]) -> [SKIP][536] ([i915#7118] / [i915#9424])
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-dg2-10/igt@kms_content_protection@type1.html
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-5/igt@kms_content_protection@type1.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-dg1: [SKIP][537] ([i915#4423] / [i915#9934]) -> [SKIP][538] ([i915#9934]) +1 other test skip
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-dg1-12/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-18/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu:
- shard-dg2: [SKIP][539] ([i915#10433] / [i915#3458]) -> [SKIP][540] ([i915#3458]) +2 other tests skip
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt:
- shard-dg2: [SKIP][541] ([i915#3458]) -> [SKIP][542] ([i915#10433] / [i915#3458])
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite:
- shard-dg1: [SKIP][543] ([i915#3458] / [i915#4423]) -> [SKIP][544] ([i915#3458])
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite.html
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg2: [SKIP][545] ([i915#12713]) -> [SKIP][546] ([i915#13331])
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-dg2-4/igt@kms_hdr@brightness-with-hdr.html
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-dg2-11/igt@kms_hdr@brightness-with-hdr.html
- shard-tglu: [SKIP][547] ([i915#12713]) -> [SKIP][548] ([i915#1187] / [i915#12713])
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-tglu-8/igt@kms_hdr@brightness-with-hdr.html
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-tglu-2/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: [SKIP][549] ([i915#3828]) -> [SKIP][550] ([i915#9340])
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-rkl-8/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free:
- shard-glk: [ABORT][551] ([i915#13179]) -> [DMESG-FAIL][552] ([i915#13179])
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8411/shard-glk1/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/shard-glk6/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html
[i915#10030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10030
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10393
[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#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713
[i915#11832]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11832
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394
[i915#12549]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12549
[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#12797]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12797
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12916]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12916
[i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026
[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#13331]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13331
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
[i915#13427]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13427
[i915#13522]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13522
[i915#13550]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13550
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
[i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#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#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781
[i915#13890]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13890
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033
[i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
[i915#14123]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14123
[i915#14214]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14214
[i915#14350]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14350
[i915#14433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14433
[i915#14448]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14448
[i915#14463]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14463
[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#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[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#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#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#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3778
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936
[i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816
[i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4873]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4873
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784
[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#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
[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#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7016]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7016
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7162]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7162
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
[i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#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#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#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#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[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#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#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#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8411 -> IGTPW_13291
CI-20190529: 20190529
CI_DRM_16700: cce8a9af1c6cf1776511aa69e5f4b5bef7bf5938 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_13291: 13291
IGT_8411: d5b5d2bb4f8795a98ea58376a128b74f654b7ec1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13291/index.html
[-- Attachment #2: Type: text/html, Size: 186500 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread* ✗ Xe.CI.Full: failure for Replace intel_sysfs_debugfs (rev3)
2025-06-13 10:51 [PATCH v2 i-g-t 0/6] Replace intel_sysfs_debugfs Peter Senna Tschudin
` (8 preceding siblings ...)
2025-06-13 14:59 ` ✗ i915.CI.Full: failure " Patchwork
@ 2025-06-15 0:04 ` Patchwork
9 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2025-06-15 0:04 UTC (permalink / raw)
To: Peter Senna Tschudin; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 64718 bytes --]
== Series Details ==
Series: Replace intel_sysfs_debugfs (rev3)
URL : https://patchwork.freedesktop.org/series/149023/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8411_FULL -> XEIGTPW_13291_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_13291_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_13291_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_13291_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-0:
- shard-bmg: [PASS][1] -> [ABORT][2] +1 other test abort
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-1/igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-0.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-2/igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-0.html
New tests
---------
New tests have been introduced between XEIGT_8411_FULL and XEIGTPW_13291_FULL:
### New IGT tests (6) ###
* igt@core_debugfs@debugfs-read-all-entries:
- Statuses : 3 pass(s)
- Exec time: [0.0, 0.13] s
* igt@core_debugfs_display_on_off@debugfs-read-all-entries-display-off:
- Statuses : 3 pass(s)
- Exec time: [0.11, 0.33] s
* igt@core_debugfs_display_on_off@debugfs-read-all-entries-display-on:
- Statuses : 3 pass(s)
- Exec time: [0.06, 0.15] s
* igt@core_sysfs@sysfs-read-all-entries:
- Statuses : 3 pass(s)
- Exec time: [0.0, 0.00] s
* igt@xe_debugfs@xe-base:
- Statuses : 2 pass(s)
- Exec time: [0.00] s
* igt@xe_debugfs@xe-forcewake:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in XEIGTPW_13291_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-lnl: NOTRUN -> [SKIP][3] ([Intel XE#3279])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-2/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#2327]) +4 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-6/igt@kms_big_fb@linear-32bpp-rotate-270.html
- shard-dg2-set2: NOTRUN -> [SKIP][5] ([Intel XE#316]) +2 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-dg2-464/igt@kms_big_fb@linear-32bpp-rotate-270.html
- shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#1407]) +2 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-2/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#1124]) +3 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-5/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-dg2-set2: NOTRUN -> [SKIP][8] ([Intel XE#1124]) +7 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-dg2-464/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
- shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#1124]) +2 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1428])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-1/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
- shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#2191])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-dg2-433/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#2191])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-2/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2314] / [Intel XE#2894])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-7/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-2-displays-1920x1080p:
- shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#367]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-dg2-436/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#787]) +55 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-dg2-436/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-b-dp-4.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#2669]) +3 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#455] / [Intel XE#787]) +15 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-dg2-436/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#2887]) +8 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-1/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: [PASS][19] -> [INCOMPLETE][20] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2887]) +7 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-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_13291/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_cdclk@mode-transition:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2724])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-2/igt@kms_cdclk@mode-transition.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2252]) +3 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-6/igt@kms_chamelium_audio@hdmi-audio-edid.html
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#373]) +2 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-1/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#306])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-dg2-436/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#373]) +4 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-dg2-433/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][28] ([Intel XE#1178])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-2/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#307])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-dg2-464/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2321]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2320]) +4 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-2/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#308])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-dg2-435/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#1424]) +3 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-7/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#2321])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-2/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-bmg: [PASS][35] -> [SKIP][36] ([Intel XE#2291])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#309]) +2 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-4/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#323])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-dg2-464/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#4210])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-4/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_dp_aux_dev:
- shard-bmg: [PASS][40] -> [SKIP][41] ([Intel XE#3009])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-7/igt@kms_dp_aux_dev.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-6/igt@kms_dp_aux_dev.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#4354])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-8/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-bmg: [PASS][43] -> [SKIP][44] ([Intel XE#4294])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-3/igt@kms_dp_linktrain_fallback@dp-fallback.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-with-formats:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#2244]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-7/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2244]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
- shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#4422])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-dg2-433/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_fbcon_fbt@psr:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#776])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-3/igt@kms_fbcon_fbt@psr.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2316])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-6/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible:
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#1421]) +5 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-6/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][51] -> [FAIL][52] ([Intel XE#301] / [Intel XE#3321])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-dg2-464/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][53] -> [FAIL][54] ([Intel XE#301]) +7 other tests fail
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-dg2-464/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][55] ([Intel XE#301]) +6 other tests fail
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html
* igt@kms_flip@2x-plain-flip:
- shard-bmg: [PASS][56] -> [SKIP][57] ([Intel XE#2316]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-2/igt@kms_flip@2x-plain-flip.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-6/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg2-set2: [PASS][58] -> [INCOMPLETE][59] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-dg2-436/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#1401] / [Intel XE#1745]) +3 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-8/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-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2293]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#1401]) +3 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#455]) +18 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2380]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2311]) +17 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#656]) +21 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-3/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@drrs-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#651]) +18 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-suspend.html
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#651]) +7 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-suspend.html
* igt@kms_frontbuffer_tracking@fbc-2p-rte:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#4141]) +5 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#2313]) +17 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2352])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
- shard-dg2-set2: NOTRUN -> [SKIP][73] ([Intel XE#658])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
- shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1469])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#2312]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-slowdraw:
- shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#653]) +21 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-slowdraw.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#3374] / [Intel XE#3544])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [PASS][78] -> [SKIP][79] ([Intel XE#1503])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-3/igt@kms_hdr@invalid-hdr.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-5/igt@kms_hdr@invalid-hdr.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-bmg: [PASS][80] -> [SKIP][81] ([Intel XE#3012])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-2/igt@kms_joiner@basic-force-big-joiner.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-6/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#2925])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-dg2-436/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64:
- shard-dg2-set2: NOTRUN -> [FAIL][83] ([Intel XE#616]) +1 other test fail
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-dg2-436/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html
* igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#599]) +7 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-8/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#5021])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_multiple@tiling-x@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [FAIL][86] ([Intel XE#4658]) +3 other tests fail
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-8/igt@kms_plane_multiple@tiling-x@pipe-b-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a:
- shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2763]) +4 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-2/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b:
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#2763]) +3 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-4/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#3309])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-dg2-436/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-dpms:
- shard-lnl: [PASS][90] -> [FAIL][91] ([Intel XE#718])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-4/igt@kms_pm_dc@dc6-dpms.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-1/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-5/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#1489]) +4 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-dg2-464/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#2893])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-4/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#1489]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-2/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#2893] / [Intel XE#4608]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-2/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#4608]) +3 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-2/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-b-edp-1.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2387])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-6/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#1406]) +2 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-3/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_psr@fbc-psr2-primary-blt@edp-1:
- shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#4609])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-3/igt@kms_psr@fbc-psr2-primary-blt@edp-1.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#2850] / [Intel XE#929]) +8 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-dg2-433/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@pr-sprite-plane-onoff:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#2234] / [Intel XE#2850]) +5 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-3/igt@kms_psr@pr-sprite-plane-onoff.html
* igt@kms_rotation_crc@primary-x-tiled-reflect-x-0:
- shard-lnl: NOTRUN -> [FAIL][103] ([Intel XE#4689])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-7/igt@kms_rotation_crc@primary-x-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2330])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#3414] / [Intel XE#3904])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#3414])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-dg2-436/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#1435])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-1/igt@kms_setmode@basic-clone-single-crtc.html
- shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#1435])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-6/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#2426])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#1500])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@xe_copy_basic@mem-set-linear-0xfffe:
- shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#1126])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-dg2-433/igt@xe_copy_basic@mem-set-linear-0xfffe.html
* igt@xe_eudebug@sysfs-toggle:
- shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#4837]) +4 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-2/igt@xe_eudebug@sysfs-toggle.html
* igt@xe_eudebug_online@breakpoint-many-sessions-tiles:
- shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#4837]) +4 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-6/igt@xe_eudebug_online@breakpoint-many-sessions-tiles.html
* igt@xe_eudebug_online@interrupt-all-set-breakpoint:
- shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#4837]) +8 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-dg2-436/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html
* igt@xe_evict@evict-large-cm:
- shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#688]) +3 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-4/igt@xe_evict@evict-large-cm.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind:
- shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#1392]) +2 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
- shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#2322]) +2 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-3/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
* igt@xe_exec_fault_mode@once-bindexecqueue-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#288]) +16 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-dg2-435/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-bmg: [PASS][120] -> [DMESG-WARN][121] ([Intel XE#3876])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-1/igt@xe_exec_reset@parallel-gt-reset.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-5/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_exec_system_allocator@many-execqueues-mmap-new-huge:
- shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#4915]) +165 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-dg2-435/igt@xe_exec_system_allocator@many-execqueues-mmap-new-huge.html
* igt@xe_exec_system_allocator@once-large-mmap-free-huge-nomemset:
- shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#4943]) +9 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-4/igt@xe_exec_system_allocator@once-large-mmap-free-huge-nomemset.html
* igt@xe_exec_system_allocator@once-mmap-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#4943]) +12 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-6/igt@xe_exec_system_allocator@once-mmap-huge-nomemset.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#2229])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-3/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_module_load@force-load:
- shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#2457])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-6/igt@xe_module_load@force-load.html
* igt@xe_module_load@load:
- shard-lnl: ([PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147], [PASS][148], [PASS][149], [PASS][150], [PASS][151]) -> ([PASS][152], [PASS][153], [PASS][154], [PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164], [SKIP][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177]) ([Intel XE#378])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-3/igt@xe_module_load@load.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-3/igt@xe_module_load@load.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-3/igt@xe_module_load@load.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-8/igt@xe_module_load@load.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-8/igt@xe_module_load@load.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-6/igt@xe_module_load@load.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-1/igt@xe_module_load@load.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-3/igt@xe_module_load@load.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-7/igt@xe_module_load@load.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-7/igt@xe_module_load@load.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-7/igt@xe_module_load@load.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-7/igt@xe_module_load@load.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-6/igt@xe_module_load@load.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-1/igt@xe_module_load@load.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-4/igt@xe_module_load@load.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-4/igt@xe_module_load@load.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-4/igt@xe_module_load@load.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-1/igt@xe_module_load@load.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-6/igt@xe_module_load@load.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-2/igt@xe_module_load@load.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-2/igt@xe_module_load@load.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-4/igt@xe_module_load@load.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-2/igt@xe_module_load@load.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-2/igt@xe_module_load@load.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-8/igt@xe_module_load@load.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-1/igt@xe_module_load@load.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-8/igt@xe_module_load@load.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-6/igt@xe_module_load@load.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-6/igt@xe_module_load@load.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-1/igt@xe_module_load@load.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-1/igt@xe_module_load@load.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-1/igt@xe_module_load@load.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-3/igt@xe_module_load@load.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-4/igt@xe_module_load@load.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-7/igt@xe_module_load@load.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-6/igt@xe_module_load@load.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-6/igt@xe_module_load@load.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-2/igt@xe_module_load@load.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-4/igt@xe_module_load@load.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-2/igt@xe_module_load@load.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-2/igt@xe_module_load@load.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-3/igt@xe_module_load@load.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-7/igt@xe_module_load@load.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-7/igt@xe_module_load@load.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-2/igt@xe_module_load@load.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-3/igt@xe_module_load@load.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-8/igt@xe_module_load@load.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-4/igt@xe_module_load@load.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-4/igt@xe_module_load@load.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-4/igt@xe_module_load@load.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-8/igt@xe_module_load@load.html
- shard-bmg: ([PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185], [PASS][186], [PASS][187], [PASS][188], [PASS][189], [PASS][190], [PASS][191], [PASS][192], [PASS][193], [PASS][194], [PASS][195], [PASS][196], [PASS][197], [PASS][198], [PASS][199], [PASS][200], [PASS][201], [PASS][202]) -> ([PASS][203], [PASS][204], [PASS][205], [PASS][206], [PASS][207], [PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214], [PASS][215], [PASS][216], [PASS][217], [PASS][218], [PASS][219], [PASS][220], [PASS][221], [PASS][222], [PASS][223], [PASS][224], [SKIP][225], [PASS][226]) ([Intel XE#2457])
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-1/igt@xe_module_load@load.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-1/igt@xe_module_load@load.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-3/igt@xe_module_load@load.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-1/igt@xe_module_load@load.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-6/igt@xe_module_load@load.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-3/igt@xe_module_load@load.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-3/igt@xe_module_load@load.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-3/igt@xe_module_load@load.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-7/igt@xe_module_load@load.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-7/igt@xe_module_load@load.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-6/igt@xe_module_load@load.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-5/igt@xe_module_load@load.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-5/igt@xe_module_load@load.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-1/igt@xe_module_load@load.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-6/igt@xe_module_load@load.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-6/igt@xe_module_load@load.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-2/igt@xe_module_load@load.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-2/igt@xe_module_load@load.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-4/igt@xe_module_load@load.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-4/igt@xe_module_load@load.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-4/igt@xe_module_load@load.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-5/igt@xe_module_load@load.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-7/igt@xe_module_load@load.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-2/igt@xe_module_load@load.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-2/igt@xe_module_load@load.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-5/igt@xe_module_load@load.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-2/igt@xe_module_load@load.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-2/igt@xe_module_load@load.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-7/igt@xe_module_load@load.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-3/igt@xe_module_load@load.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-3/igt@xe_module_load@load.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-1/igt@xe_module_load@load.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-4/igt@xe_module_load@load.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-4/igt@xe_module_load@load.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-4/igt@xe_module_load@load.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-5/igt@xe_module_load@load.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-5/igt@xe_module_load@load.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-1/igt@xe_module_load@load.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-1/igt@xe_module_load@load.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-6/igt@xe_module_load@load.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-6/igt@xe_module_load@load.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-3/igt@xe_module_load@load.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-3/igt@xe_module_load@load.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-7/igt@xe_module_load@load.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-7/igt@xe_module_load@load.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-2/igt@xe_module_load@load.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-2/igt@xe_module_load@load.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-7/igt@xe_module_load@load.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-6/igt@xe_module_load@load.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-dg2-set2: NOTRUN -> [SKIP][227] ([Intel XE#2541] / [Intel XE#3573]) +1 other test skip
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-dg2-436/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-lnl: NOTRUN -> [SKIP][228] ([Intel XE#2284] / [Intel XE#366])
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-2/igt@xe_pm@d3cold-mmap-vram.html
- shard-bmg: NOTRUN -> [SKIP][229] ([Intel XE#2284])
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-6/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_pm@s3-d3hot-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][230] ([Intel XE#584])
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-1/igt@xe_pm@s3-d3hot-basic-exec.html
* igt@xe_pm@s4-d3hot-basic-exec:
- shard-lnl: NOTRUN -> [ABORT][231] ([Intel XE#1794])
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-2/igt@xe_pm@s4-d3hot-basic-exec.html
* igt@xe_pxp@display-pxp-fb:
- shard-bmg: NOTRUN -> [SKIP][232] ([Intel XE#4733]) +1 other test skip
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-6/igt@xe_pxp@display-pxp-fb.html
* igt@xe_pxp@pxp-termination-key-update-post-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][233] ([Intel XE#4733]) +1 other test skip
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-dg2-435/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
* igt@xe_query@multigpu-query-config:
- shard-dg2-set2: NOTRUN -> [SKIP][234] ([Intel XE#944])
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-dg2-436/igt@xe_query@multigpu-query-config.html
* igt@xe_query@multigpu-query-gt-list:
- shard-bmg: NOTRUN -> [SKIP][235] ([Intel XE#944])
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-5/igt@xe_query@multigpu-query-gt-list.html
- shard-lnl: NOTRUN -> [SKIP][236] ([Intel XE#944])
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-6/igt@xe_query@multigpu-query-gt-list.html
* igt@xe_render_copy@render-stress-1-copies:
- shard-dg2-set2: NOTRUN -> [SKIP][237] ([Intel XE#4814])
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-dg2-464/igt@xe_render_copy@render-stress-1-copies.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets:
- shard-bmg: NOTRUN -> [SKIP][238] ([Intel XE#4351])
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-1/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
#### Possible fixes ####
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [INCOMPLETE][239] ([Intel XE#3862]) -> [PASS][240] +1 other test pass
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][241] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [PASS][242]
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
- shard-bmg: [SKIP][243] ([Intel XE#2291]) -> [PASS][244]
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-bmg: [FAIL][245] ([Intel XE#2882]) -> [PASS][246] +1 other test pass
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-2/igt@kms_flip@2x-blocking-wf_vblank.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-2/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-bmg: [SKIP][247] ([Intel XE#2316]) -> [PASS][248] +5 other tests pass
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-6/igt@kms_flip@2x-modeset-vs-vblank-race.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-5/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-lnl: [FAIL][249] ([Intel XE#886]) -> [PASS][250] +2 other tests pass
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-1/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-1/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a6:
- shard-dg2-set2: [FAIL][251] ([Intel XE#301]) -> [PASS][252]
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-dg2-435/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a6.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a6.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset:
- shard-lnl: [FAIL][253] ([Intel XE#5018]) -> [PASS][254]
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-lnl-7/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-lnl-1/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html
#### Warnings ####
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [INCOMPLETE][255] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) -> [INCOMPLETE][256] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345])
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [INCOMPLETE][257] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [INCOMPLETE][258] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345])
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_content_protection@atomic-dpms:
- shard-bmg: [SKIP][259] ([Intel XE#2341]) -> [FAIL][260] ([Intel XE#1178])
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-6/igt@kms_content_protection@atomic-dpms.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-2/igt@kms_content_protection@atomic-dpms.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][261] ([Intel XE#2312]) -> [SKIP][262] ([Intel XE#4141]) +5 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][263] ([Intel XE#4141]) -> [SKIP][264] ([Intel XE#2312]) +1 other test skip
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move:
- shard-bmg: [SKIP][265] ([Intel XE#2312]) -> [SKIP][266] ([Intel XE#2311]) +8 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][267] ([Intel XE#2311]) -> [SKIP][268] ([Intel XE#2312]) +4 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][269] ([Intel XE#2313]) -> [SKIP][270] ([Intel XE#2312]) +2 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][271] ([Intel XE#2312]) -> [SKIP][272] ([Intel XE#2313]) +11 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][273] ([Intel XE#2426]) -> [SKIP][274] ([Intel XE#2509])
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8411/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#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#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[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#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#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#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[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#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#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[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#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279
[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#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
[Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[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#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4658
[Intel XE#4689]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4689
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5018]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5018
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5172]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5172
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[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#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8411 -> IGTPW_13291
IGTPW_13291: 13291
IGT_8411: d5b5d2bb4f8795a98ea58376a128b74f654b7ec1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-3247-e9c2e2a765de7f0c86d97589871410594ef8e0a7: e9c2e2a765de7f0c86d97589871410594ef8e0a7
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13291/index.html
[-- Attachment #2: Type: text/html, Size: 73912 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread