* [PATCH v4 i-g-t 1/2] tests/intel/xe_sriov_flr: Add parallel FLR subtest for SR-IOV VFs
2025-02-05 17:18 [PATCH v4 i-g-t 0/2] tests/intel/xe_sriov_flr: Add parallel FLR subtest for SR-IOV VFs Marcin Bernatowicz
@ 2025-02-05 17:18 ` Marcin Bernatowicz
2025-02-05 17:18 ` [PATCH v4 i-g-t 2/2] tests/intel/xe_sriov_flr: Add flr-twice subtest Marcin Bernatowicz
` (7 subsequent siblings)
8 siblings, 0 replies; 11+ messages in thread
From: Marcin Bernatowicz @ 2025-02-05 17:18 UTC (permalink / raw)
To: igt-dev
Cc: Marcin Bernatowicz, Lukasz Laguna, Adam Miszczak,
Jakub Kolakowski, Michał Wajdeczko, Michał Winiarski,
Narasimha C V, Piotr Piórkowski, Satyanarayana K V P,
Tomasz Lis
Introduce a new subtest flr-vfs-parallel to validate parallel FLR
execution on all VFs. This subtest ensures correct behavior during
simultaneous resets.
Refactor verify_flr to accept an execution strategy function pointer,
allowing for both sequential and parallel FLR strategies.
Update clear_tests to use the new execution strategy approach and
modify existing subtests to utilize the sequential FLR strategy.
v2: Reintroduce condition to reinitialize test data only if more VFs
remain to be tested (omitted when extracting execute_sequential_flr).
v3: Introduce threaded FLR initiation to achieve better parallelism
by mitigating 100ms reset delays.(Lukasz)
v4: Use total_flrs variable instead of repeating num_vfs * num_flrs_per_vf
(Lukasz)
Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
Reviewed-by: Lukasz Laguna <lukasz.laguna@intel.com>
Cc: Adam Miszczak <adam.miszczak@linux.intel.com>
Cc: Jakub Kolakowski <jakub1.kolakowski@intel.com>
Cc: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
Cc: Michał Wajdeczko <michal.wajdeczko@intel.com>
Cc: Michał Winiarski <michal.winiarski@intel.com>
Cc: Narasimha C V <narasimha.c.v@intel.com>
Cc: Piotr Piórkowski <piotr.piorkowski@intel.com>
Cc: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
Cc: Tomasz Lis <tomasz.lis@intel.com>
---
tests/intel/xe_sriov_flr.c | 210 ++++++++++++++++++++++++++++++++-----
1 file changed, 186 insertions(+), 24 deletions(-)
diff --git a/tests/intel/xe_sriov_flr.c b/tests/intel/xe_sriov_flr.c
index 550d58bb9..3b42aa637 100644
--- a/tests/intel/xe_sriov_flr.c
+++ b/tests/intel/xe_sriov_flr.c
@@ -4,6 +4,7 @@
*/
#include <fcntl.h>
+#include <pthread.h>
#include <sys/stat.h>
#include "drmtest.h"
#include "igt_core.h"
@@ -35,6 +36,11 @@
* Description:
* Sequentially performs FLR on each VF to verify isolation and
* clearing of LMEM, GGTT, and SCRATCH_REGS on the reset VF only.
+ *
+ * SUBTEST: flr-vfs-parallel
+ * Run type: FULL
+ * Description:
+ * Executes FLR on all VFs simultaneously to validate correct behavior during parallel resets.
*/
IGT_TEST_DESCRIPTION("Xe tests for SR-IOV VF FLR (Functional Level Reset)");
@@ -210,6 +216,26 @@ static void subchecks_report_results(struct subcheck *checks, int num_checks)
igt_skip_on(skips == num_checks);
}
+/**
+ * flr_exec_strategy - Function pointer for FLR execution strategy
+ * @pf_fd: File descriptor for the Physical Function (PF).
+ * @num_vfs: Total number of Virtual Functions (VFs) to test.
+ * @checks: Array of subchecks.
+ * @num_checks: Number of subchecks.
+ * @wait_flr_ms: Time to wait (in milliseconds) for FLR to complete
+ *
+ * Defines a strategy for executing FLRs (Functional Level Resets)
+ * across multiple VFs. The strategy determines the order and
+ * manner (e.g., sequential or parallel) in which FLRs are performed.
+ * It is expected to initiate FLRs and handle related operations,
+ * such as verifying and preparing subchecks.
+ *
+ * Return: The ID of the last VF for which FLR was successfully initiated.
+ */
+typedef int (*flr_exec_strategy)(int pf_fd, int num_vfs,
+ struct subcheck *checks, int num_checks,
+ const int wait_flr_ms);
+
/**
* verify_flr - Orchestrates the verification of Function Level Reset (FLR)
* across multiple Virtual Functions (VFs).
@@ -222,18 +248,20 @@ static void subchecks_report_results(struct subcheck *checks, int num_checks)
* @num_vfs: Total number of Virtual Functions (VFs) to test.
* @checks: Array of subchecks.
* @num_checks: Number of subchecks.
+ * @flr_exec_strategy: Execution strategy for FLR (e.g., sequential or parallel).
*
* Detailed Workflow:
* - Initializes and prepares VFs for testing.
- * - Iterates through each VF, performing FLR, and verifies that only
- * the reset VF is affected while others remain unchanged.
- * - Reinitializes test data for the FLRed VF if there are more VFs to test.
- * - Continues the process until all VFs are tested.
- * - Handles any test failures or early exits, cleans up, and reports results.
+ * - Executes the FLR operation using the provided execution strategy
+ * (e.g., sequential or parallel) and validates that the reset VF behaves
+ * as expected.
+ * - Cleans up resources and reports results after all VFs have been tested
+ * or in the case of an early exit.
*
* A timeout is used to wait for FLR operations to complete.
*/
-static void verify_flr(int pf_fd, int num_vfs, struct subcheck *checks, int num_checks)
+static void verify_flr(int pf_fd, int num_vfs, struct subcheck *checks,
+ int num_checks, flr_exec_strategy exec_strategy)
{
const int wait_flr_ms = 200;
int i, vf_id, flr_vf_id = -1;
@@ -242,6 +270,7 @@ static void verify_flr(int pf_fd, int num_vfs, struct subcheck *checks, int num_
igt_sriov_enable_vfs(pf_fd, num_vfs);
if (igt_warn_on(!igt_sriov_device_reset_exists(pf_fd, 1)))
goto disable_vfs;
+
/* Refresh PCI state */
if (igt_warn_on(igt_pci_system_reinit()))
goto disable_vfs;
@@ -257,14 +286,34 @@ static void verify_flr(int pf_fd, int num_vfs, struct subcheck *checks, int num_
if (no_subchecks_can_proceed(checks, num_checks))
goto cleanup;
- flr_vf_id = 1;
+ /* Execute the chosen FLR strategy */
+ flr_vf_id = exec_strategy(pf_fd, num_vfs, checks, num_checks, wait_flr_ms);
+
+cleanup:
+ for (i = 0; i < num_checks; ++i)
+ checks[i].cleanup(checks[i].data);
+
+disable_vfs:
+ igt_sriov_disable_vfs(pf_fd);
+
+ if (flr_vf_id > 0 || no_subchecks_can_proceed(checks, num_checks))
+ subchecks_report_results(checks, num_checks);
+ else
+ igt_skip("No checks executed\n");
+}
+
+static int execute_sequential_flr(int pf_fd, int num_vfs,
+ struct subcheck *checks, int num_checks,
+ const int wait_flr_ms)
+{
+ int i, vf_id, flr_vf_id = 1;
do {
if (igt_warn_on_f(!igt_sriov_device_reset(pf_fd, flr_vf_id),
"Initiating VF%u FLR failed\n", flr_vf_id))
- goto cleanup;
+ break;
- /* assume FLR is finished after wait_flr_ms */
+ /* Assume FLR is finished after wait_flr_ms */
usleep(wait_flr_ms * 1000);
for (vf_id = 1; vf_id <= num_vfs; ++vf_id)
@@ -272,28 +321,132 @@ static void verify_flr(int pf_fd, int num_vfs, struct subcheck *checks, int num_
if (subcheck_can_proceed(&checks[i]))
checks[i].verify_vf(vf_id, flr_vf_id, checks[i].data);
- /* reinitialize test data for FLRed VF */
+ /* Reinitialize test data for the FLRed VF */
if (flr_vf_id < num_vfs)
for (i = 0; i < num_checks; ++i)
if (subcheck_can_proceed(&checks[i]))
checks[i].prepare_vf(flr_vf_id, checks[i].data);
if (no_subchecks_can_proceed(checks, num_checks))
- goto cleanup;
+ break;
} while (++flr_vf_id <= num_vfs);
-cleanup:
- for (i = 0; i < num_checks; ++i)
- checks[i].cleanup(checks[i].data);
+ return flr_vf_id - 1;
+}
-disable_vfs:
- igt_sriov_disable_vfs(pf_fd);
+pthread_mutex_t signal_mutex = PTHREAD_MUTEX_INITIALIZER;
+pthread_cond_t signal_cond = PTHREAD_COND_INITIALIZER;
- if (flr_vf_id > 1 || no_subchecks_can_proceed(checks, num_checks))
- subchecks_report_results(checks, num_checks);
- else
- igt_skip("No checks executed\n");
+enum thread_signal {
+ SIGNAL_WAIT,
+ SIGNAL_START,
+ SIGNAL_SKIP
+} thread_signal = SIGNAL_WAIT;
+
+struct flr_thread_data {
+ int pf_fd;
+ int vf_id;
+ int flr_instance;
+ int result;
+};
+
+static void *flr_thread(void *arg)
+{
+ struct flr_thread_data *data = (struct flr_thread_data *)arg;
+
+ pthread_mutex_lock(&signal_mutex);
+ while (thread_signal == SIGNAL_WAIT)
+ pthread_cond_wait(&signal_cond, &signal_mutex);
+ pthread_mutex_unlock(&signal_mutex);
+
+ if (thread_signal == SIGNAL_START &&
+ igt_warn_on_f(!igt_sriov_device_reset(data->pf_fd, data->vf_id),
+ "Initiating VF%u FLR failed (flr_instance=%u)\n",
+ data->vf_id, data->flr_instance))
+ data->result = -1;
+
+ return NULL;
+}
+
+static int execute_parallel_flr_(int pf_fd, int num_vfs,
+ struct subcheck *checks,
+ int num_checks, const int wait_flr_ms,
+ unsigned int num_flrs_per_vf)
+{
+ const unsigned int total_flrs = num_vfs * num_flrs_per_vf;
+ pthread_t threads[total_flrs];
+ struct flr_thread_data thread_data[total_flrs];
+ int vf_id = 0, last_vf_id = 0;
+ int i, j, k, created_threads = 0;
+
+ igt_assert(total_flrs > 0);
+
+ for (i = 0; i < num_vfs; ++i) {
+ for (j = 0; j < num_flrs_per_vf; ++j) {
+ thread_data[created_threads].pf_fd = pf_fd;
+ thread_data[created_threads].vf_id = i + 1; // VF IDs are 1-based
+ thread_data[created_threads].flr_instance = j;
+ thread_data[created_threads].result = 0;
+
+ if (pthread_create(&threads[created_threads], NULL,
+ flr_thread,
+ &thread_data[created_threads])) {
+ last_vf_id = i + 1;
+
+ goto cleanup_threads;
+ } else {
+ created_threads++;
+ }
+ }
+ }
+
+cleanup_threads:
+ pthread_mutex_lock(&signal_mutex);
+ thread_signal = (created_threads == total_flrs) ? SIGNAL_START :
+ SIGNAL_SKIP;
+ pthread_cond_broadcast(&signal_cond);
+ pthread_mutex_unlock(&signal_mutex);
+
+ for (i = 0; i < created_threads; ++i)
+ pthread_join(threads[i], NULL);
+
+ if (last_vf_id) {
+ for (k = 0; k < num_checks; ++k)
+ set_skip_reason(checks[k].data,
+ "Thread creation failed for VF%u\n", last_vf_id);
+ return 0;
+ }
+
+ /* Assume FLRs finished after wait_flr_ms */
+ usleep(wait_flr_ms * 1000);
+
+ /* Verify results */
+ for (i = 0; i < created_threads; ++i) {
+ vf_id = thread_data[i].vf_id;
+
+ /* Skip already checked VF or if the FLR initiation failed */
+ if (vf_id == last_vf_id || thread_data[i].result != 0)
+ continue;
+
+ for (k = 0; k < num_checks; ++k)
+ if (subcheck_can_proceed(&checks[k]))
+ checks[k].verify_vf(vf_id, vf_id, checks[k].data);
+
+ if (no_subchecks_can_proceed(checks, num_checks))
+ break;
+
+ last_vf_id = vf_id;
+ }
+
+ return last_vf_id;
+}
+
+static int execute_parallel_flr(int pf_fd, int num_vfs, struct subcheck *checks,
+ int num_checks, const int wait_flr_ms)
+{
+ return execute_parallel_flr_(pf_fd, num_vfs, checks, num_checks,
+ wait_flr_ms, 1);
}
#define GEN12_VF_CAP_REG 0x1901f8
@@ -817,7 +970,7 @@ static void regs_subcheck_cleanup(struct subcheck_data *data)
intel_register_access_fini(&rdata->mmio[i]);
}
-static void clear_tests(int pf_fd, int num_vfs)
+static void clear_tests(int pf_fd, int num_vfs, flr_exec_strategy exec_strategy)
{
struct xe_mmio xemmio = { };
const unsigned int num_gts = xe_number_gt(pf_fd);
@@ -882,7 +1035,7 @@ static void clear_tests(int pf_fd, int num_vfs)
};
igt_assert_eq(i, num_checks);
- verify_flr(pf_fd, num_vfs, checks, num_checks);
+ verify_flr(pf_fd, num_vfs, checks, num_checks, exec_strategy);
}
igt_main
@@ -899,7 +1052,7 @@ igt_main
igt_describe("Verify LMEM, GGTT, and SCRATCH_REGS are properly cleared after VF1 FLR");
igt_subtest("flr-vf1-clear") {
- clear_tests(pf_fd, 1);
+ clear_tests(pf_fd, 1, execute_sequential_flr);
}
igt_describe("Perform sequential FLR on each VF, verifying that LMEM, GGTT, and SCRATCH_REGS are cleared only on the reset VF.");
@@ -908,7 +1061,16 @@ igt_main
igt_require(total_vfs > 1);
- clear_tests(pf_fd, total_vfs > 3 ? 3 : total_vfs);
+ clear_tests(pf_fd, total_vfs > 3 ? 3 : total_vfs, execute_sequential_flr);
+ }
+
+ igt_describe("Perform FLR on all VFs in parallel, ensuring correct behavior during simultaneous resets.");
+ igt_subtest("flr-vfs-parallel") {
+ unsigned int total_vfs = igt_sriov_get_total_vfs(pf_fd);
+
+ igt_require(total_vfs > 1);
+
+ clear_tests(pf_fd, total_vfs, execute_parallel_flr);
}
igt_fixture {
--
2.31.1
^ permalink raw reply related [flat|nested] 11+ messages in thread* [PATCH v4 i-g-t 2/2] tests/intel/xe_sriov_flr: Add flr-twice subtest
2025-02-05 17:18 [PATCH v4 i-g-t 0/2] tests/intel/xe_sriov_flr: Add parallel FLR subtest for SR-IOV VFs Marcin Bernatowicz
2025-02-05 17:18 ` [PATCH v4 i-g-t 1/2] " Marcin Bernatowicz
@ 2025-02-05 17:18 ` Marcin Bernatowicz
2025-02-05 18:56 ` ✗ GitLab.Pipeline: warning for tests/intel/xe_sriov_flr: Add parallel FLR subtest for SR-IOV VFs (rev4) Patchwork
` (6 subsequent siblings)
8 siblings, 0 replies; 11+ messages in thread
From: Marcin Bernatowicz @ 2025-02-05 17:18 UTC (permalink / raw)
To: igt-dev
Cc: Marcin Bernatowicz, Lukasz Laguna, Adam Miszczak,
Jakub Kolakowski, Michał Wajdeczko, Michał Winiarski,
Narasimha C V, Piotr Piórkowski, Satyanarayana K V P,
Tomasz Lis
Introduce the `flr-twice` subtest, which initiates FLR twice in parallel
on the same VF. This subtest covers a use case where two FLRs can occur
within a short time frame, such as when starting a QEMU VM with
a passed VF.
Example log showing the behavior:
[ 241.906514] vfio-pci 0000:00:02.1: resetting
[ 241.907123] xe 0000:00:02.0: [drm] GT1: PF: VF1 FLR
[ 241.907204] xe 0000:00:02.0: [drm] GT0: PF: VF1 FLR
[ 242.013441] vfio-pci 0000:00:02.1: reset done
[ 242.040918] vfio-pci 0000:00:02.1: resetting
[ 242.041794] xe 0000:00:02.0: [drm] GT1: PF: VF1 FLR
[ 242.041803] xe 0000:00:02.0: [drm:pf_enter_vf_flr_wip [xe]] GT1: PF:
VF1 FLR is already in progress
[ 242.042207] xe 0000:00:02.0: [drm] GT0: PF: VF1 FLR
[ 242.042214] xe 0000:00:02.0: [drm:pf_enter_vf_flr_wip [xe]] GT0: PF:
VF1 FLR is already in progress
[ 242.149432] vfio-pci 0000:00:02.1: reset done
Signed-off-by: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
Reviewed-by: Lukasz Laguna <lukasz.laguna@intel.com>
Cc: Adam Miszczak <adam.miszczak@linux.intel.com>
Cc: Jakub Kolakowski <jakub1.kolakowski@intel.com>
Cc: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
Cc: Michał Wajdeczko <michal.wajdeczko@intel.com>
Cc: Michał Winiarski <michal.winiarski@intel.com>
Cc: Narasimha C V <narasimha.c.v@intel.com>
Cc: Piotr Piórkowski <piotr.piorkowski@intel.com>
Cc: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
Cc: Tomasz Lis <tomasz.lis@intel.com>
---
tests/intel/xe_sriov_flr.c | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/tests/intel/xe_sriov_flr.c b/tests/intel/xe_sriov_flr.c
index 3b42aa637..a98d6ce70 100644
--- a/tests/intel/xe_sriov_flr.c
+++ b/tests/intel/xe_sriov_flr.c
@@ -41,6 +41,13 @@
* Run type: FULL
* Description:
* Executes FLR on all VFs simultaneously to validate correct behavior during parallel resets.
+ *
+ * SUBTEST: flr-twice
+ * Run type: FULL
+ * Description:
+ * Initiates FLR twice in parallel on the same VF to validate behavior
+ * when multiple resets occur within a short time frame, as seen in some
+ * real-world scenarios (e.g., when starting a QEMU VM with a passed VF).
*/
IGT_TEST_DESCRIPTION("Xe tests for SR-IOV VF FLR (Functional Level Reset)");
@@ -449,6 +456,14 @@ static int execute_parallel_flr(int pf_fd, int num_vfs, struct subcheck *checks,
wait_flr_ms, 1);
}
+static int execute_parallel_flr_twice(int pf_fd, int num_vfs,
+ struct subcheck *checks, int num_checks,
+ const int wait_flr_ms)
+{
+ return execute_parallel_flr_(pf_fd, num_vfs, checks, num_checks,
+ wait_flr_ms, 2);
+}
+
#define GEN12_VF_CAP_REG 0x1901f8
#define GGTT_PTE_TEST_FIELD_MASK GENMASK_ULL(19, 12)
#define GGTT_PTE_ADDR_SHIFT 12
@@ -1073,6 +1088,11 @@ igt_main
clear_tests(pf_fd, total_vfs, execute_parallel_flr);
}
+ igt_describe("Initiate FLR twice in parallel on same VF.");
+ igt_subtest("flr-twice") {
+ clear_tests(pf_fd, 1, execute_parallel_flr_twice);
+ }
+
igt_fixture {
igt_sriov_disable_vfs(pf_fd);
/* abort to avoid execution of next tests with enabled VFs */
--
2.31.1
^ permalink raw reply related [flat|nested] 11+ messages in thread* ✗ Xe.CI.Full: failure for tests/intel/xe_sriov_flr: Add parallel FLR subtest for SR-IOV VFs (rev4)
2025-02-05 17:18 [PATCH v4 i-g-t 0/2] tests/intel/xe_sriov_flr: Add parallel FLR subtest for SR-IOV VFs Marcin Bernatowicz
` (3 preceding siblings ...)
2025-02-05 19:13 ` ✓ Xe.CI.BAT: success " Patchwork
@ 2025-02-05 21:16 ` Patchwork
2025-02-06 9:58 ` Bernatowicz, Marcin
2025-02-06 12:10 ` ✓ Xe.CI.BAT: success " Patchwork
` (3 subsequent siblings)
8 siblings, 1 reply; 11+ messages in thread
From: Patchwork @ 2025-02-05 21:16 UTC (permalink / raw)
To: Marcin Bernatowicz; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 128388 bytes --]
== Series Details ==
Series: tests/intel/xe_sriov_flr: Add parallel FLR subtest for SR-IOV VFs (rev4)
URL : https://patchwork.freedesktop.org/series/142042/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8224_full -> XEIGTPW_12548_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12548_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12548_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12548_full:
### IGT changes ###
#### Possible regressions ####
* igt@xe_module_load@reload-no-display:
- shard-dg2-set2: [PASS][1] -> [FAIL][2] +1 other test fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-466/igt@xe_module_load@reload-no-display.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@xe_module_load@reload-no-display.html
* igt@xe_sriov_flr@flr-vfs-parallel (NEW):
- shard-bmg: NOTRUN -> [SKIP][3] +1 other test skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-8/igt@xe_sriov_flr@flr-vfs-parallel.html
- shard-dg2-set2: NOTRUN -> [SKIP][4]
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@xe_sriov_flr@flr-vfs-parallel.html
- shard-lnl: NOTRUN -> [SKIP][5] +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-8/igt@xe_sriov_flr@flr-vfs-parallel.html
New tests
---------
New tests have been introduced between XEIGT_8224_full and XEIGTPW_12548_full:
### New IGT tests (2) ###
* igt@xe_sriov_flr@flr-twice:
- Statuses : 3 skip(s)
- Exec time: [0.0] s
* igt@xe_sriov_flr@flr-vfs-parallel:
- Statuses : 3 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in XEIGTPW_12548_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#2233])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-5/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#1466])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
- shard-lnl: NOTRUN -> [FAIL][8] ([Intel XE#911]) +3 other tests fail
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
* igt@kms_async_flips@test-time-stamp:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][9] ([Intel XE#1033]) +9 other tests dmesg-warn
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@kms_async_flips@test-time-stamp.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#3279])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-3/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2327]) +7 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-7/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#3658])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#316]) +4 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
- shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#1407]) +6 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-2/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-0:
- shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#1124]) +6 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#1124]) +16 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-5/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1124]) +13 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#2191])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1512]) +2 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-8/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-1-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#367]) +2 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#367])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-7/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#367])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-463/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#455] / [Intel XE#787]) +33 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#787]) +167 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#2907])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#2887]) +17 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#3442])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#3432])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#3432])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#2669]) +7 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2887]) +18 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-2/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2652] / [Intel XE#787]) +17 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-1/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_cdclk@plane-scaling:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2724])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-8/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#1152]) +3 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2252]) +9 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-1/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@ctm-negative:
- shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#306])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_color@degamma:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2325]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-8/igt@kms_chamelium_color@degamma.html
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#306])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-1/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#373]) +4 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#373]) +12 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-5/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2-set2: NOTRUN -> [FAIL][41] ([Intel XE#1178]) +1 other test fail
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@kms_content_protection@atomic-dpms.html
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#3278]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-3/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@atomic@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][43] ([Intel XE#1178]) +2 other tests fail
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-4/igt@kms_content_protection@atomic@pipe-a-dp-2.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#307]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-1/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2390]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-7/igt@kms_content_protection@dp-mst-type-0.html
- shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#307])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@type1:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2341])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-5/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2320]) +6 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#308])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#2321]) +4 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2321]) +3 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-6/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#1424]) +6 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-7/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#309]) +8 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-4/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions:
- shard-dg2-set2: [PASS][54] -> [SKIP][55] ([Intel XE#4208] / [i915#2575]) +74 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-466/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2291]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-bmg: [PASS][57] -> [SKIP][58] ([Intel XE#2291])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#4210])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-8/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_dsc@dsc-basic:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2244]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-4/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#455]) +15 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#2244]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-2/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#776])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-4/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-3x:
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#703])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-4/igt@kms_feature_discovery@display-3x.html
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2373])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-5/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][66] ([Intel XE#301] / [Intel XE#3321]) +1 other test fail
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][67] ([Intel XE#301]) +5 other tests fail
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [DMESG-FAIL][68] ([Intel XE#1033]) +2 other tests dmesg-fail
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][69] ([Intel XE#3321]) +6 other tests fail
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2316]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-4/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#1421]) +3 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-1/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-flip-vs-wf_vblank:
- shard-bmg: [PASS][72] -> [FAIL][73] ([Intel XE#3098]) +2 other tests fail
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-5/igt@kms_flip@2x-flip-vs-wf_vblank.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-7/igt@kms_flip@2x-flip-vs-wf_vblank.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-bmg: [PASS][74] -> [SKIP][75] ([Intel XE#2316]) +4 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-1/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a3:
- shard-bmg: [PASS][76] -> [FAIL][77] ([Intel XE#3321]) +2 other tests fail
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a3.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a3.html
* igt@kms_flip@nonexisting-fb:
- shard-bmg: [PASS][78] -> [DMESG-WARN][79] ([Intel XE#4172]) +15 other tests dmesg-warn
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-7/igt@kms_flip@nonexisting-fb.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-5/igt@kms_flip@nonexisting-fb.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-dg2-set2: [PASS][80] -> [SKIP][81] ([Intel XE#4208]) +178 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#1401]) +3 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2293] / [Intel XE#2380]) +5 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#1401] / [Intel XE#1745]) +3 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2293]) +5 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#352]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-4/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2311]) +28 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-suspend:
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#651]) +15 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-suspend.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#4141]) +17 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#2351] / [Intel XE#4208]) +23 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#656]) +47 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt:
- shard-dg2-set2: [PASS][92] -> [SKIP][93] ([Intel XE#2351] / [Intel XE#4208]) +7 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#651]) +23 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2312]) +4 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2313]) +29 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2352])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
- shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#1469])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#653]) +23 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2502])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-8/igt@kms_getfb@getfb-reject-ccs.html
- shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#605])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@kms_getfb@getfb-reject-ccs.html
- shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#605])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-8/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdmi_inject@inject-audio:
- shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#1470] / [Intel XE#2853])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-1/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@static-toggle-dpms:
- shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#1503])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-3/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#2934])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-7/igt@kms_joiner@basic-force-ultra-joiner.html
- shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#2934])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-2/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#4090])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-4/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#2925])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#4090])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats:
- shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#4208] / [i915#2575]) +53 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b:
- shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#2763]) +8 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d:
- shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#2763] / [Intel XE#455]) +4 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:
- shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#2763]) +27 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#2763]) +14 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_pm_backlight@basic-brightness:
- shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#870])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: NOTRUN -> [FAIL][116] ([Intel XE#718])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-7/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_dc@dc5-psr:
- shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#2392])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-1/igt@kms_pm_dc@dc5-psr.html
- shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#1129])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@deep-pkgc:
- shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2505])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-2/igt@kms_pm_dc@deep-pkgc.html
- shard-lnl: NOTRUN -> [FAIL][120] ([Intel XE#2029])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-8/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#1439] / [Intel XE#3141])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-3/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@universal-planes-dpms:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][122] ([Intel XE#1033] / [Intel XE#2042])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@kms_pm_rpm@universal-planes-dpms.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#1489]) +7 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-7/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#2893]) +4 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-7/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#1489]) +3 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#1128])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-4/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#1122]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#4208]) +123 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@pr-sprite-plane-move:
- shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#1406]) +4 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-7/igt@kms_psr@pr-sprite-plane-move.html
* igt@kms_psr@psr-cursor-plane-onoff:
- shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#2234] / [Intel XE#2850]) +14 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-1/igt@kms_psr@psr-cursor-plane-onoff.html
* igt@kms_psr@psr-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#2850] / [Intel XE#929]) +14 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@kms_psr@psr-dpms.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#2414])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#2939])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#3414]) +2 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@kms_rotation_crc@bad-tiling.html
- shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-1/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-top:
- shard-dg2-set2: [PASS][136] -> [DMESG-WARN][137] ([Intel XE#1033]) +11 other tests dmesg-warn
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-435/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-463/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#2413]) +1 other test skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-6/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#1435])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-2/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#1435])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-2/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [PASS][142] -> [FAIL][143] ([Intel XE#2159]) +1 other test fail
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-2/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-2/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@kms_vrr@flip-basic:
- shard-lnl: NOTRUN -> [FAIL][144] ([Intel XE#1522]) +5 other tests fail
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-6/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@max-min:
- shard-bmg: NOTRUN -> [SKIP][145] ([Intel XE#1499]) +3 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-1/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#1499]) +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-8/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-bmg: NOTRUN -> [SKIP][147] ([Intel XE#756])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-5/igt@kms_writeback@writeback-pixel-formats.html
- shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#756])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-4/igt@kms_writeback@writeback-pixel-formats.html
* igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute:
- shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html
* igt@xe_create@create-big-vram:
- shard-lnl: NOTRUN -> [SKIP][150] ([Intel XE#1062])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-5/igt@xe_create@create-big-vram.html
* igt@xe_eudebug@basic-connect:
- shard-lnl: NOTRUN -> [SKIP][151] ([Intel XE#2905]) +11 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-5/igt@xe_eudebug@basic-connect.html
* igt@xe_eudebug@exec-queue-placements:
- shard-bmg: NOTRUN -> [SKIP][152] ([Intel XE#2905]) +10 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-2/igt@xe_eudebug@exec-queue-placements.html
* igt@xe_evict@evict-beng-large-multi-vm:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][153] ([Intel XE#1033] / [Intel XE#1473])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@xe_evict@evict-beng-large-multi-vm.html
* igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-samefd:
- shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#688]) +5 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-4/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-samefd.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
- shard-bmg: NOTRUN -> [SKIP][155] ([Intel XE#2322]) +5 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-6/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
- shard-lnl: NOTRUN -> [SKIP][156] ([Intel XE#1392]) +4 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-2/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
* igt@xe_exec_fault_mode@many-execqueues-basic-prefetch:
- shard-bmg: NOTRUN -> [DMESG-WARN][157] ([Intel XE#4172]) +4 other tests dmesg-warn
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-2/igt@xe_exec_fault_mode@many-execqueues-basic-prefetch.html
* igt@xe_exec_fault_mode@once-rebind-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][158] ([Intel XE#288]) +13 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@xe_exec_fault_mode@once-rebind-prefetch.html
* igt@xe_exec_sip_eudebug@breakpoint-writesip:
- shard-dg2-set2: NOTRUN -> [SKIP][159] ([Intel XE#2905]) +7 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@xe_exec_sip_eudebug@breakpoint-writesip.html
* igt@xe_live_ktest@xe_dma_buf:
- shard-bmg: [PASS][160] -> [SKIP][161] ([Intel XE#1192])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-4/igt@xe_live_ktest@xe_dma_buf.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-2/igt@xe_live_ktest@xe_dma_buf.html
* igt@xe_live_ktest@xe_migrate:
- shard-lnl: NOTRUN -> [SKIP][162] ([Intel XE#1192])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-5/igt@xe_live_ktest@xe_migrate.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- shard-dg2-set2: NOTRUN -> [SKIP][163] ([Intel XE#2229])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_module_load@force-load:
- shard-dg2-set2: NOTRUN -> [SKIP][164] ([Intel XE#378])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-463/igt@xe_module_load@force-load.html
* igt@xe_module_load@load:
- shard-lnl: ([PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185], [PASS][186], [PASS][187], [PASS][188], [PASS][189]) -> ([PASS][190], [PASS][191], [PASS][192], [PASS][193], [PASS][194], [PASS][195], [PASS][196], [PASS][197], [PASS][198], [PASS][199], [PASS][200], [PASS][201], [SKIP][202], [PASS][203], [PASS][204], [PASS][205], [PASS][206], [PASS][207], [PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214], [PASS][215]) ([Intel XE#378])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-6/igt@xe_module_load@load.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-7/igt@xe_module_load@load.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-7/igt@xe_module_load@load.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-5/igt@xe_module_load@load.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-5/igt@xe_module_load@load.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-5/igt@xe_module_load@load.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-8/igt@xe_module_load@load.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-4/igt@xe_module_load@load.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-4/igt@xe_module_load@load.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-1/igt@xe_module_load@load.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-1/igt@xe_module_load@load.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-2/igt@xe_module_load@load.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-3/igt@xe_module_load@load.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-3/igt@xe_module_load@load.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-3/igt@xe_module_load@load.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-3/igt@xe_module_load@load.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-7/igt@xe_module_load@load.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-8/igt@xe_module_load@load.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-6/igt@xe_module_load@load.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-6/igt@xe_module_load@load.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-1/igt@xe_module_load@load.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-2/igt@xe_module_load@load.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-5/igt@xe_module_load@load.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-4/igt@xe_module_load@load.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-8/igt@xe_module_load@load.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-8/igt@xe_module_load@load.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-4/igt@xe_module_load@load.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-4/igt@xe_module_load@load.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-7/igt@xe_module_load@load.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-4/igt@xe_module_load@load.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-1/igt@xe_module_load@load.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-8/igt@xe_module_load@load.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-2/igt@xe_module_load@load.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-5/igt@xe_module_load@load.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-8/igt@xe_module_load@load.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-2/igt@xe_module_load@load.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-5/igt@xe_module_load@load.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-2/igt@xe_module_load@load.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-6/igt@xe_module_load@load.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-7/igt@xe_module_load@load.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-6/igt@xe_module_load@load.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-5/igt@xe_module_load@load.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-2/igt@xe_module_load@load.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-3/igt@xe_module_load@load.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-5/igt@xe_module_load@load.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-6/igt@xe_module_load@load.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-1/igt@xe_module_load@load.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-1/igt@xe_module_load@load.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-3/igt@xe_module_load@load.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-3/igt@xe_module_load@load.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-7/igt@xe_module_load@load.html
- shard-bmg: ([PASS][216], [PASS][217], [PASS][218], [PASS][219], [PASS][220], [PASS][221], [PASS][222], [PASS][223], [PASS][224], [PASS][225], [PASS][226], [PASS][227], [PASS][228], [PASS][229], [PASS][230], [PASS][231], [PASS][232], [PASS][233], [PASS][234], [PASS][235], [PASS][236], [PASS][237], [PASS][238], [PASS][239], [PASS][240]) -> ([PASS][241], [PASS][242], [PASS][243], [PASS][244], [PASS][245], [PASS][246], [SKIP][247], [PASS][248], [PASS][249], [PASS][250], [PASS][251], [PASS][252], [PASS][253], [PASS][254], [PASS][255], [PASS][256], [PASS][257], [PASS][258], [PASS][259], [PASS][260], [PASS][261], [PASS][262], [PASS][263], [PASS][264], [PASS][265], [PASS][266]) ([Intel XE#2457])
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-4/igt@xe_module_load@load.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-4/igt@xe_module_load@load.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-4/igt@xe_module_load@load.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-4/igt@xe_module_load@load.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-6/igt@xe_module_load@load.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-5/igt@xe_module_load@load.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-5/igt@xe_module_load@load.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-7/igt@xe_module_load@load.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-7/igt@xe_module_load@load.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-7/igt@xe_module_load@load.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-8/igt@xe_module_load@load.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-1/igt@xe_module_load@load.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-1/igt@xe_module_load@load.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-5/igt@xe_module_load@load.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-5/igt@xe_module_load@load.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-8/igt@xe_module_load@load.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-8/igt@xe_module_load@load.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-2/igt@xe_module_load@load.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-6/igt@xe_module_load@load.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-2/igt@xe_module_load@load.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-6/igt@xe_module_load@load.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-6/igt@xe_module_load@load.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-1/igt@xe_module_load@load.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-2/igt@xe_module_load@load.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-2/igt@xe_module_load@load.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-6/igt@xe_module_load@load.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-8/igt@xe_module_load@load.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-8/igt@xe_module_load@load.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-8/igt@xe_module_load@load.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-7/igt@xe_module_load@load.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-7/igt@xe_module_load@load.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-1/igt@xe_module_load@load.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-1/igt@xe_module_load@load.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-2/igt@xe_module_load@load.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-2/igt@xe_module_load@load.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-6/igt@xe_module_load@load.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-5/igt@xe_module_load@load.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-5/igt@xe_module_load@load.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-6/igt@xe_module_load@load.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-6/igt@xe_module_load@load.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-5/igt@xe_module_load@load.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-5/igt@xe_module_load@load.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-4/igt@xe_module_load@load.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-4/igt@xe_module_load@load.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-2/igt@xe_module_load@load.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-1/igt@xe_module_load@load.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-1/igt@xe_module_load@load.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-1/igt@xe_module_load@load.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-4/igt@xe_module_load@load.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-7/igt@xe_module_load@load.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-7/igt@xe_module_load@load.html
* igt@xe_oa@closed-fd-and-unmapped-access:
- shard-dg2-set2: NOTRUN -> [SKIP][267] ([Intel XE#2541] / [Intel XE#3573]) +5 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@xe_oa@closed-fd-and-unmapped-access.html
* igt@xe_pat@pat-index-xehpc:
- shard-dg2-set2: NOTRUN -> [SKIP][268] ([Intel XE#2838] / [Intel XE#979])
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelp:
- shard-lnl: NOTRUN -> [SKIP][269] ([Intel XE#977])
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-1/igt@xe_pat@pat-index-xelp.html
- shard-bmg: NOTRUN -> [SKIP][270] ([Intel XE#2245])
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-8/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- shard-bmg: NOTRUN -> [SKIP][271] ([Intel XE#2236])
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-1/igt@xe_pat@pat-index-xelpg.html
- shard-lnl: NOTRUN -> [SKIP][272] ([Intel XE#979])
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-5/igt@xe_pat@pat-index-xelpg.html
* igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p:
- shard-dg2-set2: NOTRUN -> [FAIL][273] ([Intel XE#1173])
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html
* igt@xe_pm@d3cold-basic-exec:
- shard-dg2-set2: NOTRUN -> [SKIP][274] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_pm@d3cold-mocs:
- shard-dg2-set2: NOTRUN -> [SKIP][275] ([Intel XE#2284])
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@xe_pm@d3cold-mocs.html
- shard-lnl: NOTRUN -> [SKIP][276] ([Intel XE#2284])
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-1/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@d3hot-mmap-vram:
- shard-lnl: NOTRUN -> [SKIP][277] ([Intel XE#1948])
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-3/igt@xe_pm@d3hot-mmap-vram.html
* igt@xe_pm@s3-d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][278] ([Intel XE#2284])
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-1/igt@xe_pm@s3-d3cold-basic-exec.html
* igt@xe_pm@s3-exec-after:
- shard-bmg: [PASS][279] -> [DMESG-WARN][280] ([Intel XE#4172] / [Intel XE#569])
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-8/igt@xe_pm@s3-exec-after.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-5/igt@xe_pm@s3-exec-after.html
* igt@xe_pm@s3-multiple-execs:
- shard-dg2-set2: [PASS][281] -> [DMESG-WARN][282] ([Intel XE#1033] / [Intel XE#569])
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-434/igt@xe_pm@s3-multiple-execs.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@xe_pm@s3-multiple-execs.html
* igt@xe_pm@s3-vm-bind-prefetch:
- shard-lnl: NOTRUN -> [SKIP][283] ([Intel XE#584])
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-1/igt@xe_pm@s3-vm-bind-prefetch.html
* igt@xe_pm@s4-basic:
- shard-dg2-set2: NOTRUN -> [ABORT][284] ([Intel XE#1358])
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@xe_pm@s4-basic.html
* igt@xe_pm@s4-exec-after:
- shard-bmg: NOTRUN -> [ABORT][285] ([Intel XE#1358] / [Intel XE#1607])
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-8/igt@xe_pm@s4-exec-after.html
- shard-lnl: NOTRUN -> [ABORT][286] ([Intel XE#1358] / [Intel XE#1607])
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-1/igt@xe_pm@s4-exec-after.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][287] ([Intel XE#944]) +5 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-1/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_query@multigpu-query-topology-l3-bank-mask:
- shard-lnl: NOTRUN -> [SKIP][288] ([Intel XE#944]) +5 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-4/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
* igt@xe_query@multigpu-query-uc-fw-version-guc:
- shard-dg2-set2: NOTRUN -> [SKIP][289] ([Intel XE#944]) +2 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@xe_query@multigpu-query-uc-fw-version-guc.html
* igt@xe_sriov_auto_provisioning@fair-allocation:
- shard-lnl: NOTRUN -> [SKIP][290] ([Intel XE#4130])
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-1/igt@xe_sriov_auto_provisioning@fair-allocation.html
- shard-bmg: NOTRUN -> [SKIP][291] ([Intel XE#4130])
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-8/igt@xe_sriov_auto_provisioning@fair-allocation.html
#### Possible fixes ####
* igt@fbdev@nullptr:
- shard-dg2-set2: [SKIP][292] ([Intel XE#2134]) -> [PASS][293]
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@fbdev@nullptr.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@fbdev@nullptr.html
* igt@kms_atomic@plane-invalid-params-fence:
- shard-dg2-set2: [SKIP][294] ([Intel XE#4208] / [i915#2575]) -> [PASS][295] +84 other tests pass
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_atomic@plane-invalid-params-fence.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@kms_atomic@plane-invalid-params-fence.html
* igt@kms_atomic_interruptible@legacy-setmode@pipe-a-hdmi-a-6:
- shard-dg2-set2: [DMESG-WARN][296] ([Intel XE#1033]) -> [PASS][297] +6 other tests pass
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-434/igt@kms_atomic_interruptible@legacy-setmode@pipe-a-hdmi-a-6.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@kms_atomic_interruptible@legacy-setmode@pipe-a-hdmi-a-6.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-bmg: [SKIP][298] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][299]
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: [INCOMPLETE][300] ([Intel XE#3862]) -> [PASS][301] +1 other test pass
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic:
- shard-bmg: [INCOMPLETE][302] ([Intel XE#3226]) -> [PASS][303]
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-4/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-1/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [SKIP][304] ([Intel XE#2291]) -> [PASS][305] +4 other tests pass
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_display_modes@extended-mode-basic:
- shard-bmg: [SKIP][306] ([Intel XE#2425]) -> [PASS][307]
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-5/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ad-hdmi-a6-dp4:
- shard-dg2-set2: [FAIL][308] ([Intel XE#301]) -> [PASS][309] +1 other test pass
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank@ad-hdmi-a6-dp4.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank@ad-hdmi-a6-dp4.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-bmg: [SKIP][310] ([Intel XE#2316]) -> [PASS][311] +5 other tests pass
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-4/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-1/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a3:
- shard-bmg: [FAIL][312] ([Intel XE#3321]) -> [PASS][313] +2 other tests pass
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-6/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a3.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-6/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a3.html
* igt@kms_flip@plain-flip-fb-recreate:
- shard-bmg: [FAIL][314] ([Intel XE#2882]) -> [PASS][315] +1 other test pass
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-5/igt@kms_flip@plain-flip-fb-recreate.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-2/igt@kms_flip@plain-flip-fb-recreate.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling:
- shard-dg2-set2: [SKIP][316] ([Intel XE#2351] / [Intel XE#4208]) -> [PASS][317] +11 other tests pass
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-lnl: [FAIL][318] ([Intel XE#3924]) -> [PASS][319] +1 other test pass
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-8/igt@kms_psr@fbc-psr2-sprite-render.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-7/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-bmg: [SKIP][320] ([Intel XE#1435]) -> [PASS][321]
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-4/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-1/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_universal_plane@cursor-fb-leak:
- shard-dg2-set2: [FAIL][322] ([Intel XE#771] / [Intel XE#899]) -> [PASS][323]
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-463/igt@kms_universal_plane@cursor-fb-leak.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@kms_universal_plane@cursor-fb-leak.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-6:
- shard-dg2-set2: [FAIL][324] ([Intel XE#899]) -> [PASS][325]
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-463/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-6.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-6.html
* igt@xe_exec_balancer@once-parallel-rebind:
- shard-dg2-set2: [SKIP][326] ([Intel XE#4208]) -> [PASS][327] +209 other tests pass
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@xe_exec_balancer@once-parallel-rebind.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@xe_exec_balancer@once-parallel-rebind.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind-prefetch:
- shard-bmg: [INCOMPLETE][328] -> [PASS][329]
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-1/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind-prefetch.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-4/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind-prefetch.html
* igt@xe_live_ktest@xe_migrate:
- shard-bmg: [SKIP][330] ([Intel XE#1192]) -> [PASS][331]
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-2/igt@xe_live_ktest@xe_migrate.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-1/igt@xe_live_ktest@xe_migrate.html
* igt@xe_module_load@reload:
- shard-dg2-set2: [FAIL][332] -> [PASS][333] +2 other tests pass
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@xe_module_load@reload.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-463/igt@xe_module_load@reload.html
* igt@xe_oa@mmio-triggered-reports:
- shard-bmg: [DMESG-WARN][334] ([Intel XE#4172]) -> [PASS][335] +48 other tests pass
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-1/igt@xe_oa@mmio-triggered-reports.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-5/igt@xe_oa@mmio-triggered-reports.html
* igt@xe_pm@s3-vm-bind-prefetch:
- shard-bmg: [INCOMPLETE][336] ([Intel XE#1358] / [Intel XE#569]) -> [PASS][337]
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-6/igt@xe_pm@s3-vm-bind-prefetch.html
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-4/igt@xe_pm@s3-vm-bind-prefetch.html
- shard-dg2-set2: [DMESG-WARN][338] ([Intel XE#1033] / [Intel XE#569]) -> [PASS][339]
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-463/igt@xe_pm@s3-vm-bind-prefetch.html
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@xe_pm@s3-vm-bind-prefetch.html
* igt@xe_pm@s3-vm-bind-userptr:
- shard-bmg: [DMESG-WARN][340] ([Intel XE#4172] / [Intel XE#569]) -> [PASS][341]
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-5/igt@xe_pm@s3-vm-bind-userptr.html
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-4/igt@xe_pm@s3-vm-bind-userptr.html
#### Warnings ####
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg2-set2: [SKIP][342] ([Intel XE#4208] / [i915#2575]) -> [SKIP][343] ([Intel XE#455]) +4 other tests skip
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-463/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-dg2-set2: [SKIP][344] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][345] ([Intel XE#316]) +2 other tests skip
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][346] ([Intel XE#4208]) -> [SKIP][347] ([Intel XE#316]) +4 other tests skip
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@linear-64bpp-rotate-180:
- shard-dg2-set2: [DMESG-WARN][348] ([Intel XE#1033]) -> [SKIP][349] ([Intel XE#2351] / [Intel XE#4208])
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-434/igt@kms_big_fb@linear-64bpp-rotate-180.html
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_big_fb@linear-64bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-dg2-set2: [SKIP][350] ([Intel XE#316]) -> [SKIP][351] ([Intel XE#2351] / [Intel XE#4208])
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-466/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-180:
- shard-dg2-set2: [SKIP][352] ([Intel XE#4208]) -> [SKIP][353] ([Intel XE#1124]) +2 other tests skip
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: [SKIP][354] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][355] ([Intel XE#607])
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg2-set2: [SKIP][356] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][357] ([Intel XE#1124]) +3 other tests skip
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-dg2-set2: [SKIP][358] ([Intel XE#1124]) -> [SKIP][359] ([Intel XE#4208]) +2 other tests skip
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-436/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-dg2-set2: [SKIP][360] ([Intel XE#1124]) -> [SKIP][361] ([Intel XE#2351] / [Intel XE#4208]) +2 other tests skip
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-434/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: [SKIP][362] ([Intel XE#4208]) -> [SKIP][363] ([Intel XE#607])
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-463/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg2-set2: [SKIP][364] ([Intel XE#4208]) -> [SKIP][365] ([Intel XE#610])
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-dg2-set2: [SKIP][366] ([Intel XE#4208] / [i915#2575]) -> [SKIP][367] ([Intel XE#2191]) +2 other tests skip
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-2-displays-3840x2160p:
- shard-dg2-set2: [SKIP][368] ([Intel XE#367]) -> [SKIP][369] ([Intel XE#4208] / [i915#2575]) +2 other tests skip
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-435/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-3-displays-3840x2160p:
- shard-dg2-set2: [SKIP][370] ([Intel XE#4208] / [i915#2575]) -> [SKIP][371] ([Intel XE#367]) +1 other test skip
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
* igt@kms_ccs@bad-pixel-format-yf-tiled-ccs:
- shard-dg2-set2: [SKIP][372] ([Intel XE#4208]) -> [SKIP][373] ([Intel XE#455] / [Intel XE#787]) +9 other tests skip
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs:
- shard-dg2-set2: [SKIP][374] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][375] ([Intel XE#2351] / [Intel XE#4208]) +3 other tests skip
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-466/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs:
- shard-dg2-set2: [SKIP][376] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][377] ([Intel XE#455] / [Intel XE#787]) +3 other tests skip
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs.html
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [DMESG-WARN][378] ([Intel XE#1033]) -> [SKIP][379] ([Intel XE#4208]) +3 other tests skip
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-dg2-set2: [SKIP][380] ([Intel XE#4208]) -> [SKIP][381] ([Intel XE#2907])
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs:
- shard-dg2-set2: [SKIP][382] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][383] ([Intel XE#4208]) +9 other tests skip
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-dg2-set2: [SKIP][384] ([Intel XE#4208] / [i915#2575]) -> [SKIP][385] ([Intel XE#306])
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_chamelium_color@ctm-0-50.html
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-dg2-set2: [SKIP][386] ([Intel XE#306]) -> [SKIP][387] ([Intel XE#4208] / [i915#2575])
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-435/igt@kms_chamelium_color@ctm-red-to-blue.html
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_hpd@hdmi-hpd:
- shard-dg2-set2: [SKIP][388] ([Intel XE#4208] / [i915#2575]) -> [SKIP][389] ([Intel XE#373]) +15 other tests skip
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_chamelium_hpd@hdmi-hpd.html
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@kms_chamelium_hpd@hdmi-hpd.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-dg2-set2: [SKIP][390] ([Intel XE#373]) -> [SKIP][391] ([Intel XE#4208] / [i915#2575]) +9 other tests skip
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-463/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_content_protection@atomic:
- shard-bmg: [SKIP][392] ([Intel XE#2341]) -> [FAIL][393] ([Intel XE#1178])
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-6/igt@kms_content_protection@atomic.html
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-4/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2-set2: [SKIP][394] ([Intel XE#4208] / [i915#2575]) -> [SKIP][395] ([Intel XE#307])
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_content_protection@dp-mst-lic-type-1.html
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@uevent:
- shard-dg2-set2: [FAIL][396] ([Intel XE#1188]) -> [DMESG-FAIL][397] ([Intel XE#1033]) +1 other test dmesg-fail
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-435/igt@kms_content_protection@uevent.html
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-dg2-set2: [SKIP][398] ([Intel XE#455]) -> [SKIP][399] ([Intel XE#4208] / [i915#2575]) +2 other tests skip
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-463/igt@kms_cursor_crc@cursor-offscreen-max-size.html
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2-set2: [SKIP][400] ([Intel XE#4208] / [i915#2575]) -> [SKIP][401] ([Intel XE#308]) +3 other tests skip
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_cursor_crc@cursor-onscreen-512x170.html
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-sliding-128x128:
- shard-dg2-set2: [DMESG-WARN][402] ([Intel XE#1033]) -> [SKIP][403] ([Intel XE#4208] / [i915#2575]) +6 other tests skip
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-434/igt@kms_cursor_crc@cursor-sliding-128x128.html
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_cursor_crc@cursor-sliding-128x128.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-dg2-set2: [SKIP][404] ([Intel XE#4208] / [i915#2575]) -> [SKIP][405] ([Intel XE#323])
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_feature_discovery@display-4x:
- shard-dg2-set2: [SKIP][406] ([Intel XE#1138]) -> [SKIP][407] ([Intel XE#4208] / [i915#2575])
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-435/igt@kms_feature_discovery@display-4x.html
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2-set2: [SKIP][408] ([Intel XE#1137]) -> [SKIP][409] ([Intel XE#4208] / [i915#2575])
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-466/igt@kms_feature_discovery@dp-mst.html
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr2:
- shard-dg2-set2: [SKIP][410] ([Intel XE#1135]) -> [SKIP][411] ([Intel XE#4208] / [i915#2575])
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-463/igt@kms_feature_discovery@psr2.html
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-bmg: [SKIP][412] ([Intel XE#2316]) -> [FAIL][413] ([Intel XE#3321])
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank.html
[413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-dg2-set2: [FAIL][414] ([Intel XE#301]) -> [SKIP][415] ([Intel XE#4208] / [i915#2575])
[414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank.html
[415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-dg2-set2: [SKIP][416] ([Intel XE#4208] / [i915#2575]) -> [FAIL][417] ([Intel XE#301])
[416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-suspend:
- shard-dg2-set2: [DMESG-WARN][418] ([Intel XE#2955]) -> [DMESG-WARN][419] ([Intel XE#1033])
[418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-463/igt@kms_flip@flip-vs-suspend.html
[419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-463/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-dg2-set2: [DMESG-WARN][420] -> [DMESG-WARN][421] ([Intel XE#1033])
[420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-463/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset.html
[421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
- shard-dg2-set2: [SKIP][422] ([Intel XE#455]) -> [SKIP][423] ([Intel XE#2351] / [Intel XE#4208])
[422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
[423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-dg2-set2: [SKIP][424] ([Intel XE#455]) -> [SKIP][425] ([Intel XE#4208]) +1 other test skip
[424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
[425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2-set2: [SKIP][426] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][427] ([Intel XE#455]) +2 other tests skip
[426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
[427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2-set2: [SKIP][428] ([Intel XE#4208]) -> [SKIP][429] ([Intel XE#455]) +2 other tests skip
[428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
[429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][430] ([Intel XE#2312]) -> [SKIP][431] ([Intel XE#2311]) +15 other tests skip
[430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
[431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff:
- shard-dg2-set2: [SKIP][432] ([Intel XE#651]) -> [SKIP][433] ([Intel XE#4208]) +13 other tests skip
[432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff.html
[433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: [SKIP][434] ([Intel XE#2311]) -> [SKIP][435] ([Intel XE#2312]) +7 other tests skip
[434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
[435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: [SKIP][436] ([Intel XE#651]) -> [SKIP][437] ([Intel XE#2351] / [Intel XE#4208]) +8 other tests skip
[436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
[437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@drrs-suspend:
- shard-dg2-set2: [SKIP][438] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][439] ([Intel XE#651]) +10 other tests skip
[438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-suspend.html
[439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-suspend.html
* igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw:
- shard-bmg: [SKIP][440] ([Intel XE#4141]) -> [SKIP][441] ([Intel XE#2312]) +6 other tests skip
[440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html
[441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render:
- shard-dg2-set2: [SKIP][442] ([Intel XE#4208]) -> [DMESG-WARN][443] ([Intel XE#1033]) +3 other tests dmesg-warn
[442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render.html
[443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][444] ([Intel XE#2312]) -> [SKIP][445] ([Intel XE#4141]) +5 other tests skip
[444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte:
- shard-dg2-set2: [SKIP][446] ([Intel XE#4208]) -> [SKIP][447] ([Intel XE#651]) +22 other tests skip
[446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html
[447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-dg2-set2: [SKIP][448] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][449] ([Intel XE#658])
[448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
[449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render:
- shard-dg2-set2: [SKIP][450] ([Intel XE#653]) -> [SKIP][451] ([Intel XE#2351] / [Intel XE#4208]) +5 other tests skip
[450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html
[451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-dg2-set2: [SKIP][452] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][453] ([Intel XE#653]) +8 other tests skip
[452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
[453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][454] ([Intel XE#2313]) -> [SKIP][455] ([Intel XE#2312]) +13 other tests skip
[454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
[455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt:
- shard-dg2-set2: [SKIP][456] ([Intel XE#4208]) -> [SKIP][457] ([Intel XE#653]) +22 other tests skip
[456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html
[457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][458] ([Intel XE#2312]) -> [SKIP][459] ([Intel XE#2313]) +10 other tests skip
[458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
[459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@psr-slowdraw:
- shard-dg2-set2: [SKIP][460] ([Intel XE#653]) -> [SKIP][461] ([Intel XE#4208]) +16 other tests skip
[460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-slowdraw.html
[461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-slowdraw.html
* igt@kms_joiner@basic-big-joiner:
- shard-dg2-set2: [SKIP][462] ([Intel XE#4208]) -> [SKIP][463] ([Intel XE#346])
[462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_joiner@basic-big-joiner.html
[463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-dg2-set2: [SKIP][464] ([Intel XE#4208]) -> [SKIP][465] ([Intel XE#2925])
[464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_joiner@basic-force-ultra-joiner.html
[465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2-set2: [SKIP][466] ([Intel XE#2927]) -> [SKIP][467] ([Intel XE#4208])
[466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-434/igt@kms_joiner@invalid-modeset-ultra-joiner.html
[467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
- shard-dg2-set2: [SKIP][468] ([Intel XE#4208] / [i915#2575]) -> [SKIP][469] ([Intel XE#2763] / [Intel XE#455])
[468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
[469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-dg2-set2: [SKIP][470] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][471] ([Intel XE#4208] / [i915#2575]) +1 other test skip
[470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-463/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
[471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-dg2-set2: [SKIP][472] ([Intel XE#870]) -> [SKIP][473] ([Intel XE#4208]) +1 other test skip
[472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-434/igt@kms_pm_backlight@fade-with-dpms.html
[473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg2-set2: [SKIP][474] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][475] ([Intel XE#1122])
[474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_pm_dc@dc3co-vpb-simulation.html
[475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-463/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@deep-pkgc:
- shard-dg2-set2: [SKIP][476] ([Intel XE#4208]) -> [SKIP][477] ([Intel XE#908])
[476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_pm_dc@deep-pkgc.html
[477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-463/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: [SKIP][478] ([Intel XE#4208]) -> [SKIP][479] ([Intel XE#1489]) +14 other tests skip
[478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
[479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf:
- shard-dg2-set2: [SKIP][480] ([Intel XE#1489]) -> [SKIP][481] ([Intel XE#4208]) +6 other tests skip
[480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
[481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2-set2: [SKIP][482] ([Intel XE#1122]) -> [SKIP][483] ([Intel XE#4208])
[482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-436/igt@kms_psr2_su@page_flip-nv12.html
[483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-psr-sprite-plane-onoff:
- shard-dg2-set2: [SKIP][484] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][485] ([Intel XE#2351] / [Intel XE#4208]) +8 other tests skip
[484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-435/igt@kms_psr@fbc-psr-sprite-plane-onoff.html
[485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_psr@fbc-psr-sprite-plane-onoff.html
* igt@kms_psr@fbc-psr-sprite-render:
- shard-dg2-set2: [SKIP][486] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][487] ([Intel XE#4208]) +11 other tests skip
[486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-436/igt@kms_psr@fbc-psr-sprite-render.html
[487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_psr@fbc-psr-sprite-render.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-dg2-set2: [SKIP][488] ([Intel XE#4208]) -> [SKIP][489] ([Intel XE#2850] / [Intel XE#929]) +13 other tests skip
[488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_psr@fbc-psr2-primary-render.html
[489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_psr@psr-sprite-blt:
- shard-dg2-set2: [SKIP][490] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][491] ([Intel XE#2850] / [Intel XE#929]) +4 other tests skip
[490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_psr@psr-sprite-blt.html
[491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@kms_psr@psr-sprite-blt.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-dg2-set2: [SKIP][492] ([Intel XE#3414]) -> [SKIP][493] ([Intel XE#4208] / [i915#2575]) +2 other tests skip
[492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-436/igt@kms_rotation_crc@bad-pixel-format.html
[493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-dg2-set2: [SKIP][494] ([Intel XE#4208] / [i915#2575]) -> [SKIP][495] ([Intel XE#1127]) +1 other test skip
[494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
[495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-180:
- shard-dg2-set2: [SKIP][496] ([Intel XE#4208] / [i915#2575]) -> [DMESG-WARN][497] ([Intel XE#1033]) +2 other tests dmesg-warn
[496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_rotation_crc@sprite-rotation-180.html
[497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@kms_rotation_crc@sprite-rotation-180.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2-set2: [SKIP][498] ([Intel XE#4208] / [i915#2575]) -> [SKIP][499] ([Intel XE#3414]) +1 other test skip
[498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
[499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-set2: [SKIP][500] ([Intel XE#1500]) -> [SKIP][501] ([Intel XE#4208] / [i915#2575])
[500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@cmrr:
- shard-dg2-set2: [SKIP][502] ([Intel XE#4208] / [i915#2575]) -> [SKIP][503] ([Intel XE#2168])
[502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_vrr@cmrr.html
[503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@kms_vrr@cmrr.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg2-set2: [SKIP][504] ([Intel XE#756]) -> [SKIP][505] ([Intel XE#4208] / [i915#2575]) +1 other test skip
[504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-436/igt@kms_writeback@writeback-fb-id.html
[505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_writeback@writeback-fb-id.html
* igt@testdisplay:
- shard-dg2-set2: [SKIP][506] ([Intel XE#4208]) -> [DMESG-WARN][507] ([Intel XE#2705] / [Intel XE#4212])
[506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@testdisplay.html
[507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@testdisplay.html
* igt@xe_compute_preempt@compute-preempt:
- shard-dg2-set2: [SKIP][508] ([Intel XE#4208]) -> [SKIP][509] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
[508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@xe_compute_preempt@compute-preempt.html
[509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@xe_compute_preempt@compute-preempt.html
* igt@xe_compute_preempt@compute-preempt-many:
- shard-dg2-set2: [SKIP][510] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][511] ([Intel XE#4208])
[510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-463/igt@xe_compute_preempt@compute-preempt-many.html
[511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@xe_compute_preempt@compute-preempt-many.html
* igt@xe_copy_basic@mem-copy-linear-0xfffe:
- shard-dg2-set2: [SKIP][512] ([Intel XE#4208]) -> [SKIP][513] ([Intel XE#1123])
[512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
[513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
* igt@xe_copy_basic@mem-set-linear-0xfd:
- shard-dg2-set2: [SKIP][514] ([Intel XE#4208]) -> [SKIP][515] ([Intel XE#1126]) +1 other test skip
[514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@xe_copy_basic@mem-set-linear-0xfd.html
[515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0xfd.html
* igt@xe_eudebug@basic-vm-bind-ufence-delay-ack:
- shard-dg2-set2: [SKIP][516] ([Intel XE#3889]) -> [SKIP][517] ([Intel XE#4208])
[516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-435/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html
[517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html
* igt@xe_eudebug@multiple-sessions:
- shard-dg2-set2: [SKIP][518] ([Intel XE#2905]) -> [SKIP][519] ([Intel XE#4208]) +7 other tests skip
[518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-466/igt@xe_eudebug@multiple-sessions.html
[519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@xe_eudebug@multiple-sessions.html
* igt@xe_eudebug_online@debugger-reopen:
- shard-dg2-set2: [SKIP][520] ([Intel XE#4208]) -> [SKIP][521] ([Intel XE#2905]) +13 other tests skip
[520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@xe_eudebug_online@debugger-reopen.html
[521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@xe_eudebug_online@debugger-reopen.html
* igt@xe_exec_fault_mode@once-bindexecqueue-imm:
- shard-dg2-set2: [SKIP][522] ([Intel XE#288]) -> [SKIP][523] ([Intel XE#4208]) +22 other tests skip
[522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-466/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html
[523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
- shard-dg2-set2: [SKIP][524] ([Intel XE#4208]) -> [SKIP][525] ([Intel XE#288]) +24 other tests skip
[524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
[525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-463/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
- shard-dg2-set2: [SKIP][526] ([Intel XE#4208]) -> [SKIP][527] ([Intel XE#2360]) +1 other test skip
[526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
[527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
* igt@xe_live_ktest@xe_eudebug:
- shard-bmg: [SKIP][528] ([Intel XE#1192]) -> [SKIP][529] ([Intel XE#2833])
[528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-6/igt@xe_live_ktest@xe_eudebug.html
[529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-7/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_oa@oa-unit-exclusive-stream-sample-oa:
- shard-dg2-set2: [SKIP][530] ([Intel XE#4208]) -> [SKIP][531] ([Intel XE#2541] / [Intel XE#3573]) +9 other tests skip
[530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
[531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
* igt@xe_oa@syncs-ufence-wait-cfg:
- shard-dg2-set2: [SKIP][532] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][533] ([Intel XE#4208]) +8 other tests skip
[532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-436/igt@xe_oa@syncs-ufence-wait-cfg.html
[533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@xe_oa@syncs-ufence-wait-cfg.html
* igt@xe_pat@display-vs-wb-transient:
- shard-dg2-set2: [SKIP][534] ([Intel XE#1337]) -> [SKIP][535] ([Intel XE#4208])
[534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-436/igt@xe_pat@display-vs-wb-transient.html
[535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@xe_pat@display-vs-wb-transient.html
* igt@xe_pat@pat-index-xelpg:
- shard-dg2-set2: [SKIP][536] ([Intel XE#4208]) -> [SKIP][537] ([Intel XE#979])
[536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@xe_pat@pat-index-xelpg.html
[537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@xe_pat@pat-index-xelpg.html
* igt@xe_peer2peer@read:
- shard-dg2-set2: [SKIP][538] ([Intel XE#1061] / [Intel XE#4208]) -> [FAIL][539] ([Intel XE#1173])
[538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@xe_peer2peer@read.html
[539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@xe_peer2peer@read.html
* igt@xe_pm@d3cold-basic:
- shard-dg2-set2: [SKIP][540] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][541] ([Intel XE#4208])
[540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-466/igt@xe_pm@d3cold-basic.html
[541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@xe_pm@d3cold-basic.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-dg2-set2: [SKIP][542] ([Intel XE#4208]) -> [SKIP][543] ([Intel XE#2284] / [Intel XE#366])
[542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@xe_pm@d3cold-multiple-execs.html
[543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pm@s3-basic:
- shard-dg2-set2: [DMESG-WARN][544] ([Intel XE#1033] / [Intel XE#569]) -> [SKIP][545] ([Intel XE#4208])
[544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-434/igt@xe_pm@s3-basic.html
[545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@xe_pm@s3-basic.html
* igt@xe_pm@s3-exec-after:
- shard-dg2-set2: [SKIP][546] ([Intel XE#4208]) -> [DMESG-WARN][547] ([Intel XE#1033] / [Intel XE#569])
[546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@xe_pm@s3-exec-after.html
[547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@xe_pm@s3-exec-after.html
* igt@xe_pm@s4-d3hot-basic-exec:
- shard-dg2-set2: [SKIP][548] ([Intel XE#4208]) -> [ABORT][549] ([Intel XE#1358])
[548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@xe_pm@s4-d3hot-basic-exec.html
[549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-463/igt@xe_pm@s4-d3hot-basic-exec.html
* igt@xe_pm@s4-exec-after:
- shard-dg2-set2: [SKIP][550] ([Intel XE#4208]) -> [ABORT][551] ([Intel XE#1033] / [Intel XE#1358])
[550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@xe_pm@s4-exec-after.html
[551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@xe_pm@s4-exec-after.html
* igt@xe_pm@s4-mocs:
- shard-dg2-set2: [ABORT][552] ([Intel XE#1033] / [Intel XE#1358]) -> [SKIP][553] ([Intel XE#4208])
[552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-466/igt@xe_pm@s4-mocs.html
[553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@xe_pm@s4-mocs.html
* igt@xe_pm@s4-vm-bind-prefetch:
- shard-dg2-set2: [ABORT][554] ([Intel XE#1033] / [Intel XE#1358]) -> [ABORT][555] ([Intel XE#1358])
[554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-436/igt@xe_pm@s4-vm-bind-prefetch.html
[555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@xe_pm@s4-vm-bind-prefetch.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-dg2-set2: [ABORT][556] ([Intel XE#1358]) -> [SKIP][557] ([Intel XE#4208])
[556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-434/igt@xe_pm@s4-vm-bind-userptr.html
[557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@xe_pm@s4-vm-bind-userptr.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-dg2-set2: [SKIP][558] ([Intel XE#579]) -> [SKIP][559] ([Intel XE#4208])
[558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-436/igt@xe_pm@vram-d3cold-threshold.html
[559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-dg2-set2: [SKIP][560] ([Intel XE#4208]) -> [SKIP][561] ([Intel XE#944])
[560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@xe_query@multigpu-query-invalid-cs-cycles.html
[561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_sriov_auto_provisioning@fair-allocation:
- shard-dg2-set2: [SKIP][562] ([Intel XE#4208]) -> [SKIP][563] ([Intel XE#4130])
[562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@xe_sriov_auto_provisioning@fair-allocation.html
[563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@xe_sriov_auto_provisioning@fair-allocation.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-dg2-set2: [SKIP][564] ([Intel XE#4208]) -> [SKIP][565] ([Intel XE#3342])
[564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@xe_sriov_flr@flr-each-isolation.html
[565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@xe_sriov_flr@flr-each-isolation.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-dg2-set2: [SKIP][566] ([Intel XE#3342]) -> [SKIP][567] ([Intel XE#4208])
[566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-435/igt@xe_sriov_flr@flr-vf1-clear.html
[567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@xe_sriov_flr@flr-vf1-clear.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1062]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1062
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[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#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
[Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[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#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[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#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522
[Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948
[Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
[Intel XE#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[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#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502
[Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
[Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
[Intel XE#2955]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2955
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#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#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
[Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#3924]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3924
[Intel XE#4090]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4172]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4172
[Intel XE#4208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208
[Intel XE#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/771
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
[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
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
Build changes
-------------
* IGT: IGT_8224 -> IGTPW_12548
* Linux: xe-2601-a7df3eccb725a8d72f8f3ed87ee7ad9419b17380 -> xe-2604-9831501a0c70f94565d0874560e61718edc3b8a4
IGTPW_12548: 57bed37c12b70280013ab91f59901946a251454c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8224: c659b986ba648584d36b3cfece897bc84a33dcbb @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2601-a7df3eccb725a8d72f8f3ed87ee7ad9419b17380: a7df3eccb725a8d72f8f3ed87ee7ad9419b17380
xe-2604-9831501a0c70f94565d0874560e61718edc3b8a4: 9831501a0c70f94565d0874560e61718edc3b8a4
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/index.html
[-- Attachment #2: Type: text/html, Size: 161593 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread* ✗ Xe.CI.Full: failure for tests/intel/xe_sriov_flr: Add parallel FLR subtest for SR-IOV VFs (rev4)
2025-02-05 17:18 [PATCH v4 i-g-t 0/2] tests/intel/xe_sriov_flr: Add parallel FLR subtest for SR-IOV VFs Marcin Bernatowicz
` (6 preceding siblings ...)
2025-02-06 12:21 ` ✓ i915.CI.BAT: " Patchwork
@ 2025-02-06 12:59 ` Patchwork
2025-02-06 17:27 ` ✗ i915.CI.Full: " Patchwork
8 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2025-02-06 12:59 UTC (permalink / raw)
To: Marcin Bernatowicz; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 128388 bytes --]
== Series Details ==
Series: tests/intel/xe_sriov_flr: Add parallel FLR subtest for SR-IOV VFs (rev4)
URL : https://patchwork.freedesktop.org/series/142042/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8224_full -> XEIGTPW_12548_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12548_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12548_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12548_full:
### IGT changes ###
#### Possible regressions ####
* igt@xe_module_load@reload-no-display:
- shard-dg2-set2: [PASS][1] -> [FAIL][2] +1 other test fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-466/igt@xe_module_load@reload-no-display.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@xe_module_load@reload-no-display.html
* igt@xe_sriov_flr@flr-vfs-parallel (NEW):
- shard-bmg: NOTRUN -> [SKIP][3] +1 other test skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-8/igt@xe_sriov_flr@flr-vfs-parallel.html
- shard-dg2-set2: NOTRUN -> [SKIP][4]
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@xe_sriov_flr@flr-vfs-parallel.html
- shard-lnl: NOTRUN -> [SKIP][5] +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-8/igt@xe_sriov_flr@flr-vfs-parallel.html
New tests
---------
New tests have been introduced between XEIGT_8224_full and XEIGTPW_12548_full:
### New IGT tests (2) ###
* igt@xe_sriov_flr@flr-twice:
- Statuses : 3 skip(s)
- Exec time: [0.0] s
* igt@xe_sriov_flr@flr-vfs-parallel:
- Statuses : 3 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in XEIGTPW_12548_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#2233])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-5/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#1466])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
- shard-lnl: NOTRUN -> [FAIL][8] ([Intel XE#911]) +3 other tests fail
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
* igt@kms_async_flips@test-time-stamp:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][9] ([Intel XE#1033]) +9 other tests dmesg-warn
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@kms_async_flips@test-time-stamp.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#3279])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-3/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2327]) +7 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-7/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#3658])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#316]) +4 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
- shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#1407]) +6 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-2/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-0:
- shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#1124]) +6 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#1124]) +16 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-5/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1124]) +13 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#2191])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1512]) +2 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-8/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-1-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#367]) +2 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#367])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-7/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#367])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-463/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#455] / [Intel XE#787]) +33 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#787]) +167 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#2907])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#2887]) +17 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#3442])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#3432])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#3432])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#2669]) +7 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2887]) +18 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-2/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2652] / [Intel XE#787]) +17 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-1/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_cdclk@plane-scaling:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2724])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-8/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#1152]) +3 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2252]) +9 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-1/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@ctm-negative:
- shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#306])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_color@degamma:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2325]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-8/igt@kms_chamelium_color@degamma.html
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#306])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-1/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#373]) +4 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#373]) +12 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-5/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2-set2: NOTRUN -> [FAIL][41] ([Intel XE#1178]) +1 other test fail
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@kms_content_protection@atomic-dpms.html
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#3278]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-3/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@atomic@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][43] ([Intel XE#1178]) +2 other tests fail
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-4/igt@kms_content_protection@atomic@pipe-a-dp-2.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#307]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-1/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2390]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-7/igt@kms_content_protection@dp-mst-type-0.html
- shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#307])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@type1:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2341])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-5/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2320]) +6 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#308])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#2321]) +4 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2321]) +3 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-6/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#1424]) +6 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-7/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#309]) +8 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-4/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions:
- shard-dg2-set2: [PASS][54] -> [SKIP][55] ([Intel XE#4208] / [i915#2575]) +74 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-466/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2291]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-bmg: [PASS][57] -> [SKIP][58] ([Intel XE#2291])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#4210])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-8/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_dsc@dsc-basic:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2244]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-4/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#455]) +15 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#2244]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-2/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#776])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-4/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-3x:
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#703])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-4/igt@kms_feature_discovery@display-3x.html
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2373])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-5/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][66] ([Intel XE#301] / [Intel XE#3321]) +1 other test fail
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][67] ([Intel XE#301]) +5 other tests fail
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [DMESG-FAIL][68] ([Intel XE#1033]) +2 other tests dmesg-fail
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][69] ([Intel XE#3321]) +6 other tests fail
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2316]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-4/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#1421]) +3 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-1/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-flip-vs-wf_vblank:
- shard-bmg: [PASS][72] -> [FAIL][73] ([Intel XE#3098]) +2 other tests fail
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-5/igt@kms_flip@2x-flip-vs-wf_vblank.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-7/igt@kms_flip@2x-flip-vs-wf_vblank.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-bmg: [PASS][74] -> [SKIP][75] ([Intel XE#2316]) +4 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-1/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a3:
- shard-bmg: [PASS][76] -> [FAIL][77] ([Intel XE#3321]) +2 other tests fail
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a3.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a3.html
* igt@kms_flip@nonexisting-fb:
- shard-bmg: [PASS][78] -> [DMESG-WARN][79] ([Intel XE#4172]) +15 other tests dmesg-warn
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-7/igt@kms_flip@nonexisting-fb.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-5/igt@kms_flip@nonexisting-fb.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-dg2-set2: [PASS][80] -> [SKIP][81] ([Intel XE#4208]) +178 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#1401]) +3 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2293] / [Intel XE#2380]) +5 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#1401] / [Intel XE#1745]) +3 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2293]) +5 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#352]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-4/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2311]) +28 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-suspend:
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#651]) +15 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-suspend.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#4141]) +17 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#2351] / [Intel XE#4208]) +23 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#656]) +47 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt:
- shard-dg2-set2: [PASS][92] -> [SKIP][93] ([Intel XE#2351] / [Intel XE#4208]) +7 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#651]) +23 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2312]) +4 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2313]) +29 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2352])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
- shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#1469])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#653]) +23 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2502])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-8/igt@kms_getfb@getfb-reject-ccs.html
- shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#605])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@kms_getfb@getfb-reject-ccs.html
- shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#605])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-8/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdmi_inject@inject-audio:
- shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#1470] / [Intel XE#2853])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-1/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@static-toggle-dpms:
- shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#1503])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-3/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#2934])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-7/igt@kms_joiner@basic-force-ultra-joiner.html
- shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#2934])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-2/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#4090])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-4/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#2925])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#4090])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats:
- shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#4208] / [i915#2575]) +53 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b:
- shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#2763]) +8 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d:
- shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#2763] / [Intel XE#455]) +4 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:
- shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#2763]) +27 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#2763]) +14 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_pm_backlight@basic-brightness:
- shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#870])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: NOTRUN -> [FAIL][116] ([Intel XE#718])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-7/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_dc@dc5-psr:
- shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#2392])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-1/igt@kms_pm_dc@dc5-psr.html
- shard-dg2-set2: NOTRUN -> [SKIP][118] ([Intel XE#1129])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@deep-pkgc:
- shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2505])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-2/igt@kms_pm_dc@deep-pkgc.html
- shard-lnl: NOTRUN -> [FAIL][120] ([Intel XE#2029])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-8/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#1439] / [Intel XE#3141])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-3/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@universal-planes-dpms:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][122] ([Intel XE#1033] / [Intel XE#2042])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@kms_pm_rpm@universal-planes-dpms.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#1489]) +7 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-7/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#2893]) +4 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-7/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#1489]) +3 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#1128])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-4/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#1122]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#4208]) +123 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@pr-sprite-plane-move:
- shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#1406]) +4 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-7/igt@kms_psr@pr-sprite-plane-move.html
* igt@kms_psr@psr-cursor-plane-onoff:
- shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#2234] / [Intel XE#2850]) +14 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-1/igt@kms_psr@psr-cursor-plane-onoff.html
* igt@kms_psr@psr-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#2850] / [Intel XE#929]) +14 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@kms_psr@psr-dpms.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#2414])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#2939])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#3414]) +2 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@kms_rotation_crc@bad-tiling.html
- shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-1/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-top:
- shard-dg2-set2: [PASS][136] -> [DMESG-WARN][137] ([Intel XE#1033]) +11 other tests dmesg-warn
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-435/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-463/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#2413]) +1 other test skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-6/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#1435])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-2/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#1435])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-2/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [PASS][142] -> [FAIL][143] ([Intel XE#2159]) +1 other test fail
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-2/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-2/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@kms_vrr@flip-basic:
- shard-lnl: NOTRUN -> [FAIL][144] ([Intel XE#1522]) +5 other tests fail
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-6/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@max-min:
- shard-bmg: NOTRUN -> [SKIP][145] ([Intel XE#1499]) +3 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-1/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#1499]) +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-8/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-bmg: NOTRUN -> [SKIP][147] ([Intel XE#756])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-5/igt@kms_writeback@writeback-pixel-formats.html
- shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#756])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-4/igt@kms_writeback@writeback-pixel-formats.html
* igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute:
- shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html
* igt@xe_create@create-big-vram:
- shard-lnl: NOTRUN -> [SKIP][150] ([Intel XE#1062])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-5/igt@xe_create@create-big-vram.html
* igt@xe_eudebug@basic-connect:
- shard-lnl: NOTRUN -> [SKIP][151] ([Intel XE#2905]) +11 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-5/igt@xe_eudebug@basic-connect.html
* igt@xe_eudebug@exec-queue-placements:
- shard-bmg: NOTRUN -> [SKIP][152] ([Intel XE#2905]) +10 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-2/igt@xe_eudebug@exec-queue-placements.html
* igt@xe_evict@evict-beng-large-multi-vm:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][153] ([Intel XE#1033] / [Intel XE#1473])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@xe_evict@evict-beng-large-multi-vm.html
* igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-samefd:
- shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#688]) +5 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-4/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-samefd.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
- shard-bmg: NOTRUN -> [SKIP][155] ([Intel XE#2322]) +5 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-6/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
- shard-lnl: NOTRUN -> [SKIP][156] ([Intel XE#1392]) +4 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-2/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
* igt@xe_exec_fault_mode@many-execqueues-basic-prefetch:
- shard-bmg: NOTRUN -> [DMESG-WARN][157] ([Intel XE#4172]) +4 other tests dmesg-warn
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-2/igt@xe_exec_fault_mode@many-execqueues-basic-prefetch.html
* igt@xe_exec_fault_mode@once-rebind-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][158] ([Intel XE#288]) +13 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@xe_exec_fault_mode@once-rebind-prefetch.html
* igt@xe_exec_sip_eudebug@breakpoint-writesip:
- shard-dg2-set2: NOTRUN -> [SKIP][159] ([Intel XE#2905]) +7 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@xe_exec_sip_eudebug@breakpoint-writesip.html
* igt@xe_live_ktest@xe_dma_buf:
- shard-bmg: [PASS][160] -> [SKIP][161] ([Intel XE#1192])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-4/igt@xe_live_ktest@xe_dma_buf.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-2/igt@xe_live_ktest@xe_dma_buf.html
* igt@xe_live_ktest@xe_migrate:
- shard-lnl: NOTRUN -> [SKIP][162] ([Intel XE#1192])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-5/igt@xe_live_ktest@xe_migrate.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- shard-dg2-set2: NOTRUN -> [SKIP][163] ([Intel XE#2229])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_module_load@force-load:
- shard-dg2-set2: NOTRUN -> [SKIP][164] ([Intel XE#378])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-463/igt@xe_module_load@force-load.html
* igt@xe_module_load@load:
- shard-lnl: ([PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185], [PASS][186], [PASS][187], [PASS][188], [PASS][189]) -> ([PASS][190], [PASS][191], [PASS][192], [PASS][193], [PASS][194], [PASS][195], [PASS][196], [PASS][197], [PASS][198], [PASS][199], [PASS][200], [PASS][201], [SKIP][202], [PASS][203], [PASS][204], [PASS][205], [PASS][206], [PASS][207], [PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214], [PASS][215]) ([Intel XE#378])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-6/igt@xe_module_load@load.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-7/igt@xe_module_load@load.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-7/igt@xe_module_load@load.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-5/igt@xe_module_load@load.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-5/igt@xe_module_load@load.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-5/igt@xe_module_load@load.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-8/igt@xe_module_load@load.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-4/igt@xe_module_load@load.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-4/igt@xe_module_load@load.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-1/igt@xe_module_load@load.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-1/igt@xe_module_load@load.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-2/igt@xe_module_load@load.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-3/igt@xe_module_load@load.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-3/igt@xe_module_load@load.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-3/igt@xe_module_load@load.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-3/igt@xe_module_load@load.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-7/igt@xe_module_load@load.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-8/igt@xe_module_load@load.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-6/igt@xe_module_load@load.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-6/igt@xe_module_load@load.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-1/igt@xe_module_load@load.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-2/igt@xe_module_load@load.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-5/igt@xe_module_load@load.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-4/igt@xe_module_load@load.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-8/igt@xe_module_load@load.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-8/igt@xe_module_load@load.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-4/igt@xe_module_load@load.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-4/igt@xe_module_load@load.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-7/igt@xe_module_load@load.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-4/igt@xe_module_load@load.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-1/igt@xe_module_load@load.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-8/igt@xe_module_load@load.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-2/igt@xe_module_load@load.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-5/igt@xe_module_load@load.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-8/igt@xe_module_load@load.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-2/igt@xe_module_load@load.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-5/igt@xe_module_load@load.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-2/igt@xe_module_load@load.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-6/igt@xe_module_load@load.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-7/igt@xe_module_load@load.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-6/igt@xe_module_load@load.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-5/igt@xe_module_load@load.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-2/igt@xe_module_load@load.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-3/igt@xe_module_load@load.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-5/igt@xe_module_load@load.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-6/igt@xe_module_load@load.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-1/igt@xe_module_load@load.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-1/igt@xe_module_load@load.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-3/igt@xe_module_load@load.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-3/igt@xe_module_load@load.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-7/igt@xe_module_load@load.html
- shard-bmg: ([PASS][216], [PASS][217], [PASS][218], [PASS][219], [PASS][220], [PASS][221], [PASS][222], [PASS][223], [PASS][224], [PASS][225], [PASS][226], [PASS][227], [PASS][228], [PASS][229], [PASS][230], [PASS][231], [PASS][232], [PASS][233], [PASS][234], [PASS][235], [PASS][236], [PASS][237], [PASS][238], [PASS][239], [PASS][240]) -> ([PASS][241], [PASS][242], [PASS][243], [PASS][244], [PASS][245], [PASS][246], [SKIP][247], [PASS][248], [PASS][249], [PASS][250], [PASS][251], [PASS][252], [PASS][253], [PASS][254], [PASS][255], [PASS][256], [PASS][257], [PASS][258], [PASS][259], [PASS][260], [PASS][261], [PASS][262], [PASS][263], [PASS][264], [PASS][265], [PASS][266]) ([Intel XE#2457])
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-4/igt@xe_module_load@load.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-4/igt@xe_module_load@load.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-4/igt@xe_module_load@load.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-4/igt@xe_module_load@load.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-6/igt@xe_module_load@load.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-5/igt@xe_module_load@load.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-5/igt@xe_module_load@load.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-7/igt@xe_module_load@load.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-7/igt@xe_module_load@load.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-7/igt@xe_module_load@load.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-8/igt@xe_module_load@load.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-1/igt@xe_module_load@load.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-1/igt@xe_module_load@load.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-5/igt@xe_module_load@load.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-5/igt@xe_module_load@load.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-8/igt@xe_module_load@load.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-8/igt@xe_module_load@load.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-2/igt@xe_module_load@load.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-6/igt@xe_module_load@load.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-2/igt@xe_module_load@load.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-6/igt@xe_module_load@load.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-6/igt@xe_module_load@load.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-1/igt@xe_module_load@load.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-2/igt@xe_module_load@load.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-2/igt@xe_module_load@load.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-6/igt@xe_module_load@load.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-8/igt@xe_module_load@load.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-8/igt@xe_module_load@load.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-8/igt@xe_module_load@load.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-7/igt@xe_module_load@load.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-7/igt@xe_module_load@load.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-1/igt@xe_module_load@load.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-1/igt@xe_module_load@load.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-2/igt@xe_module_load@load.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-2/igt@xe_module_load@load.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-6/igt@xe_module_load@load.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-5/igt@xe_module_load@load.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-5/igt@xe_module_load@load.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-6/igt@xe_module_load@load.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-6/igt@xe_module_load@load.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-5/igt@xe_module_load@load.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-5/igt@xe_module_load@load.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-4/igt@xe_module_load@load.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-4/igt@xe_module_load@load.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-2/igt@xe_module_load@load.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-1/igt@xe_module_load@load.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-1/igt@xe_module_load@load.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-1/igt@xe_module_load@load.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-4/igt@xe_module_load@load.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-7/igt@xe_module_load@load.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-7/igt@xe_module_load@load.html
* igt@xe_oa@closed-fd-and-unmapped-access:
- shard-dg2-set2: NOTRUN -> [SKIP][267] ([Intel XE#2541] / [Intel XE#3573]) +5 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@xe_oa@closed-fd-and-unmapped-access.html
* igt@xe_pat@pat-index-xehpc:
- shard-dg2-set2: NOTRUN -> [SKIP][268] ([Intel XE#2838] / [Intel XE#979])
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelp:
- shard-lnl: NOTRUN -> [SKIP][269] ([Intel XE#977])
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-1/igt@xe_pat@pat-index-xelp.html
- shard-bmg: NOTRUN -> [SKIP][270] ([Intel XE#2245])
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-8/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- shard-bmg: NOTRUN -> [SKIP][271] ([Intel XE#2236])
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-1/igt@xe_pat@pat-index-xelpg.html
- shard-lnl: NOTRUN -> [SKIP][272] ([Intel XE#979])
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-5/igt@xe_pat@pat-index-xelpg.html
* igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p:
- shard-dg2-set2: NOTRUN -> [FAIL][273] ([Intel XE#1173])
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html
* igt@xe_pm@d3cold-basic-exec:
- shard-dg2-set2: NOTRUN -> [SKIP][274] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_pm@d3cold-mocs:
- shard-dg2-set2: NOTRUN -> [SKIP][275] ([Intel XE#2284])
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@xe_pm@d3cold-mocs.html
- shard-lnl: NOTRUN -> [SKIP][276] ([Intel XE#2284])
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-1/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@d3hot-mmap-vram:
- shard-lnl: NOTRUN -> [SKIP][277] ([Intel XE#1948])
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-3/igt@xe_pm@d3hot-mmap-vram.html
* igt@xe_pm@s3-d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][278] ([Intel XE#2284])
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-1/igt@xe_pm@s3-d3cold-basic-exec.html
* igt@xe_pm@s3-exec-after:
- shard-bmg: [PASS][279] -> [DMESG-WARN][280] ([Intel XE#4172] / [Intel XE#569])
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-8/igt@xe_pm@s3-exec-after.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-5/igt@xe_pm@s3-exec-after.html
* igt@xe_pm@s3-multiple-execs:
- shard-dg2-set2: [PASS][281] -> [DMESG-WARN][282] ([Intel XE#1033] / [Intel XE#569])
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-434/igt@xe_pm@s3-multiple-execs.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@xe_pm@s3-multiple-execs.html
* igt@xe_pm@s3-vm-bind-prefetch:
- shard-lnl: NOTRUN -> [SKIP][283] ([Intel XE#584])
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-1/igt@xe_pm@s3-vm-bind-prefetch.html
* igt@xe_pm@s4-basic:
- shard-dg2-set2: NOTRUN -> [ABORT][284] ([Intel XE#1358])
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@xe_pm@s4-basic.html
* igt@xe_pm@s4-exec-after:
- shard-bmg: NOTRUN -> [ABORT][285] ([Intel XE#1358] / [Intel XE#1607])
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-8/igt@xe_pm@s4-exec-after.html
- shard-lnl: NOTRUN -> [ABORT][286] ([Intel XE#1358] / [Intel XE#1607])
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-1/igt@xe_pm@s4-exec-after.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][287] ([Intel XE#944]) +5 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-1/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_query@multigpu-query-topology-l3-bank-mask:
- shard-lnl: NOTRUN -> [SKIP][288] ([Intel XE#944]) +5 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-4/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
* igt@xe_query@multigpu-query-uc-fw-version-guc:
- shard-dg2-set2: NOTRUN -> [SKIP][289] ([Intel XE#944]) +2 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@xe_query@multigpu-query-uc-fw-version-guc.html
* igt@xe_sriov_auto_provisioning@fair-allocation:
- shard-lnl: NOTRUN -> [SKIP][290] ([Intel XE#4130])
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-1/igt@xe_sriov_auto_provisioning@fair-allocation.html
- shard-bmg: NOTRUN -> [SKIP][291] ([Intel XE#4130])
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-8/igt@xe_sriov_auto_provisioning@fair-allocation.html
#### Possible fixes ####
* igt@fbdev@nullptr:
- shard-dg2-set2: [SKIP][292] ([Intel XE#2134]) -> [PASS][293]
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@fbdev@nullptr.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@fbdev@nullptr.html
* igt@kms_atomic@plane-invalid-params-fence:
- shard-dg2-set2: [SKIP][294] ([Intel XE#4208] / [i915#2575]) -> [PASS][295] +84 other tests pass
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_atomic@plane-invalid-params-fence.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@kms_atomic@plane-invalid-params-fence.html
* igt@kms_atomic_interruptible@legacy-setmode@pipe-a-hdmi-a-6:
- shard-dg2-set2: [DMESG-WARN][296] ([Intel XE#1033]) -> [PASS][297] +6 other tests pass
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-434/igt@kms_atomic_interruptible@legacy-setmode@pipe-a-hdmi-a-6.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@kms_atomic_interruptible@legacy-setmode@pipe-a-hdmi-a-6.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-bmg: [SKIP][298] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][299]
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: [INCOMPLETE][300] ([Intel XE#3862]) -> [PASS][301] +1 other test pass
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic:
- shard-bmg: [INCOMPLETE][302] ([Intel XE#3226]) -> [PASS][303]
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-4/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-1/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [SKIP][304] ([Intel XE#2291]) -> [PASS][305] +4 other tests pass
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_display_modes@extended-mode-basic:
- shard-bmg: [SKIP][306] ([Intel XE#2425]) -> [PASS][307]
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-5/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ad-hdmi-a6-dp4:
- shard-dg2-set2: [FAIL][308] ([Intel XE#301]) -> [PASS][309] +1 other test pass
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank@ad-hdmi-a6-dp4.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank@ad-hdmi-a6-dp4.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-bmg: [SKIP][310] ([Intel XE#2316]) -> [PASS][311] +5 other tests pass
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-4/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-1/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a3:
- shard-bmg: [FAIL][312] ([Intel XE#3321]) -> [PASS][313] +2 other tests pass
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-6/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a3.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-6/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a3.html
* igt@kms_flip@plain-flip-fb-recreate:
- shard-bmg: [FAIL][314] ([Intel XE#2882]) -> [PASS][315] +1 other test pass
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-5/igt@kms_flip@plain-flip-fb-recreate.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-2/igt@kms_flip@plain-flip-fb-recreate.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling:
- shard-dg2-set2: [SKIP][316] ([Intel XE#2351] / [Intel XE#4208]) -> [PASS][317] +11 other tests pass
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-lnl: [FAIL][318] ([Intel XE#3924]) -> [PASS][319] +1 other test pass
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-8/igt@kms_psr@fbc-psr2-sprite-render.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-7/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-bmg: [SKIP][320] ([Intel XE#1435]) -> [PASS][321]
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-4/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-1/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_universal_plane@cursor-fb-leak:
- shard-dg2-set2: [FAIL][322] ([Intel XE#771] / [Intel XE#899]) -> [PASS][323]
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-463/igt@kms_universal_plane@cursor-fb-leak.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@kms_universal_plane@cursor-fb-leak.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-6:
- shard-dg2-set2: [FAIL][324] ([Intel XE#899]) -> [PASS][325]
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-463/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-6.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-6.html
* igt@xe_exec_balancer@once-parallel-rebind:
- shard-dg2-set2: [SKIP][326] ([Intel XE#4208]) -> [PASS][327] +209 other tests pass
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@xe_exec_balancer@once-parallel-rebind.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@xe_exec_balancer@once-parallel-rebind.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind-prefetch:
- shard-bmg: [INCOMPLETE][328] -> [PASS][329]
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-1/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind-prefetch.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-4/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind-prefetch.html
* igt@xe_live_ktest@xe_migrate:
- shard-bmg: [SKIP][330] ([Intel XE#1192]) -> [PASS][331]
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-2/igt@xe_live_ktest@xe_migrate.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-1/igt@xe_live_ktest@xe_migrate.html
* igt@xe_module_load@reload:
- shard-dg2-set2: [FAIL][332] -> [PASS][333] +2 other tests pass
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@xe_module_load@reload.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-463/igt@xe_module_load@reload.html
* igt@xe_oa@mmio-triggered-reports:
- shard-bmg: [DMESG-WARN][334] ([Intel XE#4172]) -> [PASS][335] +48 other tests pass
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-1/igt@xe_oa@mmio-triggered-reports.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-5/igt@xe_oa@mmio-triggered-reports.html
* igt@xe_pm@s3-vm-bind-prefetch:
- shard-bmg: [INCOMPLETE][336] ([Intel XE#1358] / [Intel XE#569]) -> [PASS][337]
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-6/igt@xe_pm@s3-vm-bind-prefetch.html
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-4/igt@xe_pm@s3-vm-bind-prefetch.html
- shard-dg2-set2: [DMESG-WARN][338] ([Intel XE#1033] / [Intel XE#569]) -> [PASS][339]
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-463/igt@xe_pm@s3-vm-bind-prefetch.html
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@xe_pm@s3-vm-bind-prefetch.html
* igt@xe_pm@s3-vm-bind-userptr:
- shard-bmg: [DMESG-WARN][340] ([Intel XE#4172] / [Intel XE#569]) -> [PASS][341]
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-5/igt@xe_pm@s3-vm-bind-userptr.html
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-4/igt@xe_pm@s3-vm-bind-userptr.html
#### Warnings ####
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg2-set2: [SKIP][342] ([Intel XE#4208] / [i915#2575]) -> [SKIP][343] ([Intel XE#455]) +4 other tests skip
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-463/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-dg2-set2: [SKIP][344] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][345] ([Intel XE#316]) +2 other tests skip
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][346] ([Intel XE#4208]) -> [SKIP][347] ([Intel XE#316]) +4 other tests skip
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@linear-64bpp-rotate-180:
- shard-dg2-set2: [DMESG-WARN][348] ([Intel XE#1033]) -> [SKIP][349] ([Intel XE#2351] / [Intel XE#4208])
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-434/igt@kms_big_fb@linear-64bpp-rotate-180.html
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_big_fb@linear-64bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-dg2-set2: [SKIP][350] ([Intel XE#316]) -> [SKIP][351] ([Intel XE#2351] / [Intel XE#4208])
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-466/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-180:
- shard-dg2-set2: [SKIP][352] ([Intel XE#4208]) -> [SKIP][353] ([Intel XE#1124]) +2 other tests skip
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: [SKIP][354] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][355] ([Intel XE#607])
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg2-set2: [SKIP][356] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][357] ([Intel XE#1124]) +3 other tests skip
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-dg2-set2: [SKIP][358] ([Intel XE#1124]) -> [SKIP][359] ([Intel XE#4208]) +2 other tests skip
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-436/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-dg2-set2: [SKIP][360] ([Intel XE#1124]) -> [SKIP][361] ([Intel XE#2351] / [Intel XE#4208]) +2 other tests skip
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-434/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: [SKIP][362] ([Intel XE#4208]) -> [SKIP][363] ([Intel XE#607])
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-463/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg2-set2: [SKIP][364] ([Intel XE#4208]) -> [SKIP][365] ([Intel XE#610])
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-dg2-set2: [SKIP][366] ([Intel XE#4208] / [i915#2575]) -> [SKIP][367] ([Intel XE#2191]) +2 other tests skip
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-2-displays-3840x2160p:
- shard-dg2-set2: [SKIP][368] ([Intel XE#367]) -> [SKIP][369] ([Intel XE#4208] / [i915#2575]) +2 other tests skip
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-435/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-3-displays-3840x2160p:
- shard-dg2-set2: [SKIP][370] ([Intel XE#4208] / [i915#2575]) -> [SKIP][371] ([Intel XE#367]) +1 other test skip
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
* igt@kms_ccs@bad-pixel-format-yf-tiled-ccs:
- shard-dg2-set2: [SKIP][372] ([Intel XE#4208]) -> [SKIP][373] ([Intel XE#455] / [Intel XE#787]) +9 other tests skip
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs:
- shard-dg2-set2: [SKIP][374] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][375] ([Intel XE#2351] / [Intel XE#4208]) +3 other tests skip
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-466/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs:
- shard-dg2-set2: [SKIP][376] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][377] ([Intel XE#455] / [Intel XE#787]) +3 other tests skip
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs.html
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [DMESG-WARN][378] ([Intel XE#1033]) -> [SKIP][379] ([Intel XE#4208]) +3 other tests skip
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-dg2-set2: [SKIP][380] ([Intel XE#4208]) -> [SKIP][381] ([Intel XE#2907])
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs:
- shard-dg2-set2: [SKIP][382] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][383] ([Intel XE#4208]) +9 other tests skip
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-dg2-set2: [SKIP][384] ([Intel XE#4208] / [i915#2575]) -> [SKIP][385] ([Intel XE#306])
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_chamelium_color@ctm-0-50.html
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-dg2-set2: [SKIP][386] ([Intel XE#306]) -> [SKIP][387] ([Intel XE#4208] / [i915#2575])
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-435/igt@kms_chamelium_color@ctm-red-to-blue.html
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_hpd@hdmi-hpd:
- shard-dg2-set2: [SKIP][388] ([Intel XE#4208] / [i915#2575]) -> [SKIP][389] ([Intel XE#373]) +15 other tests skip
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_chamelium_hpd@hdmi-hpd.html
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@kms_chamelium_hpd@hdmi-hpd.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-dg2-set2: [SKIP][390] ([Intel XE#373]) -> [SKIP][391] ([Intel XE#4208] / [i915#2575]) +9 other tests skip
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-463/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_content_protection@atomic:
- shard-bmg: [SKIP][392] ([Intel XE#2341]) -> [FAIL][393] ([Intel XE#1178])
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-6/igt@kms_content_protection@atomic.html
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-4/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2-set2: [SKIP][394] ([Intel XE#4208] / [i915#2575]) -> [SKIP][395] ([Intel XE#307])
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_content_protection@dp-mst-lic-type-1.html
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@uevent:
- shard-dg2-set2: [FAIL][396] ([Intel XE#1188]) -> [DMESG-FAIL][397] ([Intel XE#1033]) +1 other test dmesg-fail
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-435/igt@kms_content_protection@uevent.html
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-dg2-set2: [SKIP][398] ([Intel XE#455]) -> [SKIP][399] ([Intel XE#4208] / [i915#2575]) +2 other tests skip
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-463/igt@kms_cursor_crc@cursor-offscreen-max-size.html
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2-set2: [SKIP][400] ([Intel XE#4208] / [i915#2575]) -> [SKIP][401] ([Intel XE#308]) +3 other tests skip
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_cursor_crc@cursor-onscreen-512x170.html
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-sliding-128x128:
- shard-dg2-set2: [DMESG-WARN][402] ([Intel XE#1033]) -> [SKIP][403] ([Intel XE#4208] / [i915#2575]) +6 other tests skip
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-434/igt@kms_cursor_crc@cursor-sliding-128x128.html
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_cursor_crc@cursor-sliding-128x128.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-dg2-set2: [SKIP][404] ([Intel XE#4208] / [i915#2575]) -> [SKIP][405] ([Intel XE#323])
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_feature_discovery@display-4x:
- shard-dg2-set2: [SKIP][406] ([Intel XE#1138]) -> [SKIP][407] ([Intel XE#4208] / [i915#2575])
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-435/igt@kms_feature_discovery@display-4x.html
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2-set2: [SKIP][408] ([Intel XE#1137]) -> [SKIP][409] ([Intel XE#4208] / [i915#2575])
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-466/igt@kms_feature_discovery@dp-mst.html
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr2:
- shard-dg2-set2: [SKIP][410] ([Intel XE#1135]) -> [SKIP][411] ([Intel XE#4208] / [i915#2575])
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-463/igt@kms_feature_discovery@psr2.html
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-bmg: [SKIP][412] ([Intel XE#2316]) -> [FAIL][413] ([Intel XE#3321])
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank.html
[413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-dg2-set2: [FAIL][414] ([Intel XE#301]) -> [SKIP][415] ([Intel XE#4208] / [i915#2575])
[414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank.html
[415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-dg2-set2: [SKIP][416] ([Intel XE#4208] / [i915#2575]) -> [FAIL][417] ([Intel XE#301])
[416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-suspend:
- shard-dg2-set2: [DMESG-WARN][418] ([Intel XE#2955]) -> [DMESG-WARN][419] ([Intel XE#1033])
[418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-463/igt@kms_flip@flip-vs-suspend.html
[419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-463/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-dg2-set2: [DMESG-WARN][420] -> [DMESG-WARN][421] ([Intel XE#1033])
[420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-463/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset.html
[421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
- shard-dg2-set2: [SKIP][422] ([Intel XE#455]) -> [SKIP][423] ([Intel XE#2351] / [Intel XE#4208])
[422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
[423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-dg2-set2: [SKIP][424] ([Intel XE#455]) -> [SKIP][425] ([Intel XE#4208]) +1 other test skip
[424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
[425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2-set2: [SKIP][426] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][427] ([Intel XE#455]) +2 other tests skip
[426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
[427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2-set2: [SKIP][428] ([Intel XE#4208]) -> [SKIP][429] ([Intel XE#455]) +2 other tests skip
[428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
[429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][430] ([Intel XE#2312]) -> [SKIP][431] ([Intel XE#2311]) +15 other tests skip
[430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
[431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff:
- shard-dg2-set2: [SKIP][432] ([Intel XE#651]) -> [SKIP][433] ([Intel XE#4208]) +13 other tests skip
[432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff.html
[433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: [SKIP][434] ([Intel XE#2311]) -> [SKIP][435] ([Intel XE#2312]) +7 other tests skip
[434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
[435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: [SKIP][436] ([Intel XE#651]) -> [SKIP][437] ([Intel XE#2351] / [Intel XE#4208]) +8 other tests skip
[436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
[437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@drrs-suspend:
- shard-dg2-set2: [SKIP][438] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][439] ([Intel XE#651]) +10 other tests skip
[438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-suspend.html
[439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-suspend.html
* igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw:
- shard-bmg: [SKIP][440] ([Intel XE#4141]) -> [SKIP][441] ([Intel XE#2312]) +6 other tests skip
[440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html
[441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render:
- shard-dg2-set2: [SKIP][442] ([Intel XE#4208]) -> [DMESG-WARN][443] ([Intel XE#1033]) +3 other tests dmesg-warn
[442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render.html
[443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][444] ([Intel XE#2312]) -> [SKIP][445] ([Intel XE#4141]) +5 other tests skip
[444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte:
- shard-dg2-set2: [SKIP][446] ([Intel XE#4208]) -> [SKIP][447] ([Intel XE#651]) +22 other tests skip
[446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html
[447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-dg2-set2: [SKIP][448] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][449] ([Intel XE#658])
[448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
[449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render:
- shard-dg2-set2: [SKIP][450] ([Intel XE#653]) -> [SKIP][451] ([Intel XE#2351] / [Intel XE#4208]) +5 other tests skip
[450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html
[451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-dg2-set2: [SKIP][452] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][453] ([Intel XE#653]) +8 other tests skip
[452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
[453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][454] ([Intel XE#2313]) -> [SKIP][455] ([Intel XE#2312]) +13 other tests skip
[454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
[455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt:
- shard-dg2-set2: [SKIP][456] ([Intel XE#4208]) -> [SKIP][457] ([Intel XE#653]) +22 other tests skip
[456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html
[457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][458] ([Intel XE#2312]) -> [SKIP][459] ([Intel XE#2313]) +10 other tests skip
[458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
[459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@psr-slowdraw:
- shard-dg2-set2: [SKIP][460] ([Intel XE#653]) -> [SKIP][461] ([Intel XE#4208]) +16 other tests skip
[460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-slowdraw.html
[461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-slowdraw.html
* igt@kms_joiner@basic-big-joiner:
- shard-dg2-set2: [SKIP][462] ([Intel XE#4208]) -> [SKIP][463] ([Intel XE#346])
[462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_joiner@basic-big-joiner.html
[463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-dg2-set2: [SKIP][464] ([Intel XE#4208]) -> [SKIP][465] ([Intel XE#2925])
[464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_joiner@basic-force-ultra-joiner.html
[465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2-set2: [SKIP][466] ([Intel XE#2927]) -> [SKIP][467] ([Intel XE#4208])
[466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-434/igt@kms_joiner@invalid-modeset-ultra-joiner.html
[467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
- shard-dg2-set2: [SKIP][468] ([Intel XE#4208] / [i915#2575]) -> [SKIP][469] ([Intel XE#2763] / [Intel XE#455])
[468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
[469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-dg2-set2: [SKIP][470] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][471] ([Intel XE#4208] / [i915#2575]) +1 other test skip
[470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-463/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
[471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-dg2-set2: [SKIP][472] ([Intel XE#870]) -> [SKIP][473] ([Intel XE#4208]) +1 other test skip
[472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-434/igt@kms_pm_backlight@fade-with-dpms.html
[473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg2-set2: [SKIP][474] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][475] ([Intel XE#1122])
[474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_pm_dc@dc3co-vpb-simulation.html
[475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-463/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@deep-pkgc:
- shard-dg2-set2: [SKIP][476] ([Intel XE#4208]) -> [SKIP][477] ([Intel XE#908])
[476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_pm_dc@deep-pkgc.html
[477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-463/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: [SKIP][478] ([Intel XE#4208]) -> [SKIP][479] ([Intel XE#1489]) +14 other tests skip
[478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
[479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf:
- shard-dg2-set2: [SKIP][480] ([Intel XE#1489]) -> [SKIP][481] ([Intel XE#4208]) +6 other tests skip
[480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
[481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2-set2: [SKIP][482] ([Intel XE#1122]) -> [SKIP][483] ([Intel XE#4208])
[482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-436/igt@kms_psr2_su@page_flip-nv12.html
[483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-psr-sprite-plane-onoff:
- shard-dg2-set2: [SKIP][484] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][485] ([Intel XE#2351] / [Intel XE#4208]) +8 other tests skip
[484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-435/igt@kms_psr@fbc-psr-sprite-plane-onoff.html
[485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_psr@fbc-psr-sprite-plane-onoff.html
* igt@kms_psr@fbc-psr-sprite-render:
- shard-dg2-set2: [SKIP][486] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][487] ([Intel XE#4208]) +11 other tests skip
[486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-436/igt@kms_psr@fbc-psr-sprite-render.html
[487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_psr@fbc-psr-sprite-render.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-dg2-set2: [SKIP][488] ([Intel XE#4208]) -> [SKIP][489] ([Intel XE#2850] / [Intel XE#929]) +13 other tests skip
[488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_psr@fbc-psr2-primary-render.html
[489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_psr@psr-sprite-blt:
- shard-dg2-set2: [SKIP][490] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][491] ([Intel XE#2850] / [Intel XE#929]) +4 other tests skip
[490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_psr@psr-sprite-blt.html
[491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@kms_psr@psr-sprite-blt.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-dg2-set2: [SKIP][492] ([Intel XE#3414]) -> [SKIP][493] ([Intel XE#4208] / [i915#2575]) +2 other tests skip
[492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-436/igt@kms_rotation_crc@bad-pixel-format.html
[493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-dg2-set2: [SKIP][494] ([Intel XE#4208] / [i915#2575]) -> [SKIP][495] ([Intel XE#1127]) +1 other test skip
[494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
[495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-180:
- shard-dg2-set2: [SKIP][496] ([Intel XE#4208] / [i915#2575]) -> [DMESG-WARN][497] ([Intel XE#1033]) +2 other tests dmesg-warn
[496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_rotation_crc@sprite-rotation-180.html
[497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@kms_rotation_crc@sprite-rotation-180.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2-set2: [SKIP][498] ([Intel XE#4208] / [i915#2575]) -> [SKIP][499] ([Intel XE#3414]) +1 other test skip
[498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
[499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-set2: [SKIP][500] ([Intel XE#1500]) -> [SKIP][501] ([Intel XE#4208] / [i915#2575])
[500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@cmrr:
- shard-dg2-set2: [SKIP][502] ([Intel XE#4208] / [i915#2575]) -> [SKIP][503] ([Intel XE#2168])
[502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@kms_vrr@cmrr.html
[503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@kms_vrr@cmrr.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg2-set2: [SKIP][504] ([Intel XE#756]) -> [SKIP][505] ([Intel XE#4208] / [i915#2575]) +1 other test skip
[504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-436/igt@kms_writeback@writeback-fb-id.html
[505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_writeback@writeback-fb-id.html
* igt@testdisplay:
- shard-dg2-set2: [SKIP][506] ([Intel XE#4208]) -> [DMESG-WARN][507] ([Intel XE#2705] / [Intel XE#4212])
[506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@testdisplay.html
[507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@testdisplay.html
* igt@xe_compute_preempt@compute-preempt:
- shard-dg2-set2: [SKIP][508] ([Intel XE#4208]) -> [SKIP][509] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
[508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@xe_compute_preempt@compute-preempt.html
[509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@xe_compute_preempt@compute-preempt.html
* igt@xe_compute_preempt@compute-preempt-many:
- shard-dg2-set2: [SKIP][510] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][511] ([Intel XE#4208])
[510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-463/igt@xe_compute_preempt@compute-preempt-many.html
[511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@xe_compute_preempt@compute-preempt-many.html
* igt@xe_copy_basic@mem-copy-linear-0xfffe:
- shard-dg2-set2: [SKIP][512] ([Intel XE#4208]) -> [SKIP][513] ([Intel XE#1123])
[512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
[513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
* igt@xe_copy_basic@mem-set-linear-0xfd:
- shard-dg2-set2: [SKIP][514] ([Intel XE#4208]) -> [SKIP][515] ([Intel XE#1126]) +1 other test skip
[514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@xe_copy_basic@mem-set-linear-0xfd.html
[515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0xfd.html
* igt@xe_eudebug@basic-vm-bind-ufence-delay-ack:
- shard-dg2-set2: [SKIP][516] ([Intel XE#3889]) -> [SKIP][517] ([Intel XE#4208])
[516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-435/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html
[517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html
* igt@xe_eudebug@multiple-sessions:
- shard-dg2-set2: [SKIP][518] ([Intel XE#2905]) -> [SKIP][519] ([Intel XE#4208]) +7 other tests skip
[518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-466/igt@xe_eudebug@multiple-sessions.html
[519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@xe_eudebug@multiple-sessions.html
* igt@xe_eudebug_online@debugger-reopen:
- shard-dg2-set2: [SKIP][520] ([Intel XE#4208]) -> [SKIP][521] ([Intel XE#2905]) +13 other tests skip
[520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@xe_eudebug_online@debugger-reopen.html
[521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@xe_eudebug_online@debugger-reopen.html
* igt@xe_exec_fault_mode@once-bindexecqueue-imm:
- shard-dg2-set2: [SKIP][522] ([Intel XE#288]) -> [SKIP][523] ([Intel XE#4208]) +22 other tests skip
[522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-466/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html
[523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
- shard-dg2-set2: [SKIP][524] ([Intel XE#4208]) -> [SKIP][525] ([Intel XE#288]) +24 other tests skip
[524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
[525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-463/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
- shard-dg2-set2: [SKIP][526] ([Intel XE#4208]) -> [SKIP][527] ([Intel XE#2360]) +1 other test skip
[526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
[527]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
* igt@xe_live_ktest@xe_eudebug:
- shard-bmg: [SKIP][528] ([Intel XE#1192]) -> [SKIP][529] ([Intel XE#2833])
[528]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-6/igt@xe_live_ktest@xe_eudebug.html
[529]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-7/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_oa@oa-unit-exclusive-stream-sample-oa:
- shard-dg2-set2: [SKIP][530] ([Intel XE#4208]) -> [SKIP][531] ([Intel XE#2541] / [Intel XE#3573]) +9 other tests skip
[530]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
[531]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
* igt@xe_oa@syncs-ufence-wait-cfg:
- shard-dg2-set2: [SKIP][532] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][533] ([Intel XE#4208]) +8 other tests skip
[532]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-436/igt@xe_oa@syncs-ufence-wait-cfg.html
[533]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@xe_oa@syncs-ufence-wait-cfg.html
* igt@xe_pat@display-vs-wb-transient:
- shard-dg2-set2: [SKIP][534] ([Intel XE#1337]) -> [SKIP][535] ([Intel XE#4208])
[534]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-436/igt@xe_pat@display-vs-wb-transient.html
[535]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@xe_pat@display-vs-wb-transient.html
* igt@xe_pat@pat-index-xelpg:
- shard-dg2-set2: [SKIP][536] ([Intel XE#4208]) -> [SKIP][537] ([Intel XE#979])
[536]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@xe_pat@pat-index-xelpg.html
[537]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@xe_pat@pat-index-xelpg.html
* igt@xe_peer2peer@read:
- shard-dg2-set2: [SKIP][538] ([Intel XE#1061] / [Intel XE#4208]) -> [FAIL][539] ([Intel XE#1173])
[538]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@xe_peer2peer@read.html
[539]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@xe_peer2peer@read.html
* igt@xe_pm@d3cold-basic:
- shard-dg2-set2: [SKIP][540] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][541] ([Intel XE#4208])
[540]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-466/igt@xe_pm@d3cold-basic.html
[541]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@xe_pm@d3cold-basic.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-dg2-set2: [SKIP][542] ([Intel XE#4208]) -> [SKIP][543] ([Intel XE#2284] / [Intel XE#366])
[542]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@xe_pm@d3cold-multiple-execs.html
[543]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pm@s3-basic:
- shard-dg2-set2: [DMESG-WARN][544] ([Intel XE#1033] / [Intel XE#569]) -> [SKIP][545] ([Intel XE#4208])
[544]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-434/igt@xe_pm@s3-basic.html
[545]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@xe_pm@s3-basic.html
* igt@xe_pm@s3-exec-after:
- shard-dg2-set2: [SKIP][546] ([Intel XE#4208]) -> [DMESG-WARN][547] ([Intel XE#1033] / [Intel XE#569])
[546]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@xe_pm@s3-exec-after.html
[547]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@xe_pm@s3-exec-after.html
* igt@xe_pm@s4-d3hot-basic-exec:
- shard-dg2-set2: [SKIP][548] ([Intel XE#4208]) -> [ABORT][549] ([Intel XE#1358])
[548]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@xe_pm@s4-d3hot-basic-exec.html
[549]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-463/igt@xe_pm@s4-d3hot-basic-exec.html
* igt@xe_pm@s4-exec-after:
- shard-dg2-set2: [SKIP][550] ([Intel XE#4208]) -> [ABORT][551] ([Intel XE#1033] / [Intel XE#1358])
[550]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@xe_pm@s4-exec-after.html
[551]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@xe_pm@s4-exec-after.html
* igt@xe_pm@s4-mocs:
- shard-dg2-set2: [ABORT][552] ([Intel XE#1033] / [Intel XE#1358]) -> [SKIP][553] ([Intel XE#4208])
[552]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-466/igt@xe_pm@s4-mocs.html
[553]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@xe_pm@s4-mocs.html
* igt@xe_pm@s4-vm-bind-prefetch:
- shard-dg2-set2: [ABORT][554] ([Intel XE#1033] / [Intel XE#1358]) -> [ABORT][555] ([Intel XE#1358])
[554]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-436/igt@xe_pm@s4-vm-bind-prefetch.html
[555]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@xe_pm@s4-vm-bind-prefetch.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-dg2-set2: [ABORT][556] ([Intel XE#1358]) -> [SKIP][557] ([Intel XE#4208])
[556]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-434/igt@xe_pm@s4-vm-bind-userptr.html
[557]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@xe_pm@s4-vm-bind-userptr.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-dg2-set2: [SKIP][558] ([Intel XE#579]) -> [SKIP][559] ([Intel XE#4208])
[558]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-436/igt@xe_pm@vram-d3cold-threshold.html
[559]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-dg2-set2: [SKIP][560] ([Intel XE#4208]) -> [SKIP][561] ([Intel XE#944])
[560]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@xe_query@multigpu-query-invalid-cs-cycles.html
[561]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_sriov_auto_provisioning@fair-allocation:
- shard-dg2-set2: [SKIP][562] ([Intel XE#4208]) -> [SKIP][563] ([Intel XE#4130])
[562]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@xe_sriov_auto_provisioning@fair-allocation.html
[563]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@xe_sriov_auto_provisioning@fair-allocation.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-dg2-set2: [SKIP][564] ([Intel XE#4208]) -> [SKIP][565] ([Intel XE#3342])
[564]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-464/igt@xe_sriov_flr@flr-each-isolation.html
[565]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@xe_sriov_flr@flr-each-isolation.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-dg2-set2: [SKIP][566] ([Intel XE#3342]) -> [SKIP][567] ([Intel XE#4208])
[566]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-dg2-435/igt@xe_sriov_flr@flr-vf1-clear.html
[567]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@xe_sriov_flr@flr-vf1-clear.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1062]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1062
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
[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#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
[Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[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#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[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#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522
[Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948
[Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
[Intel XE#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[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#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502
[Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
[Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
[Intel XE#2955]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2955
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#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#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
[Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#3924]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3924
[Intel XE#4090]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4172]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4172
[Intel XE#4208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208
[Intel XE#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/771
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
[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
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
Build changes
-------------
* IGT: IGT_8224 -> IGTPW_12548
* Linux: xe-2601-a7df3eccb725a8d72f8f3ed87ee7ad9419b17380 -> xe-2604-9831501a0c70f94565d0874560e61718edc3b8a4
IGTPW_12548: 57bed37c12b70280013ab91f59901946a251454c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8224: c659b986ba648584d36b3cfece897bc84a33dcbb @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2601-a7df3eccb725a8d72f8f3ed87ee7ad9419b17380: a7df3eccb725a8d72f8f3ed87ee7ad9419b17380
xe-2604-9831501a0c70f94565d0874560e61718edc3b8a4: 9831501a0c70f94565d0874560e61718edc3b8a4
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/index.html
[-- Attachment #2: Type: text/html, Size: 161593 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread