* [PATCH v4 i-g-t 0/2] tests/intel/xe_sriov_flr: Add parallel FLR subtest for SR-IOV VFs
@ 2025-02-05 17:18 Marcin Bernatowicz
2025-02-05 17:18 ` [PATCH v4 i-g-t 1/2] " Marcin Bernatowicz
` (8 more replies)
0 siblings, 9 replies; 11+ messages in thread
From: Marcin Bernatowicz @ 2025-02-05 17:18 UTC (permalink / raw)
To: igt-dev
Cc: Marcin Bernatowicz, Adam Miszczak, Jakub Kolakowski,
Lukasz Laguna, 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.
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.
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)
Cc: Adam Miszczak <adam.miszczak@linux.intel.com>
Cc: Jakub Kolakowski <jakub1.kolakowski@intel.com>
Cc: Lukasz Laguna <lukasz.laguna@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>
Marcin Bernatowicz (2):
tests/intel/xe_sriov_flr: Add parallel FLR subtest for SR-IOV VFs
tests/intel/xe_sriov_flr: Add flr-twice subtest
tests/intel/xe_sriov_flr.c | 230 +++++++++++++++++++++++++++++++++----
1 file changed, 206 insertions(+), 24 deletions(-)
--
2.31.1
^ permalink raw reply [flat|nested] 11+ messages in thread
* [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
* ✗ GitLab.Pipeline: warning 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
2025-02-05 17:18 ` [PATCH v4 i-g-t 1/2] " 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
@ 2025-02-05 18:56 ` Patchwork
2025-02-05 19:13 ` ✓ Xe.CI.BAT: success " Patchwork
` (5 subsequent siblings)
8 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2025-02-05 18:56 UTC (permalink / raw)
To: Marcin Bernatowicz; +Cc: igt-dev
== 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 : warning
== Summary ==
Pipeline status: FAILED.
see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1358699 for the overview.
build:tests-debian-meson-armhf has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/70597434):
Thank you for contributing to freedesktop.org
Fetching changes...
Reinitialized existing Git repository in /builds/gfx-ci/igt-ci-tags/.git/
Checking out 57bed37c as detached HEAD (ref is intel/IGTPW_12548)...
Removing build/
Removing lib/i915/perf-configs/__pycache__/
Removing lib/xe/oa-configs/__pycache__/
Removing meson-test-list.txt
Removing scripts/__pycache__/
Skipping Git submodules setup
section_end:1738781499:get_sources
section_start:1738781499:step_script
Executing "step_script" stage of the job script
Using docker image sha256:4a4103f1a476d355d866b481ff96ac05a32a3a715cefcc1cbc1356a8959fb5f8 for registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian-armhf:commit-57bed37c12b70280013ab91f59901946a251454c with digest registry.freedesktop.org/gfx-ci/igt-ci-tags/build-debian-armhf@sha256:3a0ffeb305cdc6ef081dde81d86afee76102e74f76c0f7bd5685fc2457ec707b ...
section_end:1738781503:step_script
section_start:1738781503:cleanup_file_variables
Cleaning up project directory and file based variables
section_end:1738781504:cleanup_file_variables
ERROR: Job failed (system failure): Error response from daemon: no such image: docker.io/library/sha256:4a4103f1a476d355d866b481ff96ac05a32a3a715cefcc1cbc1356a8959fb5f8: image not known (docker.go:650:0s)
== Logs ==
For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1358699
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Xe.CI.BAT: success 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
` (2 preceding siblings ...)
2025-02-05 18:56 ` ✗ GitLab.Pipeline: warning for tests/intel/xe_sriov_flr: Add parallel FLR subtest for SR-IOV VFs (rev4) Patchwork
@ 2025-02-05 19:13 ` Patchwork
2025-02-05 21:16 ` ✗ Xe.CI.Full: failure " Patchwork
` (4 subsequent siblings)
8 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2025-02-05 19:13 UTC (permalink / raw)
To: Marcin Bernatowicz; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1186 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 : success
== Summary ==
CI Bug Log - changes from XEIGT_8224_BAT -> XEIGTPW_12548_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (8 -> 8)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
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: 1745 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
` (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
* Re: ✗ Xe.CI.Full: failure for tests/intel/xe_sriov_flr: Add parallel FLR subtest for SR-IOV VFs (rev4)
2025-02-05 21:16 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-02-06 9:58 ` Bernatowicz, Marcin
0 siblings, 0 replies; 11+ messages in thread
From: Bernatowicz, Marcin @ 2025-02-06 9:58 UTC (permalink / raw)
To: igt-dev
On 2/5/2025 10:16 PM, Patchwork wrote:
> *Patch Details*
> *Series:* tests/intel/xe_sriov_flr: Add parallel FLR subtest for SR-IOV
> VFs (rev4)
> *URL:* https://patchwork.freedesktop.org/series/142042/ <https://
> patchwork.freedesktop.org/series/142042/>
> *State:* failure
> *Details:* https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/
> index.html <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/
> index.html>
>
>
> 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:
>
> o shard-dg2-set2: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-466/igt@xe_module_load@reload-no-
> display.html> -> FAIL <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12548/shard-dg2-464/igt@xe_module_load@reload-no-
> display.html> +1 other test fail
> *
Not related to the change.
>
> igt@xe_sriov_flr@flr-vfs-parallel (NEW):
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-bmg-8/igt@xe_sriov_flr@flr-vfs-
> parallel.html> +1 other test skip
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@xe_sriov_flr@flr-
> vfs-parallel.html>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-lnl-8/igt@xe_sriov_flr@flr-vfs-
> parallel.html> +1 other test skip
>
Expected SKIPs on those platforms (no SR-IOV).
>
> 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:
>
> o Statuses : 3 skip(s)
> o Exec time: [0.0] s
> *
>
> igt@xe_sriov_flr@flr-vfs-parallel:
>
> o Statuses : 3 skip(s)
> o 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:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-bmg-5/igt@kms_addfb_basic@addfb25-y-
> tiled-small-legacy.html> (Intel XE#2233 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2233>)
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-lnl-6/igt@kms_addfb_basic@addfb25-y-
> tiled-small-legacy.html> (Intel XE#1466 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1466>)
> *
>
> igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-
> linear:
>
> o shard-lnl: NOTRUN -> FAIL <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> (Intel XE#911
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/911>) +3
> other tests fail
> *
>
> igt@kms_async_flips@test-time-stamp:
>
> o shard-dg2-set2: NOTRUN -> DMESG-WARN <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/
> igt@kms_async_flips@test-time-stamp.html> (Intel XE#1033
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033>) +9
> other tests dmesg-warn
> *
>
> igt@kms_atomic_transition@plane-all-modeset-transition:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-lnl-3/
> igt@kms_atomic_transition@plane-all-modeset-transition.html>
> (Intel XE#3279 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/3279>)
> *
>
> igt@kms_big_fb@4-tiled-32bpp-rotate-90:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-bmg-7/igt@kms_big_fb@4-tiled-32bpp-
> rotate-90.html> (Intel XE#2327 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2327>) +7 other tests skip
> *
>
> igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
>
> o shard-lnl: NOTRUN -> SKIP <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> (Intel XE#3658
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658>)
> *
>
> igt@kms_big_fb@x-tiled-8bpp-rotate-270:
>
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@kms_big_fb@x-
> tiled-8bpp-rotate-270.html> (Intel XE#316 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/316>) +4 other tests
> skip
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-lnl-2/igt@kms_big_fb@x-tiled-8bpp-
> rotate-270.html> (Intel XE#1407 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/1407>) +6 other tests skip
> *
>
> igt@kms_big_fb@yf-tiled-16bpp-rotate-0:
>
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@kms_big_fb@yf-
> tiled-16bpp-rotate-0.html> (Intel XE#1124 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +6 other
> tests skip
> *
>
> igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-bmg-5/igt@kms_big_fb@yf-tiled-32bpp-
> rotate-0.html> (Intel XE#1124 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/1124>) +16 other tests skip
> *
>
> igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
>
> o shard-lnl: NOTRUN -> SKIP <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> (Intel XE#1124 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +13 other
> tests skip
> *
>
> igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
>
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@kms_bw@connected-
> linear-tiling-4-displays-2160x1440p.html> (Intel XE#2191
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191>)
> *
>
> igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-lnl-8/igt@kms_bw@connected-linear-
> tiling-4-displays-3840x2160p.html> (Intel XE#1512 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1512>) +2 other
> tests skip
> *
>
> igt@kms_bw@linear-tiling-1-displays-2560x1440p:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-bmg-5/igt@kms_bw@linear-tiling-1-
> displays-2560x1440p.html> (Intel XE#367 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/367>) +2 other tests
> skip
> *
>
> igt@kms_bw@linear-tiling-3-displays-2160x1440p:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-lnl-7/igt@kms_bw@linear-tiling-3-
> displays-2160x1440p.html> (Intel XE#367 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/367>)
> *
>
> igt@kms_bw@linear-tiling-4-displays-2160x1440p:
>
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12548/shard-dg2-463/igt@kms_bw@linear-
> tiling-4-displays-2160x1440p.html> (Intel XE#367 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/367>)
> *
>
> igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
>
> o shard-dg2-set2: NOTRUN -> SKIP <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> (Intel
> XE#455 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/455> / Intel XE#787 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/787>) +33 other tests skip
> *
>
> igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4:
>
> o shard-dg2-set2: NOTRUN -> SKIP <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> (Intel XE#787
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +167
> other tests skip
> *
>
> igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
>
> o shard-dg2-set2: NOTRUN -> SKIP <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> (Intel XE#2907 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2907>)
> *
>
> igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc:
>
> o shard-lnl: NOTRUN -> SKIP <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> (Intel XE#2887
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +17
> other tests skip
> *
>
> igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
>
> o shard-dg2-set2: NOTRUN -> SKIP <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> (Intel XE#3442 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3442>)
> *
>
> igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs:
>
> o shard-bmg: NOTRUN -> SKIP <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> (Intel XE#3432 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3432>)
> o shard-lnl: NOTRUN -> SKIP <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> (Intel XE#3432 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3432>)
> *
>
> igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1:
>
> o shard-lnl: NOTRUN -> SKIP <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> (Intel XE#2669
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669>) +7
> other tests skip
> *
>
> igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-bmg-2/igt@kms_ccs@missing-ccs-buffer-
> y-tiled-ccs.html> (Intel XE#2887 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2887>) +18 other
> tests skip
> *
>
> igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
>
> o shard-bmg: NOTRUN -> SKIP <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> (Intel XE#2652 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2652> / Intel XE#787
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +17
> other tests skip
> *
>
> igt@kms_cdclk@plane-scaling:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-bmg-8/igt@kms_cdclk@plane-
> scaling.html> (Intel XE#2724 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2724>)
> *
>
> igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
>
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@kms_cdclk@plane-
> scaling@pipe-b-dp-4.html> (Intel XE#1152 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1152>) +3 other
> tests skip
> *
>
> igt@kms_chamelium_audio@hdmi-audio-edid:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-bmg-1/igt@kms_chamelium_audio@hdmi-
> audio-edid.html> (Intel XE#2252 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2252>) +9 other tests skip
> *
>
> igt@kms_chamelium_color@ctm-negative:
>
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12548/shard-dg2-435/
> igt@kms_chamelium_color@ctm-negative.html> (Intel XE#306
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/306>)
> *
>
> igt@kms_chamelium_color@degamma:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-bmg-8/
> igt@kms_chamelium_color@degamma.html> (Intel XE#2325 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2325>) +1 other test
> skip
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-lnl-1/
> igt@kms_chamelium_color@degamma.html> (Intel XE#306 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/306>)
> *
>
> igt@kms_chamelium_frames@dp-crc-single:
>
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12548/shard-dg2-434/
> igt@kms_chamelium_frames@dp-crc-single.html> (Intel XE#373
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/373>) +4
> other tests skip
> *
>
> igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-lnl-5/igt@kms_chamelium_hpd@vga-hpd-
> enable-disable-mode.html> (Intel XE#373 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/373>) +12 other
> tests skip
> *
>
> igt@kms_content_protection@atomic-dpms:
>
> o shard-dg2-set2: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12548/shard-dg2-466/
> igt@kms_content_protection@atomic-dpms.html> (Intel XE#1178
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178>) +1
> other test fail
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-lnl-3/
> igt@kms_content_protection@atomic-dpms.html> (Intel XE#3278
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278>) +1
> other test skip
> *
>
> igt@kms_content_protection@atomic@pipe-a-dp-2:
>
> o shard-bmg: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-bmg-4/
> igt@kms_content_protection@atomic@pipe-a-dp-2.html> (Intel
> XE#1178 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1178>) +2 other tests fail
> *
>
> igt@kms_content_protection@dp-mst-lic-type-0:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-lnl-1/igt@kms_content_protection@dp-
> mst-lic-type-0.html> (Intel XE#307 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/307>) +1 other test skip
> *
>
> igt@kms_content_protection@dp-mst-type-0:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-bmg-7/igt@kms_content_protection@dp-
> mst-type-0.html> (Intel XE#2390 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2390>) +1 other test skip
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12548/shard-dg2-435/
> igt@kms_content_protection@dp-mst-type-0.html> (Intel XE#307
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/307>)
> *
>
> igt@kms_content_protection@type1:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-bmg-5/
> igt@kms_content_protection@type1.html> (Intel XE#2341 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2341>)
> *
>
> igt@kms_cursor_crc@cursor-offscreen-128x42:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-bmg-5/igt@kms_cursor_crc@cursor-
> offscreen-128x42.html> (Intel XE#2320 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2320>) +6 other
> tests skip
> *
>
> igt@kms_cursor_crc@cursor-offscreen-512x512:
>
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12548/shard-dg2-466/
> igt@kms_cursor_crc@cursor-offscreen-512x512.html> (Intel XE#308
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/308>)
> *
>
> igt@kms_cursor_crc@cursor-onscreen-512x170:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-lnl-1/igt@kms_cursor_crc@cursor-
> onscreen-512x170.html> (Intel XE#2321 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2321>) +4 other
> tests skip
> *
>
> igt@kms_cursor_crc@cursor-random-512x170:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-bmg-6/igt@kms_cursor_crc@cursor-
> random-512x170.html> (Intel XE#2321 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2321>) +3 other
> tests skip
> *
>
> igt@kms_cursor_crc@cursor-sliding-128x42:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-lnl-7/igt@kms_cursor_crc@cursor-
> sliding-128x42.html> (Intel XE#1424 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1424>) +6 other
> tests skip
> *
>
> igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-lnl-4/igt@kms_cursor_legacy@2x-
> cursor-vs-flip-legacy.html> (Intel XE#309 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/309>) +8 other tests
> skip
> *
>
> igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions:
>
> o shard-dg2-set2: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-466/igt@kms_cursor_legacy@cursor-vs-flip-
> atomic-transitions.html> -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12548/shard-dg2-464/
> igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html>
> (Intel XE#4208 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/4208> / i915#2575 <https://gitlab.freedesktop.org/drm/
> i915/kernel/-/issues/2575>) +74 other tests skip
> *
>
> igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-bmg-4/igt@kms_cursor_legacy@cursora-
> vs-flipb-atomic-transitions.html> (Intel XE#2291 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) +1 other test
> skip
> *
>
> igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
>
> o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipb-
> atomic-transitions.html> -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12548/shard-bmg-4/
> igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html>
> (Intel XE#2291 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2291>)
> *
>
> igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-bmg-8/igt@kms_dirtyfb@fbc-dirtyfb-
> ioctl.html> (Intel XE#4210 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/4210>)
> *
>
> igt@kms_dsc@dsc-basic:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-bmg-4/igt@kms_dsc@dsc-basic.html>
> (Intel XE#2244 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2244>) +1 other test skip
> *
>
> igt@kms_dsc@dsc-with-output-formats-with-bpc:
>
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@kms_dsc@dsc-with-
> output-formats-with-bpc.html> (Intel XE#455 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +15 other
> tests skip
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-lnl-2/igt@kms_dsc@dsc-with-output-
> formats-with-bpc.html> (Intel XE#2244 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2244>) +1 other test
> skip
> *
>
> igt@kms_fbcon_fbt@psr-suspend:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-bmg-4/igt@kms_fbcon_fbt@psr-
> suspend.html> (Intel XE#776 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/776>)
> *
>
> igt@kms_feature_discovery@display-3x:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-lnl-4/
> igt@kms_feature_discovery@display-3x.html> (Intel XE#703
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/703>)
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-bmg-5/
> igt@kms_feature_discovery@display-3x.html> (Intel XE#2373
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373>)
> *
>
> igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4:
>
> o shard-dg2-set2: NOTRUN -> FAIL <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> (Intel XE#301
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/301> /
> Intel XE#3321 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/3321>) +1 other test fail
> *
>
> igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4:
>
> o shard-dg2-set2: NOTRUN -> FAIL <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> (Intel XE#301
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/301>) +5
> other tests fail
> *
>
> igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4:
>
> o shard-dg2-set2: NOTRUN -> DMESG-FAIL <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> (Intel XE#1033 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/1033>) +2 other tests dmesg-fail
> *
>
> igt@kms_flip@2x-flip-vs-expired-vblank@ab-dp2-hdmi-a3:
>
> o shard-bmg: NOTRUN -> FAIL <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> (Intel XE#3321 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3321>) +6 other
> tests fail
> *
>
> igt@kms_flip@2x-flip-vs-modeset-vs-hang:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-bmg-4/igt@kms_flip@2x-flip-vs-
> modeset-vs-hang.html> (Intel XE#2316 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) +1 other test
> skip
> *
>
> igt@kms_flip@2x-flip-vs-rmfb-interruptible:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-lnl-1/igt@kms_flip@2x-flip-vs-rmfb-
> interruptible.html> (Intel XE#1421 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1421>) +3 other
> tests skip
> *
>
> igt@kms_flip@2x-flip-vs-wf_vblank:
>
> o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-bmg-5/igt@kms_flip@2x-flip-vs-wf_vblank.html> ->
> FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/
> shard-bmg-7/igt@kms_flip@2x-flip-vs-wf_vblank.html> (Intel
> XE#3098 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/3098>) +2 other tests fail
> *
>
> igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
>
> o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-bmg-1/igt@kms_flip@2x-plain-flip-fb-recreate-
> interruptible.html> -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-
> recreate-interruptible.html> (Intel XE#2316 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) +4 other
> tests skip
> *
>
> igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a3:
>
> o shard-bmg: PASS <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> -> FAIL <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> (Intel XE#3321 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/3321>) +2 other tests fail
> *
>
> igt@kms_flip@nonexisting-fb:
>
> o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-bmg-7/igt@kms_flip@nonexisting-fb.html> -> DMESG-
> WARN <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/
> shard-bmg-5/igt@kms_flip@nonexisting-fb.html> (Intel XE#4172
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4172>) +15
> other tests dmesg-warn
> *
>
> igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
>
> o shard-dg2-set2: PASS <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> -> SKIP <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> (Intel XE#4208 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/4208>) +178 other
> tests skip
> *
>
> igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-
> upscaling@pipe-a-default-mode:
>
> o shard-lnl: NOTRUN -> SKIP <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> (Intel
> XE#1401 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1401>) +3 other tests skip
> *
>
> igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
>
> o shard-bmg: NOTRUN -> SKIP <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> (Intel XE#2293 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2293> / Intel
> XE#2380 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2380>) +5 other tests skip
> *
>
> igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-
> upscaling:
>
> o shard-lnl: NOTRUN -> SKIP <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> (Intel XE#1401 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1401> / Intel
> XE#1745 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1745>) +3 other tests skip
> *
>
> igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-
> upscaling@pipe-a-valid-mode:
>
> o shard-bmg: NOTRUN -> SKIP <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> (Intel XE#2293
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293>) +5
> other tests skip
> *
>
> igt@kms_force_connector_basic@prune-stale-modes:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-lnl-4/
> igt@kms_force_connector_basic@prune-stale-modes.html> (Intel
> XE#352 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/352>) +1 other test skip
> *
>
> igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt:
>
> o shard-bmg: NOTRUN -> SKIP <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> (Intel XE#2311 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/2311>) +28 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@drrs-suspend:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-lnl-6/
> igt@kms_frontbuffer_tracking@drrs-suspend.html> (Intel XE#651
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +15
> other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
>
> o shard-bmg: NOTRUN -> SKIP <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> (Intel XE#4141 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/4141>) +17 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc:
>
> o shard-dg2-set2: NOTRUN -> SKIP <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> (Intel XE#2351 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2351> / Intel XE#4208 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/4208>) +23 other
> tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt:
>
> o shard-lnl: NOTRUN -> SKIP <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> (Intel XE#656 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/656>) +47 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt:
>
> o shard-dg2-set2: PASS <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> -> SKIP <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> (Intel XE#2351 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/2351> / Intel XE#4208 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/4208>) +7 other
> tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc:
>
> o shard-dg2-set2: NOTRUN -> SKIP <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> (Intel XE#651 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/651>) +23 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:
>
> o shard-bmg: NOTRUN -> SKIP <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> (Intel XE#2312 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/2312>) +4 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
>
> o shard-bmg: NOTRUN -> SKIP <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> (Intel XE#2313 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/2313>) +29 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-bmg-4/
> igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html> (Intel
> XE#2352 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352>)
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-lnl-5/
> igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html> (Intel
> XE#1469 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469>)
> *
>
> igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt:
>
> o shard-dg2-set2: NOTRUN -> SKIP <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> (Intel XE#653 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/653>) +23 other tests skip
> *
>
> igt@kms_getfb@getfb-reject-ccs:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-bmg-8/igt@kms_getfb@getfb-reject-
> ccs.html> (Intel XE#2502 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/2502>)
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@kms_getfb@getfb-
> reject-ccs.html> (Intel XE#605 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/605>)
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-lnl-8/igt@kms_getfb@getfb-reject-
> ccs.html> (Intel XE#605 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/605>)
> *
>
> igt@kms_hdmi_inject@inject-audio:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-lnl-1/igt@kms_hdmi_inject@inject-
> audio.html> (Intel XE#1470 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/1470> / Intel XE#2853 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2853>)
> *
>
> igt@kms_hdr@static-toggle-dpms:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-lnl-3/igt@kms_hdr@static-toggle-
> dpms.html> (Intel XE#1503 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/1503>)
> *
>
> igt@kms_joiner@basic-force-ultra-joiner:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-bmg-7/igt@kms_joiner@basic-force-
> ultra-joiner.html> (Intel XE#2934 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2934>)
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-lnl-2/igt@kms_joiner@basic-force-
> ultra-joiner.html> (Intel XE#2934 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2934>)
> *
>
> igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-bmg-4/igt@kms_joiner@switch-modeset-
> ultra-joiner-big-joiner.html> (Intel XE#4090 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/4090>)
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@kms_joiner@switch-
> modeset-ultra-joiner-big-joiner.html> (Intel XE#2925 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2925>)
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-lnl-1/igt@kms_joiner@switch-modeset-
> ultra-joiner-big-joiner.html> (Intel XE#4090 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/4090>)
> *
>
> igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats:
>
> o shard-dg2-set2: NOTRUN -> SKIP <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> (Intel XE#4208 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/4208> / i915#2575 <https://
> gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) +53 other
> tests skip
> *
>
> igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b:
>
> o shard-dg2-set2: NOTRUN -> SKIP <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> (Intel XE#2763 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +8 other
> tests skip
> *
>
> igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d:
>
> o shard-dg2-set2: NOTRUN -> SKIP <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> (Intel XE#2763 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2763> / Intel XE#455
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +4
> other tests skip
> *
>
> igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:
>
> o shard-lnl: NOTRUN -> SKIP <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> (Intel XE#2763
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +27
> other tests skip
> *
>
> igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
>
> o shard-bmg: NOTRUN -> SKIP <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> (Intel XE#2763
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763>) +14
> other tests skip
> *
>
> igt@kms_pm_backlight@basic-brightness:
>
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12548/shard-dg2-436/
> igt@kms_pm_backlight@basic-brightness.html> (Intel XE#870
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/870>)
> *
>
> igt@kms_pm_dc@dc5-dpms:
>
> o shard-lnl: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-lnl-7/igt@kms_pm_dc@dc5-dpms.html>
> (Intel XE#718 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/718>)
> *
>
> igt@kms_pm_dc@dc5-psr:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-bmg-1/igt@kms_pm_dc@dc5-psr.html>
> (Intel XE#2392 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2392>)
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@kms_pm_dc@dc5-
> psr.html> (Intel XE#1129 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/1129>)
> *
>
> igt@kms_pm_dc@deep-pkgc:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-bmg-2/igt@kms_pm_dc@deep-pkgc.html>
> (Intel XE#2505 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2505>)
> o shard-lnl: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-lnl-8/igt@kms_pm_dc@deep-pkgc.html>
> (Intel XE#2029 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2029>)
> *
>
> igt@kms_pm_rpm@dpms-non-lpsp:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-lnl-3/igt@kms_pm_rpm@dpms-non-
> lpsp.html> (Intel XE#1439 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/1439> / Intel XE#3141 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3141>)
> *
>
> igt@kms_pm_rpm@universal-planes-dpms:
>
> o shard-dg2-set2: NOTRUN -> DMESG-WARN <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/
> igt@kms_pm_rpm@universal-planes-dpms.html> (Intel XE#1033
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033> /
> Intel XE#2042 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2042>)
> *
>
> igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
>
> o shard-bmg: NOTRUN -> SKIP <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> (Intel XE#1489 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) +7 other
> tests skip
> *
>
> igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
>
> o shard-lnl: NOTRUN -> SKIP <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> (Intel XE#2893 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2893>) +4 other
> tests skip
> *
>
> igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
>
> o shard-dg2-set2: NOTRUN -> SKIP <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> (Intel XE#1489
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) +3
> other tests skip
> *
>
> igt@kms_psr2_su@frontbuffer-xrgb8888:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-lnl-4/igt@kms_psr2_su@frontbuffer-
> xrgb8888.html> (Intel XE#1128 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/1128>)
> *
>
> igt@kms_psr2_su@page_flip-p010:
>
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12548/shard-dg2-434/
> igt@kms_psr2_su@page_flip-p010.html> (Intel XE#1122 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1122>) +1 other test
> skip
> *
>
> igt@kms_psr@fbc-psr2-sprite-plane-move:
>
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_psr@fbc-psr2-
> sprite-plane-move.html> (Intel XE#4208 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/4208>) +123 other
> tests skip
> *
>
> igt@kms_psr@pr-sprite-plane-move:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-lnl-7/igt@kms_psr@pr-sprite-plane-
> move.html> (Intel XE#1406 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/1406>) +4 other tests skip
> *
>
> igt@kms_psr@psr-cursor-plane-onoff:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-bmg-1/igt@kms_psr@psr-cursor-plane-
> onoff.html> (Intel XE#2234 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/2234> / Intel XE#2850 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2850>) +14 other
> tests skip
> *
>
> igt@kms_psr@psr-dpms:
>
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@kms_psr@psr-
> dpms.html> (Intel XE#2850 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/2850> / Intel XE#929 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/929>) +14 other
> tests skip
> *
>
> igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-bmg-5/igt@kms_psr_stress_test@flip-
> primary-invalidate-overlay.html> (Intel XE#2414 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2414>)
> *
>
> igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
>
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12548/shard-dg2-435/
> igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html>
> (Intel XE#2939 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2939>)
> *
>
> igt@kms_rotation_crc@bad-tiling:
>
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12548/shard-dg2-434/
> igt@kms_rotation_crc@bad-tiling.html> (Intel XE#3414 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3414>) +2 other
> tests skip
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-lnl-1/igt@kms_rotation_crc@bad-
> tiling.html> (Intel XE#3414 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/3414> / Intel XE#3904 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3904>) +1 other test
> skip
> *
>
> igt@kms_rotation_crc@multiplane-rotation-cropping-top:
>
> o shard-dg2-set2: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-435/igt@kms_rotation_crc@multiplane-rotation-
> cropping-top.html> -> DMESG-WARN <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12548/shard-dg2-463/
> igt@kms_rotation_crc@multiplane-rotation-cropping-top.html>
> (Intel XE#1033 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1033>) +11 other tests dmesg-warn
> *
>
> igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
>
> o shard-bmg: NOTRUN -> SKIP <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> (Intel XE#3414 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3414> / Intel
> XE#3904 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/3904>) +1 other test skip
> *
>
> igt@kms_scaling_modes@scaling-mode-center:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-bmg-6/igt@kms_scaling_modes@scaling-
> mode-center.html> (Intel XE#2413 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2413>) +1 other test
> skip
> *
>
> igt@kms_setmode@basic-clone-single-crtc:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-bmg-2/igt@kms_setmode@basic-clone-
> single-crtc.html> (Intel XE#1435 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1435>)
> *
>
> igt@kms_setmode@invalid-clone-single-crtc:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-lnl-2/igt@kms_setmode@invalid-clone-
> single-crtc.html> (Intel XE#1435 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1435>)
> *
>
> igt@kms_vrr@cmrr@pipe-a-edp-1:
>
> o shard-lnl: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-lnl-2/igt@kms_vrr@cmrr@pipe-a-edp-1.html> -> FAIL
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-
> lnl-2/igt@kms_vrr@cmrr@pipe-a-edp-1.html> (Intel XE#2159
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159>) +1
> other test fail
> *
>
> igt@kms_vrr@flip-basic:
>
> o shard-lnl: NOTRUN -> FAIL <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-lnl-6/igt@kms_vrr@flip-basic.html>
> (Intel XE#1522 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1522>) +5 other tests fail
> *
>
> igt@kms_vrr@max-min:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-bmg-1/igt@kms_vrr@max-min.html>
> (Intel XE#1499 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1499>) +3 other tests skip
> *
>
> igt@kms_vrr@seamless-rr-switch-drrs:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-lnl-8/igt@kms_vrr@seamless-rr-switch-
> drrs.html> (Intel XE#1499 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/1499>) +1 other test skip
> *
>
> igt@kms_writeback@writeback-pixel-formats:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-bmg-5/igt@kms_writeback@writeback-
> pixel-formats.html> (Intel XE#756 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/756>)
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-lnl-4/igt@kms_writeback@writeback-
> pixel-formats.html> (Intel XE#756 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/756>)
> *
>
> igt@xe_compute_preempt@compute-threadgroup-preempt@engine-
> drm_xe_engine_class_compute:
>
> o shard-dg2-set2: NOTRUN -> SKIP <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> (Intel XE#1280 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1280> / Intel XE#455
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +1
> other test skip
> *
>
> igt@xe_create@create-big-vram:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-lnl-5/igt@xe_create@create-big-
> vram.html> (Intel XE#1062 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/1062>)
> *
>
> igt@xe_eudebug@basic-connect:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-lnl-5/igt@xe_eudebug@basic-
> connect.html> (Intel XE#2905 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2905>) +11 other tests skip
> *
>
> igt@xe_eudebug@exec-queue-placements:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-bmg-2/igt@xe_eudebug@exec-queue-
> placements.html> (Intel XE#2905 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2905>) +10 other tests skip
> *
>
> igt@xe_evict@evict-beng-large-multi-vm:
>
> o shard-dg2-set2: NOTRUN -> DMESG-WARN <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/
> igt@xe_evict@evict-beng-large-multi-vm.html> (Intel XE#1033
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033> /
> Intel XE#1473 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1473>)
> *
>
> igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-samefd:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-lnl-4/igt@xe_evict_ccs@evict-
> overcommit-standalone-instantfree-samefd.html> (Intel XE#688
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/688>) +5
> other tests skip
> *
>
> igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-bmg-6/igt@xe_exec_basic@multigpu-no-
> exec-bindexecqueue.html> (Intel XE#2322 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2322>) +5 other
> tests skip
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-lnl-2/igt@xe_exec_basic@multigpu-no-
> exec-bindexecqueue.html> (Intel XE#1392 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1392>) +4 other
> tests skip
> *
>
> igt@xe_exec_fault_mode@many-execqueues-basic-prefetch:
>
> o shard-bmg: NOTRUN -> DMESG-WARN <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12548/shard-bmg-2/
> igt@xe_exec_fault_mode@many-execqueues-basic-prefetch.html>
> (Intel XE#4172 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/4172>) +4 other tests dmesg-warn
> *
>
> igt@xe_exec_fault_mode@once-rebind-prefetch:
>
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12548/shard-dg2-466/
> igt@xe_exec_fault_mode@once-rebind-prefetch.html> (Intel XE#288
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/288>) +13
> other tests skip
> *
>
> igt@xe_exec_sip_eudebug@breakpoint-writesip:
>
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12548/shard-dg2-436/
> igt@xe_exec_sip_eudebug@breakpoint-writesip.html> (Intel XE#2905
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +7
> other tests skip
> *
>
> igt@xe_live_ktest@xe_dma_buf:
>
> o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-bmg-4/igt@xe_live_ktest@xe_dma_buf.html> -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-
> bmg-2/igt@xe_live_ktest@xe_dma_buf.html> (Intel XE#1192
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192>)
> *
>
> igt@xe_live_ktest@xe_migrate:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-lnl-5/
> igt@xe_live_ktest@xe_migrate.html> (Intel XE#1192 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1192>)
> *
>
> igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
>
> o shard-dg2-set2: NOTRUN -> SKIP <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> (Intel
> XE#2229 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229>)
> *
>
> igt@xe_module_load@force-load:
>
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12548/shard-dg2-463/
> igt@xe_module_load@force-load.html> (Intel XE#378 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/378>)
> *
>
> igt@xe_module_load@load:
>
> o shard-lnl: (PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-lnl-6/igt@xe_module_load@load.html>, PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-7/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-7/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-5/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-5/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-5/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-8/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-4/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-4/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-1/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-1/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-2/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-3/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-3/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-3/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-3/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-7/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-8/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-6/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-6/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-1/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-2/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-5/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-4/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGT_8224/shard-lnl-8/
> igt@xe_module_load@load.html>) -> (PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-8/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-4/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-4/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-7/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-4/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-1/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-8/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-2/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-5/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-8/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-2/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-5/
> igt@xe_module_load@load.html>, SKIP <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-2/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-6/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-7/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-6/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-5/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-2/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-3/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-5/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-6/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-1/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-1/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-3/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-3/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-lnl-7/
> igt@xe_module_load@load.html>) (Intel XE#378 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/378>)
> o shard-bmg: (PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-bmg-4/igt@xe_module_load@load.html>, PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-4/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-4/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-4/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-6/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-5/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-5/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-7/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-7/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-7/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-8/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-1/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-1/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-5/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-5/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-8/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-8/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-2/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-6/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-2/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-6/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-6/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-1/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-2/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGT_8224/shard-bmg-2/
> igt@xe_module_load@load.html>) -> (PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-6/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-8/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-8/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-8/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-7/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-7/
> igt@xe_module_load@load.html>, SKIP <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-1/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-1/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-2/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-2/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-6/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-5/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-5/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-6/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-6/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-5/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-5/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-4/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-4/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-2/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-1/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-1/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-1/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-4/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-7/
> igt@xe_module_load@load.html>, PASS <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-bmg-7/
> igt@xe_module_load@load.html>) (Intel XE#2457 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2457>)
> *
>
> igt@xe_oa@closed-fd-and-unmapped-access:
>
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@xe_oa@closed-fd-and-
> unmapped-access.html> (Intel XE#2541 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2541> / Intel
> XE#3573 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/3573>) +5 other tests skip
> *
>
> igt@xe_pat@pat-index-xehpc:
>
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@xe_pat@pat-index-
> xehpc.html> (Intel XE#2838 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/2838> / Intel XE#979 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/979>)
> *
>
> igt@xe_pat@pat-index-xelp:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-lnl-1/igt@xe_pat@pat-index-xelp.html>
> (Intel XE#977 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/977>)
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-bmg-8/igt@xe_pat@pat-index-xelp.html>
> (Intel XE#2245 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2245>)
> *
>
> igt@xe_pat@pat-index-xelpg:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-bmg-1/igt@xe_pat@pat-index-
> xelpg.html> (Intel XE#2236 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/2236>)
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-lnl-5/igt@xe_pat@pat-index-
> xelpg.html> (Intel XE#979 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/979>)
> *
>
> igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p:
>
> o shard-dg2-set2: NOTRUN -> FAIL <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>
> (Intel XE#1173 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1173>)
> *
>
> igt@xe_pm@d3cold-basic-exec:
>
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@xe_pm@d3cold-basic-
> exec.html> (Intel XE#2284 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/2284> / Intel XE#366 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/366>) +1 other test skip
> *
>
> igt@xe_pm@d3cold-mocs:
>
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12548/shard-dg2-434/igt@xe_pm@d3cold-
> mocs.html> (Intel XE#2284 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/2284>)
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-lnl-1/igt@xe_pm@d3cold-mocs.html>
> (Intel XE#2284 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2284>)
> *
>
> igt@xe_pm@d3hot-mmap-vram:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-lnl-3/igt@xe_pm@d3hot-mmap-vram.html>
> (Intel XE#1948 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1948>)
> *
>
> igt@xe_pm@s3-d3cold-basic-exec:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-bmg-1/igt@xe_pm@s3-d3cold-basic-
> exec.html> (Intel XE#2284 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/2284>)
> *
>
> igt@xe_pm@s3-exec-after:
>
> o shard-bmg: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-bmg-8/igt@xe_pm@s3-exec-after.html> -> DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-
> bmg-5/igt@xe_pm@s3-exec-after.html> (Intel XE#4172 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/4172> / Intel XE#569
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/569>)
> *
>
> igt@xe_pm@s3-multiple-execs:
>
> o shard-dg2-set2: PASS <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-434/igt@xe_pm@s3-multiple-execs.html> ->
> DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGTPW_12548/shard-dg2-436/igt@xe_pm@s3-multiple-execs.html>
> (Intel XE#1033 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1033> / Intel XE#569 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/569>)
> *
>
> igt@xe_pm@s3-vm-bind-prefetch:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-lnl-1/igt@xe_pm@s3-vm-bind-
> prefetch.html> (Intel XE#584 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/584>)
> *
>
> igt@xe_pm@s4-basic:
>
> o shard-dg2-set2: NOTRUN -> ABORT <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@xe_pm@s4-basic.html>
> (Intel XE#1358 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1358>)
> *
>
> igt@xe_pm@s4-exec-after:
>
> o shard-bmg: NOTRUN -> ABORT <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-bmg-8/igt@xe_pm@s4-exec-after.html>
> (Intel XE#1358 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1358> / Intel XE#1607 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/1607>)
> o shard-lnl: NOTRUN -> ABORT <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-lnl-1/igt@xe_pm@s4-exec-after.html>
> (Intel XE#1358 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1358> / Intel XE#1607 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/1607>)
> *
>
> igt@xe_query@multigpu-query-invalid-cs-cycles:
>
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-bmg-1/igt@xe_query@multigpu-query-
> invalid-cs-cycles.html> (Intel XE#944 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/944>) +5 other tests
> skip
> *
>
> igt@xe_query@multigpu-query-topology-l3-bank-mask:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-lnl-4/igt@xe_query@multigpu-query-
> topology-l3-bank-mask.html> (Intel XE#944 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/944>) +5 other tests
> skip
> *
>
> igt@xe_query@multigpu-query-uc-fw-version-guc:
>
> o shard-dg2-set2: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@xe_query@multigpu-
> query-uc-fw-version-guc.html> (Intel XE#944 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/944>) +2 other tests
> skip
> *
>
> igt@xe_sriov_auto_provisioning@fair-allocation:
>
> o shard-lnl: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-lnl-1/
> igt@xe_sriov_auto_provisioning@fair-allocation.html> (Intel
> XE#4130 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130>)
> o shard-bmg: NOTRUN -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-bmg-8/
> igt@xe_sriov_auto_provisioning@fair-allocation.html> (Intel
> XE#4130 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130>)
>
>
> Possible fixes
>
> *
>
> igt@fbdev@nullptr:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-464/igt@fbdev@nullptr.html> (Intel XE#2134
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134>) ->
> PASS <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:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-464/igt@kms_atomic@plane-invalid-params-
> fence.html> (Intel XE#4208 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/4208> / i915#2575 <https://
> gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-
> dg2-434/igt@kms_atomic@plane-invalid-params-fence.html> +84
> other tests pass
> *
>
> igt@kms_atomic_interruptible@legacy-setmode@pipe-a-hdmi-a-6:
>
> o shard-dg2-set2: DMESG-WARN <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> (Intel XE#1033 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/1033>) -> PASS <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> +6 other tests pass
> *
>
> igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
>
> o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-
> displays-2560x1440p.html> (Intel XE#2314 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2314> / Intel
> XE#2894 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2894>) -> PASS <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:
>
> o shard-dg2-set2: INCOMPLETE <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> (Intel XE#3862
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862>) ->
> PASS <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> +1 other test pass
> *
>
> igt@kms_cursor_legacy@cursor-vs-flip-atomic:
>
> o shard-bmg: INCOMPLETE <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGT_8224/shard-bmg-4/igt@kms_cursor_legacy@cursor-vs-flip-
> atomic.html> (Intel XE#3226 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/3226>) -> PASS <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:
>
> o shard-bmg: SKIP <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> (Intel XE#2291 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2291>) -> PASS
> <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> +4 other tests pass
> *
>
> igt@kms_display_modes@extended-mode-basic:
>
> o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-bmg-6/igt@kms_display_modes@extended-mode-
> basic.html> (Intel XE#2425 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/2425>) -> PASS <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:
>
> o shard-dg2-set2: FAIL <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> (Intel XE#301 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/301>) -> PASS
> <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> +1 other test pass
> *
>
> igt@kms_flip@2x-plain-flip-ts-check-interruptible:
>
> o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-bmg-4/igt@kms_flip@2x-plain-flip-ts-check-
> interruptible.html> (Intel XE#2316 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2316>) -> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-
> bmg-1/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html> +5
> other tests pass
> *
>
> igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a3:
>
> o shard-bmg: FAIL <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> (Intel XE#3321 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/3321>) -> PASS <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> +2 other tests pass
> *
>
> igt@kms_flip@plain-flip-fb-recreate:
>
> o shard-bmg: FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-bmg-5/igt@kms_flip@plain-flip-fb-recreate.html>
> (Intel XE#2882 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2882>) -> PASS <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12548/shard-bmg-2/igt@kms_flip@plain-flip-fb-
> recreate.html> +1 other test pass
> *
>
> igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling:
>
> o shard-dg2-set2: SKIP <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> (Intel XE#2351 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2351> / Intel
> XE#4208 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/4208>) -> PASS <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> +11 other tests pass
> *
>
> igt@kms_psr@fbc-psr2-sprite-render:
>
> o shard-lnl: FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-lnl-8/igt@kms_psr@fbc-psr2-sprite-render.html>
> (Intel XE#3924 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/3924>) -> PASS <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12548/shard-lnl-7/igt@kms_psr@fbc-psr2-sprite-
> render.html> +1 other test pass
> *
>
> igt@kms_setmode@invalid-clone-single-crtc-stealing:
>
> o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-bmg-4/igt@kms_setmode@invalid-clone-single-crtc-
> stealing.html> (Intel XE#1435 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/1435>) -> PASS <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:
>
> o shard-dg2-set2: FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-463/igt@kms_universal_plane@cursor-fb-
> leak.html> (Intel XE#771 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/771> / Intel XE#899 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/899>) -> PASS
> <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:
>
> o shard-dg2-set2: FAIL <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> (Intel XE#899 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/899>) -> PASS
> <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:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-464/igt@xe_exec_balancer@once-parallel-
> rebind.html> (Intel XE#4208 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/4208>) -> PASS <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12548/shard-dg2-435/
> igt@xe_exec_balancer@once-parallel-rebind.html> +209 other tests
> pass
> *
>
> igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-rebind-
> prefetch:
>
> o shard-bmg: INCOMPLETE <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> -> PASS <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:
>
> o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-bmg-2/igt@xe_live_ktest@xe_migrate.html> (Intel
> XE#1192 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1192>) -> PASS <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:
>
> o shard-dg2-set2: FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-464/igt@xe_module_load@reload.html> -> PASS
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-
> dg2-463/igt@xe_module_load@reload.html> +2 other tests pass
> *
>
> igt@xe_oa@mmio-triggered-reports:
>
> o shard-bmg: DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGT_8224/shard-bmg-1/igt@xe_oa@mmio-triggered-reports.html>
> (Intel XE#4172 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/4172>) -> PASS <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12548/shard-bmg-5/igt@xe_oa@mmio-triggered-
> reports.html> +48 other tests pass
> *
>
> igt@xe_pm@s3-vm-bind-prefetch:
>
> o shard-bmg: INCOMPLETE <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGT_8224/shard-bmg-6/igt@xe_pm@s3-vm-bind-prefetch.html>
> (Intel XE#1358 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1358> / Intel XE#569 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/569>) -> PASS <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12548/shard-bmg-4/igt@xe_pm@s3-vm-bind-
> prefetch.html>
> o shard-dg2-set2: DMESG-WARN <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGT_8224/shard-dg2-463/igt@xe_pm@s3-vm-bind-
> prefetch.html> (Intel XE#1033 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/1033> / Intel XE#569 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/569>) -> PASS
> <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:
>
> o shard-bmg: DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGT_8224/shard-bmg-5/igt@xe_pm@s3-vm-bind-userptr.html>
> (Intel XE#4172 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/4172> / Intel XE#569 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/569>) -> PASS <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:
>
> o shard-dg2-set2: SKIP <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> (Intel XE#4208
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208> /
> i915#2575 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
> issues/2575>) -> SKIP <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> (Intel
> XE#455 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/455>) +4 other tests skip
> *
>
> igt@kms_big_fb@4-tiled-32bpp-rotate-90:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-464/igt@kms_big_fb@4-tiled-32bpp-
> rotate-90.html> (Intel XE#2351 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2351> / Intel XE#4208 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/4208>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-
> dg2-466/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html> (Intel
> XE#316 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/316>) +2 other tests skip
> *
>
> igt@kms_big_fb@4-tiled-8bpp-rotate-270:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-464/igt@kms_big_fb@4-tiled-8bpp-
> rotate-270.html> (Intel XE#4208 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/4208>) -> SKIP <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/
> igt@kms_big_fb@4-tiled-8bpp-rotate-270.html> (Intel XE#316
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/316>) +4
> other tests skip
> *
>
> igt@kms_big_fb@linear-64bpp-rotate-180:
>
> o shard-dg2-set2: DMESG-WARN <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGT_8224/shard-dg2-434/igt@kms_big_fb@linear-64bpp-
> rotate-180.html> (Intel XE#1033 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/1033>) -> SKIP <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/
> igt@kms_big_fb@linear-64bpp-rotate-180.html> (Intel XE#2351
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351> /
> Intel XE#4208 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/4208>)
> *
>
> igt@kms_big_fb@x-tiled-8bpp-rotate-90:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-466/igt@kms_big_fb@x-tiled-8bpp-
> rotate-90.html> (Intel XE#316 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/316>) -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_big_fb@x-
> tiled-8bpp-rotate-90.html> (Intel XE#2351 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2351> / Intel
> XE#4208 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208>)
> *
>
> igt@kms_big_fb@y-tiled-8bpp-rotate-180:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-464/igt@kms_big_fb@y-tiled-8bpp-
> rotate-180.html> (Intel XE#4208 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/4208>) -> SKIP <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/
> igt@kms_big_fb@y-tiled-8bpp-rotate-180.html> (Intel XE#1124
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +2
> other tests skip
> *
>
> igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
>
> o shard-dg2-set2: SKIP <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> (Intel XE#2351 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2351> / Intel XE#4208 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/4208>) -> SKIP
> <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>
> (Intel XE#607 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/607>)
> *
>
> igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
>
> o shard-dg2-set2: SKIP <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> (Intel XE#2351 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2351> / Intel
> XE#4208 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/4208>) -> SKIP <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> (Intel XE#1124 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1124>) +3 other
> tests skip
> *
>
> igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-436/igt@kms_big_fb@yf-tiled-16bpp-
> rotate-270.html> (Intel XE#1124 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/1124>) -> SKIP <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/
> igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html> (Intel XE#4208
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208>) +2
> other tests skip
> *
>
> igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-434/igt@kms_big_fb@yf-tiled-64bpp-
> rotate-180.html> (Intel XE#1124 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/1124>) -> SKIP <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/
> igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html> (Intel XE#2351
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351> /
> Intel XE#4208 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/4208>) +2 other tests skip
> *
>
> igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
>
> o shard-dg2-set2: SKIP <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> (Intel XE#4208 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/4208>) -> SKIP
> <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>
> (Intel XE#607 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/607>)
> *
>
> igt@kms_big_fb@yf-tiled-addfb-size-overflow:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-464/igt@kms_big_fb@yf-tiled-addfb-size-
> overflow.html> (Intel XE#4208 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/4208>) -> SKIP <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-466/
> igt@kms_big_fb@yf-tiled-addfb-size-overflow.html> (Intel XE#610
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/610>)
> *
>
> igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-464/igt@kms_bw@connected-linear-tiling-4-
> displays-1920x1080p.html> (Intel XE#4208 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/4208> / i915#2575
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
> -> SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/
> shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-
> displays-1920x1080p.html> (Intel XE#2191 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2191>) +2 other
> tests skip
> *
>
> igt@kms_bw@linear-tiling-2-displays-3840x2160p:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-435/igt@kms_bw@linear-tiling-2-
> displays-3840x2160p.html> (Intel XE#367 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/367>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-
> dg2-464/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html>
> (Intel XE#4208 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/4208> / i915#2575 <https://gitlab.freedesktop.org/drm/
> i915/kernel/-/issues/2575>) +2 other tests skip
> *
>
> igt@kms_bw@linear-tiling-3-displays-3840x2160p:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-464/igt@kms_bw@linear-tiling-3-
> displays-3840x2160p.html> (Intel XE#4208 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/4208> / i915#2575
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
> -> SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/
> shard-dg2-434/igt@kms_bw@linear-tiling-3-
> displays-3840x2160p.html> (Intel XE#367 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/367>) +1 other test skip
> *
>
> igt@kms_ccs@bad-pixel-format-yf-tiled-ccs:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-464/igt@kms_ccs@bad-pixel-format-yf-tiled-
> ccs.html> (Intel XE#4208 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/4208>) -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-dg2-466/igt@kms_ccs@bad-pixel-format-
> yf-tiled-ccs.html> (Intel XE#455 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/455> / Intel XE#787
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) +9
> other tests skip
> *
>
> igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs:
>
> o shard-dg2-set2: SKIP <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> (Intel XE#455 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/455> / Intel XE#787
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/787>) ->
> SKIP <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> (Intel XE#2351 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/2351> / Intel XE#4208 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/4208>) +3 other
> tests skip
> *
>
> igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs:
>
> o shard-dg2-set2: SKIP <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> (Intel XE#2351 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/2351> / Intel XE#4208 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/4208>) -> SKIP
> <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> (Intel
> XE#455 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/455> / Intel XE#787 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/787>) +3 other tests skip
> *
>
> igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc:
>
> o shard-dg2-set2: DMESG-WARN <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> (Intel XE#1033
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033>) ->
> SKIP <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> (Intel XE#4208 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/4208>) +3 other tests skip
> *
>
> igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
>
> o shard-dg2-set2: SKIP <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> (Intel XE#4208 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/4208>) -> SKIP <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> (Intel XE#2907 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2907>)
> *
>
> igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs:
>
> o shard-dg2-set2: SKIP <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> (Intel XE#455 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/455> / Intel XE#787 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/787>) -> SKIP
> <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>
> (Intel XE#4208 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/4208>) +9 other tests skip
> *
>
> igt@kms_chamelium_color@ctm-0-50:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-464/igt@kms_chamelium_color@ctm-0-50.html>
> (Intel XE#4208 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/4208> / i915#2575 <https://gitlab.freedesktop.org/drm/
> i915/kernel/-/issues/2575>) -> SKIP <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/
> igt@kms_chamelium_color@ctm-0-50.html> (Intel XE#306 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/306>)
> *
>
> igt@kms_chamelium_color@ctm-red-to-blue:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-435/igt@kms_chamelium_color@ctm-red-to-
> blue.html> (Intel XE#306 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/306>) -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_chamelium_color@ctm-
> red-to-blue.html> (Intel XE#4208 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/4208> / i915#2575
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
> *
>
> igt@kms_chamelium_hpd@hdmi-hpd:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-464/igt@kms_chamelium_hpd@hdmi-hpd.html>
> (Intel XE#4208 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/4208> / i915#2575 <https://gitlab.freedesktop.org/drm/
> i915/kernel/-/issues/2575>) -> SKIP <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-435/
> igt@kms_chamelium_hpd@hdmi-hpd.html> (Intel XE#373 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/373>) +15 other
> tests skip
> *
>
> igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-463/igt@kms_chamelium_hpd@hdmi-hpd-with-
> enabled-mode.html> (Intel XE#373 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/373>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-
> dg2-464/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html>
> (Intel XE#4208 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/4208> / i915#2575 <https://gitlab.freedesktop.org/drm/
> i915/kernel/-/issues/2575>) +9 other tests skip
> *
>
> igt@kms_content_protection@atomic:
>
> o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-bmg-6/igt@kms_content_protection@atomic.html>
> (Intel XE#2341 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2341>) -> FAIL <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12548/shard-bmg-4/
> igt@kms_content_protection@atomic.html> (Intel XE#1178 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1178>)
> *
>
> igt@kms_content_protection@dp-mst-lic-type-1:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-464/igt@kms_content_protection@dp-mst-lic-
> type-1.html> (Intel XE#4208 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/4208> / i915#2575 <https://
> gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-
> dg2-466/igt@kms_content_protection@dp-mst-lic-type-1.html>
> (Intel XE#307 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/307>)
> *
>
> igt@kms_content_protection@uevent:
>
> o shard-dg2-set2: FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-435/igt@kms_content_protection@uevent.html>
> (Intel XE#1188 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1188>) -> DMESG-FAIL <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-dg2-436/
> igt@kms_content_protection@uevent.html> (Intel XE#1033 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1033>) +1 other test
> dmesg-fail
> *
>
> igt@kms_cursor_crc@cursor-offscreen-max-size:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-463/igt@kms_cursor_crc@cursor-offscreen-max-
> size.html> (Intel XE#455 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/455>) -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_cursor_crc@cursor-
> offscreen-max-size.html> (Intel XE#4208 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/4208> / i915#2575
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
> +2 other tests skip
> *
>
> igt@kms_cursor_crc@cursor-onscreen-512x170:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-464/igt@kms_cursor_crc@cursor-
> onscreen-512x170.html> (Intel XE#4208 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/4208> / i915#2575
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
> -> SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/
> shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-512x170.html>
> (Intel XE#308 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/308>) +3 other tests skip
> *
>
> igt@kms_cursor_crc@cursor-sliding-128x128:
>
> o shard-dg2-set2: DMESG-WARN <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGT_8224/shard-dg2-434/igt@kms_cursor_crc@cursor-
> sliding-128x128.html> (Intel XE#1033 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1033>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-
> dg2-464/igt@kms_cursor_crc@cursor-sliding-128x128.html> (Intel
> XE#4208 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/4208> / i915#2575 <https://gitlab.freedesktop.org/drm/
> i915/kernel/-/issues/2575>) +6 other tests skip
> *
>
> igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
>
> o shard-dg2-set2: SKIP <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> (Intel XE#4208 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/4208> / i915#2575
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
> -> SKIP <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> (Intel XE#323 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/323>)
> *
>
> igt@kms_feature_discovery@display-4x:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-435/
> igt@kms_feature_discovery@display-4x.html> (Intel XE#1138
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138>) ->
> SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/
> shard-dg2-464/igt@kms_feature_discovery@display-4x.html> (Intel
> XE#4208 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/4208> / i915#2575 <https://gitlab.freedesktop.org/drm/
> i915/kernel/-/issues/2575>)
> *
>
> igt@kms_feature_discovery@dp-mst:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-466/igt@kms_feature_discovery@dp-mst.html>
> (Intel XE#1137 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1137>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12548/shard-dg2-464/igt@kms_feature_discovery@dp-
> mst.html> (Intel XE#4208 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/4208> / i915#2575 <https://gitlab.freedesktop.org/
> drm/i915/kernel/-/issues/2575>)
> *
>
> igt@kms_feature_discovery@psr2:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-463/igt@kms_feature_discovery@psr2.html>
> (Intel XE#1135 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1135>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12548/shard-dg2-464/
> igt@kms_feature_discovery@psr2.html> (Intel XE#4208 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/4208> / i915#2575
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
> *
>
> igt@kms_flip@2x-flip-vs-expired-vblank:
>
> o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-
> vblank.html> (Intel XE#2316 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/2316>) -> FAIL <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12548/shard-bmg-7/igt@kms_flip@2x-flip-vs-
> expired-vblank.html> (Intel XE#3321 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/3321>)
> *
>
> igt@kms_flip@flip-vs-expired-vblank:
>
> o shard-dg2-set2: FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank.html>
> (Intel XE#301 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/301>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGTPW_12548/shard-dg2-464/igt@kms_flip@flip-vs-expired-
> vblank.html> (Intel XE#4208 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/4208> / i915#2575 <https://
> gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
> *
>
> igt@kms_flip@flip-vs-expired-vblank-interruptible:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank-
> interruptible.html> (Intel XE#4208 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/4208> / i915#2575
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
> -> FAIL <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/
> shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-
> interruptible.html> (Intel XE#301 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/301>)
> *
>
> igt@kms_flip@flip-vs-suspend:
>
> o shard-dg2-set2: DMESG-WARN <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGT_8224/shard-dg2-463/igt@kms_flip@flip-vs-
> suspend.html> (Intel XE#2955 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2955>) -> DMESG-WARN <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-463/
> igt@kms_flip@flip-vs-suspend.html> (Intel XE#1033 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1033>)
> *
>
> igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset:
>
> o shard-dg2-set2: DMESG-WARN <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> -> DMESG-WARN <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>
> (Intel XE#1033 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1033>)
> *
>
> igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
>
> o shard-dg2-set2: SKIP <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> (Intel XE#455 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/455>) -> SKIP
> <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> (Intel XE#2351 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2351> / Intel XE#4208 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/4208>)
> *
>
> igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
>
> o shard-dg2-set2: SKIP <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> (Intel XE#455 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/455>) -> SKIP
> <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> (Intel XE#4208 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/4208>) +1 other test
> skip
> *
>
> igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
>
> o shard-dg2-set2: SKIP <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> (Intel XE#2351 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2351> / Intel
> XE#4208 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/4208>) -> SKIP <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> (Intel XE#455 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +2 other tests
> skip
> *
>
> igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-
> upscaling:
>
> o shard-dg2-set2: SKIP <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> (Intel XE#4208
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208>) ->
> SKIP <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> (Intel XE#455 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/455>) +2 other tests
> skip
> *
>
> igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
>
> o shard-bmg: SKIP <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> (Intel XE#2312 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> SKIP
> <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> (Intel XE#2311 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) +15 other
> tests skip
> *
>
> igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff:
>
> o shard-dg2-set2: SKIP <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> (Intel XE#651 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/651>) -> SKIP
> <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> (Intel XE#4208 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/4208>) +13 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc:
>
> o shard-bmg: SKIP <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> (Intel XE#2311 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2311>) -> SKIP
> <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> (Intel XE#2312 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) +7 other
> tests skip
> *
>
> igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen:
>
> o shard-dg2-set2: SKIP <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> (Intel XE#651 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/651>) -> SKIP
> <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> (Intel XE#2351 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2351> / Intel XE#4208 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/4208>) +8 other
> tests skip
> *
>
> igt@kms_frontbuffer_tracking@drrs-suspend:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-
> suspend.html> (Intel XE#2351 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2351> / Intel XE#4208 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/4208>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-
> dg2-436/igt@kms_frontbuffer_tracking@drrs-suspend.html> (Intel
> XE#651 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/651>) +10 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw:
>
> o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-pri-
> indfb-multidraw.html> (Intel XE#4141 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/4141>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-
> bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-
> multidraw.html> (Intel XE#2312 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2312>) +6 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-render:
>
> o shard-dg2-set2: SKIP <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> (Intel XE#4208 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/4208>) -> DMESG-WARN
> <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> (Intel XE#1033 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1033>) +3 other
> tests dmesg-warn
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
>
> o shard-bmg: SKIP <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> (Intel XE#2312 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> SKIP
> <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> (Intel XE#4141 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/4141>) +5 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-1p-
> rte.html> (Intel XE#4208 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/4208>) -> SKIP <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-dg2-463/
> igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html> (Intel XE#651
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/651>) +22
> other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-
> tiling-y.html> (Intel XE#2351 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2351> / Intel XE#4208 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/4208>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-
> dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html>
> (Intel XE#658 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/658>)
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render:
>
> o shard-dg2-set2: SKIP <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> (Intel XE#653 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/653>) -> SKIP
> <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> (Intel XE#2351 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2351> / Intel
> XE#4208 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/4208>) +5 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-
> tiling-4.html> (Intel XE#2351 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2351> / Intel XE#4208 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/4208>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-
> dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html>
> (Intel XE#653 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/653>) +8 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
>
> o shard-bmg: SKIP <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> (Intel XE#2313 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2313>) -> SKIP
> <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> (Intel XE#2312 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/2312>) +13 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt:
>
> o shard-dg2-set2: SKIP <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> (Intel XE#4208 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/4208>) -> SKIP
> <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> (Intel XE#653 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/653>) +22 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
>
> o shard-bmg: SKIP <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> (Intel XE#2312 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2312>) -> SKIP
> <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> (Intel XE#2313 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/2313>) +10 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@psr-slowdraw:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-
> slowdraw.html> (Intel XE#653 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/653>) -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12548/shard-dg2-464/
> igt@kms_frontbuffer_tracking@psr-slowdraw.html> (Intel XE#4208
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208>) +16
> other tests skip
> *
>
> igt@kms_joiner@basic-big-joiner:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-464/igt@kms_joiner@basic-big-joiner.html>
> (Intel XE#4208 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/4208>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12548/shard-dg2-434/igt@kms_joiner@basic-big-
> joiner.html> (Intel XE#346 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/346>)
> *
>
> igt@kms_joiner@basic-force-ultra-joiner:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-464/igt@kms_joiner@basic-force-ultra-
> joiner.html> (Intel XE#4208 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/4208>) -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@kms_joiner@basic-
> force-ultra-joiner.html> (Intel XE#2925 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2925>)
> *
>
> igt@kms_joiner@invalid-modeset-ultra-joiner:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-434/igt@kms_joiner@invalid-modeset-ultra-
> joiner.html> (Intel XE#2927 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/2927>) -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_joiner@invalid-
> modeset-ultra-joiner.html> (Intel XE#4208 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/4208>)
> *
>
> igt@kms_plane_scaling@planes-downscale-factor-0-25:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-464/igt@kms_plane_scaling@planes-downscale-
> factor-0-25.html> (Intel XE#4208 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/4208> / i915#2575
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
> -> SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/
> shard-dg2-435/igt@kms_plane_scaling@planes-downscale-
> factor-0-25.html> (Intel XE#2763 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2763> / Intel XE#455
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/455>)
> *
>
> igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
>
> o shard-dg2-set2: SKIP <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> (Intel XE#2763
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763> /
> Intel XE#455 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/455>) -> SKIP <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> (Intel XE#4208
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208> /
> i915#2575 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
> issues/2575>) +1 other test skip
> *
>
> igt@kms_pm_backlight@fade-with-dpms:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-434/igt@kms_pm_backlight@fade-with-dpms.html>
> (Intel XE#870 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/870>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGTPW_12548/shard-dg2-464/igt@kms_pm_backlight@fade-with-
> dpms.html> (Intel XE#4208 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/4208>) +1 other test skip
> *
>
> igt@kms_pm_dc@dc3co-vpb-simulation:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-464/igt@kms_pm_dc@dc3co-vpb-simulation.html>
> (Intel XE#2351 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2351> / Intel XE#4208 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/4208>) -> SKIP <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-463/
> igt@kms_pm_dc@dc3co-vpb-simulation.html> (Intel XE#1122
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122>)
> *
>
> igt@kms_pm_dc@deep-pkgc:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-464/igt@kms_pm_dc@deep-pkgc.html> (Intel
> XE#4208 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/4208>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12548/shard-dg2-463/igt@kms_pm_dc@deep-pkgc.html>
> (Intel XE#908 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/908>)
> *
>
> igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
>
> o shard-dg2-set2: SKIP <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> (Intel XE#4208 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/4208>) -> SKIP
> <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> (Intel XE#1489 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) +14 other
> tests skip
> *
>
> igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf:
>
> o shard-dg2-set2: SKIP <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> (Intel XE#1489 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1489>) -> SKIP
> <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> (Intel XE#4208 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/4208>) +6 other tests skip
> *
>
> igt@kms_psr2_su@page_flip-nv12:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-436/igt@kms_psr2_su@page_flip-nv12.html>
> (Intel XE#1122 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1122>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12548/shard-dg2-464/igt@kms_psr2_su@page_flip-
> nv12.html> (Intel XE#4208 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/4208>)
> *
>
> igt@kms_psr@fbc-psr-sprite-plane-onoff:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-435/igt@kms_psr@fbc-psr-sprite-plane-
> onoff.html> (Intel XE#2850 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/2850> / Intel XE#929 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/929>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-
> dg2-464/igt@kms_psr@fbc-psr-sprite-plane-onoff.html> (Intel
> XE#2351 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2351> / Intel XE#4208 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/4208>) +8 other tests skip
> *
>
> igt@kms_psr@fbc-psr-sprite-render:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-436/igt@kms_psr@fbc-psr-sprite-render.html>
> (Intel XE#2850 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2850> / Intel XE#929 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/929>) -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@kms_psr@fbc-psr-
> sprite-render.html> (Intel XE#4208 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/4208>) +11 other
> tests skip
> *
>
> igt@kms_psr@fbc-psr2-primary-render:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-464/igt@kms_psr@fbc-psr2-primary-render.html>
> (Intel XE#4208 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/4208>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12548/shard-dg2-436/igt@kms_psr@fbc-psr2-primary-
> render.html> (Intel XE#2850 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/2850> / Intel XE#929 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/929>) +13 other
> tests skip
> *
>
> igt@kms_psr@psr-sprite-blt:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-464/igt@kms_psr@psr-sprite-blt.html> (Intel
> XE#2351 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2351> / Intel XE#4208 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/4208>) -> SKIP <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/
> igt@kms_psr@psr-sprite-blt.html> (Intel XE#2850 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2850> / Intel XE#929
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/929>) +4
> other tests skip
> *
>
> igt@kms_rotation_crc@bad-pixel-format:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-436/igt@kms_rotation_crc@bad-pixel-
> format.html> (Intel XE#3414 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/3414>) -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12548/shard-dg2-464/
> igt@kms_rotation_crc@bad-pixel-format.html> (Intel XE#4208
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208> /
> i915#2575 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
> issues/2575>) +2 other tests skip
> *
>
> igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
>
> o shard-dg2-set2: SKIP <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> (Intel XE#4208 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/4208> / i915#2575
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
> -> SKIP <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> (Intel XE#1127 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/1127>) +1 other test skip
> *
>
> igt@kms_rotation_crc@sprite-rotation-180:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-464/igt@kms_rotation_crc@sprite-
> rotation-180.html> (Intel XE#4208 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/4208> / i915#2575
> <https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
> -> DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGTPW_12548/shard-dg2-436/igt@kms_rotation_crc@sprite-
> rotation-180.html> (Intel XE#1033 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1033>) +2 other
> tests dmesg-warn
> *
>
> igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
>
> o shard-dg2-set2: SKIP <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> (Intel XE#4208 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/4208> / i915#2575 <https://
> gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>) -> SKIP
> <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>
> (Intel XE#3414 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/3414>) +1 other test skip
> *
>
> igt@kms_tiled_display@basic-test-pattern-with-chamelium:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern-
> with-chamelium.html> (Intel XE#1500 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1500>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-
> dg2-464/igt@kms_tiled_display@basic-test-pattern-with-
> chamelium.html> (Intel XE#4208 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/4208> / i915#2575 <https://
> gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575>)
> *
>
> igt@kms_vrr@cmrr:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-464/igt@kms_vrr@cmrr.html> (Intel XE#4208
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208> /
> i915#2575 <https://gitlab.freedesktop.org/drm/i915/kernel/-/
> issues/2575>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12548/shard-dg2-466/igt@kms_vrr@cmrr.html> (Intel
> XE#2168 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168>)
> *
>
> igt@kms_writeback@writeback-fb-id:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-436/igt@kms_writeback@writeback-fb-id.html>
> (Intel XE#756 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/756>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGTPW_12548/shard-dg2-464/igt@kms_writeback@writeback-fb-
> id.html> (Intel XE#4208 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/4208> / i915#2575 <https://gitlab.freedesktop.org/
> drm/i915/kernel/-/issues/2575>) +1 other test skip
> *
>
> igt@testdisplay:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-464/igt@testdisplay.html> (Intel XE#4208
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208>) ->
> DMESG-WARN <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGTPW_12548/shard-dg2-436/igt@testdisplay.html> (Intel XE#2705
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705> /
> Intel XE#4212 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/4212>)
> *
>
> igt@xe_compute_preempt@compute-preempt:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-464/igt@xe_compute_preempt@compute-
> preempt.html> (Intel XE#4208 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/4208>) -> SKIP <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-435/
> igt@xe_compute_preempt@compute-preempt.html> (Intel XE#1280
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280> /
> Intel XE#455 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/455>) +1 other test skip
> *
>
> igt@xe_compute_preempt@compute-preempt-many:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-463/igt@xe_compute_preempt@compute-preempt-
> many.html> (Intel XE#1280 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/1280> / Intel XE#455 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/455>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-
> dg2-464/igt@xe_compute_preempt@compute-preempt-many.html> (Intel
> XE#4208 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208>)
> *
>
> igt@xe_copy_basic@mem-copy-linear-0xfffe:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-464/igt@xe_copy_basic@mem-copy-
> linear-0xfffe.html> (Intel XE#4208 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/4208>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-
> dg2-436/igt@xe_copy_basic@mem-copy-linear-0xfffe.html> (Intel
> XE#1123 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123>)
> *
>
> igt@xe_copy_basic@mem-set-linear-0xfd:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-464/igt@xe_copy_basic@mem-set-
> linear-0xfd.html> (Intel XE#4208 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/4208>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-
> dg2-466/igt@xe_copy_basic@mem-set-linear-0xfd.html> (Intel
> XE#1126 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1126>) +1 other test skip
> *
>
> igt@xe_eudebug@basic-vm-bind-ufence-delay-ack:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-435/igt@xe_eudebug@basic-vm-bind-ufence-
> delay-ack.html> (Intel XE#3889 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/3889>) -> SKIP <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/
> igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html> (Intel
> XE#4208 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208>)
> *
>
> igt@xe_eudebug@multiple-sessions:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-466/igt@xe_eudebug@multiple-sessions.html>
> (Intel XE#2905 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2905>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12548/shard-dg2-464/igt@xe_eudebug@multiple-
> sessions.html> (Intel XE#4208 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/4208>) +7 other tests skip
> *
>
> igt@xe_eudebug_online@debugger-reopen:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-464/igt@xe_eudebug_online@debugger-
> reopen.html> (Intel XE#4208 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/4208>) -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12548/shard-dg2-435/
> igt@xe_eudebug_online@debugger-reopen.html> (Intel XE#2905
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905>) +13
> other tests skip
> *
>
> igt@xe_exec_fault_mode@once-bindexecqueue-imm:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-466/igt@xe_exec_fault_mode@once-
> bindexecqueue-imm.html> (Intel XE#288 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/288>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-
> dg2-464/igt@xe_exec_fault_mode@once-bindexecqueue-imm.html>
> (Intel XE#4208 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/4208>) +22 other tests skip
> *
>
> igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-464/igt@xe_exec_fault_mode@twice-userptr-
> invalidate-race.html> (Intel XE#4208 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/4208>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12548/shard-
> dg2-463/igt@xe_exec_fault_mode@twice-userptr-invalidate-
> race.html> (Intel XE#288 <https://gitlab.freedesktop.org/drm/xe/
> kernel/issues/288>) +24 other tests skip
> *
>
> igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
>
> o shard-dg2-set2: SKIP <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> (Intel XE#4208 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/4208>) -> SKIP <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> (Intel
> XE#2360 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2360>) +1 other test skip
> *
>
> igt@xe_live_ktest@xe_eudebug:
>
> o shard-bmg: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-bmg-6/igt@xe_live_ktest@xe_eudebug.html> (Intel
> XE#1192 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1192>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12548/shard-bmg-7/igt@xe_live_ktest@xe_eudebug.html>
> (Intel XE#2833 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2833>)
> *
>
> igt@xe_oa@oa-unit-exclusive-stream-sample-oa:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-464/igt@xe_oa@oa-unit-exclusive-stream-
> sample-oa.html> (Intel XE#4208 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/4208>) -> SKIP <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/igt@xe_oa@oa-
> unit-exclusive-stream-sample-oa.html> (Intel XE#2541 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/2541> / Intel
> XE#3573 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/3573>) +9 other tests skip
> *
>
> igt@xe_oa@syncs-ufence-wait-cfg:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-436/igt@xe_oa@syncs-ufence-wait-cfg.html>
> (Intel XE#2541 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2541> / Intel XE#3573 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/3573>) -> SKIP <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-464/
> igt@xe_oa@syncs-ufence-wait-cfg.html> (Intel XE#4208 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/4208>) +8 other
> tests skip
> *
>
> igt@xe_pat@display-vs-wb-transient:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-436/igt@xe_pat@display-vs-wb-transient.html>
> (Intel XE#1337 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1337>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12548/shard-dg2-464/igt@xe_pat@display-vs-wb-
> transient.html> (Intel XE#4208 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/4208>)
> *
>
> igt@xe_pat@pat-index-xelpg:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-464/igt@xe_pat@pat-index-xelpg.html> (Intel
> XE#4208 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/4208>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12548/shard-dg2-434/igt@xe_pat@pat-index-xelpg.html>
> (Intel XE#979 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/979>)
> *
>
> igt@xe_peer2peer@read:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-464/igt@xe_peer2peer@read.html> (Intel
> XE#1061 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1061> / Intel XE#4208 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/4208>) -> FAIL <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-436/
> igt@xe_peer2peer@read.html> (Intel XE#1173 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1173>)
> *
>
> igt@xe_pm@d3cold-basic:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-466/igt@xe_pm@d3cold-basic.html> (Intel
> XE#2284 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/2284> / Intel XE#366 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/366>) -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@xe_pm@d3cold-
> basic.html> (Intel XE#4208 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/4208>)
> *
>
> igt@xe_pm@d3cold-multiple-execs:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-464/igt@xe_pm@d3cold-multiple-execs.html>
> (Intel XE#4208 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/4208>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12548/shard-dg2-435/igt@xe_pm@d3cold-multiple-
> execs.html> (Intel XE#2284 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/2284> / Intel XE#366 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/366>)
> *
>
> igt@xe_pm@s3-basic:
>
> o shard-dg2-set2: DMESG-WARN <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGT_8224/shard-dg2-434/igt@xe_pm@s3-basic.html> (Intel
> XE#1033 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1033> / Intel XE#569 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/569>) -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12548/shard-dg2-464/igt@xe_pm@s3-basic.html>
> (Intel XE#4208 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/4208>)
> *
>
> igt@xe_pm@s3-exec-after:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-464/igt@xe_pm@s3-exec-after.html> (Intel
> XE#4208 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/4208>) -> DMESG-WARN <https://intel-gfx-ci.01.org/tree/
> intel-xe/IGTPW_12548/shard-dg2-466/igt@xe_pm@s3-exec-after.html>
> (Intel XE#1033 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1033> / Intel XE#569 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/569>)
> *
>
> igt@xe_pm@s4-d3hot-basic-exec:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-464/igt@xe_pm@s4-d3hot-basic-exec.html>
> (Intel XE#4208 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/4208>) -> ABORT <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12548/shard-dg2-463/igt@xe_pm@s4-d3hot-basic-exec.html>
> (Intel XE#1358 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1358>)
> *
>
> igt@xe_pm@s4-exec-after:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-464/igt@xe_pm@s4-exec-after.html> (Intel
> XE#4208 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/4208>) -> ABORT <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12548/shard-dg2-434/igt@xe_pm@s4-exec-after.html>
> (Intel XE#1033 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1033> / Intel XE#1358 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/1358>)
> *
>
> igt@xe_pm@s4-mocs:
>
> o shard-dg2-set2: ABORT <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGT_8224/shard-dg2-466/igt@xe_pm@s4-mocs.html> (Intel XE#1033
> <https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033> /
> Intel XE#1358 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1358>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12548/shard-dg2-464/igt@xe_pm@s4-mocs.html> (Intel
> XE#4208 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208>)
> *
>
> igt@xe_pm@s4-vm-bind-prefetch:
>
> o shard-dg2-set2: ABORT <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGT_8224/shard-dg2-436/igt@xe_pm@s4-vm-bind-prefetch.html>
> (Intel XE#1033 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1033> / Intel XE#1358 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/1358>) -> ABORT <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-435/igt@xe_pm@s4-
> vm-bind-prefetch.html> (Intel XE#1358 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/1358>)
> *
>
> igt@xe_pm@s4-vm-bind-userptr:
>
> o shard-dg2-set2: ABORT <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGT_8224/shard-dg2-434/igt@xe_pm@s4-vm-bind-userptr.html>
> (Intel XE#1358 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/1358>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12548/shard-dg2-464/igt@xe_pm@s4-vm-bind-userptr.html>
> (Intel XE#4208 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/4208>)
> *
>
> igt@xe_pm@vram-d3cold-threshold:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-436/igt@xe_pm@vram-d3cold-threshold.html>
> (Intel XE#579 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/579>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGTPW_12548/shard-dg2-464/igt@xe_pm@vram-d3cold-threshold.html>
> (Intel XE#4208 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/4208>)
> *
>
> igt@xe_query@multigpu-query-invalid-cs-cycles:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-464/igt@xe_query@multigpu-query-invalid-cs-
> cycles.html> (Intel XE#4208 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/4208>) -> SKIP <https://intel-gfx-ci.01.org/
> tree/intel-xe/IGTPW_12548/shard-dg2-466/igt@xe_query@multigpu-
> query-invalid-cs-cycles.html> (Intel XE#944 <https://
> gitlab.freedesktop.org/drm/xe/kernel/issues/944>)
> *
>
> igt@xe_sriov_auto_provisioning@fair-allocation:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-464/igt@xe_sriov_auto_provisioning@fair-
> allocation.html> (Intel XE#4208 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/4208>) -> SKIP <https://intel-gfx-
> ci.01.org/tree/intel-xe/IGTPW_12548/shard-dg2-434/
> igt@xe_sriov_auto_provisioning@fair-allocation.html> (Intel
> XE#4130 <https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130>)
> *
>
> igt@xe_sriov_flr@flr-each-isolation:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-464/igt@xe_sriov_flr@flr-each-isolation.html>
> (Intel XE#4208 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/4208>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12548/shard-dg2-436/igt@xe_sriov_flr@flr-each-
> isolation.html> (Intel XE#3342 <https://gitlab.freedesktop.org/
> drm/xe/kernel/issues/3342>)
> *
>
> igt@xe_sriov_flr@flr-vf1-clear:
>
> o shard-dg2-set2: SKIP <https://intel-gfx-ci.01.org/tree/intel-xe/
> IGT_8224/shard-dg2-435/igt@xe_sriov_flr@flr-vf1-clear.html>
> (Intel XE#3342 <https://gitlab.freedesktop.org/drm/xe/kernel/
> issues/3342>) -> SKIP <https://intel-gfx-ci.01.org/tree/intel-
> xe/IGTPW_12548/shard-dg2-464/igt@xe_sriov_flr@flr-vf1-
> clear.html> (Intel XE#4208 <https://gitlab.freedesktop.org/drm/
> xe/kernel/issues/4208>)
>
> {name}: This element is suppressed. This means it is ignored when computing
> the status of the difference (SUCCESS, WARNING, or FAILURE).
>
>
> 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
>
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Xe.CI.BAT: success 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
` (4 preceding siblings ...)
2025-02-05 21:16 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-02-06 12:10 ` Patchwork
2025-02-06 12:21 ` ✓ i915.CI.BAT: " Patchwork
` (2 subsequent siblings)
8 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2025-02-06 12:10 UTC (permalink / raw)
To: Marcin Bernatowicz; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1186 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 : success
== Summary ==
CI Bug Log - changes from XEIGT_8224_BAT -> XEIGTPW_12548_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (8 -> 8)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
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: 1745 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ i915.CI.BAT: success 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
` (5 preceding siblings ...)
2025-02-06 12:10 ` ✓ Xe.CI.BAT: success " Patchwork
@ 2025-02-06 12:21 ` Patchwork
2025-02-06 12:59 ` ✗ Xe.CI.Full: failure " Patchwork
2025-02-06 17:27 ` ✗ i915.CI.Full: " Patchwork
8 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2025-02-06 12:21 UTC (permalink / raw)
To: Marcin Bernatowicz; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5240 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 : success
== Summary ==
CI Bug Log - changes from IGT_8224 -> IGTPW_12548
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/index.html
Participating hosts (44 -> 44)
------------------------------
Additional (1): fi-pnv-d510
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_12548 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live:
- bat-twl-2: [PASS][1] -> [ABORT][2] ([i915#12919] / [i915#13503])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8224/bat-twl-2/igt@i915_selftest@live.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/bat-twl-2/igt@i915_selftest@live.html
* igt@i915_selftest@live@gt_engines:
- bat-twl-2: [PASS][3] -> [ABORT][4] ([i915#12919])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8224/bat-twl-2/igt@i915_selftest@live@gt_engines.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/bat-twl-2/igt@i915_selftest@live@gt_engines.html
* igt@i915_selftest@live@gt_lrc:
- bat-twl-1: NOTRUN -> [ABORT][5] ([i915#12919])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/bat-twl-1/igt@i915_selftest@live@gt_lrc.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [PASS][6] -> [DMESG-FAIL][7] ([i915#12061]) +1 other test dmesg-fail
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8224/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/bat-arlh-3/igt@i915_selftest@live@workarounds.html
* igt@kms_pm_rpm@basic-rte:
- bat-rpls-4: [PASS][8] -> [DMESG-WARN][9] ([i915#13400])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8224/bat-rpls-4/igt@kms_pm_rpm@basic-rte.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/bat-rpls-4/igt@kms_pm_rpm@basic-rte.html
* igt@kms_psr@psr-primary-mmap-gtt:
- fi-pnv-d510: NOTRUN -> [SKIP][10] +33 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/fi-pnv-d510/igt@kms_psr@psr-primary-mmap-gtt.html
#### Possible fixes ####
* igt@dmabuf@all-tests:
- bat-apl-1: [INCOMPLETE][11] ([i915#12904]) -> [PASS][12] +1 other test pass
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8224/bat-apl-1/igt@dmabuf@all-tests.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/bat-apl-1/igt@dmabuf@all-tests.html
* igt@i915_selftest@live@gt_contexts:
- bat-twl-1: [ABORT][13] ([i915#12919]) -> [PASS][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8224/bat-twl-1/igt@i915_selftest@live@gt_contexts.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/bat-twl-1/igt@i915_selftest@live@gt_contexts.html
* igt@i915_selftest@live@workarounds:
- bat-mtlp-6: [DMESG-FAIL][15] ([i915#12061]) -> [PASS][16] +1 other test pass
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8224/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
#### Warnings ####
* igt@i915_module_load@reload:
- fi-kbl-7567u: [DMESG-WARN][17] ([i915#11621] / [i915#180]) -> [DMESG-WARN][18] ([i915#11621] / [i915#180] / [i915#1982])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8224/fi-kbl-7567u/igt@i915_module_load@reload.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/fi-kbl-7567u/igt@i915_module_load@reload.html
[i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904
[i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919
[i915#13400]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13400
[i915#13503]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13503
[i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8224 -> IGTPW_12548
* Linux: CI_DRM_16071 -> CI_DRM_16074
CI-20190529: 20190529
CI_DRM_16071: 48642a04502e4e6e86a83360bea6472bfa1233e1 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_16074: 5592bc56322b20198056d88dd12fc86ebb0dfcbe @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12548: 57bed37c12b70280013ab91f59901946a251454c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8224: c659b986ba648584d36b3cfece897bc84a33dcbb @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Testlist changes
----------------
+igt@xe_sriov_flr@flr-twice
+igt@xe_sriov_flr@flr-vfs-parallel
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/index.html
[-- Attachment #2: Type: text/html, Size: 6545 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
* ✗ i915.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
` (7 preceding siblings ...)
2025-02-06 12:59 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-02-06 17:27 ` Patchwork
8 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2025-02-06 17:27 UTC (permalink / raw)
To: Bernatowicz, Marcin; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100292 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 CI_DRM_16074_full -> IGTPW_12548_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12548_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_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.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/index.html
Participating hosts (12 -> 11)
------------------------------
Missing (1): shard-dg2-set2
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12548_full:
### IGT changes ###
#### Possible regressions ####
* igt@perf_pmu@rc6@runtime-pm-long-gt0:
- shard-rkl: [PASS][1] -> [SKIP][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16074/shard-rkl-1/igt@perf_pmu@rc6@runtime-pm-long-gt0.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-4/igt@perf_pmu@rc6@runtime-pm-long-gt0.html
New tests
---------
New tests have been introduced between CI_DRM_16074_full and IGTPW_12548_full:
### New IGT tests (1) ###
* igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-dp-3:
- Statuses : 1 pass(s)
- Exec time: [0.50] s
Known issues
------------
Here are the changes found in IGTPW_12548_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg1: NOTRUN -> [SKIP][3] ([i915#8411])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-14/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@crc32:
- shard-tglu: NOTRUN -> [SKIP][4] ([i915#6230])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-10/igt@api_intel_bb@crc32.html
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-dg2-9: NOTRUN -> [SKIP][5] ([i915#8411])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-9/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@debugfs_test@basic-hwmon:
- shard-mtlp: NOTRUN -> [SKIP][6] ([i915#9318])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-7/igt@debugfs_test@basic-hwmon.html
* igt@device_reset@unbind-reset-rebind:
- shard-dg1: NOTRUN -> [ABORT][7] ([i915#11814] / [i915#11815] / [i915#9413])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-14/igt@device_reset@unbind-reset-rebind.html
* igt@drm_fdinfo@busy-check-all@bcs0:
- shard-dg1: NOTRUN -> [SKIP][8] ([i915#8414]) +13 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-17/igt@drm_fdinfo@busy-check-all@bcs0.html
* igt@drm_fdinfo@busy-hang@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][9] ([i915#8414]) +16 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-5/igt@drm_fdinfo@busy-hang@rcs0.html
* igt@drm_fdinfo@most-busy-check-all@bcs0:
- shard-dg2: NOTRUN -> [SKIP][10] ([i915#8414]) +17 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-7/igt@drm_fdinfo@most-busy-check-all@bcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all:
- shard-dg2-9: NOTRUN -> [SKIP][11] ([i915#8414]) +7 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-9/igt@drm_fdinfo@most-busy-idle-check-all.html
* igt@gem_ccs@block-copy-compressed:
- shard-rkl: NOTRUN -> [SKIP][12] ([i915#3555] / [i915#9323])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-7/igt@gem_ccs@block-copy-compressed.html
- shard-dg1: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#9323])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-18/igt@gem_ccs@block-copy-compressed.html
- shard-mtlp: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#9323])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-2/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-tglu: NOTRUN -> [SKIP][15] ([i915#3555] / [i915#9323]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-6/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@large-ctrl-surf-copy:
- shard-rkl: NOTRUN -> [SKIP][16] ([i915#13008])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-6/igt@gem_ccs@large-ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][17] ([i915#9323])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-5/igt@gem_ccs@suspend-resume.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-rkl: NOTRUN -> [SKIP][18] ([i915#7697])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-4/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-rkl: NOTRUN -> [SKIP][19] ([i915#6335])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-4/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_create@create-ext-set-pat:
- shard-dg1: NOTRUN -> [SKIP][20] ([i915#8562])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-18/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_isolation@preservation-s3@bcs0:
- shard-glk: NOTRUN -> [INCOMPLETE][21] ([i915#12353]) +1 other test incomplete
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-glk3/igt@gem_ctx_isolation@preservation-s3@bcs0.html
* igt@gem_ctx_persistence@engines-mixed-process@vcs0:
- shard-mtlp: [PASS][22] -> [ABORT][23] ([i915#13193]) +1 other test abort
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16074/shard-mtlp-8/igt@gem_ctx_persistence@engines-mixed-process@vcs0.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-4/igt@gem_ctx_persistence@engines-mixed-process@vcs0.html
* igt@gem_ctx_persistence@file:
- shard-snb: NOTRUN -> [SKIP][24] ([i915#1099]) +6 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-snb5/igt@gem_ctx_persistence@file.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-dg2: NOTRUN -> [SKIP][25] ([i915#8555]) +2 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-5/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg2-9: NOTRUN -> [SKIP][26] ([i915#8555])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-9/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_sseu@engines:
- shard-dg1: NOTRUN -> [SKIP][27] ([i915#280])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-18/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-args:
- shard-rkl: NOTRUN -> [SKIP][28] ([i915#280])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-7/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-tglu: NOTRUN -> [SKIP][29] ([i915#280])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-6/igt@gem_ctx_sseu@invalid-sseu.html
- shard-mtlp: NOTRUN -> [SKIP][30] ([i915#280])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-4/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@hibernate:
- shard-tglu-1: NOTRUN -> [ABORT][31] ([i915#7975])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-1/igt@gem_eio@hibernate.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [PASS][32] -> [FAIL][33] ([i915#12714] / [i915#5784])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16074/shard-dg1-12/igt@gem_eio@unwedge-stress.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-13/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@bonded-dual:
- shard-dg2-9: NOTRUN -> [SKIP][34] ([i915#4771])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-9/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg1: NOTRUN -> [SKIP][35] ([i915#4036])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-17/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@noheartbeat:
- shard-mtlp: NOTRUN -> [SKIP][36] ([i915#8555])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-1/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-tglu: NOTRUN -> [SKIP][37] ([i915#4525])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-6/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-rkl: NOTRUN -> [SKIP][38] ([i915#4525]) +2 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-6/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_capture@capture:
- shard-mtlp: NOTRUN -> [FAIL][39] ([i915#11965]) +1 other test fail
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-5/igt@gem_exec_capture@capture.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: NOTRUN -> [SKIP][40] ([i915#6344])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-2/igt@gem_exec_capture@capture-recoverable.html
- shard-tglu-1: NOTRUN -> [SKIP][41] ([i915#6344])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-1/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_endless@dispatch@ccs0:
- shard-dg2: [PASS][42] -> [TIMEOUT][43] ([i915#3778] / [i915#7016]) +1 other test timeout
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16074/shard-dg2-8/igt@gem_exec_endless@dispatch@ccs0.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-3/igt@gem_exec_endless@dispatch@ccs0.html
* igt@gem_exec_fence@concurrent:
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#4812])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-5/igt@gem_exec_fence@concurrent.html
* igt@gem_exec_fence@submit:
- shard-dg2-9: NOTRUN -> [SKIP][45] ([i915#4812])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-9/igt@gem_exec_fence@submit.html
* igt@gem_exec_fence@syncobj-backward-timeline-chain-engines:
- shard-snb: NOTRUN -> [SKIP][46] +427 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-snb1/igt@gem_exec_fence@syncobj-backward-timeline-chain-engines.html
* igt@gem_exec_flush@basic-uc-ro-default:
- shard-dg1: NOTRUN -> [SKIP][47] ([i915#3539] / [i915#4852]) +2 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-13/igt@gem_exec_flush@basic-uc-ro-default.html
* igt@gem_exec_flush@basic-wb-ro-before-default:
- shard-dg2-9: NOTRUN -> [SKIP][48] ([i915#3539] / [i915#4852]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-9/igt@gem_exec_flush@basic-wb-ro-before-default.html
* igt@gem_exec_gttfill@basic:
- shard-rkl: NOTRUN -> [DMESG-WARN][49] ([i915#12917] / [i915#12964])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-1/igt@gem_exec_gttfill@basic.html
* igt@gem_exec_reloc@basic-gtt-active:
- shard-dg2-9: NOTRUN -> [SKIP][50] ([i915#3281]) +3 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-9/igt@gem_exec_reloc@basic-gtt-active.html
* igt@gem_exec_reloc@basic-gtt-wc-noreloc:
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#3281]) +8 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-13/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
* igt@gem_exec_reloc@basic-wc:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#3281]) +8 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-1/igt@gem_exec_reloc@basic-wc.html
* igt@gem_exec_reloc@basic-wc-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#3281]) +7 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-3/igt@gem_exec_reloc@basic-wc-noreloc.html
* igt@gem_exec_reloc@basic-write-read:
- shard-rkl: NOTRUN -> [SKIP][54] ([i915#3281]) +17 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-5/igt@gem_exec_reloc@basic-write-read.html
* igt@gem_exec_schedule@preempt-queue:
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#4812]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-17/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4537] / [i915#4812])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-1/igt@gem_exec_schedule@preempt-queue-contexts.html
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#4537] / [i915#4812])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-2/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: NOTRUN -> [SKIP][58] ([i915#7276])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-7/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-rkl: NOTRUN -> [ABORT][59] ([i915#7975]) +1 other test abort
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-7/igt@gem_exec_suspend@basic-s4-devices.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible:
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#4860])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-13/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html
* igt@gem_fenced_exec_thrash@no-spare-fences-interruptible:
- shard-dg2-9: NOTRUN -> [SKIP][61] ([i915#4860])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-9/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html
* igt@gem_huc_copy@huc-copy:
- shard-glk: NOTRUN -> [SKIP][62] ([i915#2190])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-glk7/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-tglu: NOTRUN -> [SKIP][63] ([i915#4613] / [i915#7582])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-3/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4613]) +2 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-3/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-tglu: NOTRUN -> [SKIP][65] ([i915#4613]) +2 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-3/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-rkl: NOTRUN -> [SKIP][66] ([i915#4613]) +7 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-4/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][67] ([i915#4613]) +2 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-glk: NOTRUN -> [SKIP][68] ([i915#4613]) +6 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-glk6/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_media_fill@media-fill:
- shard-mtlp: NOTRUN -> [SKIP][69] ([i915#8289])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-2/igt@gem_media_fill@media-fill.html
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#8289])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-3/igt@gem_media_fill@media-fill.html
* igt@gem_media_vme:
- shard-tglu: NOTRUN -> [SKIP][71] ([i915#284])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-7/igt@gem_media_vme.html
* igt@gem_mmap_gtt@bad-object:
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4077]) +3 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-6/igt@gem_mmap_gtt@bad-object.html
* igt@gem_mmap_gtt@big-copy-odd:
- shard-dg2-9: NOTRUN -> [SKIP][73] ([i915#4077]) +3 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-9/igt@gem_mmap_gtt@big-copy-odd.html
* igt@gem_mmap_gtt@close-race:
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#4077]) +9 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-14/igt@gem_mmap_gtt@close-race.html
* igt@gem_mmap_gtt@medium-copy-xy:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#4077]) +9 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-5/igt@gem_mmap_gtt@medium-copy-xy.html
* igt@gem_mmap_wc@close:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#4083]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-7/igt@gem_mmap_wc@close.html
* igt@gem_mmap_wc@write:
- shard-mtlp: NOTRUN -> [SKIP][77] ([i915#4083]) +3 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-4/igt@gem_mmap_wc@write.html
* igt@gem_mmap_wc@write-read:
- shard-dg1: NOTRUN -> [SKIP][78] ([i915#4083]) +4 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-13/igt@gem_mmap_wc@write-read.html
* igt@gem_partial_pwrite_pread@write-snoop:
- shard-dg2-9: NOTRUN -> [SKIP][79] ([i915#3282]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-9/igt@gem_partial_pwrite_pread@write-snoop.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-mtlp: NOTRUN -> [SKIP][80] ([i915#3282]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-6/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][81] ([i915#3282]) +10 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pread@bench:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#3282]) +2 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-10/igt@gem_pread@bench.html
* igt@gem_pxp@create-regular-buffer:
- shard-dg1: NOTRUN -> [SKIP][83] ([i915#4270])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-18/igt@gem_pxp@create-regular-buffer.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-rkl: NOTRUN -> [TIMEOUT][84] ([i915#12964]) +1 other test timeout
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-5/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-rkl: NOTRUN -> [TIMEOUT][85] ([i915#12917] / [i915#12964]) +7 other tests timeout
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-2/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg2-9: NOTRUN -> [SKIP][86] ([i915#4270])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-9/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#4270]) +2 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-11/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_readwrite@write-bad-handle:
- shard-dg1: NOTRUN -> [SKIP][88] ([i915#3282]) +4 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-13/igt@gem_readwrite@write-bad-handle.html
* igt@gem_render_copy@linear-to-vebox-yf-tiled:
- shard-dg2-9: NOTRUN -> [SKIP][89] ([i915#5190] / [i915#8428]) +3 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-9/igt@gem_render_copy@linear-to-vebox-yf-tiled.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#5190] / [i915#8428]) +3 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-8/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
- shard-glk: NOTRUN -> [SKIP][91] +475 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-glk9/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][92] ([i915#8428]) +2 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-7/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs.html
* igt@gem_render_tiled_blits@basic:
- shard-dg2: NOTRUN -> [SKIP][93] ([i915#4079])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-2/igt@gem_render_tiled_blits@basic.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-dg1: NOTRUN -> [SKIP][94] ([i915#4079])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-12/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-rkl: NOTRUN -> [SKIP][95] ([i915#8411]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-2/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_softpin@evict-snoop:
- shard-dg1: NOTRUN -> [SKIP][96] ([i915#4885])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-13/igt@gem_softpin@evict-snoop.html
- shard-dg2-9: NOTRUN -> [SKIP][97] ([i915#4885])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-9/igt@gem_softpin@evict-snoop.html
* igt@gem_unfence_active_buffers:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#4879])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-10/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-tglu: NOTRUN -> [SKIP][99] ([i915#3297]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-2/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-tglu: NOTRUN -> [SKIP][100] ([i915#3297] / [i915#3323])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-2/igt@gem_userptr_blits@dmabuf-sync.html
- shard-glk: NOTRUN -> [SKIP][101] ([i915#3323])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-glk8/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg1: NOTRUN -> [SKIP][102] ([i915#3297])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-17/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-dg2: NOTRUN -> [SKIP][103] ([i915#3297] / [i915#4880])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-8/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg2-9: NOTRUN -> [SKIP][104] ([i915#3297] / [i915#4880])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-9/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-rkl: NOTRUN -> [SKIP][105] ([i915#3297]) +2 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-4/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gem_userptr_blits@relocations:
- shard-rkl: NOTRUN -> [SKIP][106] ([i915#3281] / [i915#3297])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-5/igt@gem_userptr_blits@relocations.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg1: NOTRUN -> [SKIP][107] ([i915#3297] / [i915#4958])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-13/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-dg2-9: NOTRUN -> [SKIP][108] ([i915#3297]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-9/igt@gem_userptr_blits@unsync-unmap.html
* igt@gen3_render_linear_blits:
- shard-dg2: NOTRUN -> [SKIP][109] +6 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-5/igt@gen3_render_linear_blits.html
* igt@gen7_exec_parse@bitmasks:
- shard-dg2-9: NOTRUN -> [SKIP][110] +2 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-9/igt@gen7_exec_parse@bitmasks.html
* igt@gen7_exec_parse@cmd-crossing-page:
- shard-mtlp: NOTRUN -> [SKIP][111] +10 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-8/igt@gen7_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@batch-without-end:
- shard-rkl: NOTRUN -> [SKIP][112] ([i915#2527]) +5 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-6/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@bb-large:
- shard-dg1: NOTRUN -> [SKIP][113] ([i915#2527]) +3 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-14/igt@gen9_exec_parse@bb-large.html
* igt@gen9_exec_parse@bb-secure:
- shard-dg2-9: NOTRUN -> [SKIP][114] ([i915#2856])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-9/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@bb-start-param:
- shard-tglu-1: NOTRUN -> [SKIP][115] ([i915#2527] / [i915#2856]) +2 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-1/igt@gen9_exec_parse@bb-start-param.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-tglu: NOTRUN -> [SKIP][116] ([i915#2527] / [i915#2856]) +2 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-4/igt@gen9_exec_parse@cmd-crossing-page.html
- shard-mtlp: NOTRUN -> [SKIP][117] ([i915#2856]) +2 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-5/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#2856]) +2 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-10/igt@gen9_exec_parse@unaligned-jump.html
* igt@i915_fb_tiling:
- shard-dg2-9: NOTRUN -> [SKIP][119] ([i915#4881])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-9/igt@i915_fb_tiling.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg2: [PASS][120] -> [ABORT][121] ([i915#10887] / [i915#13592])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16074/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html
- shard-snb: NOTRUN -> [ABORT][122] ([i915#9820])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-snb5/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rpm@debugfs-forcewake-user:
- shard-rkl: [PASS][123] -> [SKIP][124] ([i915#13328])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16074/shard-rkl-1/igt@i915_pm_rpm@debugfs-forcewake-user.html
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-1/igt@i915_pm_rpm@debugfs-forcewake-user.html
* igt@i915_pm_rpm@system-suspend:
- shard-rkl: NOTRUN -> [SKIP][125] ([i915#13328])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-5/igt@i915_pm_rpm@system-suspend.html
* igt@i915_pm_rps@basic-api:
- shard-dg2: NOTRUN -> [SKIP][126] ([i915#11681] / [i915#6621])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-7/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-mtlp: NOTRUN -> [SKIP][127] ([i915#11681] / [i915#6621])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-4/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@thresholds-idle:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#11681])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-1/igt@i915_pm_rps@thresholds-idle.html
* igt@i915_power@sanity:
- shard-rkl: NOTRUN -> [SKIP][129] ([i915#7984])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-3/igt@i915_power@sanity.html
* igt@i915_query@hwconfig_table:
- shard-rkl: NOTRUN -> [SKIP][130] ([i915#6245])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-5/igt@i915_query@hwconfig_table.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#6188])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-3/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_query@test-query-geometry-subslices:
- shard-tglu-1: NOTRUN -> [SKIP][132] ([i915#5723])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-1/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_selftest@live@workarounds:
- shard-mtlp: [PASS][133] -> [DMESG-FAIL][134] ([i915#12061]) +1 other test dmesg-fail
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16074/shard-mtlp-7/igt@i915_selftest@live@workarounds.html
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-6/igt@i915_selftest@live@workarounds.html
* igt@i915_selftest@mock:
- shard-snb: NOTRUN -> [DMESG-WARN][135] ([i915#9311]) +1 other test dmesg-warn
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-snb5/igt@i915_selftest@mock.html
* igt@i915_selftest@mock@memory_region:
- shard-dg2-9: NOTRUN -> [DMESG-WARN][136] ([i915#9311]) +1 other test dmesg-warn
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-9/igt@i915_selftest@mock@memory_region.html
- shard-dg1: NOTRUN -> [DMESG-WARN][137] ([i915#9311]) +1 other test dmesg-warn
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-13/igt@i915_selftest@mock@memory_region.html
* igt@i915_suspend@fence-restore-untiled:
- shard-rkl: NOTRUN -> [DMESG-FAIL][138] ([i915#12964]) +1 other test dmesg-fail
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-6/igt@i915_suspend@fence-restore-untiled.html
* igt@i915_suspend@forcewake:
- shard-glk: NOTRUN -> [INCOMPLETE][139] ([i915#4817])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-glk6/igt@i915_suspend@forcewake.html
* igt@i915_suspend@sysfs-reader:
- shard-glk: [PASS][140] -> [INCOMPLETE][141] ([i915#4817]) +1 other test incomplete
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16074/shard-glk8/igt@i915_suspend@sysfs-reader.html
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-glk9/igt@i915_suspend@sysfs-reader.html
* igt@intel_hwmon@hwmon-write:
- shard-tglu: NOTRUN -> [SKIP][142] ([i915#7707])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-8/igt@intel_hwmon@hwmon-write.html
- shard-mtlp: NOTRUN -> [SKIP][143] ([i915#7707])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-6/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-mtlp: NOTRUN -> [SKIP][144] ([i915#4212])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-2/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#5190]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-7/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#4215] / [i915#5190])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@bo-too-small-due-to-tiling:
- shard-dg1: NOTRUN -> [SKIP][147] ([i915#4212]) +1 other test skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-18/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#12454] / [i915#12712])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-tglu: [PASS][149] -> [FAIL][150] ([i915#10991]) +1 other test fail
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16074/shard-tglu-2/igt@kms_async_flips@alternate-sync-async-flip.html
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-3/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#8709]) +3 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][152] ([i915#8709]) +15 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc-ccs-cc:
- shard-dg1: NOTRUN -> [SKIP][153] ([i915#8709]) +3 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-14/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc-ccs-cc.html
* igt@kms_async_flips@invalid-async-flip-atomic:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#12967])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-10/igt@kms_async_flips@invalid-async-flip-atomic.html
* igt@kms_atomic_transition@modeset-transition-nonblocking:
- shard-glk: NOTRUN -> [FAIL][155] ([i915#12177])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-glk8/igt@kms_atomic_transition@modeset-transition-nonblocking.html
* igt@kms_atomic_transition@modeset-transition-nonblocking@2x-outputs:
- shard-glk: NOTRUN -> [FAIL][156] ([i915#11859])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-glk8/igt@kms_atomic_transition@modeset-transition-nonblocking@2x-outputs.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-snb: NOTRUN -> [SKIP][157] ([i915#1769])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-snb4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-tglu: NOTRUN -> [SKIP][158] ([i915#1769] / [i915#3555])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][159] ([i915#5956])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-14/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-4.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-tglu-1: NOTRUN -> [SKIP][160] ([i915#1769] / [i915#3555])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][161] ([i915#5286]) +10 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-5/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- shard-tglu: NOTRUN -> [SKIP][162] ([i915#5286]) +4 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-8/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-dg1: NOTRUN -> [SKIP][163] ([i915#5286])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-13/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][164] ([i915#4538] / [i915#5286]) +7 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-tglu-1: NOTRUN -> [SKIP][165] ([i915#5286]) +2 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][166] ([i915#3638]) +5 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-1/igt@kms_big_fb@linear-32bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][167] ([i915#3638]) +3 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-13/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-mtlp: NOTRUN -> [SKIP][168] ([i915#6187])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-2/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg2-9: NOTRUN -> [SKIP][169] ([i915#4538] / [i915#5190]) +4 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][170] +33 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-4/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#4538] / [i915#5190]) +6 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-4/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][172] ([i915#4538]) +7 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-14/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-tglu-1: NOTRUN -> [SKIP][173] +48 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-dg2-9: NOTRUN -> [SKIP][174] ([i915#12313]) +1 other test skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-9/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][175] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-4/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][176] ([i915#6095]) +74 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-4/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-tglu: NOTRUN -> [SKIP][177] ([i915#12313])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-2/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][178] ([i915#12313]) +2 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-17/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][179] ([i915#6095]) +135 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][180] ([i915#6095]) +29 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-7/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-a-edp-1.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-2:
- shard-dg2-9: NOTRUN -> [SKIP][181] ([i915#10307] / [i915#6095]) +4 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-9/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#12805])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-dg1: NOTRUN -> [SKIP][183] ([i915#6095]) +134 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-17/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-2:
- shard-dg2-9: NOTRUN -> [SKIP][184] ([i915#6095]) +9 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-9/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-b-dp-4:
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#6095]) +11 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-10/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-b-dp-4.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][186] ([i915#10307] / [i915#6095]) +197 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][187] ([i915#6095]) +34 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-1/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][188] ([i915#12313]) +1 other test skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-4/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_cdclk@mode-transition:
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#3742])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-2/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-tglu: NOTRUN -> [SKIP][190] ([i915#3742])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-4/igt@kms_cdclk@mode-transition-all-outputs.html
- shard-dg2-9: NOTRUN -> [SKIP][191] ([i915#11616] / [i915#7213])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-9/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_audio@hdmi-audio:
- shard-dg2-9: NOTRUN -> [SKIP][192] ([i915#11151] / [i915#7828]) +4 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-9/igt@kms_chamelium_audio@hdmi-audio.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][193] ([i915#11151] / [i915#7828]) +4 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-7/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-tglu: NOTRUN -> [SKIP][194] ([i915#11151] / [i915#7828]) +5 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-9/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-rkl: NOTRUN -> [SKIP][195] ([i915#11151] / [i915#7828]) +16 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-3/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode:
- shard-mtlp: NOTRUN -> [SKIP][196] ([i915#11151] / [i915#7828]) +2 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-5/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-dg1: NOTRUN -> [SKIP][197] ([i915#11151] / [i915#7828]) +5 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-13/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
- shard-tglu-1: NOTRUN -> [SKIP][198] ([i915#11151] / [i915#7828]) +3 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
* igt@kms_content_protection@atomic:
- shard-rkl: NOTRUN -> [SKIP][199] ([i915#7118] / [i915#9424])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-1/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@content-type-change:
- shard-tglu: NOTRUN -> [SKIP][200] ([i915#6944] / [i915#9424])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-3/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-tglu-1: NOTRUN -> [SKIP][201] ([i915#3116] / [i915#3299])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-1/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-tglu: NOTRUN -> [SKIP][202] ([i915#3116] / [i915#3299])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-10/igt@kms_content_protection@dp-mst-lic-type-1.html
- shard-dg2-9: NOTRUN -> [SKIP][203] ([i915#3299])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-9/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-rkl: NOTRUN -> [SKIP][204] ([i915#3116])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-2/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2: NOTRUN -> [SKIP][205] ([i915#9424])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-2/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@mei-interface:
- shard-rkl: NOTRUN -> [SKIP][206] ([i915#9424]) +1 other test skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-7/igt@kms_content_protection@mei-interface.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-tglu-1: NOTRUN -> [SKIP][207] ([i915#3555])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-dg2-9: NOTRUN -> [SKIP][208] ([i915#13049])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-9/igt@kms_cursor_crc@cursor-offscreen-512x170.html
- shard-dg1: NOTRUN -> [SKIP][209] ([i915#13049]) +1 other test skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-13/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1:
- shard-rkl: [PASS][210] -> [DMESG-FAIL][211] ([i915#12964]) +1 other test dmesg-fail
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16074/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1.html
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][212] -> [FAIL][213] ([i915#13566]) +5 other tests fail
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16074/shard-tglu-3/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-8/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#13049]) +1 other test skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-2/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-tglu-1: NOTRUN -> [SKIP][215] ([i915#13049]) +1 other test skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-1/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-128x42:
- shard-mtlp: NOTRUN -> [SKIP][216] ([i915#8814]) +1 other test skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-7/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-rkl: NOTRUN -> [SKIP][217] ([i915#3555]) +8 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-1/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
- shard-dg1: NOTRUN -> [SKIP][218] ([i915#3555]) +4 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-13/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
- shard-tglu: NOTRUN -> [SKIP][219] ([i915#3555]) +4 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-10/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
- shard-mtlp: NOTRUN -> [SKIP][220] ([i915#3555] / [i915#8814]) +2 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-7/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][221] ([i915#13566])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#3555]) +4 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-3/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [FAIL][223] ([i915#13566]) +1 other test fail
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-4:
- shard-dg1: [PASS][224] -> [DMESG-WARN][225] ([i915#4423]) +2 other tests dmesg-warn
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16074/shard-dg1-17/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-4.html
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-14/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-4.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-dg2-9: NOTRUN -> [SKIP][226] ([i915#13046] / [i915#5354]) +2 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-9/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-tglu-1: NOTRUN -> [SKIP][227] ([i915#4103])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-mtlp: NOTRUN -> [SKIP][228] ([i915#4213])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-dg1: NOTRUN -> [SKIP][229] ([i915#4103] / [i915#4213])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-18/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
- shard-mtlp: NOTRUN -> [SKIP][230] ([i915#9809]) +1 other test skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#13046] / [i915#5354]) +1 other test skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#9067])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-2/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#4103] / [i915#4213]) +1 other test skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-rkl: NOTRUN -> [SKIP][234] ([i915#4103]) +1 other test skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-dg1: NOTRUN -> [SKIP][235] ([i915#9723])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-18/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-rkl: NOTRUN -> [SKIP][236] ([i915#8588])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-5/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-rkl: NOTRUN -> [SKIP][237] ([i915#3555] / [i915#3804])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][238] ([i915#3804])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dp_aux_dev:
- shard-rkl: NOTRUN -> [SKIP][239] ([i915#1257])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-1/igt@kms_dp_aux_dev.html
- shard-tglu-1: NOTRUN -> [SKIP][240] ([i915#1257])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-1/igt@kms_dp_aux_dev.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-rkl: NOTRUN -> [SKIP][241] ([i915#12402])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-7/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-rkl: NOTRUN -> [SKIP][242] ([i915#3840])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-1/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-bpc:
- shard-tglu: NOTRUN -> [SKIP][243] ([i915#3555] / [i915#3840])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-2/igt@kms_dsc@dsc-with-bpc.html
- shard-mtlp: NOTRUN -> [SKIP][244] ([i915#3555] / [i915#3840])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-8/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2-9: NOTRUN -> [SKIP][245] ([i915#3555] / [i915#3840])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-9/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#3840] / [i915#9053])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-8/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
- shard-rkl: NOTRUN -> [SKIP][247] ([i915#3840] / [i915#9053])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
- shard-dg1: NOTRUN -> [SKIP][248] ([i915#3840] / [i915#9053])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-14/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
- shard-tglu: NOTRUN -> [SKIP][249] ([i915#3840] / [i915#9053])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-2/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
- shard-mtlp: NOTRUN -> [SKIP][250] ([i915#3555] / [i915#3840] / [i915#9053])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-6/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr:
- shard-tglu: NOTRUN -> [SKIP][251] ([i915#3469])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-10/igt@kms_fbcon_fbt@psr.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: NOTRUN -> [SKIP][252] ([i915#3955])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-7/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2-9: NOTRUN -> [SKIP][253] ([i915#4854])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-9/igt@kms_feature_discovery@chamelium.html
- shard-rkl: NOTRUN -> [SKIP][254] ([i915#4854])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-1/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-tglu-1: NOTRUN -> [SKIP][255] ([i915#1839])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-1/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-3x:
- shard-rkl: NOTRUN -> [SKIP][256] ([i915#1839]) +1 other test skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-7/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@dp-mst:
- shard-rkl: NOTRUN -> [SKIP][257] ([i915#9337])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-4/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-rkl: NOTRUN -> [SKIP][258] ([i915#658])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-4/igt@kms_feature_discovery@psr1.html
- shard-dg1: NOTRUN -> [SKIP][259] ([i915#658])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-13/igt@kms_feature_discovery@psr1.html
* igt@kms_fence_pin_leak:
- shard-dg2: NOTRUN -> [SKIP][260] ([i915#4881])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-6/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-dpms-vs-vblank-race-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][261] ([i915#3637]) +2 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-2/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-dg2-9: NOTRUN -> [SKIP][262] ([i915#9934]) +3 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-9/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-rkl: NOTRUN -> [SKIP][263] ([i915#9934]) +13 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-7/igt@kms_flip@2x-flip-vs-dpms.html
- shard-tglu: NOTRUN -> [SKIP][264] ([i915#3637]) +5 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-8/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg2-9: NOTRUN -> [SKIP][265] ([i915#8381])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-9/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-dg2: NOTRUN -> [SKIP][266] ([i915#9934]) +4 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-11/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-plain-flip:
- shard-dg1: NOTRUN -> [SKIP][267] ([i915#9934]) +11 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-12/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-snb: NOTRUN -> [FAIL][268] ([i915#11989]) +1 other test fail
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-snb4/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-tglu-1: NOTRUN -> [SKIP][269] ([i915#3637]) +2 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-1/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-rkl: NOTRUN -> [FAIL][270] ([i915#11989]) +2 other tests fail
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-1/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
- shard-tglu: [PASS][271] -> [FAIL][272] ([i915#11989]) +3 other tests fail
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16074/shard-tglu-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg1: NOTRUN -> [SKIP][273] ([i915#8381])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-17/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][274] ([i915#2672] / [i915#8813]) +4 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-dg2-9: NOTRUN -> [SKIP][275] ([i915#2672] / [i915#3555])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][276] ([i915#2672] / [i915#3555]) +1 other test skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
- shard-mtlp: NOTRUN -> [SKIP][277] ([i915#2672] / [i915#3555] / [i915#8813]) +4 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-dg1: NOTRUN -> [SKIP][278] ([i915#2587] / [i915#2672] / [i915#3555]) +1 other test skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
- shard-tglu: NOTRUN -> [SKIP][279] ([i915#2587] / [i915#2672] / [i915#3555]) +2 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
- shard-dg2-9: NOTRUN -> [SKIP][280] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][281] ([i915#2672]) +5 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
- shard-dg2-9: NOTRUN -> [SKIP][282] ([i915#2672]) +3 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][283] ([i915#2587] / [i915#2672]) +4 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][284] ([i915#2672] / [i915#3555]) +2 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
- shard-dg1: NOTRUN -> [SKIP][285] ([i915#2672] / [i915#3555]) +3 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][286] ([i915#2587] / [i915#2672]) +2 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html
- shard-dg1: NOTRUN -> [SKIP][287] ([i915#2587] / [i915#2672]) +5 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][288] ([i915#2672] / [i915#3555]) +5 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][289] ([i915#3555] / [i915#8810] / [i915#8813])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][290] ([i915#3555] / [i915#8810])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][291] ([i915#2672] / [i915#3555])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][292] ([i915#2672])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-pwrite:
- shard-dg2: NOTRUN -> [FAIL][293] ([i915#6880])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][294] ([i915#8708]) +13 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen:
- shard-dg2: [PASS][295] -> [FAIL][296] ([i915#6880]) +1 other test fail
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16074/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff:
- shard-dg1: NOTRUN -> [SKIP][297] ([i915#4423])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
- shard-snb: [PASS][298] -> [SKIP][299] +2 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16074/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][300] +50 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:
- shard-dg2: NOTRUN -> [SKIP][301] ([i915#5354]) +24 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-rkl: [PASS][302] -> [DMESG-WARN][303] ([i915#12917] / [i915#12964]) +2 other tests dmesg-warn
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16074/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-suspend.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-dg1: NOTRUN -> [SKIP][304] ([i915#5439])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][305] ([i915#10055])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][306] ([i915#3458]) +13 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-cpu:
- shard-dg2-9: NOTRUN -> [SKIP][307] ([i915#3458]) +3 other tests skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][308] ([i915#8708]) +20 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-rte:
- shard-rkl: NOTRUN -> [SKIP][309] ([i915#3023]) +41 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][310] ([i915#3458]) +20 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][311] ([i915#5439])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-dg2-9: NOTRUN -> [SKIP][312] ([i915#8708]) +7 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff:
- shard-dg2-9: NOTRUN -> [SKIP][313] ([i915#5354]) +14 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][314] ([i915#1825]) +67 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
- shard-mtlp: NOTRUN -> [SKIP][315] ([i915#1825]) +19 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][316] +77 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][317] ([i915#8708]) +6 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-dg2: NOTRUN -> [SKIP][318] ([i915#3555] / [i915#8228])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-7/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@brightness-with-hdr:
- shard-mtlp: NOTRUN -> [SKIP][319] ([i915#12713])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-6/igt@kms_hdr@brightness-with-hdr.html
- shard-dg2: NOTRUN -> [SKIP][320] ([i915#12713])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-4/igt@kms_hdr@brightness-with-hdr.html
- shard-rkl: NOTRUN -> [SKIP][321] ([i915#12713])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-1/igt@kms_hdr@brightness-with-hdr.html
- shard-tglu-1: NOTRUN -> [SKIP][322] ([i915#12713])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-1/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-hdr:
- shard-dg1: NOTRUN -> [SKIP][323] ([i915#3555] / [i915#8228])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-14/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg2: [PASS][324] -> [SKIP][325] ([i915#3555] / [i915#8228]) +1 other test skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16074/shard-dg2-10/igt@kms_hdr@invalid-metadata-sizes.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-3/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-swap:
- shard-tglu-1: NOTRUN -> [SKIP][326] ([i915#3555] / [i915#8228]) +1 other test skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-1/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle:
- shard-rkl: NOTRUN -> [SKIP][327] ([i915#3555] / [i915#8228]) +3 other tests skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-5/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-suspend:
- shard-tglu: NOTRUN -> [SKIP][328] ([i915#3555] / [i915#8228])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-6/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][329] ([i915#10656])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-2/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][330] ([i915#12394])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-4/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][331] ([i915#12339])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-1/igt@kms_joiner@basic-ultra-joiner.html
- shard-dg1: NOTRUN -> [SKIP][332] ([i915#12339]) +1 other test skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-13/igt@kms_joiner@basic-ultra-joiner.html
- shard-tglu: NOTRUN -> [SKIP][333] ([i915#12339])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-6/igt@kms_joiner@basic-ultra-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][334] ([i915#12339])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-4/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][335] ([i915#12388])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2-9: NOTRUN -> [SKIP][336] ([i915#12339])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-9/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][337] ([i915#13522])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-3/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-dg1: NOTRUN -> [SKIP][338] ([i915#13522])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-12/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-mtlp: NOTRUN -> [SKIP][339] ([i915#4816])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-dg2-9: NOTRUN -> [SKIP][340] ([i915#4816])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-9/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-tglu: NOTRUN -> [SKIP][341] ([i915#1839])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-10/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-glk: NOTRUN -> [INCOMPLETE][342] ([i915#12756] / [i915#13409] / [i915#13476])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-glk8/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][343] ([i915#13409] / [i915#13476])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-glk8/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b:
- shard-glk: NOTRUN -> [INCOMPLETE][344] ([i915#13026])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-glk7/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb:
- shard-glk: NOTRUN -> [FAIL][345] ([i915#10647] / [i915#12169])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-glk2/igt@kms_plane_alpha_blend@alpha-opaque-fb.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][346] ([i915#10647]) +1 other test fail
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-glk2/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][347] ([i915#8806])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-4/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-dg2-9: NOTRUN -> [SKIP][348] ([i915#13046] / [i915#5354] / [i915#9423])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-9/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a:
- shard-dg1: NOTRUN -> [SKIP][349] ([i915#12247]) +13 other tests skip
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-12/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][350] ([i915#12247]) +9 other tests skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-7/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
- shard-mtlp: NOTRUN -> [SKIP][351] ([i915#12247]) +10 other tests skip
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- shard-tglu-1: NOTRUN -> [SKIP][352] ([i915#12247]) +8 other tests skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][353] ([i915#12247] / [i915#6953]) +1 other test skip
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- shard-dg2: NOTRUN -> [SKIP][354] ([i915#12247] / [i915#9423])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][355] ([i915#12247]) +7 other tests skip
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-tglu-1: NOTRUN -> [SKIP][356] ([i915#12247] / [i915#6953])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b:
- shard-rkl: NOTRUN -> [SKIP][357] ([i915#12247]) +14 other tests skip
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5:
- shard-mtlp: NOTRUN -> [SKIP][358] ([i915#6953])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-dg1: NOTRUN -> [SKIP][359] ([i915#12247] / [i915#3555])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-12/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][360] ([i915#12247] / [i915#6953] / [i915#9423])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
* igt@kms_pm_backlight@bad-brightness:
- shard-rkl: NOTRUN -> [SKIP][361] ([i915#5354]) +1 other test skip
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-1/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-tglu: NOTRUN -> [SKIP][362] ([i915#12343])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-2/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-dg1: NOTRUN -> [SKIP][363] ([i915#5354]) +2 other tests skip
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-13/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg1: NOTRUN -> [SKIP][364] ([i915#3361])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-14/igt@kms_pm_dc@dc6-dpms.html
- shard-tglu: NOTRUN -> [FAIL][365] ([i915#9295])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-4/igt@kms_pm_dc@dc6-dpms.html
- shard-mtlp: NOTRUN -> [FAIL][366] ([i915#12913])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-1/igt@kms_pm_dc@dc6-dpms.html
- shard-dg2-9: NOTRUN -> [SKIP][367] ([i915#5978])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-9/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg2: NOTRUN -> [SKIP][368] ([i915#9685])
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-3/igt@kms_pm_dc@dc6-psr.html
- shard-rkl: NOTRUN -> [SKIP][369] ([i915#9685]) +2 other tests skip
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-4/igt@kms_pm_dc@dc6-psr.html
- shard-tglu: NOTRUN -> [SKIP][370] ([i915#9685])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-9/igt@kms_pm_dc@dc6-psr.html
- shard-mtlp: NOTRUN -> [FAIL][371] ([i915#12912])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-2/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg1: NOTRUN -> [SKIP][372] ([i915#9340])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-18/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2-9: NOTRUN -> [SKIP][373] ([i915#9519])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-9/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-dg1: NOTRUN -> [SKIP][374] ([i915#9519])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-18/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: [PASS][375] -> [SKIP][376] ([i915#9519]) +1 other test skip
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16074/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-2/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: NOTRUN -> [SKIP][377] ([i915#9519]) +1 other test skip
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-tglu-1: NOTRUN -> [SKIP][378] ([i915#9519])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_prime@basic-crc-hybrid:
- shard-dg1: NOTRUN -> [SKIP][379] ([i915#6524])
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-12/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: NOTRUN -> [SKIP][380] ([i915#6524])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-7/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg2: NOTRUN -> [SKIP][381] ([i915#11520]) +9 other tests skip
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-4/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
- shard-snb: NOTRUN -> [SKIP][382] ([i915#11520]) +12 other tests skip
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-snb2/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-tglu: NOTRUN -> [SKIP][383] ([i915#11520]) +5 other tests skip
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-10/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-glk: NOTRUN -> [SKIP][384] ([i915#11520]) +14 other tests skip
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-glk2/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][385] ([i915#9808]) +3 other tests skip
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][386] ([i915#12316]) +4 other tests skip
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg2-9: NOTRUN -> [SKIP][387] ([i915#11520]) +3 other tests skip
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-9/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][388] ([i915#11520]) +7 other tests skip
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-12/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf:
- shard-tglu-1: NOTRUN -> [SKIP][389] ([i915#11520]) +4 other tests skip
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][390] ([i915#11520]) +18 other tests skip
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-4/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-tglu: NOTRUN -> [SKIP][391] ([i915#9683])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-3/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg1: NOTRUN -> [SKIP][392] ([i915#9683])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-17/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-cursor-mmap-cpu:
- shard-dg2-9: NOTRUN -> [SKIP][393] ([i915#1072] / [i915#9732]) +9 other tests skip
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-9/igt@kms_psr@fbc-psr-cursor-mmap-cpu.html
* igt@kms_psr@fbc-psr-cursor-plane-move:
- shard-dg2: NOTRUN -> [SKIP][394] ([i915#1072] / [i915#9732]) +20 other tests skip
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-4/igt@kms_psr@fbc-psr-cursor-plane-move.html
* igt@kms_psr@fbc-psr-cursor-plane-onoff:
- shard-tglu: NOTRUN -> [SKIP][395] ([i915#9732]) +24 other tests skip
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-2/igt@kms_psr@fbc-psr-cursor-plane-onoff.html
- shard-mtlp: NOTRUN -> [SKIP][396] ([i915#9688]) +17 other tests skip
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-8/igt@kms_psr@fbc-psr-cursor-plane-onoff.html
* igt@kms_psr@fbc-psr2-cursor-blt:
- shard-dg1: NOTRUN -> [SKIP][397] ([i915#1072] / [i915#9732]) +24 other tests skip
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-17/igt@kms_psr@fbc-psr2-cursor-blt.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-tglu-1: NOTRUN -> [SKIP][398] ([i915#9732]) +10 other tests skip
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-1/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@psr2-cursor-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][399] ([i915#1072] / [i915#9732]) +37 other tests skip
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-4/igt@kms_psr@psr2-cursor-mmap-gtt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-tglu-1: NOTRUN -> [SKIP][400] ([i915#9685]) +1 other test skip
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2-9: NOTRUN -> [SKIP][401] ([i915#9685])
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-9/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-dg2: NOTRUN -> [SKIP][402] ([i915#12755])
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-6/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][403] ([i915#12755] / [i915#5190])
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
- shard-mtlp: NOTRUN -> [SKIP][404] ([i915#12755])
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-mtlp-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg1: NOTRUN -> [SKIP][405] ([i915#5289])
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-14/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-dg2-9: NOTRUN -> [SKIP][406] ([i915#5190])
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg2-9/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-rkl: NOTRUN -> [SKIP][407] ([i915#5289]) +2 other tests skip
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_selftest@drm_framebuffer:
- shard-rkl: NOTRUN -> [ABORT][408] ([i915#13179]) +1 other test abort
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-rkl-7/igt@kms_selftest@drm_framebuffer.html
- shard-glk: NOTRUN -> [ABORT][409] ([i915#13179]) +1 other test abort
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-glk3/igt@kms_selftest@drm_framebuffer.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg1: NOTRUN -> [SKIP][410] ([i915#8623])
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-dg1-18/igt@kms_tiled_display@basic-test-pattern.html
- shard-tglu: NOTRUN -> [SKIP][411] ([i915#8623])
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/shard-tglu-9/igt@kms_tiled_display@basic-test-pattern.html
- shard-mtlp: NOTRUN -> [SKIP][412] ([i915#8623])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/I
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12548/index.html
[-- Attachment #2: Type: text/html, Size: 110197 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2025-02-06 17:27 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
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 ` [PATCH v4 i-g-t 2/2] tests/intel/xe_sriov_flr: Add flr-twice subtest 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
2025-02-05 19:13 ` ✓ Xe.CI.BAT: success " Patchwork
2025-02-05 21:16 ` ✗ Xe.CI.Full: failure " Patchwork
2025-02-06 9:58 ` Bernatowicz, Marcin
2025-02-06 12:10 ` ✓ Xe.CI.BAT: success " Patchwork
2025-02-06 12:21 ` ✓ i915.CI.BAT: " Patchwork
2025-02-06 12:59 ` ✗ Xe.CI.Full: failure " Patchwork
2025-02-06 17:27 ` ✗ i915.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox