* [PATCH v6 i-g-t 0/6] Replace intel_sysfs_debugfs
@ 2025-07-16 9:36 Peter Senna Tschudin
2025-07-16 9:36 ` [PATCH v6 i-g-t 1/6] lib/igt_dir: utilities for directory traversal and file handling Peter Senna Tschudin
` (10 more replies)
0 siblings, 11 replies; 15+ messages in thread
From: Peter Senna Tschudin @ 2025-07-16 9:36 UTC (permalink / raw)
To: igt-dev
Cc: Peter Senna Tschudin, kamil.konieczny, katarzyna.piecielska,
zbigniew.kempczynski, michal.wajdeczko, karthik.b.s,
ewelina.musial
This series:
- moves shared function to lib/igt_dir
- creates gpu agnostic tests
- core_debugfs
- core_sysfs
- kms_debugfs
- creates xe_debugfs (complementary to core_debugfs and kms_debugfs)
- Updates testlists and scripts
- deletes tests/intel_sysfs_debugfs
Cc: kamil.konieczny@linux.intel.com
Cc: katarzyna.piecielska@intel.com
Cc: zbigniew.kempczynski@intel.com
Cc: michal.wajdeczko@intel.com
Cc: karthik.b.s@intel.com
Cc: ewelina.musial@intel.com
Simplified changelog:
v6:
- use the new testlist names
- kms_debugfs: use the new igt_fit_modes_in_bw()
v5:
- Added igt_dir_process_files_simple()
v4:
- kms_debugfs: small changes
v3:
- kms_debugfs: varios small changes
v2:
- change comparison to NULL style
Peter Senna Tschudin (6):
lib/igt_dir: utilities for directory traversal and file handling
tests: Add core_debugfs
tests: Add kms_debugfs
tests: Add core_sysfs
tests: Add xe_debugfs
tests/intel: Remove intel_sysfs_debugfs
docs/code_coverage.md | 18 +-
lib/igt_dir.c | 347 +++++++++++++++++
lib/igt_dir.h | 62 +++
lib/meson.build | 1 +
scripts/code_cov_selftest.sh | 2 +-
tests/core_debugfs.c | 48 +++
tests/core_sysfs.c | 48 +++
tests/intel-ci/i915.fast-feedback.testlist | 4 +-
tests/intel-ci/xe-fast-feedback.testlist | 8 +-
tests/intel/intel_sysfs_debugfs.c | 430 ---------------------
tests/intel/xe_debugfs.c | 207 ++++++++++
tests/intel/xe_test_config.json | 2 +-
tests/kms_debugfs.c | 133 +++++++
tests/meson.build | 5 +-
14 files changed, 867 insertions(+), 448 deletions(-)
create mode 100644 lib/igt_dir.c
create mode 100644 lib/igt_dir.h
create mode 100644 tests/core_debugfs.c
create mode 100644 tests/core_sysfs.c
delete mode 100644 tests/intel/intel_sysfs_debugfs.c
create mode 100644 tests/intel/xe_debugfs.c
create mode 100644 tests/kms_debugfs.c
--
2.43.0
^ permalink raw reply [flat|nested] 15+ messages in thread* [PATCH v6 i-g-t 1/6] lib/igt_dir: utilities for directory traversal and file handling 2025-07-16 9:36 [PATCH v6 i-g-t 0/6] Replace intel_sysfs_debugfs Peter Senna Tschudin @ 2025-07-16 9:36 ` Peter Senna Tschudin 2025-07-16 9:36 ` [PATCH v6 i-g-t 2/6] tests: Add core_debugfs Peter Senna Tschudin ` (9 subsequent siblings) 10 siblings, 0 replies; 15+ messages in thread From: Peter Senna Tschudin @ 2025-07-16 9:36 UTC (permalink / raw) To: igt-dev Cc: Peter Senna Tschudin, kamil.konieczny, katarzyna.piecielska, zbigniew.kempczynski, michal.wajdeczko, karthik.b.s, Jan Sokolowski Introduces helper functions to simplify reading and processing files within a directory. A "_simple" interface is provided to encapsulate all necessary function calls for the most common use cases. Cc: kamil.konieczny@linux.intel.com Cc: katarzyna.piecielska@intel.com Cc: zbigniew.kempczynski@intel.com Cc: michal.wajdeczko@intel.com Cc: karthik.b.s@intel.com Reviewed-by: Jan Sokolowski <jan.sokolowski@intel.com> Signed-off-by: Peter Senna Tschudin <peter.senna@linux.intel.com> --- v6: - unchanged from v5 v5: - Added igt_dir_process_files_simple() v4: - unchanged from v3 v3: - unchanged from v2 v2: - changed style of comparison to NULL lib/igt_dir.c | 347 ++++++++++++++++++++++++++++++++++++++++++++++++ lib/igt_dir.h | 62 +++++++++ lib/meson.build | 1 + 3 files changed, 410 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..1792ba7c1 --- /dev/null +++ b/lib/igt_dir.c @@ -0,0 +1,347 @@ +// SPDX-License-Identifier: MIT +/* + * Copyright © 2025 Intel Corporation + */ + +#include <dirent.h> +#include <fcntl.h> + +#include "igt.h" +#include "igt_dir.h" + +/** + * SECTION:igt_dir + * @short_description: Dir and file processing i-g-t + * @title: igt_dir + * @include: igt_igt.h + * + * Utilities to facilitate reading and processing files within a directory. + * For example, to read and discard all files from debugfs: + * + * igt_fixture { + * 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 means unlimited scan depth + * igt_dir_process_files(igt_dir, NULL, NULL); + * + * igt_fixture { + * igt_dir_destroy(igt_dir); + * closedir(debugfs); + * drm_close_driver(fd); + * } + * + * 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. + * + * Alternatively a "_simple" interface is also available. This function + * encapsulate the calls to igt_dir_create(), igt_dir_scan_dirfd(), + * igt_dir_process_files(), and igt_dir_destroy(). For using the "_simple" + * interface: + * + * igt_fixture { + * fd = drm_open_driver_master(DRIVER_ANY); + * debugfs = igt_debugfs_dir(fd); + * } + * + * igt_dir_process_files_simple(debugfs); + * + * igt_fixture { + * igt_dir_destroy(igt_dir); + * closedir(debugfs); + * drm_close_driver(fd); + * } + */ + +/** + * 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) { + igt_debug("Max scan depth reached\n"); + 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); +} + +/** + * igt_dir_process_files_simple: Process files in the directory using the + * default callback to read and discard file + * contents. + * + * @dirfd: file descriptor of the root directory + * + * Returns: 0 on success, a negative error code on failure + */ +int igt_dir_process_files_simple(int dirfd) +{ + igt_dir_t *config; + int ret; + + config = igt_dir_create(dirfd); + if (!config) + return -1; + + igt_dir_scan_dirfd(config, -1); + + /* Use the default callback to read and discard file contents */ + ret = igt_dir_process_files(config, NULL, NULL); + + igt_dir_destroy(config); + + return ret; +} diff --git a/lib/igt_dir.h b/lib/igt_dir.h new file mode 100644 index 000000000..5e36d8af8 --- /dev/null +++ b/lib/igt_dir.h @@ -0,0 +1,62 @@ +/* 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); +int igt_dir_process_files_simple(int dirfd); +#endif /* IGT_DIR_H */ diff --git a/lib/meson.build b/lib/meson.build index 35ca0e0e9..2eaca42a4 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -92,6 +92,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] 15+ messages in thread
* [PATCH v6 i-g-t 2/6] tests: Add core_debugfs 2025-07-16 9:36 [PATCH v6 i-g-t 0/6] Replace intel_sysfs_debugfs Peter Senna Tschudin 2025-07-16 9:36 ` [PATCH v6 i-g-t 1/6] lib/igt_dir: utilities for directory traversal and file handling Peter Senna Tschudin @ 2025-07-16 9:36 ` Peter Senna Tschudin 2025-07-16 9:36 ` [PATCH v6 i-g-t 3/6] tests: Add kms_debugfs Peter Senna Tschudin ` (8 subsequent siblings) 10 siblings, 0 replies; 15+ messages in thread From: Peter Senna Tschudin @ 2025-07-16 9:36 UTC (permalink / raw) To: igt-dev Cc: Peter Senna Tschudin, katarzyna.piecielska, zbigniew.kempczynski, michal.wajdeczko, karthik.b.s, ewelina.musial, Kamil Konieczny 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: katarzyna.piecielska@intel.com Cc: zbigniew.kempczynski@intel.com Cc: michal.wajdeczko@intel.com Cc: karthik.b.s@intel.com Cc: ewelina.musial@intel.com Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> Signed-off-by: Peter Senna Tschudin <peter.senna@linux.intel.com> --- v6: - use the new file name for i915.fast-feedback.testlist v5: - use igt_dir_process_files_simple() v4: - unchanged from v3 v3: - removed "debugfs" from subtest name (Thanks Michal Wajdeczko) v2: - changed style of comparison to NULL docs/code_coverage.md | 18 ++++---- scripts/code_cov_selftest.sh | 2 +- tests/core_debugfs.c | 48 ++++++++++++++++++++++ tests/intel-ci/i915.fast-feedback.testlist | 1 + tests/intel-ci/xe-fast-feedback.testlist | 1 + tests/meson.build | 1 + 6 files changed, 61 insertions(+), 10 deletions(-) create mode 100644 tests/core_debugfs.c diff --git a/docs/code_coverage.md b/docs/code_coverage.md index 031611e69..8c4857412 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 (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@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 (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@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 (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..6f3a6db55 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@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..8ce305c40 --- /dev/null +++ b/tests/core_debugfs.c @@ -0,0 +1,48 @@ +// 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: 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_fixture { + fd = drm_open_driver_master(DRIVER_ANY); + debugfs = igt_debugfs_dir(fd); + igt_require(debugfs >= 0); + + kmstest_set_vt_graphics_mode(); + } + + igt_describe("Read all entries from debugfs path."); + igt_subtest("read-all-entries") { + igt_dir_process_files_simple(debugfs); + } + + igt_fixture { + close(debugfs); + drm_close_driver(fd); + } +} diff --git a/tests/intel-ci/i915.fast-feedback.testlist b/tests/intel-ci/i915.fast-feedback.testlist index 82395e7ea..3ec1b95cf 100644 --- a/tests/intel-ci/i915.fast-feedback.testlist +++ b/tests/intel-ci/i915.fast-feedback.testlist @@ -3,6 +3,7 @@ igt@i915_module_load@load # Keep alphabetically sorted by default igt@core_auth@basic-auth +igt@core_debugfs@read-all-entries igt@fbdev@eof igt@fbdev@info igt@fbdev@nullptr diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist index d9d180d87..ac3177ae9 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@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 881b204a5..16c699bba 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] 15+ messages in thread
* [PATCH v6 i-g-t 3/6] tests: Add kms_debugfs 2025-07-16 9:36 [PATCH v6 i-g-t 0/6] Replace intel_sysfs_debugfs Peter Senna Tschudin 2025-07-16 9:36 ` [PATCH v6 i-g-t 1/6] lib/igt_dir: utilities for directory traversal and file handling Peter Senna Tschudin 2025-07-16 9:36 ` [PATCH v6 i-g-t 2/6] tests: Add core_debugfs Peter Senna Tschudin @ 2025-07-16 9:36 ` Peter Senna Tschudin 2025-07-16 15:00 ` Rodrigo Vivi 2025-07-18 15:55 ` Kamil Konieczny 2025-07-16 9:36 ` [PATCH v6 i-g-t 4/6] tests: Add core_sysfs Peter Senna Tschudin ` (7 subsequent siblings) 10 siblings, 2 replies; 15+ messages in thread From: Peter Senna Tschudin @ 2025-07-16 9:36 UTC (permalink / raw) To: igt-dev Cc: Peter Senna Tschudin, kamil.konieczny, katarzyna.piecielska, zbigniew.kempczynski, michal.wajdeczko, karthik.b.s, ewelina.musial Introduce kms_debugfs that is expected to work with any GPU, not limited to i915 and Xe. The test powers off all available displays before reading debugfs files, and then powers on all displays before reading the files again. Cc: kamil.konieczny@linux.intel.com Cc: katarzyna.piecielska@intel.com Cc: zbigniew.kempczynski@intel.com Cc: michal.wajdeczko@intel.com Cc: karthik.b.s@intel.com Cc: ewelina.musial@intel.com Signed-off-by: Peter Senna Tschudin <peter.senna@linux.intel.com> --- v6: - use the new igt_fit_modes_in_bw() v5: - use igt_dir_process_files_simple() v4: - change test name to kms_debugfs - use the wrapper function igt_fit_modes_in_bw() - use igt_display_require_output() to ensure there is at least one display v3: - renamed the test - Removed reference to sysfs from comments (thanks Kamil) - Updated description to match the display part (thanks Kamil) - Moved from "display" to "heads". Our CI uses "headless" to refer to a DUT without display and it is shorter - renamed subtests for shorter names (thanks Kamil) - fixed comments style (thanks Kamil) - updated CC list - changed the order to test first with all heads off then with all heads on to prevent the need from powering on the heads at the end of the test (thanks Kamil) - removed snprintf from test names (thanks Kamil) - removed subtest group (thanks Kamil) - deleted kms_tests() and moved the code to igt_main (thanks Kamil) v2: - changed style of comparison to NULL - moved to a separate patch tests/kms_debugfs.c | 133 ++++++++++++++++++++++++++++++++++++++++++++ tests/meson.build | 1 + 2 files changed, 134 insertions(+) create mode 100644 tests/kms_debugfs.c diff --git a/tests/kms_debugfs.c b/tests/kms_debugfs.c new file mode 100644 index 000000000..f8a3360e6 --- /dev/null +++ b/tests/kms_debugfs.c @@ -0,0 +1,133 @@ +// SPDX-License-Identifier: MIT +/* + * Copyright © 2025 Intel Corporation + */ + +#include "igt.h" +#include "igt_debugfs.h" +#include "igt_dir.h" + +/** + * TEST: kms debugfs test + * Description: Read entries from debugfs with all displays on and with + * all displays off. + * + * Category: Core + * Mega feature: General Core features + * Sub-category: uapi + * Functionality: debugfs + * Feature: core + * Test category: uapi + * + * SUBTEST: display-off-read-all + * Description: Read all debugfs entries with display off. + * + * SUBTEST: display-on-read-all + * Description: Read all debugfs entries with display on. + */ + +/** + * igt_display_all_on: Try to turn on all displays + * @display: pointer to the igt_display structure + * + * Returns: void + */ +static void igt_display_all_on(igt_display_t *display) +{ + struct igt_fb fb[IGT_MAX_PIPES]; + enum pipe pipe; + + /* try to light all pipes */ + 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; + } + } + + /* Skip if bandwidth is insufficient for all simultaneous displays */ + igt_require(igt_fit_modes_in_bw(display)); +} + +/** + * igt_display_all_off: Try to turn off all displays + * @display: pointer to the igt_display structure + * + * 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); +} + +IGT_TEST_DESCRIPTION("Read entries from debugfs with display on/off."); + +igt_main +{ + int debugfs = -1; + igt_display_t *display; + int fd = -1; + + igt_fixture { + fd = drm_open_driver_master(DRIVER_ANY); + debugfs = igt_debugfs_dir(fd); + igt_require(debugfs >= 0); + + kmstest_set_vt_graphics_mode(); + + display = calloc(1, sizeof(*display)); + igt_display_require(display, fd); + + /* Make sure we have at least one output connected */ + igt_display_require_output(display); + } + + igt_subtest("display-off-read-all") { + igt_display_all_off(display); + + igt_dir_process_files_simple(debugfs); + } + + igt_subtest("display-on-read-all") { + /* try to light all pipes */ + igt_display_all_on(display); + + igt_dir_process_files_simple(debugfs); + } + + igt_fixture { + igt_display_fini(display); + close(debugfs); + drm_close_driver(fd); + } +} diff --git a/tests/meson.build b/tests/meson.build index 16c699bba..568e7db00 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -29,6 +29,7 @@ test_progs = [ 'kms_cursor_crc', 'kms_cursor_edge_walk', 'kms_cursor_legacy', + 'kms_debugfs', 'kms_dither', 'kms_display_modes', 'kms_dp_aux_dev', -- 2.43.0 ^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [PATCH v6 i-g-t 3/6] tests: Add kms_debugfs 2025-07-16 9:36 ` [PATCH v6 i-g-t 3/6] tests: Add kms_debugfs Peter Senna Tschudin @ 2025-07-16 15:00 ` Rodrigo Vivi 2025-07-18 15:55 ` Kamil Konieczny 1 sibling, 0 replies; 15+ messages in thread From: Rodrigo Vivi @ 2025-07-16 15:00 UTC (permalink / raw) To: Peter Senna Tschudin Cc: igt-dev, kamil.konieczny, katarzyna.piecielska, zbigniew.kempczynski, michal.wajdeczko, karthik.b.s, ewelina.musial On Wed, Jul 16, 2025 at 11:36:51AM +0200, Peter Senna Tschudin wrote: > Introduce kms_debugfs that is expected to work with any GPU, not limited > to i915 and Xe. The test powers off all available displays before > reading debugfs files, and then powers on all displays before reading > the files again. > > Cc: kamil.konieczny@linux.intel.com > Cc: katarzyna.piecielska@intel.com > Cc: zbigniew.kempczynski@intel.com > Cc: michal.wajdeczko@intel.com > Cc: karthik.b.s@intel.com > Cc: ewelina.musial@intel.com > Signed-off-by: Peter Senna Tschudin <peter.senna@linux.intel.com> > --- > v6: > - use the new igt_fit_modes_in_bw() > > v5: > - use igt_dir_process_files_simple() > > v4: > - change test name to kms_debugfs > - use the wrapper function igt_fit_modes_in_bw() > - use igt_display_require_output() to ensure there is at least one display > > v3: > - renamed the test > - Removed reference to sysfs from comments (thanks Kamil) > - Updated description to match the display part (thanks Kamil) > - Moved from "display" to "heads". Our CI uses "headless" to refer > to a DUT without display and it is shorter > - renamed subtests for shorter names (thanks Kamil) > - fixed comments style (thanks Kamil) > - updated CC list > - changed the order to test first with all heads off then with all heads on > to prevent the need from powering on the heads at the end of the test > (thanks Kamil) > - removed snprintf from test names (thanks Kamil) > - removed subtest group (thanks Kamil) > - deleted kms_tests() and moved the code to igt_main (thanks Kamil) > > v2: > - changed style of comparison to NULL > - moved to a separate patch > > tests/kms_debugfs.c | 133 ++++++++++++++++++++++++++++++++++++++++++++ > tests/meson.build | 1 + > 2 files changed, 134 insertions(+) > create mode 100644 tests/kms_debugfs.c > > diff --git a/tests/kms_debugfs.c b/tests/kms_debugfs.c > new file mode 100644 > index 000000000..f8a3360e6 > --- /dev/null > +++ b/tests/kms_debugfs.c > @@ -0,0 +1,133 @@ > +// SPDX-License-Identifier: MIT > +/* > + * Copyright © 2025 Intel Corporation > + */ > + > +#include "igt.h" > +#include "igt_debugfs.h" > +#include "igt_dir.h" > + > +/** > + * TEST: kms debugfs test > + * Description: Read entries from debugfs with all displays on and with > + * all displays off. > + * > + * Category: Core > + * Mega feature: General Core features > + * Sub-category: uapi > + * Functionality: debugfs > + * Feature: core > + * Test category: uapi > + * > + * SUBTEST: display-off-read-all > + * Description: Read all debugfs entries with display off. > + * > + * SUBTEST: display-on-read-all > + * Description: Read all debugfs entries with display on. > + */ > + > +/** > + * igt_display_all_on: Try to turn on all displays > + * @display: pointer to the igt_display structure > + * > + * Returns: void > + */ > +static void igt_display_all_on(igt_display_t *display) > +{ > + struct igt_fb fb[IGT_MAX_PIPES]; > + enum pipe pipe; > + > + /* try to light all pipes */ > + 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; > + } > + } > + > + /* Skip if bandwidth is insufficient for all simultaneous displays */ > + igt_require(igt_fit_modes_in_bw(display)); > +} > + > +/** > + * igt_display_all_off: Try to turn off all displays > + * @display: pointer to the igt_display structure > + * > + * 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); I wonder if something here would be different then doing dpms off like xe_pm does... perhaps we need 2 different cases? anyway, this patch looks correct to me: Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> since series is entirely reviewed now, I'm about to push this as is and if we find out that this and dpms off are worth exploring we can add as a follow up. > +} > + > +IGT_TEST_DESCRIPTION("Read entries from debugfs with display on/off."); > + > +igt_main > +{ > + int debugfs = -1; > + igt_display_t *display; > + int fd = -1; > + > + igt_fixture { > + fd = drm_open_driver_master(DRIVER_ANY); > + debugfs = igt_debugfs_dir(fd); > + igt_require(debugfs >= 0); > + > + kmstest_set_vt_graphics_mode(); > + > + display = calloc(1, sizeof(*display)); > + igt_display_require(display, fd); > + > + /* Make sure we have at least one output connected */ > + igt_display_require_output(display); > + } > + > + igt_subtest("display-off-read-all") { > + igt_display_all_off(display); > + > + igt_dir_process_files_simple(debugfs); > + } > + > + igt_subtest("display-on-read-all") { > + /* try to light all pipes */ > + igt_display_all_on(display); > + > + igt_dir_process_files_simple(debugfs); > + } > + > + igt_fixture { > + igt_display_fini(display); > + close(debugfs); > + drm_close_driver(fd); > + } > +} > diff --git a/tests/meson.build b/tests/meson.build > index 16c699bba..568e7db00 100644 > --- a/tests/meson.build > +++ b/tests/meson.build > @@ -29,6 +29,7 @@ test_progs = [ > 'kms_cursor_crc', > 'kms_cursor_edge_walk', > 'kms_cursor_legacy', > + 'kms_debugfs', > 'kms_dither', > 'kms_display_modes', > 'kms_dp_aux_dev', > -- > 2.43.0 > ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH v6 i-g-t 3/6] tests: Add kms_debugfs 2025-07-16 9:36 ` [PATCH v6 i-g-t 3/6] tests: Add kms_debugfs Peter Senna Tschudin 2025-07-16 15:00 ` Rodrigo Vivi @ 2025-07-18 15:55 ` Kamil Konieczny 1 sibling, 0 replies; 15+ messages in thread From: Kamil Konieczny @ 2025-07-18 15:55 UTC (permalink / raw) To: Peter Senna Tschudin Cc: Rodrigo Vivi, igt-dev, katarzyna.piecielska, zbigniew.kempczynski, michal.wajdeczko, karthik.b.s, ewelina.musial Hi Peter, On 2025-07-16 at 11:36:51 +0200, Peter Senna Tschudin wrote: > Introduce kms_debugfs that is expected to work with any GPU, not limited > to i915 and Xe. The test powers off all available displays before > reading debugfs files, and then powers on all displays before reading > the files again. > > Cc: kamil.konieczny@linux.intel.com > Cc: katarzyna.piecielska@intel.com > Cc: zbigniew.kempczynski@intel.com > Cc: michal.wajdeczko@intel.com > Cc: karthik.b.s@intel.com > Cc: ewelina.musial@intel.com > Signed-off-by: Peter Senna Tschudin <peter.senna@linux.intel.com> > --- > v6: > - use the new igt_fit_modes_in_bw() > > v5: > - use igt_dir_process_files_simple() > > v4: > - change test name to kms_debugfs > - use the wrapper function igt_fit_modes_in_bw() > - use igt_display_require_output() to ensure there is at least one display > > v3: > - renamed the test > - Removed reference to sysfs from comments (thanks Kamil) > - Updated description to match the display part (thanks Kamil) > - Moved from "display" to "heads". Our CI uses "headless" to refer > to a DUT without display and it is shorter > - renamed subtests for shorter names (thanks Kamil) > - fixed comments style (thanks Kamil) > - updated CC list > - changed the order to test first with all heads off then with all heads on > to prevent the need from powering on the heads at the end of the test > (thanks Kamil) > - removed snprintf from test names (thanks Kamil) > - removed subtest group (thanks Kamil) > - deleted kms_tests() and moved the code to igt_main (thanks Kamil) > > v2: > - changed style of comparison to NULL > - moved to a separate patch > > tests/kms_debugfs.c | 133 ++++++++++++++++++++++++++++++++++++++++++++ > tests/meson.build | 1 + > 2 files changed, 134 insertions(+) > create mode 100644 tests/kms_debugfs.c > > diff --git a/tests/kms_debugfs.c b/tests/kms_debugfs.c > new file mode 100644 > index 000000000..f8a3360e6 > --- /dev/null > +++ b/tests/kms_debugfs.c > @@ -0,0 +1,133 @@ > +// SPDX-License-Identifier: MIT > +/* > + * Copyright © 2025 Intel Corporation > + */ > + > +#include "igt.h" > +#include "igt_debugfs.h" > +#include "igt_dir.h" > + > +/** > + * TEST: kms debugfs test > + * Description: Read entries from debugfs with all displays on and with > + * all displays off. > + * > + * Category: Core > + * Mega feature: General Core features > + * Sub-category: uapi > + * Functionality: debugfs > + * Feature: core > + * Test category: uapi > + * > + * SUBTEST: display-off-read-all > + * Description: Read all debugfs entries with display off. > + * > + * SUBTEST: display-on-read-all > + * Description: Read all debugfs entries with display on. > + */ > + > +/** > + * igt_display_all_on: Try to turn on all displays > + * @display: pointer to the igt_display structure > + * > + * Returns: void > + */ > +static void igt_display_all_on(igt_display_t *display) > +{ > + struct igt_fb fb[IGT_MAX_PIPES]; > + enum pipe pipe; > + > + /* try to light all pipes */ > + 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; > + } > + } > + > + /* Skip if bandwidth is insufficient for all simultaneous displays */ > + igt_require(igt_fit_modes_in_bw(display)); > +} > + > +/** > + * igt_display_all_off: Try to turn off all displays > + * @display: pointer to the igt_display structure > + * > + * 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); > +} > + > +IGT_TEST_DESCRIPTION("Read entries from debugfs with display on/off."); > + > +igt_main > +{ > + int debugfs = -1; > + igt_display_t *display; > + int fd = -1; > + > + igt_fixture { > + fd = drm_open_driver_master(DRIVER_ANY); > + debugfs = igt_debugfs_dir(fd); > + igt_require(debugfs >= 0); > + > + kmstest_set_vt_graphics_mode(); > + > + display = calloc(1, sizeof(*display)); > + igt_display_require(display, fd); > + > + /* Make sure we have at least one output connected */ > + igt_display_require_output(display); > + } > + > + igt_subtest("display-off-read-all") { > + igt_display_all_off(display); > + > + igt_dir_process_files_simple(debugfs); > + } > + > + igt_subtest("display-on-read-all") { > + /* try to light all pipes */ > + igt_display_all_on(display); > + > + igt_dir_process_files_simple(debugfs); > + } > + > + igt_fixture { > + igt_display_fini(display); Missing free() here: free(display); Regards, Kamil > + close(debugfs); > + drm_close_driver(fd); > + } > +} > diff --git a/tests/meson.build b/tests/meson.build > index 16c699bba..568e7db00 100644 > --- a/tests/meson.build > +++ b/tests/meson.build > @@ -29,6 +29,7 @@ test_progs = [ > 'kms_cursor_crc', > 'kms_cursor_edge_walk', > 'kms_cursor_legacy', > + 'kms_debugfs', > 'kms_dither', > 'kms_display_modes', > 'kms_dp_aux_dev', > -- > 2.43.0 > ^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH v6 i-g-t 4/6] tests: Add core_sysfs 2025-07-16 9:36 [PATCH v6 i-g-t 0/6] Replace intel_sysfs_debugfs Peter Senna Tschudin ` (2 preceding siblings ...) 2025-07-16 9:36 ` [PATCH v6 i-g-t 3/6] tests: Add kms_debugfs Peter Senna Tschudin @ 2025-07-16 9:36 ` Peter Senna Tschudin 2025-07-16 9:36 ` [PATCH v6 i-g-t 5/6] tests: Add xe_debugfs Peter Senna Tschudin ` (6 subsequent siblings) 10 siblings, 0 replies; 15+ messages in thread From: Peter Senna Tschudin @ 2025-07-16 9:36 UTC (permalink / raw) To: igt-dev Cc: Peter Senna Tschudin, kamil.konieczny, katarzyna.piecielska, zbigniew.kempczynski, michal.wajdeczko, karthik.b.s, 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: kamil.konieczny@linux.intel.com Cc: katarzyna.piecielska@intel.com Cc: zbigniew.kempczynski@intel.com Cc: michal.wajdeczko@intel.com Cc: karthik.b.s@intel.com Cc: ewelina.musial@intel.com Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> Signed-off-by: Peter Senna Tschudin <peter.senna@linux.intel.com> --- v6: - unchanged from v5 v5: - use igt_dir_process_files_simple() v4: - unchanged from v3 v3: - removed "sysfs" from the name of subtest (Thanks Michal Wajdeczko) v2: - changed style of comparison to NULL tests/core_sysfs.c | 48 ++++++++++++++++++++++ tests/intel-ci/i915.fast-feedback.testlist | 1 + tests/intel-ci/xe-fast-feedback.testlist | 1 + tests/meson.build | 1 + 4 files changed, 51 insertions(+) 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..c43008981 --- /dev/null +++ b/tests/core_sysfs.c @@ -0,0 +1,48 @@ +// SPDX-License-Identifier: MIT +/* + * Copyright © 2025 Intel Corporation + */ + +#include "igt.h" +#include "igt_dir.h" +#include "igt_sysfs.h" + +/** + * 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: 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_fixture { + fd = drm_open_driver_master(DRIVER_ANY); + sysfs = igt_sysfs_open(fd); + igt_require(sysfs >= 0); + + kmstest_set_vt_graphics_mode(); + } + + igt_describe("Read all entries from sysfs path."); + igt_subtest("read-all-entries") + igt_dir_process_files_simple(sysfs); + + igt_fixture { + close(sysfs); + drm_close_driver(fd); + } +} diff --git a/tests/intel-ci/i915.fast-feedback.testlist b/tests/intel-ci/i915.fast-feedback.testlist index 3ec1b95cf..5d4d101ef 100644 --- a/tests/intel-ci/i915.fast-feedback.testlist +++ b/tests/intel-ci/i915.fast-feedback.testlist @@ -4,6 +4,7 @@ igt@i915_module_load@load # Keep alphabetically sorted by default igt@core_auth@basic-auth igt@core_debugfs@read-all-entries +igt@core_sysfs@read-all-entries igt@fbdev@eof igt@fbdev@info igt@fbdev@nullptr diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist index ac3177ae9..a5f799f6b 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@read-all-entries +igt@core_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 568e7db00..532bc9071 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -7,6 +7,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] 15+ messages in thread
* [PATCH v6 i-g-t 5/6] tests: Add xe_debugfs 2025-07-16 9:36 [PATCH v6 i-g-t 0/6] Replace intel_sysfs_debugfs Peter Senna Tschudin ` (3 preceding siblings ...) 2025-07-16 9:36 ` [PATCH v6 i-g-t 4/6] tests: Add core_sysfs Peter Senna Tschudin @ 2025-07-16 9:36 ` Peter Senna Tschudin 2025-07-16 9:36 ` [PATCH v6 i-g-t 6/6] tests/intel: Remove intel_sysfs_debugfs Peter Senna Tschudin ` (5 subsequent siblings) 10 siblings, 0 replies; 15+ messages in thread From: Peter Senna Tschudin @ 2025-07-16 9:36 UTC (permalink / raw) To: igt-dev Cc: Peter Senna Tschudin, kamil.konieczny, katarzyna.piecielska, zbigniew.kempczynski, michal.wajdeczko, karthik.b.s, ewelina.musial, Rodrigo Vivi 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: kamil.konieczny@linux.intel.com Cc: katarzyna.piecielska@intel.com Cc: zbigniew.kempczynski@intel.com Cc: michal.wajdeczko@intel.com Cc: karthik.b.s@intel.com Cc: ewelina.musial@intel.com Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> Signed-off-by: Peter Senna Tschudin <peter.senna@linux.intel.com> --- v6: - unchanged from v5 v5: - unchanged from v4 v4: - unchanged from v3 v3: - unchanged from v2 v2: - changed style of comparison to NULL tests/intel-ci/xe-fast-feedback.testlist | 2 + tests/intel/xe_debugfs.c | 207 +++++++++++++++++++++++ tests/meson.build | 1 + 3 files changed, 210 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 a5f799f6b..c52f08953 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..100504713 --- /dev/null +++ b/tests/intel/xe_debugfs.c @@ -0,0 +1,207 @@ +// 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 532bc9071..80c4b286b 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -284,6 +284,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] 15+ messages in thread
* [PATCH v6 i-g-t 6/6] tests/intel: Remove intel_sysfs_debugfs 2025-07-16 9:36 [PATCH v6 i-g-t 0/6] Replace intel_sysfs_debugfs Peter Senna Tschudin ` (4 preceding siblings ...) 2025-07-16 9:36 ` [PATCH v6 i-g-t 5/6] tests: Add xe_debugfs Peter Senna Tschudin @ 2025-07-16 9:36 ` Peter Senna Tschudin 2025-07-16 14:23 ` ✓ i915.CI.BAT: success for Replace intel_sysfs_debugfs Patchwork ` (4 subsequent siblings) 10 siblings, 0 replies; 15+ messages in thread From: Peter Senna Tschudin @ 2025-07-16 9:36 UTC (permalink / raw) To: igt-dev Cc: Peter Senna Tschudin, kamil.konieczny, katarzyna.piecielska, zbigniew.kempczynski, michal.wajdeczko, karthik.b.s, ewelina.musial, Rodrigo Vivi 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: kamil.konieczny@linux.intel.com Cc: katarzyna.piecielska@intel.com Cc: zbigniew.kempczynski@intel.com Cc: michal.wajdeczko@intel.com Cc: karthik.b.s@intel.com Cc: ewelina.musial@intel.com Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> Signed-off-by: Peter Senna Tschudin <peter.senna@linux.intel.com> --- v6: - Use the new file names for the testlists v5: - unchanged from v4 v4: - unchanged from v3 v3: - unchanged from v2 tests/intel-ci/i915.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/i915.fast-feedback.testlist b/tests/intel-ci/i915.fast-feedback.testlist index 5d4d101ef..2799bbaa5 100644 --- a/tests/intel-ci/i915.fast-feedback.testlist +++ b/tests/intel-ci/i915.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 c52f08953..017e3ba2a 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@read-all-entries igt@core_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 80c4b286b..5c01c64e9 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -87,7 +87,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] 15+ messages in thread
* ✓ i915.CI.BAT: success for Replace intel_sysfs_debugfs 2025-07-16 9:36 [PATCH v6 i-g-t 0/6] Replace intel_sysfs_debugfs Peter Senna Tschudin ` (5 preceding siblings ...) 2025-07-16 9:36 ` [PATCH v6 i-g-t 6/6] tests/intel: Remove intel_sysfs_debugfs Peter Senna Tschudin @ 2025-07-16 14:23 ` Patchwork 2025-07-16 15:48 ` ✓ Xe.CI.BAT: " Patchwork ` (3 subsequent siblings) 10 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2025-07-16 14:23 UTC (permalink / raw) To: Peter Senna Tschudin; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4090 bytes --] == Series Details == Series: Replace intel_sysfs_debugfs URL : https://patchwork.freedesktop.org/series/151696/ State : success == Summary == CI Bug Log - changes from IGT_8461 -> IGTPW_13481 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/index.html Participating hosts (45 -> 44) ------------------------------ Missing (1): fi-snb-2520m New tests --------- New tests have been introduced between IGT_8461 and IGTPW_13481: ### New IGT tests (2) ### * igt@core_debugfs@read-all-entries: - Statuses : 43 pass(s) - Exec time: [0.0, 0.14] s * igt@core_sysfs@read-all-entries: - Statuses : 43 pass(s) - Exec time: [0.0, 0.03] s Known issues ------------ Here are the changes found in IGTPW_13481 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@dmabuf@all-tests: - bat-apl-1: [PASS][1] -> [ABORT][2] ([i915#12904]) +1 other test abort [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/bat-apl-1/igt@dmabuf@all-tests.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/bat-apl-1/igt@dmabuf@all-tests.html * igt@i915_selftest@live@mman: - bat-atsm-1: NOTRUN -> [DMESG-FAIL][3] ([i915#13929]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/bat-atsm-1/igt@i915_selftest@live@mman.html #### Possible fixes #### * igt@i915_selftest@live: - bat-mtlp-8: [DMESG-FAIL][4] ([i915#12061]) -> [PASS][5] +1 other test pass [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/bat-mtlp-8/igt@i915_selftest@live.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/bat-mtlp-8/igt@i915_selftest@live.html * igt@i915_selftest@live@requests: - bat-atsm-1: [INCOMPLETE][6] ([i915#14564] / [i915#14566]) -> [PASS][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/bat-atsm-1/igt@i915_selftest@live@requests.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/bat-atsm-1/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@workarounds: - bat-arlh-3: [DMESG-FAIL][8] ([i915#12061]) -> [PASS][9] +1 other test pass [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/bat-arlh-3/igt@i915_selftest@live@workarounds.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/bat-arlh-3/igt@i915_selftest@live@workarounds.html - bat-dg2-14: [DMESG-FAIL][10] ([i915#12061]) -> [PASS][11] +1 other test pass [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/bat-dg2-14/igt@i915_selftest@live@workarounds.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/bat-dg2-14/igt@i915_selftest@live@workarounds.html #### Warnings #### * igt@i915_selftest@live: - bat-atsm-1: [INCOMPLETE][12] ([i915#12061]) -> [DMESG-FAIL][13] ([i915#12061] / [i915#13929]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/bat-atsm-1/igt@i915_selftest@live.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/bat-atsm-1/igt@i915_selftest@live.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904 [i915#13929]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13929 [i915#14564]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14564 [i915#14566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14566 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8461 -> IGTPW_13481 CI-20190529: 20190529 CI_DRM_16875: 3b965bd54a93adbf5520b143254ecb10b9a11776 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_13481: 90006a1ec88a19c55f0b08c6b3a592f181abdc82 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8461: 873912f2353ad861a172f6c787c054f934aee71d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/index.html [-- Attachment #2: Type: text/html, Size: 5270 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
* ✓ Xe.CI.BAT: success for Replace intel_sysfs_debugfs 2025-07-16 9:36 [PATCH v6 i-g-t 0/6] Replace intel_sysfs_debugfs Peter Senna Tschudin ` (6 preceding siblings ...) 2025-07-16 14:23 ` ✓ i915.CI.BAT: success for Replace intel_sysfs_debugfs Patchwork @ 2025-07-16 15:48 ` Patchwork 2025-07-17 6:39 ` ✓ i915.CI.Full: " Patchwork ` (2 subsequent siblings) 10 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2025-07-16 15:48 UTC (permalink / raw) To: Peter Senna Tschudin; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2388 bytes --] == Series Details == Series: Replace intel_sysfs_debugfs URL : https://patchwork.freedesktop.org/series/151696/ State : success == Summary == CI Bug Log - changes from XEIGT_8461_BAT -> XEIGTPW_13481_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (7 -> 7) ------------------------------ No changes in participating hosts New tests --------- New tests have been introduced between XEIGT_8461_BAT and XEIGTPW_13481_BAT: ### New IGT tests (4) ### * igt@core_debugfs@read-all-entries: - Statuses : 7 pass(s) - Exec time: [0.0, 0.12] s * igt@core_sysfs@read-all-entries: - Statuses : 7 pass(s) - Exec time: [0.00] s * igt@xe_debugfs@xe-base: - Statuses : 7 pass(s) - Exec time: [0.00, 0.01] s * igt@xe_debugfs@xe-forcewake: - Statuses : 7 pass(s) - Exec time: [0.0, 0.00] s Known issues ------------ Here are the changes found in XEIGTPW_13481_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_flip@basic-plain-flip: - bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#4543]) +1 other test dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8461/bat-adlp-7/igt@kms_flip@basic-plain-flip.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/bat-adlp-7/igt@kms_flip@basic-plain-flip.html #### Possible fixes #### * igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1: - bat-adlp-7: [DMESG-WARN][3] ([Intel XE#4543]) -> [PASS][4] +1 other test pass [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8461/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1.html [Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543 Build changes ------------- * IGT: IGT_8461 -> IGTPW_13481 IGTPW_13481: 90006a1ec88a19c55f0b08c6b3a592f181abdc82 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8461: 873912f2353ad861a172f6c787c054f934aee71d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-3422-8a27005ec6862de0c21ad3b72db77a9796bb5b70: 8a27005ec6862de0c21ad3b72db77a9796bb5b70 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/index.html [-- Attachment #2: Type: text/html, Size: 3177 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
* ✓ i915.CI.Full: success for Replace intel_sysfs_debugfs 2025-07-16 9:36 [PATCH v6 i-g-t 0/6] Replace intel_sysfs_debugfs Peter Senna Tschudin ` (7 preceding siblings ...) 2025-07-16 15:48 ` ✓ Xe.CI.BAT: " Patchwork @ 2025-07-17 6:39 ` Patchwork 2025-07-17 8:09 ` ✗ Xe.CI.Full: failure " Patchwork 2025-07-17 11:37 ` Patchwork 10 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2025-07-17 6:39 UTC (permalink / raw) To: Peter Senna Tschudin; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 161998 bytes --] == Series Details == Series: Replace intel_sysfs_debugfs URL : https://patchwork.freedesktop.org/series/151696/ State : success == Summary == CI Bug Log - changes from IGT_8461_full -> IGTPW_13481_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/index.html Participating hosts (11 -> 11) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in IGTPW_13481_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@device_reset@cold-reset-bound: - shard-tglu-1: NOTRUN -> [SKIP][1] ([i915#11078]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-1/igt@device_reset@cold-reset-bound.html * igt@device_reset@unbind-cold-reset-rebind: - shard-tglu: NOTRUN -> [SKIP][2] ([i915#11078]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-10/igt@device_reset@unbind-cold-reset-rebind.html * igt@fbdev@eof: - shard-rkl: [PASS][3] -> [SKIP][4] ([i915#14544] / [i915#2582]) +2 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-8/igt@fbdev@eof.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@fbdev@eof.html * igt@gem_basic@multigpu-create-close: - shard-tglu-1: NOTRUN -> [SKIP][5] ([i915#7697]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-1/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@block-multicopy-inplace: - shard-rkl: NOTRUN -> [SKIP][6] ([i915#3555] / [i915#9323]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-2/igt@gem_ccs@block-multicopy-inplace.html - shard-dg1: NOTRUN -> [SKIP][7] ([i915#3555] / [i915#9323]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg1-12/igt@gem_ccs@block-multicopy-inplace.html - shard-tglu: NOTRUN -> [SKIP][8] ([i915#3555] / [i915#9323]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-6/igt@gem_ccs@block-multicopy-inplace.html - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#3555] / [i915#9323]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-mtlp-1/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@suspend-resume: - shard-tglu-1: NOTRUN -> [SKIP][10] ([i915#9323]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-1/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][11] ([i915#12392] / [i915#13356]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-3/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html * igt@gem_close_race@multigpu-basic-process: - shard-tglu: NOTRUN -> [SKIP][12] ([i915#7697]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-5/igt@gem_close_race@multigpu-basic-process.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#7697]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-4/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-big: - shard-dg2-9: NOTRUN -> [ABORT][14] ([i915#13427]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-9/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-tglu: NOTRUN -> [SKIP][15] ([i915#6335]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-8/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_create@create-ext-set-pat: - shard-tglu-1: NOTRUN -> [SKIP][16] ([i915#8562]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-1/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_persistence@engines-hang: - shard-snb: NOTRUN -> [SKIP][17] ([i915#1099]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-snb4/igt@gem_ctx_persistence@engines-hang.html * igt@gem_ctx_persistence@heartbeat-close: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#8555]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-5/igt@gem_ctx_persistence@heartbeat-close.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt: - shard-dg2: NOTRUN -> [SKIP][19] ([i915#5882]) +7 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-11/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html * igt@gem_ctx_sseu@invalid-sseu: - shard-tglu-1: NOTRUN -> [SKIP][20] ([i915#280]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-1/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_ctx_sseu@mmap-args: - shard-tglu: NOTRUN -> [SKIP][21] ([i915#280]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-7/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@kms: - shard-rkl: [PASS][22] -> [DMESG-WARN][23] ([i915#13363]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-4/igt@gem_eio@kms.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-8/igt@gem_eio@kms.html - shard-tglu: [PASS][24] -> [DMESG-WARN][25] ([i915#13363]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-tglu-3/igt@gem_eio@kms.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-10/igt@gem_eio@kms.html * igt@gem_exec_balancer@bonded-true-hang: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#4812]) +2 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-8/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_balancer@parallel-bb-first: - shard-rkl: NOTRUN -> [SKIP][27] ([i915#4525]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-5/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_balancer@parallel-ordering: - shard-tglu-1: NOTRUN -> [SKIP][28] ([i915#4525]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-1/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_big@single: - shard-tglu: NOTRUN -> [ABORT][29] ([i915#11713]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-3/igt@gem_exec_big@single.html * igt@gem_exec_fence@submit3: - shard-mtlp: NOTRUN -> [SKIP][30] ([i915#4812]) +2 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-mtlp-1/igt@gem_exec_fence@submit3.html * igt@gem_exec_fence@submit67: - shard-dg1: NOTRUN -> [SKIP][31] ([i915#4812]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg1-14/igt@gem_exec_fence@submit67.html * igt@gem_exec_flush@basic-batch-kernel-default-uc: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#3539] / [i915#4852]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-1/igt@gem_exec_flush@basic-batch-kernel-default-uc.html - shard-dg1: NOTRUN -> [SKIP][33] ([i915#3539] / [i915#4852]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg1-17/igt@gem_exec_flush@basic-batch-kernel-default-uc.html * igt@gem_exec_flush@basic-uc-prw-default: - shard-dg2-9: NOTRUN -> [SKIP][34] ([i915#3539]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-9/igt@gem_exec_flush@basic-uc-prw-default.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#3539]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-10/igt@gem_exec_flush@basic-uc-set-default.html - shard-dg1: NOTRUN -> [SKIP][36] ([i915#3539]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg1-14/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_reloc@basic-cpu-noreloc: - shard-rkl: NOTRUN -> [SKIP][37] ([i915#3281]) +4 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-5/igt@gem_exec_reloc@basic-cpu-noreloc.html * igt@gem_exec_reloc@basic-gtt-cpu-active: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#3281]) +11 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-8/igt@gem_exec_reloc@basic-gtt-cpu-active.html - shard-dg1: NOTRUN -> [SKIP][39] ([i915#3281]) +2 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg1-13/igt@gem_exec_reloc@basic-gtt-cpu-active.html * igt@gem_exec_reloc@basic-wc-gtt: - shard-dg2-9: NOTRUN -> [SKIP][40] ([i915#3281]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-9/igt@gem_exec_reloc@basic-wc-gtt.html * igt@gem_exec_reloc@basic-write-cpu-active: - shard-mtlp: NOTRUN -> [SKIP][41] ([i915#3281]) +6 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-mtlp-7/igt@gem_exec_reloc@basic-write-cpu-active.html - shard-rkl: NOTRUN -> [SKIP][42] ([i915#14544] / [i915#3281]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@gem_exec_reloc@basic-write-cpu-active.html * igt@gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#4537] / [i915#4812]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-1/igt@gem_exec_schedule@reorder-wide.html * igt@gem_exec_suspend@basic-s3: - shard-glk: NOTRUN -> [INCOMPLETE][44] ([i915#11441] / [i915#13196]) +1 other test incomplete [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-glk9/igt@gem_exec_suspend@basic-s3.html * igt@gem_exec_suspend@basic-s4-devices: - shard-rkl: [PASS][45] -> [ABORT][46] ([i915#7975] / [i915#8213]) +1 other test abort [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-5/igt@gem_exec_suspend@basic-s4-devices.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-2/igt@gem_exec_suspend@basic-s4-devices.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4860]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-5/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-glk: NOTRUN -> [SKIP][48] ([i915#4613]) +4 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-glk6/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-tglu: NOTRUN -> [SKIP][49] ([i915#4613]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-8/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@parallel-random: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4613]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-mtlp-6/igt@gem_lmem_swapping@parallel-random.html * igt@gem_lmem_swapping@verify-random: - shard-tglu-1: NOTRUN -> [SKIP][51] ([i915#4613]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-1/igt@gem_lmem_swapping@verify-random.html * igt@gem_mmap@bad-offset: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#4083]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg1-12/igt@gem_mmap@bad-offset.html - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4083]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-mtlp-1/igt@gem_mmap@bad-offset.html * igt@gem_mmap_gtt@big-copy-xy: - shard-dg2-9: NOTRUN -> [SKIP][54] ([i915#4077]) +5 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-9/igt@gem_mmap_gtt@big-copy-xy.html * igt@gem_mmap_gtt@hang-user: - shard-dg1: NOTRUN -> [SKIP][55] ([i915#4077]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg1-14/igt@gem_mmap_gtt@hang-user.html * igt@gem_mmap_gtt@medium-copy-xy: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4077]) +8 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-3/igt@gem_mmap_gtt@medium-copy-xy.html * igt@gem_mmap_wc@close: - shard-dg2-9: NOTRUN -> [SKIP][57] ([i915#4083]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-9/igt@gem_mmap_wc@close.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4083]) +3 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-10/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_partial_pwrite_pread@reads-snoop: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#3282]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-mtlp-8/igt@gem_partial_pwrite_pread@reads-snoop.html * igt@gem_partial_pwrite_pread@write-display: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#3282]) +7 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-11/igt@gem_partial_pwrite_pread@write-display.html - shard-rkl: NOTRUN -> [SKIP][61] ([i915#14544] / [i915#3282]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@gem_partial_pwrite_pread@write-display.html * igt@gem_pxp@create-regular-context-2: - shard-rkl: [PASS][62] -> [TIMEOUT][63] ([i915#12917] / [i915#12964]) +1 other test timeout [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-8/igt@gem_pxp@create-regular-context-2.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@gem_pxp@create-regular-context-2.html * igt@gem_pxp@display-protected-crc: - shard-dg2-9: NOTRUN -> [SKIP][64] ([i915#4270]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-9/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-rkl: [PASS][65] -> [TIMEOUT][66] ([i915#12964]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-8/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-5/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-dg1: NOTRUN -> [SKIP][67] ([i915#4270]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg1-15/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#4270]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-10/igt@gem_pxp@reject-modify-context-protection-off-1.html - shard-rkl: NOTRUN -> [TIMEOUT][69] ([i915#12917] / [i915#12964]) +1 other test timeout [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-rkl: [PASS][70] -> [SKIP][71] ([i915#14544] / [i915#4270]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-8/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_readwrite@read-bad-handle: - shard-dg2-9: NOTRUN -> [SKIP][72] ([i915#3282]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-9/igt@gem_readwrite@read-bad-handle.html * igt@gem_render_copy@y-tiled-ccs-to-linear: - shard-dg2-9: NOTRUN -> [SKIP][73] ([i915#5190] / [i915#8428]) +2 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-9/igt@gem_render_copy@y-tiled-ccs-to-linear.html * igt@gem_render_copy@y-tiled-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#8428]) +2 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-mtlp-2/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html * igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#5190] / [i915#8428]) +6 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-5/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html * igt@gem_render_tiled_blits@basic: - shard-dg2-9: NOTRUN -> [SKIP][76] ([i915#4079]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-9/igt@gem_render_tiled_blits@basic.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#4079]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-11/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_softpin@evict-snoop: - shard-dg1: NOTRUN -> [SKIP][78] ([i915#4885]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg1-19/igt@gem_softpin@evict-snoop.html - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#4885]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-mtlp-7/igt@gem_softpin@evict-snoop.html - shard-dg2: NOTRUN -> [SKIP][80] ([i915#4885]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-11/igt@gem_softpin@evict-snoop.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#3297]) +3 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-11/igt@gem_userptr_blits@create-destroy-unsync.html - shard-rkl: NOTRUN -> [SKIP][82] ([i915#14544] / [i915#3297]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@gem_userptr_blits@create-destroy-unsync.html - shard-dg1: NOTRUN -> [SKIP][83] ([i915#3297]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg1-19/igt@gem_userptr_blits@create-destroy-unsync.html - shard-tglu: NOTRUN -> [SKIP][84] ([i915#3297]) +3 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-7/igt@gem_userptr_blits@create-destroy-unsync.html - shard-mtlp: NOTRUN -> [SKIP][85] ([i915#3297]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-mtlp-7/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg2-9: NOTRUN -> [SKIP][86] ([i915#3297] / [i915#4880]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-9/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-tglu-1: NOTRUN -> [SKIP][87] ([i915#3297]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-1/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@unsync-unmap: - shard-rkl: NOTRUN -> [SKIP][88] ([i915#3297]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-8/igt@gem_userptr_blits@unsync-unmap.html * igt@gem_workarounds@suspend-resume-context: - shard-glk: [PASS][89] -> [INCOMPLETE][90] ([i915#13356]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-glk6/igt@gem_workarounds@suspend-resume-context.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-glk6/igt@gem_workarounds@suspend-resume-context.html * igt@gen9_exec_parse@allowed-all: - shard-rkl: NOTRUN -> [SKIP][91] ([i915#2527]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-5/igt@gen9_exec_parse@allowed-all.html - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#2856]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-mtlp-6/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@allowed-single: - shard-dg1: NOTRUN -> [SKIP][93] ([i915#2527]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg1-18/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@basic-rejected: - shard-tglu: NOTRUN -> [SKIP][94] ([i915#2527] / [i915#2856]) +2 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-4/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@bb-start-far: - shard-tglu-1: NOTRUN -> [SKIP][95] ([i915#2527] / [i915#2856]) +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-1/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@bb-start-out: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#2856]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-6/igt@gen9_exec_parse@bb-start-out.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-dg2-9: NOTRUN -> [SKIP][97] ([i915#2856]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-9/igt@gen9_exec_parse@cmd-crossing-page.html * igt@i915_drm_fdinfo@busy-check-all: - shard-dg1: NOTRUN -> [SKIP][98] ([i915#11527]) +5 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg1-14/igt@i915_drm_fdinfo@busy-check-all.html * igt@i915_drm_fdinfo@busy-check-all@ccs0: - shard-mtlp: NOTRUN -> [SKIP][99] ([i915#11527]) +6 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-mtlp-5/igt@i915_drm_fdinfo@busy-check-all@ccs0.html * igt@i915_drm_fdinfo@busy-check-all@vecs0: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#11527]) +7 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-3/igt@i915_drm_fdinfo@busy-check-all@vecs0.html * igt@i915_drm_fdinfo@virtual-busy-all: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#14118]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-3/igt@i915_drm_fdinfo@virtual-busy-all.html * igt@i915_module_load@reload-no-display: - shard-dg2-9: NOTRUN -> [DMESG-WARN][102] ([i915#13029] / [i915#14545]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-9/igt@i915_module_load@reload-no-display.html * igt@i915_module_load@resize-bar: - shard-dg2: [PASS][103] -> [DMESG-WARN][104] ([i915#14545]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-dg2-8/igt@i915_module_load@resize-bar.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-4/igt@i915_module_load@resize-bar.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu: NOTRUN -> [WARN][105] ([i915#13790] / [i915#2681]) +1 other test warn [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rps@thresholds-idle-park: - shard-dg1: NOTRUN -> [SKIP][106] ([i915#11681]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg1-19/igt@i915_pm_rps@thresholds-idle-park.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-mtlp: NOTRUN -> [SKIP][107] ([i915#4077]) +2 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-mtlp-1/igt@i915_suspend@fence-restore-tiled2untiled.html - shard-glk: NOTRUN -> [INCOMPLETE][108] ([i915#4817]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-glk3/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@i915_suspend@sysfs-reader: - shard-glk11: NOTRUN -> [INCOMPLETE][109] ([i915#4817]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-glk11/igt@i915_suspend@sysfs-reader.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#5190]) +2 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#4212]) +2 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-5/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglu-1: NOTRUN -> [SKIP][112] ([i915#12454] / [i915#12712]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-1: - shard-rkl: [PASS][113] -> [DMESG-WARN][114] ([i915#12964]) +15 other tests dmesg-warn [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-7/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-1.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-7/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-1.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2-9: NOTRUN -> [SKIP][115] ([i915#12967] / [i915#6228]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-9/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2-9: NOTRUN -> [SKIP][116] ([i915#9531]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-9/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-tglu-1: NOTRUN -> [SKIP][117] ([i915#5286]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-1/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-addfb-size-overflow: - shard-rkl: NOTRUN -> [SKIP][118] ([i915#5286]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-8/igt@kms_big_fb@4-tiled-addfb-size-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-tglu: NOTRUN -> [SKIP][119] ([i915#5286]) +4 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][120] ([i915#4538] / [i915#5286]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [PASS][121] -> [FAIL][122] ([i915#5138]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-16bpp-rotate-0: - shard-glk11: NOTRUN -> [SKIP][123] +87 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-glk11/igt@kms_big_fb@x-tiled-16bpp-rotate-0.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#3638]) +1 other test skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg1-19/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#3638]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-8/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#4538] / [i915#5190]) +10 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][127] +8 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-dg2-9: NOTRUN -> [SKIP][128] ([i915#4538] / [i915#5190]) +2 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-9/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][129] ([i915#4538]) +1 other test skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg1-17/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_ccs@bad-rotation-90-y-tiled-ccs: - shard-dg2-9: NOTRUN -> [SKIP][130] ([i915#10307] / [i915#6095]) +14 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-9/igt@kms_ccs@bad-rotation-90-y-tiled-ccs.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs: - shard-tglu: NOTRUN -> [SKIP][131] ([i915#6095]) +44 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-8/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][132] ([i915#12313]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#12313]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][134] +411 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-glk9/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#6095]) +49 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][136] ([i915#6095]) +133 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg1-15/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-b-dp-3: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#6095]) +25 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-11/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-b-dp-3.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-mtlp: NOTRUN -> [SKIP][138] ([i915#12313]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-mtlp-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html - shard-rkl: NOTRUN -> [SKIP][139] ([i915#12313]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc@pipe-c-dp-3: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#10307] / [i915#6095]) +150 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-11/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc@pipe-c-dp-3.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#10307] / [i915#10434] / [i915#6095]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][142] ([i915#6095]) +34 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-1/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc: - shard-mtlp: NOTRUN -> [SKIP][143] ([i915#6095]) +24 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-mtlp-7/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][144] ([i915#14098] / [i915#6095]) +44 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-4/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2-9: NOTRUN -> [SKIP][145] ([i915#13784]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-9/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#13781]) +4 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-4/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#13783]) +3 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-8/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-dg1: NOTRUN -> [SKIP][148] ([i915#11151] / [i915#7828]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg1-17/igt@kms_chamelium_audio@hdmi-audio-edid.html - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#11151] / [i915#7828]) +2 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-mtlp-5/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-mtlp: NOTRUN -> [SKIP][150] +10 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-mtlp-3/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][151] +13 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-5/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#11151] / [i915#14544] / [i915#7828]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt@kms_chamelium_frames@hdmi-crc-multiple: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#11151] / [i915#7828]) +7 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-5/igt@kms_chamelium_frames@hdmi-crc-multiple.html * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-rkl: NOTRUN -> [SKIP][154] ([i915#11151] / [i915#7828]) +2 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-8/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html - shard-tglu-1: NOTRUN -> [SKIP][155] ([i915#11151] / [i915#7828]) +2 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-1/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt@kms_chamelium_hpd@vga-hpd-after-suspend: - shard-dg2-9: NOTRUN -> [SKIP][156] ([i915#11151] / [i915#7828]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-9/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html * igt@kms_chamelium_hpd@vga-hpd-without-ddc: - shard-tglu: NOTRUN -> [SKIP][157] ([i915#11151] / [i915#7828]) +6 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-6/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html * igt@kms_color@ctm-negative: - shard-rkl: [PASS][158] -> [SKIP][159] ([i915#12655] / [i915#14544]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-8/igt@kms_color@ctm-negative.html [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_color@ctm-negative.html * igt@kms_content_protection@atomic: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#7118] / [i915#9424]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-7/igt@kms_content_protection@atomic.html * igt@kms_content_protection@legacy@pipe-a-dp-3: - shard-dg2: NOTRUN -> [FAIL][161] ([i915#7173]) +1 other test fail [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-10/igt@kms_content_protection@legacy@pipe-a-dp-3.html * igt@kms_content_protection@type1: - shard-tglu-1: NOTRUN -> [SKIP][162] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-1/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-32x10: - shard-tglu: NOTRUN -> [SKIP][163] ([i915#3555]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-6/igt@kms_cursor_crc@cursor-offscreen-32x10.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-tglu: NOTRUN -> [SKIP][164] ([i915#13049]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-rkl: [PASS][165] -> [FAIL][166] ([i915#13566]) +1 other test fail [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-128x42.html [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-256x256: - shard-rkl: [PASS][167] -> [SKIP][168] ([i915#14544]) +55 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-256x256.html [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-256x256.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-tglu: [PASS][169] -> [FAIL][170] ([i915#13566]) +7 other tests fail [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-256x85.html [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-7/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2-9: NOTRUN -> [SKIP][171] ([i915#13049]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-9/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#13049]) +3 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-11/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#3555]) +2 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-11/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-tglu-1: NOTRUN -> [SKIP][174] ([i915#3555]) +3 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-rkl: NOTRUN -> [SKIP][175] ([i915#13049]) +1 other test skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-5/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html - shard-mtlp: NOTRUN -> [SKIP][176] ([i915#13049]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-mtlp-2/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-dg2-9: NOTRUN -> [SKIP][177] ([i915#3555]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-9/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-4: - shard-dg1: [PASS][178] -> [DMESG-WARN][179] ([i915#4423]) +2 other tests dmesg-warn [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-dg1-15/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-4.html [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg1-16/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-4.html * igt@kms_cursor_edge_walk@128x128-right-edge@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [DMESG-WARN][180] ([i915#12964]) +2 other tests dmesg-warn [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-2/igt@kms_cursor_edge_walk@128x128-right-edge@pipe-b-hdmi-a-1.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2-9: NOTRUN -> [SKIP][181] ([i915#4103] / [i915#4213]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-tglu: NOTRUN -> [SKIP][182] ([i915#4103]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@basic-flip-after-cursor-atomic: - shard-rkl: [PASS][183] -> [SKIP][184] ([i915#11190] / [i915#14544]) +1 other test skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-2/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html * igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size: - shard-glk11: NOTRUN -> [SKIP][185] ([i915#11190]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-glk11/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2-9: NOTRUN -> [SKIP][186] ([i915#13046] / [i915#5354]) +2 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-9/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#13046] / [i915#5354]) +5 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#9809]) +2 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-mtlp-7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-rkl: NOTRUN -> [FAIL][189] ([i915#2346]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-toggle: - shard-rkl: [PASS][190] -> [FAIL][191] ([i915#2346]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-2/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-5/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-tglu-1: NOTRUN -> [SKIP][192] ([i915#9067]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#4103] / [i915#4213]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#9833]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html - shard-rkl: NOTRUN -> [SKIP][195] ([i915#9723]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-7/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#3804]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dp_aux_dev: - shard-dg2: [PASS][197] -> [SKIP][198] ([i915#1257]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-dg2-11/igt@kms_dp_aux_dev.html [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-5/igt@kms_dp_aux_dev.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#13749]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-mtlp-8/igt@kms_dp_link_training@non-uhbr-sst.html - shard-dg2: [PASS][200] -> [SKIP][201] ([i915#13749]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-dg2-10/igt@kms_dp_link_training@non-uhbr-sst.html [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-6/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_dp_link_training@uhbr-sst: - shard-tglu-1: NOTRUN -> [SKIP][202] ([i915#13748]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-1/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dsc@dsc-with-formats: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#3555] / [i915#3840]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-6/igt@kms_dsc@dsc-with-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2-9: NOTRUN -> [SKIP][204] ([i915#3840] / [i915#9053]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-9/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-rkl: [PASS][205] -> [INCOMPLETE][206] ([i915#9878]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-8/igt@kms_fbcon_fbt@fbc-suspend.html [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-4/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr: - shard-tglu: NOTRUN -> [SKIP][207] ([i915#3469]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-6/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@display-2x: - shard-rkl: NOTRUN -> [SKIP][208] ([i915#1839]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-4/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@display-3x: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#1839]) +1 other test skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-6/igt@kms_feature_discovery@display-3x.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-tglu-1: NOTRUN -> [SKIP][210] ([i915#3637] / [i915#9934]) +2 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-1/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][211] ([i915#3637] / [i915#9934]) +2 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-10/igt@kms_flip@2x-blocking-absolute-wf_vblank.html - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#3637] / [i915#9934]) +3 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-mtlp-3/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg2-9: NOTRUN -> [SKIP][213] ([i915#9934]) +3 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-9/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible: - shard-dg1: NOTRUN -> [SKIP][214] ([i915#9934]) +2 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg1-15/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html - shard-tglu: NOTRUN -> [SKIP][215] ([i915#9934]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-6/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][216] ([i915#9934]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-mtlp-3/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html * igt@kms_flip@2x-flip-vs-modeset: - shard-rkl: NOTRUN -> [SKIP][217] ([i915#14544] / [i915#9934]) +1 other test skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#9934]) +8 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-11/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-rkl: NOTRUN -> [SKIP][219] ([i915#9934]) +2 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-8/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip@basic-flip-vs-dpms: - shard-rkl: [PASS][220] -> [SKIP][221] ([i915#14544] / [i915#3637]) +9 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-7/igt@kms_flip@basic-flip-vs-dpms.html [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_flip@basic-flip-vs-dpms.html * igt@kms_flip@flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#8381]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-mtlp-7/igt@kms_flip@flip-vs-fences.html - shard-dg2: NOTRUN -> [SKIP][223] ([i915#8381]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-5/igt@kms_flip@flip-vs-fences.html - shard-dg1: NOTRUN -> [SKIP][224] ([i915#8381]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg1-17/igt@kms_flip@flip-vs-fences.html * igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a4: - shard-dg1: NOTRUN -> [DMESG-WARN][225] ([i915#4423]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg1-16/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a4.html * igt@kms_flip@plain-flip-ts-check@d-hdmi-a1: - shard-tglu: [PASS][226] -> [FAIL][227] ([i915#14600]) +1 other test fail [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-tglu-6/igt@kms_flip@plain-flip-ts-check@d-hdmi-a1.html [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-2/igt@kms_flip@plain-flip-ts-check@d-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-rkl: NOTRUN -> [SKIP][228] ([i915#2672] / [i915#3555]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-tglu: NOTRUN -> [SKIP][229] ([i915#2672] / [i915#3555]) +1 other test skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html - shard-mtlp: NOTRUN -> [SKIP][230] ([i915#2672] / [i915#3555] / [i915#8813]) +3 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html - shard-dg2-9: NOTRUN -> [SKIP][231] ([i915#2672] / [i915#3555]) +1 other test skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html - shard-dg1: NOTRUN -> [SKIP][232] ([i915#2672] / [i915#3555]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg1-15/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-default-mode: - shard-mtlp: NOTRUN -> [SKIP][233] ([i915#2672] / [i915#8813]) +1 other test skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][234] ([i915#2587] / [i915#2672]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg1-15/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#2672] / [i915#3555]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html - shard-rkl: NOTRUN -> [SKIP][236] ([i915#14544] / [i915#3555]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-9: NOTRUN -> [SKIP][237] ([i915#2672] / [i915#3555] / [i915#5190]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2-9: NOTRUN -> [SKIP][238] ([i915#2672]) +2 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][239] ([i915#2672]) +2 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][240] ([i915#3555] / [i915#8810] / [i915#8813]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][241] ([i915#8810] / [i915#8813]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][242] ([i915#2672]) +2 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html - shard-tglu-1: NOTRUN -> [SKIP][243] ([i915#2587] / [i915#2672]) +1 other test skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][244] ([i915#2672] / [i915#3555]) +1 other test skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling: - shard-rkl: [PASS][245] -> [SKIP][246] ([i915#14544] / [i915#3555]) +3 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][247] ([i915#2587] / [i915#2672]) +1 other test skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite: - shard-rkl: [PASS][249] -> [SKIP][250] ([i915#14544] / [i915#1849] / [i915#5354]) +8 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu: - shard-dg2: [PASS][251] -> [FAIL][252] ([i915#6880]) +1 other test fail [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#5354]) +33 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][254] ([i915#1825]) +11 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][255] ([i915#8708]) +18 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][256] ([i915#8708]) +3 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-dg1: NOTRUN -> [SKIP][257] ([i915#3458]) +4 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][258] ([i915#3458]) +21 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html - shard-rkl: NOTRUN -> [SKIP][259] ([i915#3023]) +8 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt: - shard-dg2-9: NOTRUN -> [SKIP][260] ([i915#3458]) +3 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-9: NOTRUN -> [SKIP][261] ([i915#8708]) +5 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][262] ([i915#8708]) +5 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt: - shard-tglu-1: NOTRUN -> [SKIP][263] +42 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-rkl: NOTRUN -> [SKIP][264] ([i915#5439]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html - shard-dg1: NOTRUN -> [SKIP][265] ([i915#5439]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html - shard-tglu: NOTRUN -> [SKIP][266] ([i915#5439]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: NOTRUN -> [SKIP][267] ([i915#9766]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-4/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-dg2: NOTRUN -> [SKIP][268] ([i915#9766]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-3/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][269] ([i915#1825]) +11 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff: - shard-dg2-9: NOTRUN -> [SKIP][270] ([i915#5354]) +10 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][271] ([i915#14544] / [i915#1849] / [i915#5354]) +10 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html - shard-dg1: NOTRUN -> [SKIP][272] +6 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][273] +55 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt@kms_hdr@bpc-switch: - shard-tglu-1: NOTRUN -> [SKIP][274] ([i915#3555] / [i915#8228]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-1/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@bpc-switch-suspend: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#3555] / [i915#8228]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-1/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_invalid_mode@bad-vsync-end: - shard-rkl: [PASS][276] -> [SKIP][277] ([i915#14544] / [i915#3555] / [i915#8826]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-5/igt@kms_invalid_mode@bad-vsync-end.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_invalid_mode@bad-vsync-end.html * igt@kms_invalid_mode@uint-max-clock: - shard-rkl: NOTRUN -> [SKIP][278] ([i915#14544] / [i915#3555] / [i915#8826]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_invalid_mode@uint-max-clock.html * igt@kms_joiner@basic-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][279] ([i915#10656]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-1/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-dg2: NOTRUN -> [SKIP][280] ([i915#10656]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-11/igt@kms_joiner@invalid-modeset-big-joiner.html - shard-rkl: NOTRUN -> [SKIP][281] ([i915#10656] / [i915#14544]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_joiner@invalid-modeset-big-joiner.html - shard-mtlp: NOTRUN -> [SKIP][282] ([i915#10656]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-mtlp-7/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-tglu: NOTRUN -> [SKIP][283] ([i915#12388]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][284] ([i915#12339]) +1 other test skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-dg2-9: NOTRUN -> [SKIP][285] ([i915#13522]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-9/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2: NOTRUN -> [SKIP][286] ([i915#4816]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-rkl: NOTRUN -> [SKIP][287] ([i915#14544] / [i915#4070] / [i915#4816]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@legacy: - shard-tglu-1: NOTRUN -> [SKIP][288] ([i915#6301]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-1/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c: - shard-dg2-9: NOTRUN -> [SKIP][289] +2 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-9/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html * igt@kms_plane@plane-position-covered: - shard-rkl: [PASS][290] -> [SKIP][291] ([i915#14544] / [i915#8825]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-5/igt@kms_plane@plane-position-covered.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_plane@plane-position-covered.html * igt@kms_plane_alpha_blend@alpha-basic: - shard-rkl: [PASS][292] -> [SKIP][293] ([i915#14544] / [i915#7294]) +1 other test skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-4/igt@kms_plane_alpha_blend@alpha-basic.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_plane_alpha_blend@alpha-basic.html * igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant: - shard-rkl: NOTRUN -> [SKIP][294] ([i915#14544] / [i915#7294]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant.html * igt@kms_plane_multiple@2x-tiling-4: - shard-rkl: NOTRUN -> [SKIP][295] ([i915#13958]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-8/igt@kms_plane_multiple@2x-tiling-4.html - shard-tglu-1: NOTRUN -> [SKIP][296] ([i915#13958]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-4.html - shard-mtlp: NOTRUN -> [SKIP][297] ([i915#13958]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-mtlp-4/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_plane_multiple@2x-tiling-none: - shard-tglu: NOTRUN -> [SKIP][298] ([i915#13958]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-7/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_plane_multiple@tiling-y: - shard-rkl: NOTRUN -> [SKIP][299] ([i915#14544]) +17 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_plane_multiple@tiling-y.html - shard-dg2: NOTRUN -> [SKIP][300] ([i915#14259]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-10/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format: - shard-rkl: [PASS][301] -> [SKIP][302] ([i915#14544] / [i915#8152]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20: - shard-dg2: NOTRUN -> [SKIP][303] ([i915#12247] / [i915#9423]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b: - shard-rkl: NOTRUN -> [SKIP][304] ([i915#12247]) +8 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][305] ([i915#12247] / [i915#6953] / [i915#9423]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-7/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-a: - shard-dg2: NOTRUN -> [SKIP][306] ([i915#12247]) +7 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20: - shard-rkl: NOTRUN -> [SKIP][307] ([i915#12247] / [i915#14544] / [i915#8152]) +1 other test skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a: - shard-rkl: NOTRUN -> [SKIP][308] ([i915#12247] / [i915#14544]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d: - shard-mtlp: NOTRUN -> [SKIP][309] ([i915#12247]) +8 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-mtlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-75: - shard-rkl: [PASS][310] -> [SKIP][311] ([i915#12247] / [i915#14544] / [i915#3555] / [i915#6953] / [i915#8152]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-75.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5: - shard-rkl: [PASS][312] -> [SKIP][313] ([i915#14544] / [i915#6953] / [i915#8152]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/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-rkl: [PASS][314] -> [SKIP][315] ([i915#12247] / [i915#14544]) +3 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b: - shard-rkl: [PASS][316] -> [SKIP][317] ([i915#12247] / [i915#14544] / [i915#8152]) +4 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][318] ([i915#12247] / [i915#6953]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b: - shard-tglu: NOTRUN -> [SKIP][319] ([i915#12247]) +3 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][320] ([i915#12247] / [i915#6953]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-mtlp-4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-dg2: NOTRUN -> [SKIP][321] ([i915#12343]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-11/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade-with-dpms: - shard-tglu-1: NOTRUN -> [SKIP][322] ([i915#9812]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-1/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-mtlp: NOTRUN -> [SKIP][323] ([i915#9292]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-mtlp-6/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-dpms-negative: - shard-rkl: [PASS][324] -> [SKIP][325] ([i915#13441] / [i915#14544]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-2/igt@kms_pm_dc@dc5-dpms-negative.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_pm_dc@dc5-dpms-negative.html * igt@kms_pm_dc@dc5-psr: - shard-dg2: NOTRUN -> [SKIP][326] ([i915#9685]) +1 other test skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-1/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg2: NOTRUN -> [SKIP][327] ([i915#3828]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-11/igt@kms_pm_dc@dc5-retention-flops.html - shard-rkl: NOTRUN -> [SKIP][328] ([i915#14544] / [i915#3828]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: NOTRUN -> [FAIL][329] ([i915#9295]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-9/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: [PASS][330] -> [SKIP][331] ([i915#9340]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-6/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-tglu-1: NOTRUN -> [SKIP][332] ([i915#8430]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-1/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [PASS][333] -> [SKIP][334] ([i915#9519]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-7/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@fences-dpms: - shard-rkl: [PASS][335] -> [SKIP][336] ([i915#14544] / [i915#1849]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-7/igt@kms_pm_rpm@fences-dpms.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_pm_rpm@fences-dpms.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: [PASS][337] -> [SKIP][338] ([i915#9519]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-5/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-tglu-1: NOTRUN -> [SKIP][339] ([i915#9519]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg2: NOTRUN -> [SKIP][340] ([i915#6524] / [i915#6805]) +1 other test skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-1/igt@kms_prime@basic-modeset-hybrid.html - shard-rkl: NOTRUN -> [SKIP][341] ([i915#6524]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-7/igt@kms_prime@basic-modeset-hybrid.html - shard-dg1: NOTRUN -> [SKIP][342] ([i915#6524]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg1-16/igt@kms_prime@basic-modeset-hybrid.html - shard-tglu: NOTRUN -> [SKIP][343] ([i915#6524]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-10/igt@kms_prime@basic-modeset-hybrid.html - shard-mtlp: NOTRUN -> [SKIP][344] ([i915#6524]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-mtlp-2/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_prime@d3hot: - shard-rkl: NOTRUN -> [SKIP][345] ([i915#14544] / [i915#6524]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_prime@d3hot.html * igt@kms_properties@plane-properties-atomic: - shard-rkl: [PASS][346] -> [SKIP][347] ([i915#11521] / [i915#14544]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-4/igt@kms_properties@plane-properties-atomic.html [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_properties@plane-properties-atomic.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][348] ([i915#11520]) +1 other test skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-5/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][349] ([i915#11520] / [i915#14544]) +1 other test skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html - shard-snb: NOTRUN -> [SKIP][350] ([i915#11520]) +3 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-snb7/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html - shard-dg1: NOTRUN -> [SKIP][351] ([i915#11520]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg1-18/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html - shard-tglu: NOTRUN -> [SKIP][352] ([i915#11520]) +3 other tests skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-8/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html - shard-mtlp: NOTRUN -> [SKIP][353] ([i915#12316]) +2 other tests skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-mtlp-4/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-glk11: NOTRUN -> [SKIP][354] ([i915#11520]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-glk11/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-tglu-1: NOTRUN -> [SKIP][355] ([i915#11520]) +4 other tests skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][356] ([i915#11520]) +4 other tests skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-8/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][357] ([i915#11520]) +8 other tests skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-glk9/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area: - shard-dg2-9: NOTRUN -> [SKIP][358] ([i915#11520]) +3 other tests skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-9/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-p010: - shard-dg2: NOTRUN -> [SKIP][359] ([i915#9683]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-5/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-pr-primary-render: - shard-dg2-9: NOTRUN -> [SKIP][360] ([i915#1072] / [i915#9732]) +7 other tests skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-9/igt@kms_psr@fbc-pr-primary-render.html * igt@kms_psr@fbc-pr-suspend: - shard-rkl: NOTRUN -> [SKIP][361] ([i915#1072] / [i915#14544] / [i915#9732]) +3 other tests skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_psr@fbc-pr-suspend.html * igt@kms_psr@fbc-psr-no-drrs: - shard-tglu: NOTRUN -> [SKIP][362] ([i915#9732]) +13 other tests skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-8/igt@kms_psr@fbc-psr-no-drrs.html * igt@kms_psr@fbc-psr-primary-page-flip: - shard-dg1: NOTRUN -> [SKIP][363] ([i915#1072] / [i915#9732]) +2 other tests skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg1-17/igt@kms_psr@fbc-psr-primary-page-flip.html * igt@kms_psr@fbc-psr2-primary-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][364] ([i915#9688]) +7 other tests skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-mtlp-6/igt@kms_psr@fbc-psr2-primary-mmap-cpu.html * igt@kms_psr@psr-cursor-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][365] ([i915#1072] / [i915#9732]) +7 other tests skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-5/igt@kms_psr@psr-cursor-mmap-cpu.html * igt@kms_psr@psr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][366] ([i915#1072] / [i915#9732]) +22 other tests skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-6/igt@kms_psr@psr-cursor-render.html * igt@kms_psr@psr2-sprite-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][367] ([i915#9732]) +9 other tests skip [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-gtt.html * igt@kms_rotation_crc@exhaust-fences: - shard-dg2: NOTRUN -> [SKIP][368] ([i915#4235]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-10/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_rotation_crc@primary-rotation-90: - shard-mtlp: NOTRUN -> [SKIP][369] ([i915#12755]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-mtlp-4/igt@kms_rotation_crc@primary-rotation-90.html - shard-dg2: NOTRUN -> [SKIP][370] ([i915#12755]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-4/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-tglu-1: NOTRUN -> [SKIP][371] ([i915#5289]) +1 other test skip [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2-9: NOTRUN -> [SKIP][372] ([i915#12755] / [i915#5190]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-9/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][373] ([i915#12755] / [i915#5190]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-11/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_selftest@drm_framebuffer: - shard-tglu-1: NOTRUN -> [ABORT][374] ([i915#13179]) +1 other test abort [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-1/igt@kms_selftest@drm_framebuffer.html - shard-glk: NOTRUN -> [ABORT][375] ([i915#13179]) +1 other test abort [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-glk9/igt@kms_selftest@drm_framebuffer.html * igt@kms_setmode@basic: - shard-tglu: [PASS][376] -> [FAIL][377] ([i915#5465]) +2 other tests fail [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-tglu-8/igt@kms_setmode@basic.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-9/igt@kms_setmode@basic.html * igt@kms_tv_load_detect@load-detect: - shard-snb: NOTRUN -> [SKIP][378] +149 other tests skip [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-snb4/igt@kms_tv_load_detect@load-detect.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1: - shard-mtlp: [PASS][379] -> [FAIL][380] ([i915#9196]) +1 other test fail [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-mtlp-7/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-mtlp-3/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html * igt@kms_vrr@flip-basic-fastset: - shard-dg2: NOTRUN -> [SKIP][381] ([i915#9906]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-4/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@lobf: - shard-tglu: NOTRUN -> [SKIP][382] ([i915#11920]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-8/igt@kms_vrr@lobf.html * igt@kms_vrr@max-min: - shard-tglu: NOTRUN -> [SKIP][383] ([i915#9906]) +2 other tests skip [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-5/igt@kms_vrr@max-min.html * igt@kms_writeback@writeback-fb-id: - shard-dg2: NOTRUN -> [SKIP][384] ([i915#2437]) +1 other test skip [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-1/igt@kms_writeback@writeback-fb-id.html - shard-rkl: NOTRUN -> [SKIP][385] ([i915#2437]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-5/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][386] ([i915#2437] / [i915#9412]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-6/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@kms_writeback@writeback-pixel-formats: - shard-tglu-1: NOTRUN -> [SKIP][387] ([i915#2437] / [i915#9412]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-1/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@global-sseu-config-invalid: - shard-dg2-9: NOTRUN -> [SKIP][388] ([i915#7387]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-9/igt@perf@global-sseu-config-invalid.html * igt@perf@mi-rpc: - shard-dg2-9: NOTRUN -> [SKIP][389] ([i915#2434]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-9/igt@perf@mi-rpc.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: NOTRUN -> [FAIL][390] ([i915#9100]) +1 other test fail [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-6/igt@perf@non-zero-reason@0-rcs0.html * igt@perf_pmu@module-unload: - shard-glk: NOTRUN -> [FAIL][391] ([i915#14433]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-glk3/igt@perf_pmu@module-unload.html * igt@prime_busy@hang: - shard-rkl: [PASS][392] -> [DMESG-WARN][393] ([i915#12917] / [i915#12964]) +4 other tests dmesg-warn [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-8/igt@prime_busy@hang.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-5/igt@prime_busy@hang.html * igt@prime_vgem@basic-gtt: - shard-dg2: NOTRUN -> [SKIP][394] ([i915#3708] / [i915#4077]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-6/igt@prime_vgem@basic-gtt.html * igt@sriov_basic@bind-unbind-vf@vf-5: - shard-mtlp: NOTRUN -> [FAIL][395] ([i915#12910]) +9 other tests fail [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-mtlp-2/igt@sriov_basic@bind-unbind-vf@vf-5.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-dg2-9: NOTRUN -> [SKIP][396] ([i915#9917]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-9/igt@sriov_basic@enable-vfs-bind-unbind-each.html #### Possible fixes #### * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: - shard-dg2: [INCOMPLETE][397] ([i915#13356]) -> [PASS][398] [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-dg2-1/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-3/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html * igt@gem_eio@unwedge-stress: - shard-dg1: [FAIL][399] ([i915#5784]) -> [PASS][400] [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-dg1-17/igt@gem_eio@unwedge-stress.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg1-12/igt@gem_eio@unwedge-stress.html * igt@gem_exec_suspend@basic-s0: - shard-dg2: [INCOMPLETE][401] ([i915#11441] / [i915#13304]) -> [PASS][402] +1 other test pass [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-dg2-10/igt@gem_exec_suspend@basic-s0.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-7/igt@gem_exec_suspend@basic-s0.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-rkl: [TIMEOUT][403] ([i915#12964]) -> [PASS][404] +1 other test pass [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-2/igt@gem_pxp@regular-baseline-src-copy-readible.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-8/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-rkl: [TIMEOUT][405] ([i915#12917] / [i915#12964]) -> [PASS][406] +1 other test pass [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-4/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-8/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@i915_pm_rpm@system-suspend: - shard-rkl: [INCOMPLETE][407] ([i915#12797]) -> [PASS][408] [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-3/igt@i915_pm_rpm@system-suspend.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-8/igt@i915_pm_rpm@system-suspend.html * igt@i915_suspend@debugfs-reader: - shard-snb: [ABORT][409] ([i915#12817]) -> [PASS][410] [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-snb4/igt@i915_suspend@debugfs-reader.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-snb5/igt@i915_suspend@debugfs-reader.html * igt@kms_big_fb@y-tiled-64bpp-rotate-0: - shard-rkl: [SKIP][411] ([i915#14544]) -> [PASS][412] +13 other tests pass [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-6/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-8/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html * igt@kms_color@ctm-signed: - shard-rkl: [SKIP][413] ([i915#12655] / [i915#14544]) -> [PASS][414] [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-6/igt@kms_color@ctm-signed.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-4/igt@kms_color@ctm-signed.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-rkl: [FAIL][415] ([i915#13566]) -> [PASS][416] [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-256x85.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-256x85.html - shard-tglu: [FAIL][417] ([i915#13566]) -> [PASS][418] +1 other test pass [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-256x85.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-tglu-6/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: [SKIP][419] ([i915#3555]) -> [PASS][420] +1 other test pass [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-dg2-1/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-11/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_feature_discovery@display-1x: - shard-rkl: [SKIP][421] ([i915#14544] / [i915#9738]) -> [PASS][422] [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-6/igt@kms_feature_discovery@display-1x.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-8/igt@kms_feature_discovery@display-1x.html * igt@kms_flip@bo-too-big-interruptible: - shard-rkl: [SKIP][423] ([i915#14544] / [i915#3637]) -> [PASS][424] +2 other tests pass [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-6/igt@kms_flip@bo-too-big-interruptible.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-5/igt@kms_flip@bo-too-big-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-rkl: [SKIP][425] ([i915#14544] / [i915#3555]) -> [PASS][426] +1 other test pass [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render: - shard-dg2: [FAIL][427] ([i915#6880]) -> [PASS][428] [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@fbc-stridechange: - shard-rkl: [SKIP][429] ([i915#14544] / [i915#1849] / [i915#5354]) -> [PASS][430] +1 other test pass [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-stridechange.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-stridechange.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - shard-rkl: [SKIP][431] ([i915#11190] / [i915#14544]) -> [PASS][432] [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-6/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-8/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: [SKIP][433] ([i915#9519]) -> [PASS][434] +1 other test pass [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-dg2-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [SKIP][435] ([i915#9519]) -> [PASS][436] [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_rotation_crc@multiplane-rotation-cropping-top: - shard-dg1: [DMESG-WARN][437] ([i915#4391] / [i915#4423]) -> [PASS][438] [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-dg1-14/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg1-17/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html * igt@kms_sequence@get-idle@pipe-b-hdmi-a-1: - shard-rkl: [DMESG-WARN][439] ([i915#12964]) -> [PASS][440] +30 other tests pass [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-2/igt@kms_sequence@get-idle@pipe-b-hdmi-a-1.html [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-7/igt@kms_sequence@get-idle@pipe-b-hdmi-a-1.html * igt@kms_vblank@query-forked-hang: - shard-rkl: [DMESG-WARN][441] ([i915#12917] / [i915#12964]) -> [PASS][442] +2 other tests pass [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-5/igt@kms_vblank@query-forked-hang.html [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-5/igt@kms_vblank@query-forked-hang.html * igt@kms_vblank@ts-continuation-suspend: - shard-rkl: [INCOMPLETE][443] ([i915#12276]) -> [PASS][444] [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-3/igt@kms_vblank@ts-continuation-suspend.html [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-2/igt@kms_vblank@ts-continuation-suspend.html * igt@kms_vrr@negative-basic: - shard-dg2: [SKIP][445] ([i915#3555] / [i915#9906]) -> [PASS][446] [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-dg2-6/igt@kms_vrr@negative-basic.html [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-10/igt@kms_vrr@negative-basic.html * igt@perf_pmu@busy-idle: - shard-mtlp: [FAIL][447] ([i915#4349]) -> [PASS][448] +4 other tests pass [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-mtlp-1/igt@perf_pmu@busy-idle.html [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-mtlp-4/igt@perf_pmu@busy-idle.html * igt@perf_pmu@busy-idle@vcs0: - shard-dg2: [FAIL][449] ([i915#4349]) -> [PASS][450] +5 other tests pass [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-dg2-8/igt@perf_pmu@busy-idle@vcs0.html [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-7/igt@perf_pmu@busy-idle@vcs0.html - shard-dg1: [FAIL][451] ([i915#4349]) -> [PASS][452] +3 other tests pass [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-dg1-12/igt@perf_pmu@busy-idle@vcs0.html [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg1-18/igt@perf_pmu@busy-idle@vcs0.html * igt@perf_pmu@most-busy-idle-check-all: - shard-rkl: [FAIL][453] ([i915#4349]) -> [PASS][454] +1 other test pass [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-2/igt@perf_pmu@most-busy-idle-check-all.html [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-4/igt@perf_pmu@most-busy-idle-check-all.html #### Warnings #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-rkl: [SKIP][455] ([i915#8411]) -> [SKIP][456] ([i915#14544] / [i915#8411]) +2 other tests skip [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-2/igt@api_intel_bb@blit-reloc-keep-cache.html [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@crc32: - shard-rkl: [SKIP][457] ([i915#6230]) -> [SKIP][458] ([i915#14544] / [i915#6230]) [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-7/igt@api_intel_bb@crc32.html [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@api_intel_bb@crc32.html * igt@gem_ctx_sseu@engines: - shard-rkl: [SKIP][459] ([i915#280]) -> [SKIP][460] ([i915#14544] / [i915#280]) [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-5/igt@gem_ctx_sseu@engines.html [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-sseu: - shard-rkl: [SKIP][461] ([i915#14544] / [i915#280]) -> [SKIP][462] ([i915#280]) [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-6/igt@gem_ctx_sseu@invalid-sseu.html [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-8/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-rkl: [SKIP][463] ([i915#6334]) -> [SKIP][464] ([i915#14544] / [i915#6334]) +1 other test skip [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-4/igt@gem_exec_capture@capture-invisible@smem0.html [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-rkl: [SKIP][465] ([i915#14544] / [i915#3281]) -> [SKIP][466] ([i915#3281]) +2 other tests skip [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-5/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: [SKIP][467] ([i915#3281]) -> [SKIP][468] ([i915#14544] / [i915#3281]) +12 other tests skip [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-8/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_exec_schedule@semaphore-power: - shard-rkl: [SKIP][469] ([i915#7276]) -> [SKIP][470] ([i915#14544] / [i915#7276]) [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-4/igt@gem_exec_schedule@semaphore-power.html [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@gem_exec_schedule@semaphore-power.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: [SKIP][471] ([i915#4613] / [i915#7582]) -> [SKIP][472] ([i915#14544] / [i915#4613] / [i915#7582]) [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-3/igt@gem_lmem_evict@dontneed-evict-race.html [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-rkl: [SKIP][473] ([i915#14544] / [i915#4613]) -> [SKIP][474] ([i915#4613]) [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random-ccs.html [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-5/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-rkl: [SKIP][475] ([i915#4613]) -> [SKIP][476] ([i915#14544] / [i915#4613]) +2 other tests skip [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-2/igt@gem_lmem_swapping@parallel-random-verify.html [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_media_vme: - shard-rkl: [SKIP][477] ([i915#284]) -> [SKIP][478] ([i915#14544] / [i915#284]) [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-2/igt@gem_media_vme.html [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@gem_media_vme.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-rkl: [SKIP][479] ([i915#14544] / [i915#3282]) -> [SKIP][480] ([i915#3282]) +3 other tests skip [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads.html [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-2/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-rkl: [SKIP][481] ([i915#3282]) -> [SKIP][482] ([i915#14544] / [i915#3282]) +4 other tests skip [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-8/igt@gem_partial_pwrite_pread@writes-after-reads-display.html [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-rkl: [FAIL][483] ([i915#14383]) -> [TIMEOUT][484] ([i915#12917] / [i915#12964]) [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-2/igt@gem_pxp@hw-rejects-pxp-context.html [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-7/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-rkl: [TIMEOUT][485] ([i915#12917] / [i915#12964]) -> [SKIP][486] ([i915#4270]) [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-5/igt@gem_pxp@reject-modify-context-protection-off-3.html [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-5/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_userptr_blits@forbidden-operations: - shard-rkl: [SKIP][487] ([i915#3282] / [i915#3297]) -> [SKIP][488] ([i915#14544] / [i915#3282] / [i915#3297]) [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-8/igt@gem_userptr_blits@forbidden-operations.html [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@readonly-unsync: - shard-rkl: [SKIP][489] ([i915#3297]) -> [SKIP][490] ([i915#14544] / [i915#3297]) [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-7/igt@gem_userptr_blits@readonly-unsync.html [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@gem_userptr_blits@readonly-unsync.html * igt@gem_userptr_blits@relocations: - shard-rkl: [SKIP][491] ([i915#14544] / [i915#3281] / [i915#3297]) -> [SKIP][492] ([i915#3281] / [i915#3297]) [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-6/igt@gem_userptr_blits@relocations.html [492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-5/igt@gem_userptr_blits@relocations.html * igt@gen9_exec_parse@basic-rejected: - shard-rkl: [SKIP][493] ([i915#14544] / [i915#2527]) -> [SKIP][494] ([i915#2527]) [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-6/igt@gen9_exec_parse@basic-rejected.html [494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-5/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@bb-oversize: - shard-rkl: [SKIP][495] ([i915#2527]) -> [SKIP][496] ([i915#14544] / [i915#2527]) +1 other test skip [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-4/igt@gen9_exec_parse@bb-oversize.html [496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@gen9_exec_parse@bb-oversize.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-rkl: [SKIP][497] ([i915#14498]) -> [SKIP][498] ([i915#14498] / [i915#14544]) [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-7/igt@i915_pm_rc6_residency@rc6-idle.html [498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_rps@reset: - shard-snb: [INCOMPLETE][499] ([i915#13729] / [i915#13821]) -> [INCOMPLETE][500] ([i915#13821]) [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-snb7/igt@i915_pm_rps@reset.html [500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-snb7/igt@i915_pm_rps@reset.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-rkl: [SKIP][501] ([i915#14544]) -> [SKIP][502] ([i915#5286]) +3 other tests skip [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-5/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-addfb: - shard-rkl: [SKIP][503] ([i915#5286]) -> [SKIP][504] ([i915#14544]) +6 other tests skip [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-4/igt@kms_big_fb@4-tiled-addfb.html [504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: [SKIP][505] ([i915#4538] / [i915#5286]) -> [SKIP][506] ([i915#4423] / [i915#4538] / [i915#5286]) [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-dg1-17/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg1-19/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-rkl: [SKIP][507] ([i915#3638]) -> [SKIP][508] ([i915#14544]) +2 other tests skip [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-7/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html [508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: [SKIP][509] ([i915#14544]) -> [SKIP][510] +3 other tests skip [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-rkl: [SKIP][511] -> [SKIP][512] ([i915#14544]) +20 other tests skip [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc: - shard-dg1: [SKIP][513] ([i915#4423] / [i915#6095]) -> [SKIP][514] ([i915#6095]) [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-dg1-12/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html [514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg1-17/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc: - shard-rkl: [SKIP][515] ([i915#14544]) -> [SKIP][516] ([i915#14098] / [i915#6095]) +7 other tests skip [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html [516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-8/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][517] ([i915#6095]) -> [SKIP][518] ([i915#14098] / [i915#6095]) [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-8/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html [518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-5/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-rkl: [SKIP][519] ([i915#12313]) -> [SKIP][520] ([i915#14544]) [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-2/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html [520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][521] ([i915#14098] / [i915#6095]) -> [SKIP][522] ([i915#6095]) +2 other tests skip [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-5/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html [522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-8/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs: - shard-rkl: [SKIP][523] ([i915#14098] / [i915#6095]) -> [SKIP][524] ([i915#14544]) +13 other tests skip [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-5/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html [524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html * igt@kms_chamelium_edid@vga-edid-read: - shard-rkl: [SKIP][525] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][526] ([i915#11151] / [i915#7828]) +2 other tests skip [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-6/igt@kms_chamelium_edid@vga-edid-read.html [526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-7/igt@kms_chamelium_edid@vga-edid-read.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: [SKIP][527] ([i915#11151] / [i915#7828]) -> [SKIP][528] ([i915#11151] / [i915#14544] / [i915#7828]) +11 other tests skip [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-7/igt@kms_chamelium_hpd@vga-hpd-fast.html [528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_content_protection@atomic-dpms: - shard-rkl: [SKIP][529] ([i915#7118] / [i915#9424]) -> [SKIP][530] ([i915#14544]) +2 other tests skip [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-7/igt@kms_content_protection@atomic-dpms.html [530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-rkl: [SKIP][531] ([i915#3116]) -> [SKIP][532] ([i915#14544]) [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-2/igt@kms_content_protection@dp-mst-lic-type-0.html [532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-rkl: [SKIP][533] ([i915#14544]) -> [SKIP][534] ([i915#3116]) [533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-1.html [534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-5/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@legacy: - shard-dg2: [SKIP][535] ([i915#7118] / [i915#9424]) -> [FAIL][536] ([i915#7173]) [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-dg2-8/igt@kms_content_protection@legacy.html [536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-10/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-1: - shard-rkl: [SKIP][537] ([i915#9424]) -> [SKIP][538] ([i915#14544]) [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-4/igt@kms_content_protection@lic-type-1.html [538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][539] ([i915#9433]) -> [SKIP][540] ([i915#9424]) [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-dg1-13/igt@kms_content_protection@mei-interface.html [540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg1-15/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-dg2: [SKIP][541] ([i915#7118]) -> [FAIL][542] ([i915#7173]) [541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-dg2-4/igt@kms_content_protection@srm.html [542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-11/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-rkl: [SKIP][543] ([i915#14544]) -> [SKIP][544] ([i915#13049]) [543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html [544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-7/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: [SKIP][545] ([i915#14544]) -> [SKIP][546] ([i915#3555]) +2 other tests skip [545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-32x32.html [546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-rkl: [SKIP][547] ([i915#13049]) -> [SKIP][548] ([i915#14544]) [547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-512x170.html [548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_edge_walk@256x256-top-edge: - shard-rkl: [DMESG-WARN][549] ([i915#12964]) -> [SKIP][550] ([i915#14544]) +1 other test skip [549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-7/igt@kms_cursor_edge_walk@256x256-top-edge.html [550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_cursor_edge_walk@256x256-top-edge.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg1: [SKIP][551] ([i915#4103] / [i915#4213] / [i915#4423]) -> [SKIP][552] ([i915#4103] / [i915#4213]) [551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-dg1-14/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html [552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg1-15/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-rkl: [SKIP][553] ([i915#11190] / [i915#14544]) -> [SKIP][554] ([i915#4103]) [553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html [554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dp_link_training@uhbr-mst: - shard-rkl: [SKIP][555] ([i915#13748]) -> [SKIP][556] ([i915#14544]) [555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-4/igt@kms_dp_link_training@uhbr-mst.html [556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_dp_link_training@uhbr-mst.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-rkl: [SKIP][557] ([i915#13707]) -> [SKIP][558] ([i915#14544]) [557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-7/igt@kms_dp_linktrain_fallback@dp-fallback.html [558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_draw_crc@draw-method-render: - shard-rkl: [SKIP][559] ([i915#14544]) -> [DMESG-WARN][560] ([i915#12964]) +2 other tests dmesg-warn [559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-6/igt@kms_draw_crc@draw-method-render.html [560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-5/igt@kms_draw_crc@draw-method-render.html * igt@kms_dsc@dsc-fractional-bpp: - shard-rkl: [SKIP][561] ([i915#3840]) -> [SKIP][562] ([i915#14544]) [561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-8/igt@kms_dsc@dsc-fractional-bpp.html [562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_fbcon_fbt@psr: - shard-rkl: [SKIP][563] ([i915#14544] / [i915#3955]) -> [SKIP][564] ([i915#3955]) [563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-6/igt@kms_fbcon_fbt@psr.html [564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-2/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: [SKIP][565] ([i915#3955]) -> [SKIP][566] ([i915#14544] / [i915#3955]) [565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-7/igt@kms_fbcon_fbt@psr-suspend.html [566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@dp-mst: - shard-dg1: [SKIP][567] ([i915#4423] / [i915#9337]) -> [SKIP][568] ([i915#9337]) [567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-dg1-13/igt@kms_feature_discovery@dp-mst.html [568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg1-13/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-rkl: [SKIP][569] ([i915#9934]) -> [SKIP][570] ([i915#14544] / [i915#9934]) +4 other tests skip [569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-7/igt@kms_flip@2x-flip-vs-suspend-interruptible.html [570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-rkl: [SKIP][571] ([i915#14544] / [i915#9934]) -> [SKIP][572] ([i915#9934]) +1 other test skip [571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-6/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html [572]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-8/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-panning: - shard-rkl: [DMESG-WARN][573] ([i915#12964]) -> [SKIP][574] ([i915#14544] / [i915#3637]) [573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-7/igt@kms_flip@flip-vs-panning.html [574]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_flip@flip-vs-panning.html * igt@kms_flip@flip-vs-panning-vs-hang: - shard-rkl: [SKIP][575] ([i915#14544] / [i915#3637]) -> [DMESG-WARN][576] ([i915#12964]) [575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-6/igt@kms_flip@flip-vs-panning-vs-hang.html [576]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-2/igt@kms_flip@flip-vs-panning-vs-hang.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-rkl: [SKIP][577] ([i915#2672] / [i915#3555]) -> [SKIP][578] ([i915#14544] / [i915#3555]) +5 other tests skip [577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html [578]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-rkl: [SKIP][579] ([i915#14544] / [i915#3555]) -> [SKIP][580] ([i915#2672] / [i915#3555]) [579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html [580]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render: - shard-rkl: [SKIP][581] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][582] ([i915#1825]) +6 other tests skip [581]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html [582]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-wc: - shard-dg1: [SKIP][583] ([i915#4423] / [i915#8708]) -> [SKIP][584] ([i915#8708]) [583]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-wc.html [584]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render: - shard-dg1: [SKIP][585] ([i915#3458] / [i915#4423]) -> [SKIP][586] ([i915#3458]) [585]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render.html [586]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][587] ([i915#1825]) -> [SKIP][588] ([i915#14544] / [i915#1849] / [i915#5354]) +32 other tests skip [587]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html [588]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt: - shard-rkl: [SKIP][589] ([i915#3023]) -> [SKIP][590] ([i915#14544] / [i915#1849] / [i915#5354]) +19 other tests skip [589]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html [590]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-suspend: - shard-dg2: [SKIP][591] ([i915#3458]) -> [SKIP][592] ([i915#10433] / [i915#3458]) [591]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html [592]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: [SKIP][593] ([i915#10433] / [i915#3458]) -> [SKIP][594] ([i915#3458]) +2 other tests skip [593]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html [594]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-render: - shard-rkl: [SKIP][595] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][596] ([i915#3023]) +6 other tests skip [595]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html [596]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html * igt@kms_hdr@bpc-switch-dpms: - shard-rkl: [SKIP][597] ([i915#3555] / [i915#8228]) -> [SKIP][598] ([i915#14544]) +1 other test skip [597]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-7/igt@kms_hdr@bpc-switch-dpms.html [598]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@invalid-hdr: - shard-rkl: [SKIP][599] ([i915#14544]) -> [SKIP][600] ([i915#3555] / [i915#8228]) [599]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-6/igt@kms_hdr@invalid-hdr.html [600]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-8/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: [ABORT][601] ([i915#8213]) -> [SKIP][602] ([i915#3555] / [i915#8228]) [601]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-dg2-10/igt@kms_hdr@static-toggle-suspend.html [602]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg2-5/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-rkl: [SKIP][603] ([i915#12394]) -> [SKIP][604] ([i915#12394] / [i915#14544]) [603]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-8/igt@kms_joiner@basic-force-ultra-joiner.html [604]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-rkl: [SKIP][605] ([i915#12388] / [i915#14544]) -> [SKIP][606] ([i915#12388]) [605]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html [606]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-rkl: [SKIP][607] ([i915#6301]) -> [SKIP][608] ([i915#14544]) [607]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-5/igt@kms_panel_fitting@atomic-fastset.html [608]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane_lowres@tiling-yf: - shard-rkl: [SKIP][609] ([i915#3555]) -> [SKIP][610] ([i915#14544]) +2 other tests skip [609]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-5/igt@kms_plane_lowres@tiling-yf.html [610]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@tiling-4: - shard-rkl: [SKIP][611] ([i915#14544]) -> [SKIP][612] ([i915#14259]) [611]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-6/igt@kms_plane_multiple@tiling-4.html [612]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-8/igt@kms_plane_multiple@tiling-4.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: [SKIP][613] ([i915#14259]) -> [SKIP][614] ([i915#14544]) [613]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-7/igt@kms_plane_multiple@tiling-yf.html [614]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a: - shard-rkl: [SKIP][615] ([i915#12247] / [i915#14544]) -> [SKIP][616] ([i915#12247]) +1 other test skip [615]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html [616]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b: - shard-rkl: [SKIP][617] ([i915#12247]) -> [SKIP][618] ([i915#12247] / [i915#14544] / [i915#8152]) +4 other tests skip [617]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-5/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b.html [618]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-rkl: [SKIP][619] ([i915#3555]) -> [SKIP][620] ([i915#14544] / [i915#3555] / [i915#8152]) [619]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html [620]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - shard-rkl: [SKIP][621] ([i915#12247] / [i915#14544] / [i915#6953] / [i915#8152]) -> [SKIP][622] ([i915#12247] / [i915#6953]) [621]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25.html [622]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-8/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-rkl: [SKIP][623] ([i915#12247] / [i915#6953]) -> [SKIP][624] ([i915#12247] / [i915#14544] / [i915#6953] / [i915#8152]) [623]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html [624]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b: - shard-rkl: [SKIP][625] ([i915#12247] / [i915#14544] / [i915#8152]) -> [SKIP][626] ([i915#12247]) +2 other tests skip [625]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html [626]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-8/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-rkl: [SKIP][627] ([i915#12247] / [i915#3555]) -> [SKIP][628] ([i915#12247] / [i915#14544] / [i915#3555] / [i915#8152]) [627]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html [628]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a: - shard-rkl: [SKIP][629] ([i915#12247]) -> [SKIP][630] ([i915#12247] / [i915#14544]) +3 other tests skip [629]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a.html [630]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a.html * igt@kms_pm_dc@dc6-dpms: - shard-rkl: [FAIL][631] ([i915#9295]) -> [SKIP][632] ([i915#3361]) [631]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-6/igt@kms_pm_dc@dc6-dpms.html [632]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-8/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-rkl: [SKIP][633] ([i915#9685]) -> [SKIP][634] ([i915#14544] / [i915#9685]) [633]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-5/igt@kms_pm_dc@dc6-psr.html [634]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][635] ([i915#3828]) -> [SKIP][636] ([i915#9340]) [635]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-4/igt@kms_pm_lpsp@kms-lpsp.html [636]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-5/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [SKIP][637] ([i915#9519]) -> [SKIP][638] ([i915#12916]) [637]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp.html [638]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-rkl: [DMESG-WARN][639] ([i915#12964]) -> [SKIP][640] ([i915#9519]) [639]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress.html [640]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-rkl: [SKIP][641] ([i915#11520]) -> [SKIP][642] ([i915#11520] / [i915#14544]) +8 other tests skip [641]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-8/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html [642]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-rkl: [SKIP][643] ([i915#11520] / [i915#14544]) -> [SKIP][644] ([i915#11520]) +1 other test skip [643]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-6/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html [644]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-5/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-rkl: [SKIP][645] ([i915#9683]) -> [SKIP][646] ([i915#14544] / [i915#9683]) [645]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-8/igt@kms_psr2_su@frontbuffer-xrgb8888.html [646]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@fbc-pr-primary-blt: - shard-dg1: [SKIP][647] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][648] ([i915#1072] / [i915#9732]) [647]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-dg1-13/igt@kms_psr@fbc-pr-primary-blt.html [648]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-dg1-12/igt@kms_psr@fbc-pr-primary-blt.html * igt@kms_psr@fbc-psr-primary-blt: - shard-rkl: [SKIP][649] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][650] ([i915#1072] / [i915#9732]) +6 other tests skip [649]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-6/igt@kms_psr@fbc-psr-primary-blt.html [650]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-7/igt@kms_psr@fbc-psr-primary-blt.html * igt@kms_psr@pr-primary-render: - shard-rkl: [SKIP][651] ([i915#1072] / [i915#9732]) -> [SKIP][652] ([i915#1072] / [i915#14544] / [i915#9732]) +18 other tests skip [651]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-8/igt@kms_psr@pr-primary-render.html [652]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_psr@pr-primary-render.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-rkl: [SKIP][653] ([i915#5289]) -> [SKIP][654] ([i915#14544]) [653]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html [654]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-rkl: [SKIP][655] ([i915#3555]) -> [SKIP][656] ([i915#14544] / [i915#3555]) [655]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-5/igt@kms_setmode@invalid-clone-single-crtc-stealing.html [656]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html * igt@kms_vrr@negative-basic: - shard-rkl: [SKIP][657] ([i915#3555] / [i915#9906]) -> [SKIP][658] ([i915#14544]) [657]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-7/igt@kms_vrr@negative-basic.html [658]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@kms_vrr@negative-basic.html * igt@kms_writeback@writeback-check-output: - shard-rkl: [SKIP][659] ([i915#14544] / [i915#2437]) -> [SKIP][660] ([i915#2437]) [659]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-6/igt@kms_writeback@writeback-check-output.html [660]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-2/igt@kms_writeback@writeback-check-output.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-rkl: [SKIP][661] ([i915#2436]) -> [SKIP][662] ([i915#14544] / [i915#2436]) [661]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-7/igt@perf@gen8-unprivileged-single-ctx-counters.html [662]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@prime_vgem@fence-read-hang: - shard-rkl: [SKIP][663] ([i915#14544] / [i915#3708]) -> [SKIP][664] ([i915#3708]) [663]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-6/igt@prime_vgem@fence-read-hang.html [664]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-5/igt@prime_vgem@fence-read-hang.html * igt@prime_vgem@fence-write-hang: - shard-rkl: [SKIP][665] ([i915#3708]) -> [SKIP][666] ([i915#14544] / [i915#3708]) [665]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-5/igt@prime_vgem@fence-write-hang.html [666]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@prime_vgem@fence-write-hang.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-rkl: [SKIP][667] ([i915#9917]) -> [SKIP][668] ([i915#14544] / [i915#9917]) [667]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8461/shard-rkl-4/igt@sriov_basic@enable-vfs-autoprobe-off.html [668]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-off.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#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#11190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11190 [i915#11441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11441 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11521]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11521 [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#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#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#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655 [i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12797]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12797 [i915#12817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12817 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [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#12967]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12967 [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#13196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13196 [i915#13304]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13304 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13363]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363 [i915#13427]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13427 [i915#13441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13441 [i915#13522]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13522 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13729]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13729 [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#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783 [i915#13784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13784 [i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790 [i915#13821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13821 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14383]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14383 [i915#14433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14433 [i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545 [i915#14600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 [i915#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#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361 [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#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955 [i915#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#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#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880 [i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885 [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465 [i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784 [i915#5882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6228 [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [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#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276 [i915#7294]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7294 [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#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975 [i915#8152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152 [i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [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#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810 [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813 [i915#8825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825 [i915#8826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8826 [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100 [i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196 [i915#9292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9292 [i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295 [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#9738]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9738 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833 [i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8461 -> IGTPW_13481 CI-20190529: 20190529 CI_DRM_16875: 3b965bd54a93adbf5520b143254ecb10b9a11776 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_13481: 90006a1ec88a19c55f0b08c6b3a592f181abdc82 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8461: 873912f2353ad861a172f6c787c054f934aee71d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13481/index.html [-- Attachment #2: Type: text/html, Size: 221147 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
* ✗ Xe.CI.Full: failure for Replace intel_sysfs_debugfs 2025-07-16 9:36 [PATCH v6 i-g-t 0/6] Replace intel_sysfs_debugfs Peter Senna Tschudin ` (8 preceding siblings ...) 2025-07-17 6:39 ` ✓ i915.CI.Full: " Patchwork @ 2025-07-17 8:09 ` Patchwork 2025-07-17 11:37 ` Patchwork 10 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2025-07-17 8:09 UTC (permalink / raw) To: Peter Senna Tschudin; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 317 bytes --] == Series Details == Series: Replace intel_sysfs_debugfs URL : https://patchwork.freedesktop.org/series/151696/ State : failure == Summary == ERROR: The runconfig 'XEIGT_8461_FULL' does not exist in the database == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/index.html [-- Attachment #2: Type: text/html, Size: 879 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
* ✗ Xe.CI.Full: failure for Replace intel_sysfs_debugfs 2025-07-16 9:36 [PATCH v6 i-g-t 0/6] Replace intel_sysfs_debugfs Peter Senna Tschudin ` (9 preceding siblings ...) 2025-07-17 8:09 ` ✗ Xe.CI.Full: failure " Patchwork @ 2025-07-17 11:37 ` Patchwork 2025-07-17 13:42 ` Peter Senna Tschudin 10 siblings, 1 reply; 15+ messages in thread From: Patchwork @ 2025-07-17 11:37 UTC (permalink / raw) To: Peter Senna Tschudin; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 47591 bytes --] == Series Details == Series: Replace intel_sysfs_debugfs URL : https://patchwork.freedesktop.org/series/151696/ State : failure == Summary == CI Bug Log - changes from XEIGT_8461_FULL -> XEIGTPW_13481_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_13481_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_13481_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_13481_FULL: ### IGT changes ### #### Possible regressions #### * igt@xe_fault_injection@exec-queue-create-fail-xe_vm_add_compute_exec_queue: - shard-lnl: NOTRUN -> [ABORT][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-lnl-7/igt@xe_fault_injection@exec-queue-create-fail-xe_vm_add_compute_exec_queue.html Known issues ------------ Here are the changes found in XEIGTPW_13481_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][2] ([Intel XE#2327]) +1 other test skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-3/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg2-set2: NOTRUN -> [SKIP][3] ([Intel XE#316]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-dg2-436/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html - shard-lnl: NOTRUN -> [SKIP][4] ([Intel XE#1407]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-lnl-4/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#610]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-3/igt@kms_big_fb@y-tiled-addfb-size-overflow.html - shard-dg2-set2: NOTRUN -> [SKIP][6] ([Intel XE#610]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb-size-overflow.html - shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#1428]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-lnl-7/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0: - shard-dg2-set2: NOTRUN -> [SKIP][8] ([Intel XE#1124]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#1124]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-7/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1124]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-lnl-7/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2314] / [Intel XE#2894]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html - shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#2191]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-lnl-8/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt@kms_bw@linear-tiling-4-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#367]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-6/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#1512]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-lnl-1/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#787]) +62 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-dg2-466/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html * igt@kms_ccs@bad-rotation-90-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_13481/shard-lnl-7/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2887]) +3 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-6/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#2887]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-lnl-3/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2652] / [Intel XE#787]) +7 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#455] / [Intel XE#787]) +9 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-dg2-436/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][21] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#2907]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_chamelium_frames@dp-crc-multiple: - shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2252]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-1/igt@kms_chamelium_frames@dp-crc-multiple.html - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#373]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-lnl-7/igt@kms_chamelium_frames@dp-crc-multiple.html * igt@kms_chamelium_hpd@hdmi-hpd: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#373]) +2 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-dg2-436/igt@kms_chamelium_hpd@hdmi-hpd.html * igt@kms_content_protection@atomic@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][26] ([Intel XE#1178]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-2/igt@kms_content_protection@atomic@pipe-a-dp-2.html * igt@kms_content_protection@dp-mst-type-0: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2390]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-7/igt@kms_content_protection@dp-mst-type-0.html - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#307]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-lnl-5/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@uevent@pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [FAIL][29] ([Intel XE#1188]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-dg2-432/igt@kms_content_protection@uevent@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-random-128x42: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#1424]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-lnl-7/igt@kms_cursor_crc@cursor-random-128x42.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2320]) +3 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-1/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#455]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-dg2-466/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-bmg: [PASS][33] -> [SKIP][34] ([Intel XE#2291]) +2 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8461/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#1508]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-bmg: [PASS][36] -> [SKIP][37] ([Intel XE#4302]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8461/shard-bmg-8/igt@kms_display_modes@extended-mode-basic.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dsc@dsc-with-bpc: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2244]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-5/igt@kms_dsc@dsc-with-bpc.html * igt@kms_feature_discovery@psr2: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2374]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-3/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3: - shard-bmg: [PASS][40] -> [FAIL][41] ([Intel XE#3321]) +1 other test fail [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8461/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-bmg: [PASS][42] -> [SKIP][43] ([Intel XE#2316]) +3 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8461/shard-bmg-7/igt@kms_flip@2x-flip-vs-panning-vs-hang.html [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-lnl: [PASS][44] -> [FAIL][45] ([Intel XE#301] / [Intel XE#3149]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8461/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1: - shard-lnl: [PASS][46] -> [FAIL][47] ([Intel XE#301]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8461/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2293] / [Intel XE#2380]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-1/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-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2293]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#651]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#5390]) +3 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move: - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#656]) +4 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-lnl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2312]) +2 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2311]) +4 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#651]) +5 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2313]) +6 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#653]) +7 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_hdr@static-toggle: - shard-bmg: [PASS][58] -> [SKIP][59] ([Intel XE#1503]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8461/shard-bmg-3/igt@kms_hdr@static-toggle.html [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-6/igt@kms_hdr@static-toggle.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#346]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-2/igt@kms_joiner@invalid-modeset-big-joiner.html - shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#346]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-dg2-433/igt@kms_joiner@invalid-modeset-big-joiner.html - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#346]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-lnl-6/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: [PASS][63] -> [SKIP][64] ([Intel XE#3012]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8461/shard-bmg-2/igt@kms_joiner@invalid-modeset-force-big-joiner.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#2927]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-lnl-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2927]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-8/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_plane_cursor@primary@pipe-a-hdmi-a-2-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][67] ([Intel XE#616]) +2 other tests fail [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-dg2-432/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-2-size-256.html * igt@kms_plane_multiple@2x-tiling-none: - shard-bmg: [PASS][68] -> [SKIP][69] ([Intel XE#4596]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8461/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-none.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2763]) +9 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c: - shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#2763]) +3 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-lnl-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#1489]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-5/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-dg2-set2: NOTRUN -> [SKIP][73] ([Intel XE#1489]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-dg2-436/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr@fbc-pr-cursor-plane-move: - shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-dg2-436/igt@kms_psr@fbc-pr-cursor-plane-move.html - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#1406]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-lnl-4/igt@kms_psr@fbc-pr-cursor-plane-move.html * igt@kms_psr@fbc-psr2-cursor-render: - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-2/igt@kms_psr@fbc-psr2-cursor-render.html * igt@kms_psr@fbc-psr2-cursor-render@edp-1: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#4609]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-lnl-6/igt@kms_psr@fbc-psr2-cursor-render@edp-1.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#2939]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-dg2-466/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_tv_load_detect@load-detect: - shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#2450]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-6/igt@kms_tv_load_detect@load-detect.html * igt@xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: NOTRUN -> [SKIP][80] ([Intel XE#1126]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-dg2-435/igt@xe_copy_basic@mem-set-linear-0xfd.html * igt@xe_eu_stall@invalid-event-report-count: - shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#5419]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-dg2-432/igt@xe_eu_stall@invalid-event-report-count.html * igt@xe_eudebug_online@breakpoint-many-sessions-single-tile: - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#4837]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-lnl-2/igt@xe_eudebug_online@breakpoint-many-sessions-single-tile.html * igt@xe_eudebug_online@interrupt-all: - shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#4837]) +2 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-1/igt@xe_eudebug_online@interrupt-all.html * igt@xe_eudebug_online@resume-dss: - shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#4837]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-dg2-464/igt@xe_eudebug_online@resume-dss.html * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind: - shard-dg2-set2: [PASS][85] -> [SKIP][86] ([Intel XE#1392]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8461/shard-dg2-436/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html * igt@xe_exec_basic@multigpu-once-bindexecqueue: - shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#1392]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-lnl-3/igt@xe_exec_basic@multigpu-once-bindexecqueue.html - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2322]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-7/igt@xe_exec_basic@multigpu-once-bindexecqueue.html * igt@xe_exec_fault_mode@once-bindexecqueue-rebind-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#288]) +7 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-dg2-464/igt@xe_exec_fault_mode@once-bindexecqueue-rebind-prefetch.html * igt@xe_exec_system_allocator@many-mmap-huge-nomemset: - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#4943]) +2 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-lnl-1/igt@xe_exec_system_allocator@many-mmap-huge-nomemset.html * igt@xe_exec_system_allocator@threads-many-execqueues-mmap-huge-nomemset: - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#4943]) +7 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-4/igt@xe_exec_system_allocator@threads-many-execqueues-mmap-huge-nomemset.html * igt@xe_exec_system_allocator@threads-many-large-mmap-mlock: - shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#4915]) +66 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-dg2-435/igt@xe_exec_system_allocator@threads-many-large-mmap-mlock.html * igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset: - shard-lnl: [PASS][93] -> [FAIL][94] ([Intel XE#5018]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8461/shard-lnl-7/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-lnl-5/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html * igt@xe_exec_system_allocator@threads-shared-vm-many-stride-new-bo-map-nomemset: - shard-bmg: [PASS][95] -> [FAIL][96] ([Intel XE#4937]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8461/shard-bmg-2/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-new-bo-map-nomemset.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-4/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-new-bo-map-nomemset.html * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv: - shard-dg2-set2: NOTRUN -> [ABORT][97] ([Intel XE#4917]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-dg2-434/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html * igt@xe_oa@non-privileged-map-oa-buffer: - shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#2541] / [Intel XE#3573]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-dg2-436/igt@xe_oa@non-privileged-map-oa-buffer.html * igt@xe_pat@pat-index-xelp: - shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#977]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-lnl-2/igt@xe_pat@pat-index-xelp.html - shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2245]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-4/igt@xe_pat@pat-index-xelp.html * igt@xe_pm@d3cold-multiple-execs: - shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2284]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-1/igt@xe_pm@d3cold-multiple-execs.html * igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq: - shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#4733]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-7/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html * igt@xe_pxp@pxp-stale-bo-exec-post-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#4733]) +2 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-dg2-464/igt@xe_pxp@pxp-stale-bo-exec-post-suspend.html * igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs: - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#4130]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-5/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html * igt@xe_sriov_flr@flr-each-isolation: - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#3342]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-dg2-463/igt@xe_sriov_flr@flr-each-isolation.html - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#3342]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-lnl-1/igt@xe_sriov_flr@flr-each-isolation.html - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#3342]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-2/igt@xe_sriov_flr@flr-each-isolation.html #### Possible fixes #### * igt@intel_hwmon@hwmon-write: - shard-bmg: [FAIL][108] ([Intel XE#4665]) -> [PASS][109] [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8461/shard-bmg-5/igt@intel_hwmon@hwmon-write.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-6/igt@intel_hwmon@hwmon-write.html * igt@kms_cursor_legacy@cursor-vs-flip-varying-size: - shard-bmg: [DMESG-WARN][110] ([Intel XE#5354]) -> [PASS][111] [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8461/shard-bmg-5/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-4/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-bmg: [SKIP][112] ([Intel XE#2291]) -> [PASS][113] +6 other tests pass [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8461/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-8/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-bmg: [SKIP][114] ([Intel XE#1340]) -> [PASS][115] [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8461/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-bmg: [SKIP][116] ([Intel XE#4354]) -> [PASS][117] [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8461/shard-bmg-5/igt@kms_dp_link_training@non-uhbr-sst.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-4/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_flip@2x-flip-vs-dpms-on-nop: - shard-bmg: [SKIP][118] ([Intel XE#2316]) -> [PASS][119] +9 other tests pass [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8461/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-3/igt@kms_flip@2x-flip-vs-dpms-on-nop.html * igt@kms_flip@nonblocking-read: - shard-dg2-set2: [SKIP][120] ([Intel XE#4208] / [i915#2575]) -> [PASS][121] +6 other tests pass [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8461/shard-dg2-435/igt@kms_flip@nonblocking-read.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-dg2-464/igt@kms_flip@nonblocking-read.html * igt@kms_joiner@basic-force-big-joiner: - shard-bmg: [SKIP][122] ([Intel XE#3012]) -> [PASS][123] [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8461/shard-bmg-6/igt@kms_joiner@basic-force-big-joiner.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-8/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_pm_dc@dc5-psr: - shard-lnl: [FAIL][124] ([Intel XE#718]) -> [PASS][125] [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8461/shard-lnl-1/igt@kms_pm_dc@dc5-psr.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-lnl-1/igt@kms_pm_dc@dc5-psr.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-lnl: [SKIP][126] ([Intel XE#4692]) -> [PASS][127] [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8461/shard-lnl-8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-lnl-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@xe_exec_basic@many-null-rebind: - shard-dg2-set2: [SKIP][128] ([Intel XE#4208]) -> [PASS][129] +10 other tests pass [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8461/shard-dg2-435/igt@xe_exec_basic@many-null-rebind.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-dg2-432/igt@xe_exec_basic@many-null-rebind.html * igt@xe_exec_basic@multigpu-once-null: - shard-dg2-set2: [SKIP][130] ([Intel XE#1392]) -> [PASS][131] +4 other tests pass [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8461/shard-dg2-432/igt@xe_exec_basic@multigpu-once-null.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-dg2-434/igt@xe_exec_basic@multigpu-once-null.html #### Warnings #### * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-dg2-set2: [SKIP][132] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][133] ([Intel XE#1124]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8461/shard-dg2-435/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-dg2-463/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_bw@linear-tiling-4-displays-3840x2160p: - shard-dg2-set2: [SKIP][134] ([Intel XE#4208] / [i915#2575]) -> [SKIP][135] ([Intel XE#367]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8461/shard-dg2-435/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-dg2-436/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][136] ([Intel XE#4208]) -> [SKIP][137] ([Intel XE#2907]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8461/shard-dg2-435/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-dg2-463/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [INCOMPLETE][138] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345]) -> [INCOMPLETE][139] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8461/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt@kms_content_protection@atomic: - shard-bmg: [SKIP][140] ([Intel XE#2341]) -> [FAIL][141] ([Intel XE#1178]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8461/shard-bmg-6/igt@kms_content_protection@atomic.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-2/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2-set2: [SKIP][142] ([Intel XE#4208] / [i915#2575]) -> [SKIP][143] ([Intel XE#307]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8461/shard-dg2-435/igt@kms_content_protection@dp-mst-type-0.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-dg2-464/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@lic-type-0: - shard-bmg: [FAIL][144] ([Intel XE#1178]) -> [SKIP][145] ([Intel XE#2341]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8461/shard-bmg-3/igt@kms_content_protection@lic-type-0.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-6/igt@kms_content_protection@lic-type-0.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][146] ([Intel XE#2312]) -> [SKIP][147] ([Intel XE#2311]) +17 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8461/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-bmg: [SKIP][148] ([Intel XE#2312]) -> [SKIP][149] ([Intel XE#5390]) +16 other tests skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8461/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][150] ([Intel XE#5390]) -> [SKIP][151] ([Intel XE#2312]) +6 other tests skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8461/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][152] ([Intel XE#2311]) -> [SKIP][153] ([Intel XE#2312]) +17 other tests skip [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8461/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][154] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][155] ([Intel XE#651]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8461/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff: - shard-dg2-set2: [SKIP][156] ([Intel XE#4208]) -> [SKIP][157] ([Intel XE#651]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8461/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][158] ([Intel XE#2313]) -> [SKIP][159] ([Intel XE#2312]) +16 other tests skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8461/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][160] ([Intel XE#2312]) -> [SKIP][161] ([Intel XE#2313]) +21 other tests skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8461/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2-set2: [SKIP][162] ([Intel XE#4208]) -> [SKIP][163] ([Intel XE#2927]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8461/shard-dg2-435/igt@kms_joiner@invalid-modeset-ultra-joiner.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-dg2-435/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-bmg: [SKIP][164] ([Intel XE#4596]) -> [SKIP][165] ([Intel XE#5021]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8461/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-yf.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-8/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: [SKIP][166] ([Intel XE#2426]) -> [FAIL][167] ([Intel XE#1729]) [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8461/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html * igt@xe_eudebug_online@breakpoint-many-sessions-single-tile: - shard-dg2-set2: [SKIP][168] ([Intel XE#4208]) -> [SKIP][169] ([Intel XE#4837]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8461/shard-dg2-435/igt@xe_eudebug_online@breakpoint-many-sessions-single-tile.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-dg2-435/igt@xe_eudebug_online@breakpoint-many-sessions-single-tile.html * igt@xe_exec_system_allocator@twice-large-new-nomemset: - shard-dg2-set2: [SKIP][170] ([Intel XE#4208]) -> [SKIP][171] ([Intel XE#4915]) +8 other tests skip [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8461/shard-dg2-435/igt@xe_exec_system_allocator@twice-large-new-nomemset.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-dg2-433/igt@xe_exec_system_allocator@twice-large-new-nomemset.html [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#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [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#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [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#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245 [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#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [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#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939 [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#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130 [Intel XE#4208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208 [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212 [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302 [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596 [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609 [Intel XE#4665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4665 [Intel XE#4692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4692 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915 [Intel XE#4917]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4917 [Intel XE#4937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4937 [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#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354 [Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390 [Intel XE#5419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5419 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [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#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8461 -> IGTPW_13481 IGTPW_13481: 90006a1ec88a19c55f0b08c6b3a592f181abdc82 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8461: 873912f2353ad861a172f6c787c054f934aee71d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-3422-8a27005ec6862de0c21ad3b72db77a9796bb5b70: 8a27005ec6862de0c21ad3b72db77a9796bb5b70 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/index.html [-- Attachment #2: Type: text/html, Size: 56548 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: ✗ Xe.CI.Full: failure for Replace intel_sysfs_debugfs 2025-07-17 11:37 ` Patchwork @ 2025-07-17 13:42 ` Peter Senna Tschudin 0 siblings, 0 replies; 15+ messages in thread From: Peter Senna Tschudin @ 2025-07-17 13:42 UTC (permalink / raw) To: igt-dev, I915-ci-infra Dear I915, On 7/17/2025 1:37 PM, Patchwork wrote: > == Series Details == > > Series: Replace intel_sysfs_debugfs > URL : https://patchwork.freedesktop.org/series/151696/ > State : failure > > == Summary == > > CI Bug Log - changes from XEIGT_8461_FULL -> XEIGTPW_13481_FULL > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with XEIGTPW_13481_FULL absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in XEIGTPW_13481_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_13481_FULL: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@xe_fault_injection@exec-queue-create-fail-xe_vm_add_compute_exec_queue: > - shard-lnl: NOTRUN -> [ABORT][1] > [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13481/shard-lnl-7/igt@xe_fault_injection@exec-queue-create-fail-xe_vm_add_compute_exec_queue.html These are not related. Thank you., Peter [...] ^ permalink raw reply [flat|nested] 15+ messages in thread
end of thread, other threads:[~2025-07-18 15:55 UTC | newest] Thread overview: 15+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-07-16 9:36 [PATCH v6 i-g-t 0/6] Replace intel_sysfs_debugfs Peter Senna Tschudin 2025-07-16 9:36 ` [PATCH v6 i-g-t 1/6] lib/igt_dir: utilities for directory traversal and file handling Peter Senna Tschudin 2025-07-16 9:36 ` [PATCH v6 i-g-t 2/6] tests: Add core_debugfs Peter Senna Tschudin 2025-07-16 9:36 ` [PATCH v6 i-g-t 3/6] tests: Add kms_debugfs Peter Senna Tschudin 2025-07-16 15:00 ` Rodrigo Vivi 2025-07-18 15:55 ` Kamil Konieczny 2025-07-16 9:36 ` [PATCH v6 i-g-t 4/6] tests: Add core_sysfs Peter Senna Tschudin 2025-07-16 9:36 ` [PATCH v6 i-g-t 5/6] tests: Add xe_debugfs Peter Senna Tschudin 2025-07-16 9:36 ` [PATCH v6 i-g-t 6/6] tests/intel: Remove intel_sysfs_debugfs Peter Senna Tschudin 2025-07-16 14:23 ` ✓ i915.CI.BAT: success for Replace intel_sysfs_debugfs Patchwork 2025-07-16 15:48 ` ✓ Xe.CI.BAT: " Patchwork 2025-07-17 6:39 ` ✓ i915.CI.Full: " Patchwork 2025-07-17 8:09 ` ✗ Xe.CI.Full: failure " Patchwork 2025-07-17 11:37 ` Patchwork 2025-07-17 13:42 ` Peter Senna Tschudin
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox