* [RFC i-g-t] tests/intel/sec_xe_exec_queue_timeslice_abuse: Validate the Impact of Timeslice Abuse on Exec Queues
@ 2025-05-04 20:28 Peter Senna Tschudin
2025-05-04 21:23 ` ✓ i915.CI.BAT: success for " Patchwork
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Peter Senna Tschudin @ 2025-05-04 20:28 UTC (permalink / raw)
To: igt-dev; +Cc: Peter Senna Tschudin
DO NOT MERGE!
This is an RFC for a new kind of security-related test.
The objective is to test the behavior of the GPU scheduler under
conditions where one execution queue ("attacker") is configured with an
abnormally large timeslice, potentially disrupting the normal execution
of another queue ("attacked").
The proposed steps are:
For each GPU engine (drm_xe_engine_class_instance?):
1. Determine the values for the following parameters:
- `timeslice_duration_us`: Default timeslice duration in
microseconds.
- `timeslice_duration_min`: Minimum allowable timeslice duration.
- `timeslice_duration_max`: Maximum allowable timeslice duration.
2. Create two execution queues with the following configurations:
- `attacked`: Queue with standard/default settings.
- `attacker`: Queue configured with an extended timeslice
duration. The goal is to:
a) First attempt to set a timeslice greater than
`timeslice_duration_max`.
b) If setting a timeslice above `timeslice_duration_max`
fails, fallback to setting the timeslice to
`timeslice_duration_max`.
3. Submit tasks to both queues:
- Submit a workload to the `attacked` queue with normal
operations.
- Submit a workload to the `attacker` queue designed to
maximize its timeslice and potentially disrupt the GPU
scheduler.
4. Verify the behavior of the `attacked` queue:
- Ensure that tasks in the `attacked` queue execute within the
expected time constraints and are not delayed or blocked due
to the extended timeslice of the `attacker` queue.
- Specifically, confirm that tasks in the `attacked` queue do
not exceed `timeslice_duration_max` in terms of execution
delays or interruptions.
This RFC implements the first step that is reading timeslice values for
each engine.
Signed-off-by: Peter Senna Tschudin <peter.senna@linux.intel.com>
---
.../intel/sec_xe_exec_queue_timeslice_abuse.c | 296 ++++++++++++++++++
tests/meson.build | 1 +
2 files changed, 297 insertions(+)
create mode 100644 tests/intel/sec_xe_exec_queue_timeslice_abuse.c
diff --git a/tests/intel/sec_xe_exec_queue_timeslice_abuse.c b/tests/intel/sec_xe_exec_queue_timeslice_abuse.c
new file mode 100644
index 000000000..bc00a0cd5
--- /dev/null
+++ b/tests/intel/sec_xe_exec_queue_timeslice_abuse.c
@@ -0,0 +1,296 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2025 Intel Corporation
+ */
+
+/*
+ * Test Specification: Validate the Impact of Timeslice Abuse on Exec Queues
+ *
+ * Objective
+ * Test the behavior of the GPU scheduler under conditions where one execution
+ * queue ("attacker") is configured with an abnormally large timeslice,
+ * potentially disrupting the normal execution of another queue ("attacked").
+ *
+ * Steps:
+ *
+ * For each GPU engine available:
+ * 1. Determine the values for the following parameters:
+ * - `timeslice_duration_us`: Default timeslice duration in
+ * microseconds.
+ * - `timeslice_duration_min`: Minimum allowable timeslice duration.
+ * - `timeslice_duration_max`: Maximum allowable timeslice duration.
+ *
+ * 2. Create two execution queues with the following configurations:
+ * - `attacked`: Queue with standard/default settings.
+ * - `attacker`: Queue configured with an extended timeslice
+ * duration. The goal is to:
+ * a) First attempt to set a timeslice greater than
+ * `timeslice_duration_max`.
+ * b) If setting a timeslice above `timeslice_duration_max`
+ * fails, fallback to setting the timeslice to
+ * `timeslice_duration_max`.
+ *
+ * 3. Submit tasks to both queues:
+ * - Submit a workload to the `attacked` queue with normal
+ * operations.
+ * - Submit a workload to the `attacker` queue designed to
+ * maximize its timeslice and potentially disrupt the GPU
+ * scheduler.
+ *
+ * 4. Verify the behavior of the `attacked` queue:
+ * - Ensure that tasks in the `attacked` queue execute within the
+ * expected time constraints and are not delayed or blocked due
+ * to the extended timeslice of the `attacker` queue.
+ * - Specifically, confirm that tasks in the `attacked` queue do
+ * not exceed `timeslice_duration_max` in terms of execution
+ * delays or interruptions.
+ *
+ */
+
+#include <dirent.h>
+#include <fcntl.h>
+
+#include "igt.h"
+#include "igt_list.h"
+#include "igt_sysfs.h"
+#include "xe/xe_query.h"
+
+static struct igt_list_head engines_list;
+
+/*
+ * Struct to Hold Data for Each Engine
+ */
+struct engines_timeslice_test_data {
+ /* Name of the GPU engine (e.g., "CCS", "VCS", "RCS", "BCS", "VECS") */
+ const char *engine_name;
+
+ /* Minimum allowable timeslice duration (microseconds) */
+ uint32_t timeslice_min;
+
+ /* Maximum allowable timeslice duration (microseconds) */
+ uint32_t timeslice_max;
+
+ /* Timeslice value set for the attacker queue (microseconds) */
+ uint32_t timeslice_set;
+
+ /* Pointer to the attacked execution queue */
+ struct xe_exec_queue *attacked_queue;
+
+ /* Pointer to the attacker execution queue */
+ struct xe_exec_queue *attacker_queue;
+
+ /* Linked list node */
+ struct igt_list_head link;
+};
+
+/**
+ * engine_list_add_timeslices: Check if there is already an entry in the list
+ * for the engine and add timeslices.
+ * @engine: name of the engine
+ * @set: timeslice duration set for the attacker queue
+ * @max: maximum allowable timeslice duration
+ * @min: minimum allowable timeslice duration
+ *
+ * Returns: bool indicating if timeslices were added to the list
+ *
+ */
+static bool engines_list_add_timeslices(const char *engine, uint32_t set,
+ uint32_t min, uint32_t max)
+{
+ struct engines_timeslice_test_data *engine_data = NULL;
+
+ /* Check if the engine already exists in the list. If it does
+ * add the timeslice values to the existing entry
+ */
+ igt_list_for_each_entry(engine_data, &engines_list, link) {
+ if (strcmp(engine_data->engine_name, engine) == 0) {
+ engine_data->timeslice_set = set;
+ engine_data->timeslice_min = min;
+ engine_data->timeslice_max = max;
+ return true;
+ }
+ }
+ /* If the engine does not exist, create a new entry */
+ engine_data = malloc(sizeof(*engine_data));
+ if (!engine_data)
+ return false;
+
+ engine_data->engine_name = strdup(engine);
+ engine_data->timeslice_set = set;
+ engine_data->timeslice_min = min;
+ engine_data->timeslice_max = max;
+ engine_data->attacked_queue = NULL;
+ engine_data->attacker_queue = NULL;
+
+ igt_list_add(&engine_data->link, &engines_list);
+ return true;
+}
+
+/**
+ * engine_list_print_all: Print all engines in the list
+ *
+ * Returns: void
+ *
+ */
+static void engines_list_print_all(void)
+{
+ struct engines_timeslice_test_data *engine_data = NULL;
+
+ igt_list_for_each_entry(engine_data, &engines_list, link) {
+ igt_info("Engine: %s, Set: %u, Min: %u, Max: %u\n",
+ engine_data->engine_name,
+ engine_data->timeslice_set,
+ engine_data->timeslice_min,
+ engine_data->timeslice_max);
+ }
+}
+
+/**
+ * engine_free_all: Free all engines in the list
+ *
+ * Returns: void
+ *
+ */
+static void engines_list_free_all(void)
+{
+ struct engines_timeslice_test_data *engine_data = NULL, *tmp = NULL;
+
+ igt_list_for_each_entry_safe(engine_data, tmp, &engines_list, link) {
+ free((void *)engine_data->engine_name);
+ free(engine_data);
+ }
+}
+
+/**
+ * get_queue_timeslice_properties: Get the timeslice properties for an engine
+ * @xe: xe device file descriptor
+ * @engine: engine file descriptor
+ * @set: pointer to store the timeslice duration set for the attacker queue
+ * @min: pointer to store the minimum allowable timeslice duration
+ * @max: pointer to store the maximum allowable timeslice duration
+ *
+ * Returns: 0 on success, -1 on failure
+ */
+static int get_queue_timeslice_properties(int xe, int engine,
+ unsigned int *set, unsigned int *min, unsigned int *max)
+{
+ int defaults;
+
+ defaults = openat(engine, ".defaults", O_DIRECTORY);
+ if (defaults == -1)
+ return -1; /* Failure: Unable to open the defaults directory */
+
+ /* Read the max, min, and set values from the sysfs */
+ if (igt_sysfs_scanf(defaults, "timeslice_duration_max", "%u", max) != 1 ||
+ igt_sysfs_scanf(defaults, "timeslice_duration_min", "%u", min) != 1 ||
+ igt_sysfs_scanf(engine, "timeslice_duration_us", "%u", set) != 1) {
+ close(defaults);
+ return -1; /* Failure: Unable to read sysfs values */
+ }
+ close(defaults);
+
+ return 0; /* Success */
+}
+
+/**
+ * TEST: Validate the Impact of Timeslice Abuse on Exec Queues
+ * Category: Security
+ * Mega feature: Security Validation Plan
+ * Sub-category: Security Validation Plan
+ * Functionality: Test if exec queue timeslice property can be used as an
+ * attack to prevent other queues from running
+ * Test category: security test
+ *
+ * SUBTEST: get-timeslice-properties
+ * Description: Test to check if timeslice properties are available and
+ * read them.
+ * Test category: functionality test
+ */
+
+/**
+ * engine_list_add_timeslices: Check if there is already an entry in the list
+ * for the engine and add timeslices.
+ * @engine: name of the engine
+ * @set: timeslice duration set for the attacker queue
+ * @max: maximum allowable timeslice duration
+ * @min: minimum allowable timeslice duration
+ *
+ * Returns: bool indicating if timeslices were added to the list
+ *
+ */
+igt_main
+{
+ int gt = -1;
+ bool has_sysfs;
+ unsigned int max = -1;
+ unsigned int min = -1;
+ unsigned int set = -1;
+ int sys_fd = -1;
+ int xe = -1;
+
+ igt_fixture {
+ /* Initialize the list of engines */
+ IGT_INIT_LIST_HEAD(&engines_list);
+
+ xe = drm_open_driver(DRIVER_XE);
+ sys_fd = igt_sysfs_open(xe);
+
+ if (sys_fd != -1) {
+ close(sys_fd);
+ has_sysfs = true;
+ } else {
+ has_sysfs = false;
+ }
+ }
+
+ igt_subtest("get-timeslice-properties") {
+ xe_for_each_gt(xe, gt) {
+ int engines = -1;
+ int gt_fd = -1;
+ DIR *dir;
+ struct dirent *de;
+
+ igt_require(has_sysfs);
+
+ gt_fd = xe_sysfs_gt_open(xe, gt);
+ igt_require(gt_fd != -1);
+
+ engines = openat(gt_fd, "engines", O_RDONLY);
+ igt_require(engines != -1);
+
+ lseek(engines, 0, SEEK_SET);
+
+ dir = fdopendir(engines);
+ if (!dir)
+ close(engines);
+
+ while ((de = readdir(dir))) {
+ int engine_fd = -1;
+
+ if (*de->d_name == '.')
+ continue;
+
+ engine_fd = openat(engines, de->d_name, O_RDONLY);
+ if (engine_fd < 0)
+ continue;
+
+ /* Check if the timeslice properties are available */
+ if (get_queue_timeslice_properties(xe, engine_fd, &set, &min, &max) == 0)
+ engines_list_add_timeslices(de->d_name, set, min, max);
+ else
+ igt_warn("Failed to get timeslice properties\n");
+
+ close(engine_fd);
+ }
+ close(gt_fd);
+ }
+ engines_list_print_all();
+ }
+
+ igt_fixture {
+ engines_list_free_all();
+ close(sys_fd);
+ xe_device_put(xe);
+ drm_close_driver(xe);
+ }
+}
diff --git a/tests/meson.build b/tests/meson.build
index 20ddddb89..560b74ceb 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -273,6 +273,7 @@ intel_kms_progs = [
]
intel_xe_progs = [
+ 'sec_xe_exec_queue_timeslice_abuse',
'xe_wedged',
'xe_ccs',
'xe_create',
--
2.43.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* ✓ i915.CI.BAT: success for tests/intel/sec_xe_exec_queue_timeslice_abuse: Validate the Impact of Timeslice Abuse on Exec Queues
2025-05-04 20:28 [RFC i-g-t] tests/intel/sec_xe_exec_queue_timeslice_abuse: Validate the Impact of Timeslice Abuse on Exec Queues Peter Senna Tschudin
@ 2025-05-04 21:23 ` Patchwork
2025-05-04 21:24 ` Patchwork
` (3 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2025-05-04 21:23 UTC (permalink / raw)
To: Peter Senna Tschudin; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3518 bytes --]
== Series Details ==
Series: tests/intel/sec_xe_exec_queue_timeslice_abuse: Validate the Impact of Timeslice Abuse on Exec Queues
URL : https://patchwork.freedesktop.org/series/148581/
State : success
== Summary ==
CI Bug Log - changes from IGT_8353 -> IGTPW_13074
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/index.html
Participating hosts (43 -> 43)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in IGTPW_13074 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live:
- bat-dg2-8: [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8353/bat-dg2-8/igt@i915_selftest@live.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/bat-dg2-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-dg2-9: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8353/bat-dg2-9/igt@i915_selftest@live@workarounds.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/bat-dg2-9/igt@i915_selftest@live@workarounds.html
* igt@kms_pm_rpm@basic-rte:
- bat-rpls-4: [PASS][5] -> [DMESG-WARN][6] ([i915#13400])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8353/bat-rpls-4/igt@kms_pm_rpm@basic-rte.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/bat-rpls-4/igt@kms_pm_rpm@basic-rte.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-arlh-2: [INCOMPLETE][7] ([i915#14046]) -> [PASS][8] +1 other test pass
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8353/bat-arlh-2/igt@i915_selftest@live.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/bat-arlh-2/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arls-5: [DMESG-FAIL][9] ([i915#12061]) -> [PASS][10] +1 other test pass
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8353/bat-arls-5/igt@i915_selftest@live@workarounds.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/bat-arls-5/igt@i915_selftest@live@workarounds.html
- bat-arls-6: [DMESG-FAIL][11] ([i915#12061]) -> [PASS][12] +1 other test pass
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8353/bat-arls-6/igt@i915_selftest@live@workarounds.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/bat-arls-6/igt@i915_selftest@live@workarounds.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#13400]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13400
[i915#14046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14046
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8353 -> IGTPW_13074
* Linux: CI_DRM_16496 -> CI_DRM_16498
CI-20190529: 20190529
CI_DRM_16496: 66dbd091942ffec06a91480c22916f389670a87c @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_16498: 9c8c2c903387f43ed1e34e2c5f9ca7bd0201f115 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_13074: 799aac09933f76d6d4cbddf7c30bc6aee7d30704 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8353: 8353
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/index.html
[-- Attachment #2: Type: text/html, Size: 4477 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ i915.CI.BAT: success for tests/intel/sec_xe_exec_queue_timeslice_abuse: Validate the Impact of Timeslice Abuse on Exec Queues
2025-05-04 20:28 [RFC i-g-t] tests/intel/sec_xe_exec_queue_timeslice_abuse: Validate the Impact of Timeslice Abuse on Exec Queues Peter Senna Tschudin
2025-05-04 21:23 ` ✓ i915.CI.BAT: success for " Patchwork
@ 2025-05-04 21:24 ` Patchwork
2025-05-04 21:31 ` ✓ Xe.CI.BAT: " Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2025-05-04 21:24 UTC (permalink / raw)
To: Peter Senna Tschudin; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3518 bytes --]
== Series Details ==
Series: tests/intel/sec_xe_exec_queue_timeslice_abuse: Validate the Impact of Timeslice Abuse on Exec Queues
URL : https://patchwork.freedesktop.org/series/148581/
State : success
== Summary ==
CI Bug Log - changes from IGT_8353 -> IGTPW_13074
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/index.html
Participating hosts (43 -> 43)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in IGTPW_13074 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live:
- bat-dg2-8: [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8353/bat-dg2-8/igt@i915_selftest@live.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/bat-dg2-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-dg2-9: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8353/bat-dg2-9/igt@i915_selftest@live@workarounds.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/bat-dg2-9/igt@i915_selftest@live@workarounds.html
* igt@kms_pm_rpm@basic-rte:
- bat-rpls-4: [PASS][5] -> [DMESG-WARN][6] ([i915#13400])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8353/bat-rpls-4/igt@kms_pm_rpm@basic-rte.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/bat-rpls-4/igt@kms_pm_rpm@basic-rte.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-arlh-2: [INCOMPLETE][7] ([i915#14046]) -> [PASS][8] +1 other test pass
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8353/bat-arlh-2/igt@i915_selftest@live.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/bat-arlh-2/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arls-5: [DMESG-FAIL][9] ([i915#12061]) -> [PASS][10] +1 other test pass
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8353/bat-arls-5/igt@i915_selftest@live@workarounds.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/bat-arls-5/igt@i915_selftest@live@workarounds.html
- bat-arls-6: [DMESG-FAIL][11] ([i915#12061]) -> [PASS][12] +1 other test pass
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8353/bat-arls-6/igt@i915_selftest@live@workarounds.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/bat-arls-6/igt@i915_selftest@live@workarounds.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#13400]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13400
[i915#14046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14046
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8353 -> IGTPW_13074
* Linux: CI_DRM_16496 -> CI_DRM_16498
CI-20190529: 20190529
CI_DRM_16496: 66dbd091942ffec06a91480c22916f389670a87c @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_16498: 9c8c2c903387f43ed1e34e2c5f9ca7bd0201f115 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_13074: 799aac09933f76d6d4cbddf7c30bc6aee7d30704 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8353: 8353
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/index.html
[-- Attachment #2: Type: text/html, Size: 4477 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ Xe.CI.BAT: success for tests/intel/sec_xe_exec_queue_timeslice_abuse: Validate the Impact of Timeslice Abuse on Exec Queues
2025-05-04 20:28 [RFC i-g-t] tests/intel/sec_xe_exec_queue_timeslice_abuse: Validate the Impact of Timeslice Abuse on Exec Queues Peter Senna Tschudin
2025-05-04 21:23 ` ✓ i915.CI.BAT: success for " Patchwork
2025-05-04 21:24 ` Patchwork
@ 2025-05-04 21:31 ` Patchwork
2025-05-04 22:56 ` ✓ i915.CI.Full: " Patchwork
2025-05-04 23:08 ` ✓ Xe.CI.Full: " Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2025-05-04 21:31 UTC (permalink / raw)
To: Peter Senna Tschudin; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5070 bytes --]
== Series Details ==
Series: tests/intel/sec_xe_exec_queue_timeslice_abuse: Validate the Impact of Timeslice Abuse on Exec Queues
URL : https://patchwork.freedesktop.org/series/148581/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8353_BAT -> XEIGTPW_13074_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (8 -> 8)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_13074_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_evict@evict-beng-small-cm:
- bat-adlp-vf: NOTRUN -> [SKIP][1] ([Intel XE#261] / [Intel XE#688]) +9 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/bat-adlp-vf/igt@xe_evict@evict-beng-small-cm.html
* igt@xe_exec_fault_mode@twice-rebind:
- bat-adlp-vf: NOTRUN -> [SKIP][2] ([Intel XE#288]) +32 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/bat-adlp-vf/igt@xe_exec_fault_mode@twice-rebind.html
* igt@xe_gt_freq@freq_fixed_idle:
- bat-adlp-vf: NOTRUN -> [SKIP][3] ([Intel XE#2464]) +2 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/bat-adlp-vf/igt@xe_gt_freq@freq_fixed_idle.html
* igt@xe_live_ktest@xe_bo:
- bat-adlp-vf: NOTRUN -> [SKIP][4] ([Intel XE#2229] / [Intel XE#455]) +2 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- bat-adlp-vf: NOTRUN -> [SKIP][5] ([Intel XE#2229])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/bat-adlp-vf/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_mmap@vram:
- bat-adlp-vf: NOTRUN -> [SKIP][6] ([Intel XE#1008])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/bat-adlp-vf/igt@xe_mmap@vram.html
* igt@xe_pat@pat-index-xe2:
- bat-adlp-vf: NOTRUN -> [SKIP][7] ([Intel XE#977])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/bat-adlp-vf/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xehpc:
- bat-adlp-vf: NOTRUN -> [SKIP][8] ([Intel XE#2838] / [Intel XE#979])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/bat-adlp-vf/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelpg:
- bat-adlp-vf: NOTRUN -> [SKIP][9] ([Intel XE#979])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/bat-adlp-vf/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm_residency@gt-c6-on-idle:
- bat-adlp-vf: NOTRUN -> [SKIP][10] ([Intel XE#2468])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/bat-adlp-vf/igt@xe_pm_residency@gt-c6-on-idle.html
* igt@xe_sriov_flr@flr-vf1-clear:
- bat-adlp-vf: NOTRUN -> [SKIP][11] ([Intel XE#3342])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/bat-adlp-vf/igt@xe_sriov_flr@flr-vf1-clear.html
#### Possible fixes ####
* igt@xe_exec_balancer@twice-virtual-userptr-rebind:
- bat-adlp-vf: [ABORT][12] ([Intel XE#3970]) -> [PASS][13]
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/bat-adlp-vf/igt@xe_exec_balancer@twice-virtual-userptr-rebind.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/bat-adlp-vf/igt@xe_exec_balancer@twice-virtual-userptr-rebind.html
[Intel XE#1008]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1008
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2464]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2464
[Intel XE#2468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2468
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
Build changes
-------------
* IGT: IGT_8353 -> IGTPW_13074
* Linux: xe-3030-66dbd091942ffec06a91480c22916f389670a87c -> xe-3032-9c8c2c903387f43ed1e34e2c5f9ca7bd0201f115
IGTPW_13074: 799aac09933f76d6d4cbddf7c30bc6aee7d30704 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8353: 8353
xe-3030-66dbd091942ffec06a91480c22916f389670a87c: 66dbd091942ffec06a91480c22916f389670a87c
xe-3032-9c8c2c903387f43ed1e34e2c5f9ca7bd0201f115: 9c8c2c903387f43ed1e34e2c5f9ca7bd0201f115
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/index.html
[-- Attachment #2: Type: text/html, Size: 6044 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ i915.CI.Full: success for tests/intel/sec_xe_exec_queue_timeslice_abuse: Validate the Impact of Timeslice Abuse on Exec Queues
2025-05-04 20:28 [RFC i-g-t] tests/intel/sec_xe_exec_queue_timeslice_abuse: Validate the Impact of Timeslice Abuse on Exec Queues Peter Senna Tschudin
` (2 preceding siblings ...)
2025-05-04 21:31 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-05-04 22:56 ` Patchwork
2025-05-04 23:08 ` ✓ Xe.CI.Full: " Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2025-05-04 22:56 UTC (permalink / raw)
To: Peter Senna Tschudin; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 92237 bytes --]
== Series Details ==
Series: tests/intel/sec_xe_exec_queue_timeslice_abuse: Validate the Impact of Timeslice Abuse on Exec Queues
URL : https://patchwork.freedesktop.org/series/148581/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_16498_full -> IGTPW_13074_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/index.html
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_13074_full:
### IGT changes ###
#### Possible regressions ####
* {igt@sec_xe_exec_queue_timeslice_abuse@get-timeslice-properties} (NEW):
- shard-dg2: NOTRUN -> [SKIP][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-4/igt@sec_xe_exec_queue_timeslice_abuse@get-timeslice-properties.html
- shard-dg1: NOTRUN -> [SKIP][2]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg1-14/igt@sec_xe_exec_queue_timeslice_abuse@get-timeslice-properties.html
- shard-mtlp: NOTRUN -> [SKIP][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-1/igt@sec_xe_exec_queue_timeslice_abuse@get-timeslice-properties.html
New tests
---------
New tests have been introduced between CI_DRM_16498_full and IGTPW_13074_full:
### New IGT tests (7) ###
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-hdmi-a-2-y-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.18] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-a-hdmi-a-2-y-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.18] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-b-hdmi-a-2-y-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.19] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-b-hdmi-a-2-y-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.17] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-c-hdmi-a-2-y-rc-ccs:
- Statuses : 1 pass(s)
- Exec time: [2.19] s
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-c-hdmi-a-2-y-rc-ccs-cc:
- Statuses : 1 skip(s)
- Exec time: [0.17] s
* igt@sec_xe_exec_queue_timeslice_abuse@get-timeslice-properties:
- Statuses : 4 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_13074_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-dg1: NOTRUN -> [SKIP][4] ([i915#8411])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg1-16/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@api_intel_bb@crc32:
- shard-rkl: NOTRUN -> [SKIP][5] ([i915#6230])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-rkl-3/igt@api_intel_bb@crc32.html
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-mtlp: NOTRUN -> [SKIP][6] ([i915#8411])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-2/igt@api_intel_bb@object-reloc-purge-cache.html
- shard-dg2-9: NOTRUN -> [SKIP][7] ([i915#8411])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-dg2: NOTRUN -> [SKIP][8] ([i915#11078])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-2/igt@device_reset@unbind-cold-reset-rebind.html
* igt@gem_bad_reloc@negative-reloc:
- shard-rkl: NOTRUN -> [SKIP][9] ([i915#3281]) +8 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-rkl-8/igt@gem_bad_reloc@negative-reloc.html
* igt@gem_basic@multigpu-create-close:
- shard-dg2: NOTRUN -> [SKIP][10] ([i915#7697])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-11/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-mtlp: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#9323])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-4/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: [PASS][12] -> [INCOMPLETE][13] ([i915#13356])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16498/shard-dg2-8/igt@gem_ccs@suspend-resume.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-1/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0:
- shard-dg2: [PASS][14] -> [INCOMPLETE][15] ([i915#12392] / [i915#13356])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16498/shard-dg2-8/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-1/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html
* igt@gem_ctx_exec@basic-norecovery:
- shard-mtlp: NOTRUN -> [ABORT][16] ([i915#13193] / [i915#13723])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-7/igt@gem_ctx_exec@basic-norecovery.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: NOTRUN -> [SKIP][17] ([i915#280]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-11/igt@gem_ctx_sseu@invalid-sseu.html
- shard-mtlp: NOTRUN -> [SKIP][18] ([i915#280])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-7/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@in-flight-contexts-immediate:
- shard-mtlp: [PASS][19] -> [ABORT][20] ([i915#13193] / [i915#13723]) +1 other test abort
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16498/shard-mtlp-5/igt@gem_eio@in-flight-contexts-immediate.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-7/igt@gem_eio@in-flight-contexts-immediate.html
* igt@gem_eio@in-flight-suspend:
- shard-rkl: [PASS][21] -> [INCOMPLETE][22] ([i915#13390])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16498/shard-rkl-8/igt@gem_eio@in-flight-suspend.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-rkl-3/igt@gem_eio@in-flight-suspend.html
* igt@gem_eio@kms:
- shard-dg1: [PASS][23] -> [FAIL][24] ([i915#5784])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16498/shard-dg1-17/igt@gem_eio@kms.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg1-18/igt@gem_eio@kms.html
* igt@gem_eio@reset-stress:
- shard-snb: NOTRUN -> [FAIL][25] ([i915#8898])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-snb5/igt@gem_eio@reset-stress.html
* igt@gem_eio@unwedge-stress:
- shard-dg2: [PASS][26] -> [FAIL][27] ([i915#12714] / [i915#5784])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16498/shard-dg2-11/igt@gem_eio@unwedge-stress.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-6/igt@gem_eio@unwedge-stress.html
- shard-dg1: [PASS][28] -> [FAIL][29] ([i915#12714] / [i915#5784])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16498/shard-dg1-18/igt@gem_eio@unwedge-stress.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg1-16/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@bonded-dual:
- shard-dg2-9: NOTRUN -> [SKIP][30] ([i915#4771])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@sliced:
- shard-dg2-9: NOTRUN -> [SKIP][31] ([i915#4812]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@gem_exec_balancer@sliced.html
* igt@gem_exec_capture@capture:
- shard-mtlp: NOTRUN -> [FAIL][32] ([i915#11965]) +1 other test fail
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-1/igt@gem_exec_capture@capture.html
* igt@gem_exec_capture@capture-invisible:
- shard-dg2-9: NOTRUN -> [SKIP][33] ([i915#6334]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@gem_exec_capture@capture-invisible.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-mtlp: NOTRUN -> [SKIP][34] ([i915#3711])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-3/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_flush@basic-batch-kernel-default-wb:
- shard-dg2-9: NOTRUN -> [SKIP][35] ([i915#3539] / [i915#4852])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@gem_exec_flush@basic-batch-kernel-default-wb.html
* igt@gem_exec_reloc@basic-active:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#3281]) +9 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-3/igt@gem_exec_reloc@basic-active.html
* igt@gem_exec_reloc@basic-cpu-wc-active:
- shard-mtlp: NOTRUN -> [SKIP][37] ([i915#3281]) +6 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-6/igt@gem_exec_reloc@basic-cpu-wc-active.html
* igt@gem_exec_reloc@basic-gtt-read-active:
- shard-dg1: NOTRUN -> [SKIP][38] ([i915#3281]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg1-19/igt@gem_exec_reloc@basic-gtt-read-active.html
* igt@gem_exec_reloc@basic-range:
- shard-dg2-9: NOTRUN -> [SKIP][39] ([i915#3281]) +2 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@gem_exec_reloc@basic-range.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-dg2-9: NOTRUN -> [SKIP][40] ([i915#4537] / [i915#4812]) +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_exec_schedule@reorder-wide:
- shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4537] / [i915#4812])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-4/igt@gem_exec_schedule@reorder-wide.html
* igt@gem_fence_thrash@bo-write-verify-y:
- shard-dg2: NOTRUN -> [SKIP][42] ([i915#4860]) +2 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-4/igt@gem_fence_thrash@bo-write-verify-y.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4860])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-2/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html
* igt@gem_fenced_exec_thrash@no-spare-fences-interruptible:
- shard-dg2-9: NOTRUN -> [SKIP][44] ([i915#4860]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: NOTRUN -> [SKIP][45] ([i915#4613] / [i915#7582])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-rkl-8/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4613]) +3 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-2/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@parallel-random:
- shard-rkl: NOTRUN -> [SKIP][47] ([i915#4613]) +2 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-rkl-3/igt@gem_lmem_swapping@parallel-random.html
- shard-glk: NOTRUN -> [SKIP][48] ([i915#4613]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-glk1/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_madvise@dontneed-before-exec:
- shard-dg2-9: NOTRUN -> [SKIP][49] ([i915#3282]) +2 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@gem_madvise@dontneed-before-exec.html
* igt@gem_media_vme:
- shard-rkl: NOTRUN -> [SKIP][50] ([i915#284])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-rkl-8/igt@gem_media_vme.html
* igt@gem_mmap@bad-size:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#4083]) +2 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-8/igt@gem_mmap@bad-size.html
* igt@gem_mmap_gtt@basic:
- shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4077]) +2 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-4/igt@gem_mmap_gtt@basic.html
* igt@gem_mmap_gtt@cpuset-big-copy:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#4077]) +7 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-8/igt@gem_mmap_gtt@cpuset-big-copy.html
* igt@gem_mmap_wc@invalid-flags:
- shard-dg2-9: NOTRUN -> [SKIP][54] ([i915#4083]) +5 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@gem_mmap_wc@invalid-flags.html
* igt@gem_mmap_wc@read-write:
- shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4083]) +4 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-8/igt@gem_mmap_wc@read-write.html
* igt@gem_mmap_wc@write-cpu-read-wc-unflushed:
- shard-dg1: NOTRUN -> [SKIP][56] ([i915#4083])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg1-17/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html
* igt@gem_pread@self:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#3282]) +3 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-4/igt@gem_pread@self.html
* igt@gem_pwrite@basic-self:
- shard-rkl: NOTRUN -> [SKIP][58] ([i915#3282]) +4 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-rkl-3/igt@gem_pwrite@basic-self.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-dg2-9: NOTRUN -> [SKIP][59] ([i915#4270]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#4270]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-10/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
* igt@gem_readwrite@write-bad-handle:
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#3282]) +5 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-5/igt@gem_readwrite@write-bad-handle.html
* igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#8428])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-7/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#5190] / [i915#8428]) +3 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-10/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-dg2-9: NOTRUN -> [SKIP][64] ([i915#5190] / [i915#8428]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-dg2-9: NOTRUN -> [SKIP][65] ([i915#4079])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
- shard-rkl: NOTRUN -> [SKIP][66] ([i915#8411])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-rkl-8/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4079])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-8/igt@gem_set_tiling_vs_gtt.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#4885])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-11/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#3297]) +4 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-6/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#3297] / [i915#4880])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-11/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-dg2-9: NOTRUN -> [SKIP][71] ([i915#3297])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@gem_userptr_blits@unsync-overlap.html
* igt@gen9_exec_parse@allowed-all:
- shard-dg2-9: NOTRUN -> [SKIP][72] ([i915#2856]) +2 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@allowed-single:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#2856]) +2 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-10/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@bb-oversize:
- shard-rkl: NOTRUN -> [SKIP][74] ([i915#2527]) +2 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-rkl-3/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-mtlp: NOTRUN -> [SKIP][75] ([i915#2856]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-4/igt@gen9_exec_parse@bb-start-cmd.html
* igt@i915_drm_fdinfo@all-busy-idle-check-all:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#14123])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-5/igt@i915_drm_fdinfo@all-busy-idle-check-all.html
* igt@i915_drm_fdinfo@busy-check-all@ccs0:
- shard-mtlp: NOTRUN -> [SKIP][77] ([i915#11527]) +6 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-6/igt@i915_drm_fdinfo@busy-check-all@ccs0.html
* igt@i915_drm_fdinfo@busy-check-all@vecs0:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#11527]) +7 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-3/igt@i915_drm_fdinfo@busy-check-all@vecs0.html
* igt@i915_drm_fdinfo@busy-idle@vcs0:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#14073]) +7 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-11/igt@i915_drm_fdinfo@busy-idle@vcs0.html
* igt@i915_drm_fdinfo@isolation@vcs0:
- shard-dg2-9: NOTRUN -> [SKIP][80] ([i915#14073]) +7 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@i915_drm_fdinfo@isolation@vcs0.html
* igt@i915_drm_fdinfo@virtual-busy-hang:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#14118])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-2/igt@i915_drm_fdinfo@virtual-busy-hang.html
- shard-dg1: NOTRUN -> [SKIP][82] ([i915#14118])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg1-17/igt@i915_drm_fdinfo@virtual-busy-hang.html
* igt@i915_fb_tiling@basic-x-tiling:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#13786])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-6/igt@i915_fb_tiling@basic-x-tiling.html
* igt@i915_pm_rps@basic-api:
- shard-mtlp: NOTRUN -> [SKIP][84] ([i915#11681] / [i915#6621])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-8/igt@i915_pm_rps@basic-api.html
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#11681] / [i915#6621])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-8/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_sseu@full-enable:
- shard-rkl: NOTRUN -> [SKIP][86] ([i915#4387])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-rkl-8/igt@i915_pm_sseu@full-enable.html
* igt@i915_suspend@fence-restore-untiled:
- shard-dg2-9: NOTRUN -> [SKIP][87] ([i915#4077]) +5 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@i915_suspend@fence-restore-untiled.html
* igt@intel_hwmon@hwmon-read:
- shard-mtlp: NOTRUN -> [SKIP][88] ([i915#7707])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-8/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-dg2-9: NOTRUN -> [SKIP][89] ([i915#4212]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#4212]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-10/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-mtlp: NOTRUN -> [SKIP][91] ([i915#4212])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-8/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-b-hdmi-a-2-4-mc-ccs:
- shard-dg2-9: NOTRUN -> [SKIP][92] ([i915#8709]) +7 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-b-hdmi-a-2-4-mc-ccs.html
* {igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-b-hdmi-a-2-y-rc-ccs-cc} (NEW):
- shard-rkl: NOTRUN -> [SKIP][93] ([i915#8709]) +4 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-rkl-8/igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-b-hdmi-a-2-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-c-edp-1-4-rc-ccs-cc:
- shard-mtlp: NOTRUN -> [SKIP][94] ([i915#8709]) +7 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-5/igt@kms_async_flips@async-flip-with-page-flip-events-tiled-atomic@pipe-c-edp-1-4-rc-ccs-cc.html
* igt@kms_async_flips@test-cursor:
- shard-mtlp: [PASS][95] -> [SKIP][96] ([i915#10333])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16498/shard-mtlp-1/igt@kms_async_flips@test-cursor.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-7/igt@kms_async_flips@test-cursor.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#9531])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-dg2: [PASS][98] -> [FAIL][99] ([i915#5956])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16498/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-10/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-snb: NOTRUN -> [SKIP][100] ([i915#1769])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-snb1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [FAIL][101] ([i915#5956])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-10/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-dp-4.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-2:
- shard-dg2-9: NOTRUN -> [FAIL][102] ([i915#5956]) +1 other test fail
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-2.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][103] +8 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-10/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-dg2-9: NOTRUN -> [SKIP][104] +3 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
- shard-rkl: NOTRUN -> [SKIP][105] ([i915#5286]) +5 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-rkl-8/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][106] ([i915#3638]) +2 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-rkl-8/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-dg2-9: NOTRUN -> [SKIP][107] ([i915#4538] / [i915#5190]) +6 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-mtlp: NOTRUN -> [SKIP][108] ([i915#6187])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-1/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-mtlp: NOTRUN -> [SKIP][109] +9 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-4/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][110] ([i915#4538] / [i915#5190]) +6 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-3/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][111] ([i915#6095]) +18 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-rkl-3/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-mtlp: NOTRUN -> [SKIP][112] ([i915#12313])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-8/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#10307] / [i915#6095]) +155 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-8/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-dg2-9: NOTRUN -> [SKIP][114] ([i915#12313])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][115] ([i915#12313]) +1 other test skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-rkl-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-dg2-9: NOTRUN -> [SKIP][116] ([i915#10307] / [i915#6095]) +29 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#6095]) +119 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg1-12/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-mtlp: NOTRUN -> [SKIP][118] ([i915#12805])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-dg2-9: NOTRUN -> [SKIP][119] ([i915#12805])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
- shard-rkl: NOTRUN -> [SKIP][120] ([i915#12805])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-d-dp-4:
- shard-dg2: NOTRUN -> [SKIP][121] ([i915#6095]) +25 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-10/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#12313]) +2 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-10/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][124] ([i915#14098] / [i915#6095]) +21 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-rkl-8/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][125] ([i915#6095]) +54 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-3/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-rkl: NOTRUN -> [SKIP][126] ([i915#3742])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-rkl-8/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2:
- shard-dg2-9: NOTRUN -> [SKIP][127] ([i915#13781]) +4 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#11151] / [i915#7828]) +10 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-3/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-snb: NOTRUN -> [SKIP][129] +30 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-snb4/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-dg2-9: NOTRUN -> [SKIP][130] ([i915#11151] / [i915#7828]) +7 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
- shard-mtlp: NOTRUN -> [SKIP][131] ([i915#11151] / [i915#7828]) +8 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-8/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html
- shard-dg1: NOTRUN -> [SKIP][132] ([i915#11151] / [i915#7828]) +1 other test skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg1-13/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][133] ([i915#11151] / [i915#7828]) +6 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-rkl-8/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_content_protection@atomic:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#7118] / [i915#9424])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-rkl-3/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [FAIL][135] ([i915#7173])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-10/igt@kms_content_protection@atomic@pipe-a-dp-4.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-mtlp: NOTRUN -> [SKIP][136] ([i915#3299])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-2/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-dg2-9: NOTRUN -> [SKIP][137] ([i915#3299])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#3299])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-5/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-rkl: NOTRUN -> [SKIP][139] ([i915#3116])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-rkl-8/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@legacy:
- shard-dg2-9: NOTRUN -> [SKIP][140] ([i915#7118] / [i915#9424])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-1:
- shard-mtlp: NOTRUN -> [SKIP][141] ([i915#6944] / [i915#9424])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-5/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@mei-interface:
- shard-mtlp: NOTRUN -> [SKIP][142] ([i915#8063] / [i915#9433])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-7/igt@kms_content_protection@mei-interface.html
* igt@kms_cursor_crc@cursor-offscreen-64x21:
- shard-mtlp: NOTRUN -> [SKIP][143] ([i915#8814]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-3/igt@kms_cursor_crc@cursor-offscreen-64x21.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2-9: NOTRUN -> [SKIP][144] ([i915#13049]) +2 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][145] ([i915#13566]) +1 other test fail
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-rkl-8/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-2.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#3555])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg1-13/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
- shard-mtlp: NOTRUN -> [SKIP][147] ([i915#3555] / [i915#8814])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-6/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#13049])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-rkl-8/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg2: NOTRUN -> [SKIP][149] ([i915#3555]) +5 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-5/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-mtlp: NOTRUN -> [SKIP][150] ([i915#13049]) +1 other test skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-3/igt@kms_cursor_crc@cursor-sliding-512x170.html
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#13049])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-10/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-rkl: NOTRUN -> [SKIP][152] ([i915#4103])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-rkl-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#4103] / [i915#4213])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-mtlp: NOTRUN -> [SKIP][154] ([i915#9809]) +1 other test skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-3/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
- shard-snb: [PASS][155] -> [SKIP][156] +3 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16498/shard-snb1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-snb1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-dg2: NOTRUN -> [SKIP][157] ([i915#13046] / [i915#5354]) +1 other test skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-dg2-9: NOTRUN -> [SKIP][158] ([i915#13046] / [i915#5354]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-mtlp: NOTRUN -> [SKIP][159] ([i915#9067])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-3/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-dg2: NOTRUN -> [SKIP][160] ([i915#9067])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-10/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][161] ([i915#9723])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-rkl-8/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#13749])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-4/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg2-9: NOTRUN -> [SKIP][163] ([i915#13707])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-rkl: NOTRUN -> [SKIP][164] ([i915#13707])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-rkl-8/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-mtlp: NOTRUN -> [SKIP][165] ([i915#13707])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-5/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-basic:
- shard-dg2-9: NOTRUN -> [SKIP][166] ([i915#3555] / [i915#3840]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#3840] / [i915#9688])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-5/igt@kms_dsc@dsc-fractional-bpp.html
- shard-dg1: NOTRUN -> [SKIP][168] ([i915#3840])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg1-18/igt@kms_dsc@dsc-fractional-bpp.html
- shard-mtlp: NOTRUN -> [SKIP][169] ([i915#3840] / [i915#9688])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-6/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-rkl: NOTRUN -> [INCOMPLETE][170] ([i915#9878])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-rkl-3/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2-9: NOTRUN -> [SKIP][171] ([i915#3469])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@display-4x:
- shard-mtlp: NOTRUN -> [SKIP][172] ([i915#1839])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-1/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@psr2:
- shard-dg2-9: NOTRUN -> [SKIP][173] ([i915#658])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@kms_feature_discovery@psr2.html
* igt@kms_fence_pin_leak:
- shard-dg2: NOTRUN -> [SKIP][174] ([i915#4881])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-5/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-flip-vs-modeset:
- shard-mtlp: NOTRUN -> [SKIP][175] ([i915#3637] / [i915#9934]) +2 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-4/igt@kms_flip@2x-flip-vs-modeset.html
* igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1:
- shard-snb: [PASS][176] -> [TIMEOUT][177] ([i915#14033]) +1 other test timeout
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16498/shard-snb7/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-snb6/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html
* igt@kms_flip@2x-flip-vs-wf_vblank:
- shard-dg2-9: NOTRUN -> [SKIP][178] ([i915#9934]) +3 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@kms_flip@2x-flip-vs-wf_vblank.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#9934]) +6 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-10/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-rkl: NOTRUN -> [SKIP][180] ([i915#9934]) +6 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-rkl-8/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [PASS][181] -> [FAIL][182] ([i915#13734]) +1 other test fail
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16498/shard-snb6/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-snb4/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-dg2: [PASS][183] -> [FAIL][184] ([i915#13734])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16498/shard-dg2-4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a3:
- shard-dg2: NOTRUN -> [FAIL][185] ([i915#13734])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a3.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][186] ([i915#8381]) +1 other test skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-10/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg1: [PASS][187] -> [DMESG-WARN][188] ([i915#4423]) +1 other test dmesg-warn
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16498/shard-dg1-14/igt@kms_flip@flip-vs-suspend-interruptible.html
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg1-12/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a3:
- shard-dg1: NOTRUN -> [DMESG-WARN][189] ([i915#4423])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg1-12/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-dg2-9: NOTRUN -> [SKIP][190] ([i915#2672] / [i915#3555])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg2-9: NOTRUN -> [SKIP][191] ([i915#2672])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][192] ([i915#2672] / [i915#3555] / [i915#8813]) +2 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][193] ([i915#2672]) +2 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#8810] / [i915#8813])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
- shard-dg1: NOTRUN -> [SKIP][195] ([i915#2672] / [i915#3555])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg1-15/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][196] ([i915#8810] / [i915#8813])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-7/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-dg1: NOTRUN -> [SKIP][197] ([i915#2587] / [i915#2672])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg1-15/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-16bpp-4tile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][198] ([i915#2672] / [i915#3555]) +1 other test skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][199] ([i915#2672]) +1 other test skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][200] ([i915#2672] / [i915#8813])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][201] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc:
- shard-dg2-9: NOTRUN -> [SKIP][202] ([i915#8708]) +12 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-glk: NOTRUN -> [SKIP][203] +261 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-glk4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
- shard-dg2-9: NOTRUN -> [SKIP][204] ([i915#5354]) +23 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][205] ([i915#1825]) +11 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][206] ([i915#3023]) +19 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite:
- shard-dg2-9: NOTRUN -> [SKIP][207] ([i915#3458]) +9 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move:
- shard-dg1: NOTRUN -> [SKIP][208] ([i915#3458])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen:
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#5354]) +20 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][210] ([i915#8708])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][211] ([i915#8708]) +6 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][212] ([i915#10433] / [i915#3458])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][213] ([i915#8708]) +13 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#1825]) +29 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: NOTRUN -> [SKIP][215] ([i915#3458]) +13 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2-9: NOTRUN -> [SKIP][216] ([i915#6118])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#8228])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-5/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle:
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#8228])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-rkl-8/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-suspend:
- shard-mtlp: NOTRUN -> [SKIP][219] ([i915#3555] / [i915#8228])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-4/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#10656]) +1 other test skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-10/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][221] ([i915#13522])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-rkl-8/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes:
- shard-dg1: NOTRUN -> [SKIP][222] +1 other test skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg1-13/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html
* igt@kms_plane_alpha_blend@constant-alpha-max:
- shard-glk: NOTRUN -> [FAIL][223] ([i915#10647] / [i915#12169])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-glk1/igt@kms_plane_alpha_blend@constant-alpha-max.html
* igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][224] ([i915#10647]) +1 other test fail
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-glk1/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-rkl: NOTRUN -> [SKIP][225] ([i915#3555]) +3 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-rkl-8/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-dg2: NOTRUN -> [SKIP][226] ([i915#13046] / [i915#5354] / [i915#9423])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-8/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- shard-dg2-9: NOTRUN -> [SKIP][227] ([i915#12247] / [i915#9423]) +1 other test skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
- shard-rkl: NOTRUN -> [SKIP][228] ([i915#12247]) +3 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-rkl-8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a:
- shard-mtlp: NOTRUN -> [SKIP][229] ([i915#12247]) +4 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#12247] / [i915#6953] / [i915#9423])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a:
- shard-dg2-9: NOTRUN -> [SKIP][231] ([i915#12247]) +7 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][232] ([i915#12247]) +3 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d.html
* igt@kms_pm_backlight@fade:
- shard-rkl: NOTRUN -> [SKIP][233] ([i915#5354])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-rkl-8/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg2: NOTRUN -> [SKIP][234] ([i915#9685]) +1 other test skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-5/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg2-9: NOTRUN -> [SKIP][235] ([i915#9685])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: NOTRUN -> [SKIP][236] ([i915#4281])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-rkl-3/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2-9: NOTRUN -> [SKIP][237] ([i915#9519]) +1 other test skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
- shard-rkl: NOTRUN -> [SKIP][238] ([i915#9519])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-glk: NOTRUN -> [INCOMPLETE][239] ([i915#10553])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-glk4/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#6524] / [i915#6805])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-8/igt@kms_prime@basic-crc-vgem.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-mtlp: NOTRUN -> [SKIP][241] ([i915#12316]) +3 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-4/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][242] ([i915#11520]) +8 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-rkl-8/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][243] ([i915#11520]) +5 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-glk4/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
- shard-dg2-9: NOTRUN -> [SKIP][244] ([i915#11520]) +5 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][245] ([i915#11520]) +6 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-11/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr@fbc-psr-sprite-plane-onoff:
- shard-mtlp: NOTRUN -> [SKIP][246] ([i915#9688]) +3 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-5/igt@kms_psr@fbc-psr-sprite-plane-onoff.html
- shard-dg1: NOTRUN -> [SKIP][247] ([i915#1072] / [i915#9732])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg1-16/igt@kms_psr@fbc-psr-sprite-plane-onoff.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: NOTRUN -> [SKIP][248] ([i915#1072] / [i915#9732]) +17 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-rkl-8/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@psr-cursor-render:
- shard-dg2: NOTRUN -> [SKIP][249] ([i915#1072] / [i915#9732]) +17 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-8/igt@kms_psr@psr-cursor-render.html
* igt@kms_psr@psr2-cursor-blt:
- shard-dg2-9: NOTRUN -> [SKIP][250] ([i915#1072] / [i915#9732]) +10 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@kms_psr@psr2-cursor-blt.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-dg2: NOTRUN -> [SKIP][251] ([i915#12755])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-6/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-rkl: NOTRUN -> [SKIP][252] ([i915#5289])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-rkl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#12755] / [i915#5190])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-dg2-9: NOTRUN -> [SKIP][254] ([i915#3555])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][255] ([i915#12276]) +1 other test incomplete
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-glk1/igt@kms_vblank@ts-continuation-suspend.html
* igt@kms_vrr@flip-basic-fastset:
- shard-mtlp: NOTRUN -> [SKIP][256] ([i915#8808] / [i915#9906])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-7/igt@kms_vrr@flip-basic-fastset.html
- shard-dg2: NOTRUN -> [SKIP][257] ([i915#9906])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-11/igt@kms_vrr@flip-basic-fastset.html
- shard-dg1: NOTRUN -> [SKIP][258] ([i915#9906])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg1-15/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@max-min:
- shard-dg2-9: NOTRUN -> [SKIP][259] ([i915#9906])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@kms_vrr@max-min.html
* igt@kms_vrr@negative-basic:
- shard-dg2-9: NOTRUN -> [SKIP][260] ([i915#3555] / [i915#9906])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@kms_vrr@negative-basic.html
- shard-rkl: NOTRUN -> [SKIP][261] ([i915#3555] / [i915#9906])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-rkl-8/igt@kms_vrr@negative-basic.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-glk: NOTRUN -> [SKIP][262] ([i915#2437])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-glk4/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id:
- shard-rkl: NOTRUN -> [SKIP][263] ([i915#2437])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-rkl-8/igt@kms_writeback@writeback-fb-id.html
* igt@perf@global-sseu-config-invalid:
- shard-mtlp: NOTRUN -> [SKIP][264] ([i915#7387])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-3/igt@perf@global-sseu-config-invalid.html
- shard-dg2: NOTRUN -> [SKIP][265] ([i915#7387]) +1 other test skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-10/igt@perf@global-sseu-config-invalid.html
* igt@perf@mi-rpc:
- shard-dg2: NOTRUN -> [SKIP][266] ([i915#2434])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-7/igt@perf@mi-rpc.html
* igt@perf@non-zero-reason:
- shard-dg2: NOTRUN -> [FAIL][267] ([i915#9100]) +1 other test fail
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-7/igt@perf@non-zero-reason.html
* igt@perf_pmu@busy-idle-check-all@ccs0:
- shard-mtlp: [PASS][268] -> [FAIL][269] ([i915#4349]) +4 other tests fail
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16498/shard-mtlp-3/igt@perf_pmu@busy-idle-check-all@ccs0.html
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-4/igt@perf_pmu@busy-idle-check-all@ccs0.html
* igt@perf_pmu@busy-idle-check-all@vcs0:
- shard-dg2: [PASS][270] -> [FAIL][271] ([i915#4349]) +10 other tests fail
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16498/shard-dg2-10/igt@perf_pmu@busy-idle-check-all@vcs0.html
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-11/igt@perf_pmu@busy-idle-check-all@vcs0.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg2: NOTRUN -> [SKIP][272] ([i915#8516])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-10/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_mmap@test_aperture_limit:
- shard-dg2: NOTRUN -> [SKIP][273] ([i915#14121]) +1 other test skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-3/igt@prime_mmap@test_aperture_limit.html
* igt@prime_vgem@basic-fence-mmap:
- shard-mtlp: NOTRUN -> [SKIP][274] ([i915#3708] / [i915#4077])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-5/igt@prime_vgem@basic-fence-mmap.html
- shard-dg2-9: NOTRUN -> [SKIP][275] ([i915#3708] / [i915#4077])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-9/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-read:
- shard-mtlp: NOTRUN -> [SKIP][276] ([i915#3708]) +1 other test skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-2/igt@prime_vgem@basic-read.html
* igt@prime_vgem@coherency-gtt:
- shard-dg2: NOTRUN -> [SKIP][277] ([i915#3708] / [i915#4077]) +1 other test skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-3/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-flip-hang:
- shard-dg2: NOTRUN -> [SKIP][278] ([i915#3708])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-6/igt@prime_vgem@fence-flip-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-dg2: NOTRUN -> [SKIP][279] ([i915#9917])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-5/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@bind-unbind-vf@vf-5:
- shard-mtlp: NOTRUN -> [FAIL][280] ([i915#12910]) +9 other tests fail
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-6/igt@sriov_basic@bind-unbind-vf@vf-5.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-rkl: NOTRUN -> [SKIP][281] ([i915#9917])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-rkl-8/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@tools_test@sysfs_l3_parity:
- shard-rkl: NOTRUN -> [SKIP][282] +22 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-rkl-3/igt@tools_test@sysfs_l3_parity.html
#### Possible fixes ####
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [DMESG-WARN][283] ([i915#5493]) -> [PASS][284] +1 other test pass
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16498/shard-dg2-1/igt@gem_lmem_swapping@smem-oom@lmem0.html
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-2/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@i915_pm_rps@engine-order:
- shard-mtlp: [FAIL][285] ([i915#8346]) -> [PASS][286]
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16498/shard-mtlp-8/igt@i915_pm_rps@engine-order.html
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-2/igt@i915_pm_rps@engine-order.html
* igt@i915_suspend@forcewake:
- shard-dg2: [INCOMPLETE][287] ([i915#4817]) -> [PASS][288]
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16498/shard-dg2-10/igt@i915_suspend@forcewake.html
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-3/igt@i915_suspend@forcewake.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3:
- shard-dg2: [FAIL][289] ([i915#5956]) -> [PASS][290] +1 other test pass
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16498/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-snb: [FAIL][291] ([i915#11832] / [i915#13734]) -> [PASS][292] +1 other test pass
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16498/shard-snb1/igt@kms_flip@2x-plain-flip-ts-check.html
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-snb6/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_flip@plain-flip-fb-recreate@a-edp1:
- shard-mtlp: [FAIL][293] ([i915#13734]) -> [PASS][294] +2 other tests pass
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16498/shard-mtlp-5/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-1/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling:
- shard-dg1: [DMESG-WARN][295] ([i915#4423]) -> [PASS][296] +5 other tests pass
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16498/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-dg2: [SKIP][297] ([i915#3555] / [i915#8228]) -> [PASS][298]
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16498/shard-dg2-7/igt@kms_hdr@bpc-switch-suspend.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-11/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg2: [SKIP][299] ([i915#9519]) -> [PASS][300] +2 other tests pass
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16498/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@perf_pmu@busy-hang@rcs0:
- shard-mtlp: [ABORT][301] ([i915#13193] / [i915#13723]) -> [PASS][302] +5 other tests pass
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16498/shard-mtlp-7/igt@perf_pmu@busy-hang@rcs0.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-4/igt@perf_pmu@busy-hang@rcs0.html
* igt@perf_pmu@semaphore-busy@vcs1:
- shard-dg1: [FAIL][303] ([i915#4349]) -> [PASS][304] +2 other tests pass
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16498/shard-dg1-12/igt@perf_pmu@semaphore-busy@vcs1.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg1-16/igt@perf_pmu@semaphore-busy@vcs1.html
* igt@perf_pmu@semaphore-busy@vecs0:
- shard-mtlp: [FAIL][305] ([i915#4349]) -> [PASS][306] +4 other tests pass
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16498/shard-mtlp-1/igt@perf_pmu@semaphore-busy@vecs0.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-mtlp-4/igt@perf_pmu@semaphore-busy@vecs0.html
- shard-dg2: [FAIL][307] ([i915#4349]) -> [PASS][308] +5 other tests pass
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16498/shard-dg2-1/igt@perf_pmu@semaphore-busy@vecs0.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-11/igt@perf_pmu@semaphore-busy@vecs0.html
#### Warnings ####
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-dg1: [SKIP][309] ([i915#4423] / [i915#4538] / [i915#5286]) -> [SKIP][310] ([i915#4538] / [i915#5286])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16498/shard-dg1-14/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg1-15/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][311] ([i915#6095]) -> [SKIP][312] ([i915#14098] / [i915#6095])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16498/shard-rkl-8/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-b-hdmi-a-2.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-rkl-3/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-b-hdmi-a-2.html
* igt@kms_content_protection@atomic:
- shard-dg2: [SKIP][313] ([i915#7118] / [i915#9424]) -> [FAIL][314] ([i915#7173])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16498/shard-dg2-2/igt@kms_content_protection@atomic.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-10/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@legacy:
- shard-dg1: [SKIP][315] ([i915#4423] / [i915#7116] / [i915#9424]) -> [SKIP][316] ([i915#7116] / [i915#9424])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16498/shard-dg1-14/igt@kms_content_protection@legacy.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg1-15/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-1:
- shard-snb: [INCOMPLETE][317] ([i915#8816]) -> [SKIP][318]
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16498/shard-snb1/igt@kms_content_protection@lic-type-1.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-snb7/igt@kms_content_protection@lic-type-1.html
- shard-dg1: [SKIP][319] ([i915#9424]) -> [SKIP][320] ([i915#4423] / [i915#9424])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16498/shard-dg1-19/igt@kms_content_protection@lic-type-1.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg1-12/igt@kms_content_protection@lic-type-1.html
* igt@kms_display_modes@extended-mode-basic:
- shard-dg1: [SKIP][321] ([i915#13691] / [i915#4423]) -> [SKIP][322] ([i915#13691])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16498/shard-dg1-14/igt@kms_display_modes@extended-mode-basic.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg1-15/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-dg1: [SKIP][323] ([i915#4423] / [i915#9934]) -> [SKIP][324] ([i915#9934])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16498/shard-dg1-14/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg1-16/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu:
- shard-dg2: [SKIP][325] ([i915#10433] / [i915#3458]) -> [SKIP][326] ([i915#3458]) +3 other tests skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16498/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: [SKIP][327] ([i915#3458]) -> [SKIP][328] ([i915#10433] / [i915#3458]) +1 other test skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16498/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-dg1: [SKIP][329] ([i915#8708]) -> [SKIP][330] ([i915#4423] / [i915#8708]) +1 other test skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16498/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg2: [SKIP][331] ([i915#12713]) -> [SKIP][332] ([i915#13331])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16498/shard-dg2-3/igt@kms_hdr@brightness-with-hdr.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg2-10/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_psr@psr2-sprite-plane-onoff:
- shard-dg1: [SKIP][333] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][334] ([i915#1072] / [i915#9732])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16498/shard-dg1-14/igt@kms_psr@psr2-sprite-plane-onoff.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/shard-dg1-19/igt@kms_psr@psr2-sprite-plane-onoff.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#10333]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10333
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11832]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11832
[i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965
[i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
[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#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12714]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12714
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13193
[i915#13331]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13331
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390
[i915#13522]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13522
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13723
[i915#13734]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13734
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781
[i915#13786]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13786
[i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033
[i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
[i915#14121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14121
[i915#14123]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14123
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#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#3711]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3711
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#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#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881
[i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
[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#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
[i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784
[i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6118
[i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
[i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
[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#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
[i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#8063]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8063
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8346
[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#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8816
[i915#8898]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8898
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[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#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#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_8353 -> IGTPW_13074
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_16498: 9c8c2c903387f43ed1e34e2c5f9ca7bd0201f115 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_13074: 799aac09933f76d6d4cbddf7c30bc6aee7d30704 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8353: 8353
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13074/index.html
[-- Attachment #2: Type: text/html, Size: 116754 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ Xe.CI.Full: success for tests/intel/sec_xe_exec_queue_timeslice_abuse: Validate the Impact of Timeslice Abuse on Exec Queues
2025-05-04 20:28 [RFC i-g-t] tests/intel/sec_xe_exec_queue_timeslice_abuse: Validate the Impact of Timeslice Abuse on Exec Queues Peter Senna Tschudin
` (3 preceding siblings ...)
2025-05-04 22:56 ` ✓ i915.CI.Full: " Patchwork
@ 2025-05-04 23:08 ` Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2025-05-04 23:08 UTC (permalink / raw)
To: Peter Senna Tschudin; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 55182 bytes --]
== Series Details ==
Series: tests/intel/sec_xe_exec_queue_timeslice_abuse: Validate the Impact of Timeslice Abuse on Exec Queues
URL : https://patchwork.freedesktop.org/series/148581/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8353_FULL -> XEIGTPW_13074_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 3)
------------------------------
Missing (1): shard-adlp
New tests
---------
New tests have been introduced between XEIGT_8353_FULL and XEIGTPW_13074_FULL:
### New IGT tests (1) ###
* igt@sec_xe_exec_queue_timeslice_abuse@get-timeslice-properties:
- Statuses : 3 pass(s)
- Exec time: [0.00] s
Known issues
------------
Here are the changes found in XEIGTPW_13074_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic:
- shard-lnl: [PASS][1] -> [FAIL][2] ([Intel XE#911]) +4 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][3] ([Intel XE#1407])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-lnl-3/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][4] ([Intel XE#316]) +7 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-464/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#1124]) +2 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-dg2-set2: NOTRUN -> [SKIP][6] ([Intel XE#1124]) +7 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-432/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#610])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-1/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
- shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#1428])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-lnl-3/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2314] / [Intel XE#2894])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-1/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#2191])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-lnl-7/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#2191]) +2 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-464/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-4-displays-3840x2160p:
- shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#367])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-432/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-5/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-2:
- shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#787]) +258 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2887]) +5 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-2/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#3442])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-432/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#3432]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-lnl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#3432])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-d-dp-2:
- shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#455] / [Intel XE#787]) +53 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-d-dp-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][20] -> [INCOMPLETE][21] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-2:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][22] ([Intel XE#1727] / [Intel XE#3113])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#2887]) +6 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-lnl-7/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-2:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#4416]) +3 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-432/igt@kms_cdclk@plane-scaling@pipe-b-dp-2.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#306])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-lnl-5/igt@kms_chamelium_color@ctm-blue-to-red.html
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2325])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-6/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_edid@dp-edid-change-during-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#373]) +10 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-433/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2252]) +4 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-5/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#373]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-lnl-6/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_content_protection@legacy:
- shard-dg2-set2: NOTRUN -> [FAIL][30] ([Intel XE#1178]) +1 other test fail
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-434/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][31] ([Intel XE#1178])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-8/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
* igt@kms_content_protection@uevent@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][32] ([Intel XE#1188])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-8/igt@kms_content_protection@uevent@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2320])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-2/igt@kms_cursor_crc@cursor-random-32x32.html
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#1424])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-lnl-4/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2291])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-5/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-bmg: [PASS][36] -> [SKIP][37] ([Intel XE#2291]) +4 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-bmg-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#323]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-432/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#323])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-lnl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2286])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#4356])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-433/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2244])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-8/igt@kms_dsc@dsc-fractional-bpp.html
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#2244])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-lnl-1/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-formats:
- shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#455]) +18 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-433/igt@kms_dsc@dsc-with-formats.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#776])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-464/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#701])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-434/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@psr2:
- shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#1135])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-434/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-bmg: [PASS][48] -> [SKIP][49] ([Intel XE#2316])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-bmg-1/igt@kms_flip@2x-blocking-wf_vblank.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-5/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2316])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3:
- shard-bmg: [PASS][51] -> [FAIL][52] ([Intel XE#3321]) +4 other tests fail
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank@bd-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][53] ([Intel XE#301])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-464/igt@kms_flip@2x-flip-vs-expired-vblank@bd-hdmi-a6-dp4.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#1421])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-lnl-4/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6:
- shard-dg2-set2: [PASS][55] -> [FAIL][56] ([Intel XE#301]) +3 other tests fail
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html
* igt@kms_flip@flip-vs-suspend:
- shard-bmg: [PASS][57] -> [INCOMPLETE][58] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-bmg-4/igt@kms_flip@flip-vs-suspend.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-1/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a3:
- shard-bmg: [PASS][59] -> [FAIL][60] ([Intel XE#2882]) +3 other tests fail
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-bmg-6/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a3.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-5/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a3.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2311]) +7 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#651]) +29 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#4141]) +4 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2312]) +4 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#651]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2352])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#1158])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-464/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#653]) +28 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2313]) +7 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#656]) +7 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-lnl-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_joiner@basic-big-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#346])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-464/igt@kms_joiner@basic-big-joiner.html
* igt@kms_plane_cursor@primary@pipe-a-hdmi-a-2-size-256:
- shard-dg2-set2: NOTRUN -> [FAIL][72] ([Intel XE#616]) +2 other tests fail
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-432/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-2-size-256.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-bmg: [PASS][73] -> [SKIP][74] ([Intel XE#4596])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-x.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b:
- shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#2763]) +5 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2763]) +4 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_pm_dc@dc6-dpms:
- shard-lnl: [PASS][78] -> [FAIL][79] ([Intel XE#718]) +1 other test fail
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-lnl-4/igt@kms_pm_dc@dc6-dpms.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-lnl-8/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: NOTRUN -> [FAIL][80] ([Intel XE#718])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-lnl-1/igt@kms_pm_dc@dc6-psr.html
- shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#1129])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-464/igt@kms_pm_dc@dc6-psr.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#2893])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-lnl-7/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#1489]) +6 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-5/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#1489]) +11 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-432/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#2893] / [Intel XE#4608])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#4608]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-b-edp-1.html
* igt@kms_psr@fbc-psr-primary-blt:
- shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2234] / [Intel XE#2850]) +4 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-5/igt@kms_psr@fbc-psr-primary-blt.html
* igt@kms_psr@fbc-psr2-primary-page-flip:
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#1406])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-lnl-3/igt@kms_psr@fbc-psr2-primary-page-flip.html
* igt@kms_psr@fbc-psr2-primary-page-flip@edp-1:
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#4609])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-lnl-3/igt@kms_psr@fbc-psr2-primary-page-flip@edp-1.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#2850] / [Intel XE#929]) +13 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-432/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#3414]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-464/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_setmode@basic:
- shard-bmg: [PASS][92] -> [FAIL][93] ([Intel XE#2883]) +1 other test fail
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-bmg-2/igt@kms_setmode@basic.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-2/igt@kms_setmode@basic.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-lnl: [PASS][94] -> [FAIL][95] ([Intel XE#2883]) +2 other tests fail
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-lnl-5/igt@kms_setmode@basic@pipe-b-edp-1.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-lnl-4/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_vrr@flip-dpms:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#1499])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-2/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@lobf:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2168])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-2/igt@kms_vrr@lobf.html
- shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#2168])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-434/igt@kms_vrr@lobf.html
- shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#1499])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-lnl-7/igt@kms_vrr@lobf.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#756])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-433/igt@kms_writeback@writeback-fb-id.html
* igt@xe_eu_stall@invalid-event-report-count:
- shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#4497])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-434/igt@xe_eu_stall@invalid-event-report-count.html
* igt@xe_eudebug@basic-connect:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#4837]) +2 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-4/igt@xe_eudebug@basic-connect.html
* igt@xe_eudebug@basic-vm-bind-ufence-delay-ack:
- shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#4837]) +8 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-434/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr:
- shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2322]) +2 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr.html
* igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race:
- shard-dg2-set2: [PASS][105] -> [SKIP][106] ([Intel XE#1392]) +7 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-dg2-433/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-once-basic-defer-mmap:
- shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#1392]) +2 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-432/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind:
- shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#1392]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-lnl-7/igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind.html
* igt@xe_exec_fault_mode@twice-invalid-fault:
- shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#288]) +26 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-433/igt@xe_exec_fault_mode@twice-invalid-fault.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
- shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#2360]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-464/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
* igt@xe_exec_system_allocator@many-mmap-huge:
- shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#4943]) +4 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-lnl-1/igt@xe_exec_system_allocator@many-mmap-huge.html
* igt@xe_exec_system_allocator@once-mmap-free-huge:
- shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#4943]) +6 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-7/igt@xe_exec_system_allocator@once-mmap-free-huge.html
* igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-nomemset:
- shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#4915]) +185 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-432/igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-nomemset.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#2229])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-lnl-1/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_oa@non-privileged-map-oa-buffer:
- shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#2541] / [Intel XE#3573]) +4 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-432/igt@xe_oa@non-privileged-map-oa-buffer.html
* igt@xe_oa@syncs-syncobj-cfg:
- shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501]) +1 other test skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-464/igt@xe_oa@syncs-syncobj-cfg.html
* igt@xe_pm@d3cold-basic:
- shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#2284] / [Intel XE#366])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-464/igt@xe_pm@d3cold-basic.html
* igt@xe_pm@d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#2284])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-7/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_pm@s4-basic-exec:
- shard-lnl: [PASS][119] -> [ABORT][120] ([Intel XE#1794]) +1 other test abort
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-lnl-6/igt@xe_pm@s4-basic-exec.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-lnl-2/igt@xe_pm@s4-basic-exec.html
* igt@xe_pmu@fn-engine-activity-load:
- shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#4650])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-464/igt@xe_pmu@fn-engine-activity-load.html
* igt@xe_pxp@regular-src-to-pxp-dest-rendercopy:
- shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#4733])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-464/igt@xe_pxp@regular-src-to-pxp-dest-rendercopy.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#944])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-lnl-3/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#944]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-432/igt@xe_query@multigpu-query-invalid-extension.html
* igt@xe_render_copy@render-stress-1-copies:
- shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#4814])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-464/igt@xe_render_copy@render-stress-1-copies.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs:
- shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#4130])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-6/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html
- shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#4130]) +2 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-432/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html
- shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#4130])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-lnl-2/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html
#### Possible fixes ####
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-edp-1:
- shard-lnl: [FAIL][129] ([Intel XE#3718] / [Intel XE#827]) -> [PASS][130] +2 other tests pass
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-lnl-3/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-edp-1.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-lnl-1/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-edp-1.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2:
- shard-dg2-set2: [FAIL][131] ([Intel XE#827]) -> [PASS][132] +4 other tests pass
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-dg2-432/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-432/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2.html
* igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
- shard-bmg: [SKIP][133] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][134]
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [INCOMPLETE][135] ([Intel XE#3862]) -> [PASS][136]
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-dg2-432/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [INCOMPLETE][137] ([Intel XE#2705] / [Intel XE#4212] / [Intel XE#4345]) -> [PASS][138]
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4:
- shard-dg2-set2: [INCOMPLETE][139] ([Intel XE#2705] / [Intel XE#4212]) -> [PASS][140]
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html
* igt@kms_cursor_crc@cursor-rapid-movement-64x64:
- shard-bmg: [SKIP][141] ([Intel XE#2320]) -> [PASS][142]
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-bmg-6/igt@kms_cursor_crc@cursor-rapid-movement-64x64.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-7/igt@kms_cursor_crc@cursor-rapid-movement-64x64.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-bmg: [SKIP][143] ([Intel XE#2291]) -> [PASS][144] +6 other tests pass
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [FAIL][145] ([Intel XE#4633]) -> [PASS][146]
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_dp_aux_dev:
- shard-bmg: [SKIP][147] ([Intel XE#3009]) -> [PASS][148]
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-bmg-5/igt@kms_dp_aux_dev.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-2/igt@kms_dp_aux_dev.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3:
- shard-bmg: [FAIL][149] ([Intel XE#3321]) -> [PASS][150] +1 other test pass
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: [SKIP][151] ([Intel XE#2316]) -> [PASS][152] +10 other tests pass
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-bmg-5/igt@kms_flip@2x-nonexisting-fb.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-2/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@blocking-wf_vblank@b-dp2:
- shard-bmg: [FAIL][153] ([Intel XE#2882]) -> [PASS][154] +4 other tests pass
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-bmg-6/igt@kms_flip@blocking-wf_vblank@b-dp2.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-1/igt@kms_flip@blocking-wf_vblank@b-dp2.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@d-dp4:
- shard-dg2-set2: [FAIL][155] ([Intel XE#301]) -> [PASS][156] +2 other tests pass
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-dp4.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-dp4.html
* igt@kms_flip@flip-vs-expired-vblank@d-dp4:
- shard-dg2-set2: [FAIL][157] ([Intel XE#301] / [Intel XE#3321]) -> [PASS][158]
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank@d-dp4.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank@d-dp4.html
* igt@kms_hdr@static-toggle:
- shard-bmg: [SKIP][159] ([Intel XE#1503]) -> [PASS][160]
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-bmg-4/igt@kms_hdr@static-toggle.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-6/igt@kms_hdr@static-toggle.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-bmg: [SKIP][161] ([Intel XE#3012]) -> [PASS][162]
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-bmg-5/igt@kms_joiner@basic-force-big-joiner.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-2/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64:
- shard-dg2-set2: [FAIL][163] ([Intel XE#616]) -> [PASS][164] +1 other test pass
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-dg2-464/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-433/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-bmg: [SKIP][165] ([Intel XE#4596]) -> [PASS][166] +1 other test pass
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-4.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_pm_rpm@drm-resources-equal:
- shard-bmg: [FAIL][167] ([Intel XE#4936]) -> [PASS][168]
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-bmg-6/igt@kms_pm_rpm@drm-resources-equal.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-5/igt@kms_pm_rpm@drm-resources-equal.html
* igt@kms_psr@psr2-suspend@edp-1:
- shard-lnl: [FAIL][169] ([Intel XE#3924]) -> [PASS][170] +1 other test pass
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-lnl-5/igt@kms_psr@psr2-suspend@edp-1.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-lnl-8/igt@kms_psr@psr2-suspend@edp-1.html
* igt@xe_exec_basic@multigpu-no-exec-null-defer-bind:
- shard-dg2-set2: [SKIP][171] ([Intel XE#1392]) -> [PASS][172] +7 other tests pass
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-464/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset:
- shard-lnl: [FAIL][173] -> [PASS][174]
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-lnl-1/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-lnl-3/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html
#### Warnings ####
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [INCOMPLETE][175] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) -> [INCOMPLETE][176] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345])
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [INCOMPLETE][177] ([Intel XE#2705] / [Intel XE#4212]) -> [INCOMPLETE][178] ([Intel XE#1727] / [Intel XE#3113])
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_content_protection@lic-type-0:
- shard-bmg: [SKIP][179] ([Intel XE#2341]) -> [FAIL][180] ([Intel XE#1178])
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-bmg-6/igt@kms_content_protection@lic-type-0.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-8/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@uevent:
- shard-bmg: [SKIP][181] ([Intel XE#2341]) -> [FAIL][182] ([Intel XE#1188])
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-bmg-5/igt@kms_content_protection@uevent.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-8/igt@kms_content_protection@uevent.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][183] ([Intel XE#2312]) -> [SKIP][184] ([Intel XE#2311]) +24 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][185] ([Intel XE#2312]) -> [SKIP][186] ([Intel XE#4141]) +15 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][187] ([Intel XE#4141]) -> [SKIP][188] ([Intel XE#2312]) +4 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/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: [SKIP][189] ([Intel XE#2311]) -> [SKIP][190] ([Intel XE#2312]) +12 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][191] ([Intel XE#2313]) -> [SKIP][192] ([Intel XE#2312]) +14 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][193] ([Intel XE#2312]) -> [SKIP][194] ([Intel XE#2313]) +14 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-bmg: [SKIP][195] ([Intel XE#2493]) -> [SKIP][196] ([Intel XE#4596])
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-bmg-1/igt@kms_plane_multiple@2x-tiling-y.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-lnl: [SKIP][197] ([Intel XE#1909]) -> [SKIP][198] ([Intel XE#736])
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-lnl-4/igt@kms_pm_dc@dc3co-vpb-simulation.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-lnl-4/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@xe_pmu@gt-frequency:
- shard-dg2-set2: [FAIL][199] ([Intel XE#4817]) -> [FAIL][200] ([Intel XE#4835]) +1 other test fail
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8353/shard-dg2-434/igt@xe_pmu@gt-frequency.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/shard-dg2-432/igt@xe_pmu@gt-frequency.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158
[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#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#1909]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1909
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#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#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[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#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
[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#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
[Intel XE#3924]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3924
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4356
[Intel XE#4416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416
[Intel XE#4497]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4497
[Intel XE#4501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4501
[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#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
[Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
[Intel XE#4817]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4817
[Intel XE#4835]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4835
[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#4936]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4936
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[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#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/736
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827
[Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8353 -> IGTPW_13074
* Linux: xe-3030-66dbd091942ffec06a91480c22916f389670a87c -> xe-3032-9c8c2c903387f43ed1e34e2c5f9ca7bd0201f115
IGTPW_13074: 799aac09933f76d6d4cbddf7c30bc6aee7d30704 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8353: 8353
xe-3030-66dbd091942ffec06a91480c22916f389670a87c: 66dbd091942ffec06a91480c22916f389670a87c
xe-3032-9c8c2c903387f43ed1e34e2c5f9ca7bd0201f115: 9c8c2c903387f43ed1e34e2c5f9ca7bd0201f115
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13074/index.html
[-- Attachment #2: Type: text/html, Size: 64435 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2025-05-04 23:08 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-05-04 20:28 [RFC i-g-t] tests/intel/sec_xe_exec_queue_timeslice_abuse: Validate the Impact of Timeslice Abuse on Exec Queues Peter Senna Tschudin
2025-05-04 21:23 ` ✓ i915.CI.BAT: success for " Patchwork
2025-05-04 21:24 ` Patchwork
2025-05-04 21:31 ` ✓ Xe.CI.BAT: " Patchwork
2025-05-04 22:56 ` ✓ i915.CI.Full: " Patchwork
2025-05-04 23:08 ` ✓ Xe.CI.Full: " Patchwork
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.