public inbox for igt-dev@lists.freedesktop.org
 help / color / mirror / Atom feed
* [PATCH i-g-t 0/3] vmtb: SR-IOV VF migration test suite
@ 2026-04-16  8:35 Adam Miszczak
  2026-04-16  8:35 ` [PATCH i-g-t 1/3] tools/vmtb: Define IGT tests used as VF migration workloads Adam Miszczak
                   ` (6 more replies)
  0 siblings, 7 replies; 9+ messages in thread
From: Adam Miszczak @ 2026-04-16  8:35 UTC (permalink / raw)
  To: igt-dev; +Cc: marcin.bernatowicz, kamil.konieczny

Introduce VF migration (save/restore) validation coverage by adding a dedicated migration test suite.

At a high level:
- implement VF migration test scenarios (vmm_flows/test_migration.py):
  idle and busy migration, double migration, checkpointing and auxiliary subtests
- extend IgtExecutor with new mappings for IGT tests intended as busy migration workloads,
  covering subtests from xe_exec_reset, xe_exec_threads, xe_ccs, and xe_compute_preempt
- add IGT/gem_wsim workload descriptor files, providing few workload profiles per platform (BMG/PTL):
  short/long preemptable and non-preemptable GPU batches, and an idle-with-contexts scenario

Most of provided test cases support parametrization with various VF/VM configurations.

Signed-off-by: Adam Miszczak <adam.miszczak@linux.intel.com>
Cc: Marcin Bernatowicz <marcin.bernatowicz@linux.intel.com>
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>

Adam Miszczak (3):
  tools/vmtb: Define IGT tests used as VF migration workloads
  tools/vmtb: Provide VF busy migration IGT/gem_wsim workloads
  tools/vmtb: Add VF migration tests

 tools/vmtb/MANIFEST.in                        |    1 +
 tools/vmtb/bench/executors/igt.py             |   96 +-
 .../resources/wsim/bmg/idle_ctxs.wsim         |   22 +
 .../resources/wsim/bmg/long_nonpreempt.wsim   |   18 +
 .../resources/wsim/bmg/long_preempt.wsim      |   17 +
 .../resources/wsim/bmg/short_nonpreempt.wsim  |   18 +
 .../resources/wsim/bmg/short_preempt.wsim     |   17 +
 .../resources/wsim/ptl/idle_ctxs.wsim         |   21 +
 .../resources/wsim/ptl/long_nonpreempt.wsim   |   17 +
 .../resources/wsim/ptl/long_preempt.wsim      |   16 +
 .../resources/wsim/ptl/short_nonpreempt.wsim  |   17 +
 .../resources/wsim/ptl/short_preempt.wsim     |   16 +
 tools/vmtb/vmm_flows/test_migration.py        | 1199 +++++++++++++++++
 13 files changed, 1469 insertions(+), 6 deletions(-)
 create mode 100644 tools/vmtb/vmm_flows/resources/wsim/bmg/idle_ctxs.wsim
 create mode 100644 tools/vmtb/vmm_flows/resources/wsim/bmg/long_nonpreempt.wsim
 create mode 100644 tools/vmtb/vmm_flows/resources/wsim/bmg/long_preempt.wsim
 create mode 100644 tools/vmtb/vmm_flows/resources/wsim/bmg/short_nonpreempt.wsim
 create mode 100644 tools/vmtb/vmm_flows/resources/wsim/bmg/short_preempt.wsim
 create mode 100644 tools/vmtb/vmm_flows/resources/wsim/ptl/idle_ctxs.wsim
 create mode 100644 tools/vmtb/vmm_flows/resources/wsim/ptl/long_nonpreempt.wsim
 create mode 100644 tools/vmtb/vmm_flows/resources/wsim/ptl/long_preempt.wsim
 create mode 100644 tools/vmtb/vmm_flows/resources/wsim/ptl/short_nonpreempt.wsim
 create mode 100644 tools/vmtb/vmm_flows/resources/wsim/ptl/short_preempt.wsim
 create mode 100644 tools/vmtb/vmm_flows/test_migration.py

-- 
2.39.1


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [PATCH i-g-t 1/3] tools/vmtb: Define IGT tests used as VF migration workloads
  2026-04-16  8:35 [PATCH i-g-t 0/3] vmtb: SR-IOV VF migration test suite Adam Miszczak
@ 2026-04-16  8:35 ` Adam Miszczak
  2026-04-20 18:27   ` Kamil Konieczny
  2026-04-16  8:35 ` [PATCH i-g-t 2/3] tools/vmtb: Provide VF busy migration IGT/gem_wsim workloads Adam Miszczak
                   ` (5 subsequent siblings)
  6 siblings, 1 reply; 9+ messages in thread
From: Adam Miszczak @ 2026-04-16  8:35 UTC (permalink / raw)
  To: igt-dev; +Cc: marcin.bernatowicz, kamil.konieczny

New VF busy migration scenarios are expected to utilize IGT tests as workloads,
specifically several subtests from 'xe_exec_reset', 'xe_exec_threads', 'xe_ccs'
and 'xe_compute_preempt'.
Extend IgtExecutor support for relevant IGTs (IgtType definitions and mappings).

Signed-off-by: Adam Miszczak <adam.miszczak@linux.intel.com>
---
 tools/vmtb/bench/executors/igt.py | 96 +++++++++++++++++++++++++++++--
 1 file changed, 90 insertions(+), 6 deletions(-)

diff --git a/tools/vmtb/bench/executors/igt.py b/tools/vmtb/bench/executors/igt.py
index a08f71d54..f443fb99e 100644
--- a/tools/vmtb/bench/executors/igt.py
+++ b/tools/vmtb/bench/executors/igt.py
@@ -17,17 +17,101 @@ logger = logging.getLogger('IgtExecutor')
 
 
 class IgtType(enum.Enum):
-    EXEC_BASIC = 1
-    EXEC_STORE = 2
-    SPIN_BATCH = 3
+    # Basic/generic IGT tests:
+    EXEC_BASIC = enum.auto()
+    EXEC_STORE = enum.auto()
+    SPIN_BATCH = enum.auto()
+    # VF migration workloads - xe_exec_reset/long_spin subtests:
+    EXEC_RESET_LONG_SPIN_MANY_PREEMPT = enum.auto()
+    EXEC_RESET_LONG_SPIN_MANY_PREEMPT_MEDIA = enum.auto()
+    EXEC_RESET_LONG_SPIN_MANY_PREEMPT_THREADS = enum.auto()
+    EXEC_RESET_LONG_SPIN_MANY_PREEMPT_GT0_THREADS = enum.auto()
+    EXEC_RESET_LONG_SPIN_MANY_PREEMPT_GT1_THREADS = enum.auto()
+    EXEC_RESET_LONG_SPIN_REUSE_MANY_PREEMPT = enum.auto()
+    EXEC_RESET_LONG_SPIN_REUSE_MANY_PREEMPT_MEDIA = enum.auto()
+    EXEC_RESET_LONG_SPIN_REUSE_MANY_PREEMPT_THREADS = enum.auto()
+    EXEC_RESET_LONG_SPIN_REUSE_MANY_PREEMPT_GT0_THREADS = enum.auto()
+    EXEC_RESET_LONG_SPIN_REUSE_MANY_PREEMPT_GT1_THREADS = enum.auto()
+    EXEC_RESET_LONG_SPIN_SYS_REUSE_MANY_PREEMPT_THREADS = enum.auto()
+    EXEC_RESET_LONG_SPIN_COMP_REUSE_MANY_PREEMPT_THREADS = enum.auto()
+    # VF migration workloads - xe_exec_reset/cancel subtests:
+    EXEC_RESET_CANCEL = enum.auto()
+    EXEC_RESET_CANCEL_PREEMPT = enum.auto()
+    EXEC_RESET_CANCEL_TIMESLICE_PREEMPT = enum.auto()
+    EXEC_RESET_CANCEL_TIMESLICE_MANY_PREEMPT = enum.auto()
+    # VF migration workloads - xe_exec_threads subtests:
+    EXEC_THREADS_BASIC = enum.auto()
+    EXEC_THREADS_BAL_BASIC = enum.auto()
+    EXEC_THREADS_CM_USERPTR_INVALIDATE = enum.auto()
+    EXEC_THREADS_BAL_MIXED_USERPTR_INVALIDATE = enum.auto()
+    EXEC_THREADS_MANY_QUEUES = enum.auto()
+    # VF migration workloads - xe_ccs subtest:
+    CCS_BLOCK_COPY_COMPRESSED = enum.auto()
+    # VF migration workloads - xe_compute_preempt subtest:
+    COMPUTE_PREEMPT_MANY = enum.auto()
 
 
 # Mappings of driver specific (i915/xe) IGT instances:
 # {IGT type: (i915 IGT name, xe IGT name)}
 igt_tests: typing.Dict[IgtType, typing.Tuple[str, str]] = {
-    IgtType.EXEC_BASIC: ('igt@gem_exec_basic@basic', 'igt@xe_exec_basic@once-basic'),
-    IgtType.EXEC_STORE: ('igt@gem_exec_store@dword', 'igt@xe_exec_store@basic-store'),
-    IgtType.SPIN_BATCH: ('igt@gem_spin_batch@legacy', 'igt@xe_spin_batch@spin-basic')
+    # Basic/generic IGT tests:
+    IgtType.EXEC_BASIC:
+      ('igt@gem_exec_basic@basic', 'igt@xe_exec_basic@once-basic'),
+    IgtType.EXEC_STORE:
+      ('igt@gem_exec_store@dword', 'igt@xe_exec_store@basic-store'),
+    IgtType.SPIN_BATCH:
+      ('igt@gem_spin_batch@legacy', 'igt@xe_spin_batch@spin-basic'),
+    # VF migration workloads - xe_exec_reset/long_spin subtests:
+    IgtType.EXEC_RESET_LONG_SPIN_MANY_PREEMPT:
+      ('n/a', 'igt@xe_exec_reset@long-spin-many-preempt'),
+    IgtType.EXEC_RESET_LONG_SPIN_MANY_PREEMPT_MEDIA:
+      ('n/a', 'igt@xe_exec_reset@long-spin-many-preempt-media'),
+    IgtType.EXEC_RESET_LONG_SPIN_MANY_PREEMPT_THREADS:
+      ('n/a', 'igt@xe_exec_reset@long-spin-many-preempt-threads'),
+    IgtType.EXEC_RESET_LONG_SPIN_MANY_PREEMPT_GT0_THREADS:
+      ('n/a', 'igt@xe_exec_reset@long-spin-many-preempt-gt0-threads'),
+    IgtType.EXEC_RESET_LONG_SPIN_MANY_PREEMPT_GT1_THREADS:
+      ('n/a', 'igt@xe_exec_reset@long-spin-many-preempt-gt1-threads'),
+    IgtType.EXEC_RESET_LONG_SPIN_REUSE_MANY_PREEMPT:
+      ('n/a', 'igt@xe_exec_reset@long-spin-reuse-many-preempt'),
+    IgtType.EXEC_RESET_LONG_SPIN_REUSE_MANY_PREEMPT_MEDIA:
+      ('n/a', 'igt@xe_exec_reset@long-spin-reuse-many-preempt-media'),
+    IgtType.EXEC_RESET_LONG_SPIN_REUSE_MANY_PREEMPT_THREADS:
+      ('n/a', 'igt@xe_exec_reset@long-spin-reuse-many-preempt-threads'),
+    IgtType.EXEC_RESET_LONG_SPIN_REUSE_MANY_PREEMPT_GT0_THREADS:
+      ('n/a', 'igt@xe_exec_reset@long-spin-reuse-many-preempt-gt0-threads'),
+    IgtType.EXEC_RESET_LONG_SPIN_REUSE_MANY_PREEMPT_GT1_THREADS:
+      ('n/a', 'igt@xe_exec_reset@long-spin-reuse-many-preempt-gt1-threads'),
+    IgtType.EXEC_RESET_LONG_SPIN_SYS_REUSE_MANY_PREEMPT_THREADS:
+      ('n/a', 'igt@xe_exec_reset@long-spin-sys-reuse-many-preempt-threads'),
+    IgtType.EXEC_RESET_LONG_SPIN_COMP_REUSE_MANY_PREEMPT_THREADS:
+      ('n/a', 'igt@xe_exec_reset@long-spin-comp-reuse-many-preempt-threads'),
+    # VF migration workloads - xe_exec_reset/cancel subtests:
+    IgtType.EXEC_RESET_CANCEL:
+      ('n/a', 'igt@xe_exec_reset@cancel'),
+    IgtType.EXEC_RESET_CANCEL_PREEMPT:
+      ('n/a', 'igt@xe_exec_reset@cancel-preempt'),
+    IgtType.EXEC_RESET_CANCEL_TIMESLICE_PREEMPT:
+      ('n/a', 'igt@xe_exec_reset@cancel-timeslice-preempt'),
+    IgtType.EXEC_RESET_CANCEL_TIMESLICE_MANY_PREEMPT:
+      ('n/a', 'igt@xe_exec_reset@cancel-timeslice-many-preempt'),
+    # VF migration workloads - xe_exec_threads subtests:
+    IgtType.EXEC_THREADS_BASIC:
+      ('n/a', 'igt@xe_exec_threads@threads-basic'),
+    IgtType.EXEC_THREADS_BAL_BASIC:
+      ('n/a', 'igt@xe_exec_threads@threads-bal-basic'),
+    IgtType.EXEC_THREADS_CM_USERPTR_INVALIDATE:
+      ('n/a', 'igt@xe_exec_threads@threads-cm-userptr-invalidate'),
+    IgtType.EXEC_THREADS_BAL_MIXED_USERPTR_INVALIDATE:
+      ('n/a', 'igt@xe_exec_threads@threads-bal-mixed-userptr-invalidate'),
+    IgtType.EXEC_THREADS_MANY_QUEUES:
+      ('n/a', 'igt@xe_exec_threads@threads-many-queues'),
+    # VF migration workloads - xe_ccs subtest:
+    IgtType.CCS_BLOCK_COPY_COMPRESSED:
+      ('n/a', 'igt@xe_ccs@block-copy-compressed'),
+    # VF migration workloads - xe_compute_preempt subtest:
+    IgtType.COMPUTE_PREEMPT_MANY:
+      ('n/a', 'igt@xe_compute_preempt@compute-preempt-many')
     }
 
 
-- 
2.39.1


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [PATCH i-g-t 2/3] tools/vmtb: Provide VF busy migration IGT/gem_wsim workloads
  2026-04-16  8:35 [PATCH i-g-t 0/3] vmtb: SR-IOV VF migration test suite Adam Miszczak
  2026-04-16  8:35 ` [PATCH i-g-t 1/3] tools/vmtb: Define IGT tests used as VF migration workloads Adam Miszczak
@ 2026-04-16  8:35 ` Adam Miszczak
  2026-04-16  8:35 ` [PATCH i-g-t 3/3] tools/vmtb: Add VF migration tests Adam Miszczak
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 9+ messages in thread
From: Adam Miszczak @ 2026-04-16  8:35 UTC (permalink / raw)
  To: igt-dev; +Cc: marcin.bernatowicz, kamil.konieczny

Define gem_wsim workload descriptor files for BMG and PTL
consumed by the xe busy migration test scenarios (test_migration.py):
- short_preempt.wsim: short preemptable batches (5ms)
- short_nonpreempt.wsim: short non-preemptable batches (5ms)
- long_preempt.wsim: long preemptable batches (100ms)
- long_nonpreempt.wsim: long non-preemptable batches (100ms)
- idle_ctxs.wsim: idle migration with contexts created

Signed-off-by: Adam Miszczak <adam.miszczak@linux.intel.com>
---
 tools/vmtb/MANIFEST.in                        |  1 +
 .../resources/wsim/bmg/idle_ctxs.wsim         | 22 +++++++++++++++++++
 .../resources/wsim/bmg/long_nonpreempt.wsim   | 18 +++++++++++++++
 .../resources/wsim/bmg/long_preempt.wsim      | 17 ++++++++++++++
 .../resources/wsim/bmg/short_nonpreempt.wsim  | 18 +++++++++++++++
 .../resources/wsim/bmg/short_preempt.wsim     | 17 ++++++++++++++
 .../resources/wsim/ptl/idle_ctxs.wsim         | 21 ++++++++++++++++++
 .../resources/wsim/ptl/long_nonpreempt.wsim   | 17 ++++++++++++++
 .../resources/wsim/ptl/long_preempt.wsim      | 16 ++++++++++++++
 .../resources/wsim/ptl/short_nonpreempt.wsim  | 17 ++++++++++++++
 .../resources/wsim/ptl/short_preempt.wsim     | 16 ++++++++++++++
 11 files changed, 180 insertions(+)
 create mode 100644 tools/vmtb/vmm_flows/resources/wsim/bmg/idle_ctxs.wsim
 create mode 100644 tools/vmtb/vmm_flows/resources/wsim/bmg/long_nonpreempt.wsim
 create mode 100644 tools/vmtb/vmm_flows/resources/wsim/bmg/long_preempt.wsim
 create mode 100644 tools/vmtb/vmm_flows/resources/wsim/bmg/short_nonpreempt.wsim
 create mode 100644 tools/vmtb/vmm_flows/resources/wsim/bmg/short_preempt.wsim
 create mode 100644 tools/vmtb/vmm_flows/resources/wsim/ptl/idle_ctxs.wsim
 create mode 100644 tools/vmtb/vmm_flows/resources/wsim/ptl/long_nonpreempt.wsim
 create mode 100644 tools/vmtb/vmm_flows/resources/wsim/ptl/long_preempt.wsim
 create mode 100644 tools/vmtb/vmm_flows/resources/wsim/ptl/short_nonpreempt.wsim
 create mode 100644 tools/vmtb/vmm_flows/resources/wsim/ptl/short_preempt.wsim

diff --git a/tools/vmtb/MANIFEST.in b/tools/vmtb/MANIFEST.in
index 7674c199d..954990a63 100644
--- a/tools/vmtb/MANIFEST.in
+++ b/tools/vmtb/MANIFEST.in
@@ -1,3 +1,4 @@
 include pytest.ini
 include vmtb_config.json
 include vmm_flows/resources/vgpu_profiles/*
+recursive-include vmm_flows/resources/wsim *
diff --git a/tools/vmtb/vmm_flows/resources/wsim/bmg/idle_ctxs.wsim b/tools/vmtb/vmm_flows/resources/wsim/bmg/idle_ctxs.wsim
new file mode 100644
index 000000000..1d8c9a2d7
--- /dev/null
+++ b/tools/vmtb/vmm_flows/resources/wsim/bmg/idle_ctxs.wsim
@@ -0,0 +1,22 @@
+###############################################################
+# VF S/R scenario: idle migration with contexts created
+#
+# 1. Run 3ms pre-migration WL on each engine
+# 2. Wait 20s for migration to happen
+# 3. Run the WLs again in post-migration phase to check fixups
+#
+# BMG variant - engines:
+# Root tile: RCS, BCS, CCS
+# Media tile: VCS, VECS
+###############################################################
+1.RCS.3000.0.0
+1.BCS.3000.0.0
+1.CCS.3000.0.1
+1.VCS.3000.0.0
+1.VECS.3000.0.0
+d.20000000
+1.RCS.3000.0.0
+1.BCS.3000.0.0
+1.CCS.3000.0.1
+1.VCS.3000.0.0
+1.VECS.3000.0.0
diff --git a/tools/vmtb/vmm_flows/resources/wsim/bmg/long_nonpreempt.wsim b/tools/vmtb/vmm_flows/resources/wsim/bmg/long_nonpreempt.wsim
new file mode 100644
index 000000000..45add4217
--- /dev/null
+++ b/tools/vmtb/vmm_flows/resources/wsim/bmg/long_nonpreempt.wsim
@@ -0,0 +1,18 @@
+###############################################################
+# VF S/R scenario: long non-preemptable batches
+#
+# 1. Run 100ms non-preempable batches on each engine
+# 2. Emit the workload for 20s (rerun in a loop) - keep executing during the migration.
+#    Use 'gem_wsim -r 200' that gives: 0.1s * 10 = 1s * 20 = 20s
+# 3. Finish execution in post-migration phase
+#
+# BMG variant - engines:
+# Root tile: RCS, BCS, CCS
+# Media tile: VCS, VECS
+###############################################################
+X.1.0
+1.RCS.100000.0.0
+1.BCS.100000.0.0
+1.CCS.100000.0.1
+1.VCS.100000.0.0
+1.VECS.100000.0.0
diff --git a/tools/vmtb/vmm_flows/resources/wsim/bmg/long_preempt.wsim b/tools/vmtb/vmm_flows/resources/wsim/bmg/long_preempt.wsim
new file mode 100644
index 000000000..2c3d22d40
--- /dev/null
+++ b/tools/vmtb/vmm_flows/resources/wsim/bmg/long_preempt.wsim
@@ -0,0 +1,17 @@
+###############################################################
+# VF S/R scenario: long preemptable batches
+#
+# 1. Run 100ms preempable batches on each engine
+# 2. Emit the workload for 20s (rerun in a loop) - keep executing during the migration.
+#    Use 'gem_wsim -r 200' that gives: 0.1s * 10 = 1s * 20 = 20s
+# 3. Finish execution in post-migration phase
+#
+# BMG variant - engines:
+# Root tile: RCS, BCS, CCS
+# Media tile: VCS, VECS
+###############################################################
+1.RCS.100000.0.0
+1.BCS.100000.0.0
+1.CCS.100000.0.1
+1.VCS.100000.0.0
+1.VECS.100000.0.0
diff --git a/tools/vmtb/vmm_flows/resources/wsim/bmg/short_nonpreempt.wsim b/tools/vmtb/vmm_flows/resources/wsim/bmg/short_nonpreempt.wsim
new file mode 100644
index 000000000..5ff9cc74a
--- /dev/null
+++ b/tools/vmtb/vmm_flows/resources/wsim/bmg/short_nonpreempt.wsim
@@ -0,0 +1,18 @@
+###############################################################
+# VF S/R scenario: short non-preemptable batches
+#
+# 1. Run 5ms non-preempable batches on each engine
+# 2. Emit the workload for 20s (rerun in a loop) - keep executing during the migration.
+#    Use 'gem_wsim -r 4000' that gives: 0.005s * 200 = 1s * 20 = 20s
+# 3. Finish execution in post-migration phase
+#
+# BMG variant - engines:
+# Root tile: RCS, BCS, CCS
+# Media tile: VCS, VECS
+###############################################################
+X.1.0
+1.RCS.5000.0.0
+1.BCS.5000.0.0
+1.CCS.5000.0.1
+1.VCS.5000.0.0
+1.VECS.5000.0.0
diff --git a/tools/vmtb/vmm_flows/resources/wsim/bmg/short_preempt.wsim b/tools/vmtb/vmm_flows/resources/wsim/bmg/short_preempt.wsim
new file mode 100644
index 000000000..c09b82cce
--- /dev/null
+++ b/tools/vmtb/vmm_flows/resources/wsim/bmg/short_preempt.wsim
@@ -0,0 +1,17 @@
+###############################################################
+# VF S/R scenario: short preemptable batches
+#
+# 1. Run 5ms preempable batches on each engine
+# 2. Emit the workload for 20s (rerun in a loop) - keep executing during the migration.
+#    Use 'gem_wsim -r 4000' that gives: 0.005s * 200 = 1s * 20 = 20s
+# 3. Finish execution in post-migration phase
+#
+# BMG variant - engines:
+# Root tile: RCS, BCS, CCS
+# Media tile: VCS, VECS
+###############################################################
+1.RCS.5000.0.0
+1.BCS.5000.0.0
+1.CCS.5000.0.1
+1.VCS.5000.0.0
+1.VECS.5000.0.0
diff --git a/tools/vmtb/vmm_flows/resources/wsim/ptl/idle_ctxs.wsim b/tools/vmtb/vmm_flows/resources/wsim/ptl/idle_ctxs.wsim
new file mode 100644
index 000000000..1e17b7a53
--- /dev/null
+++ b/tools/vmtb/vmm_flows/resources/wsim/ptl/idle_ctxs.wsim
@@ -0,0 +1,21 @@
+###############################################################
+# VF S/R scenario: idle migration with contexts created
+#
+# 1. Run 3ms pre-migration WL on each engine
+# 2. Wait 20s for migration to happen
+# 3. Run the WLs again in post-migration phase to check fixups
+#
+# PTL variant - engines:
+# RCS, BCS, VCS-1, VECS-1, CCS
+###############################################################
+1.RCS.3000.0.0
+1.BCS.3000.0.0
+1.VCS-1.3000.0.0
+1.VECS-1.3000.0.0
+1.CCS.3000.0.1
+d.20000000
+1.RCS.3000.0.0
+1.BCS.3000.0.0
+1.VCS-1.3000.0.0
+1.VECS-1.3000.0.0
+1.CCS.3000.0.1
diff --git a/tools/vmtb/vmm_flows/resources/wsim/ptl/long_nonpreempt.wsim b/tools/vmtb/vmm_flows/resources/wsim/ptl/long_nonpreempt.wsim
new file mode 100644
index 000000000..2b49426ca
--- /dev/null
+++ b/tools/vmtb/vmm_flows/resources/wsim/ptl/long_nonpreempt.wsim
@@ -0,0 +1,17 @@
+###############################################################
+# VF S/R scenario: long non-preemptable batches
+#
+# 1. Run 100ms non-preempable batches on each engine
+# 2. Emit the workload for 20s (rerun in a loop) - keep executing during the migration.
+#    Use 'gem_wsim -r 200' that gives: 0.1s * 10 = 1s * 20 = 20s
+# 3. Finish execution in post-migration phase
+#
+# PTL variant - engines:
+# RCS, BCS, VCS-1, VECS-1, CCS
+###############################################################
+X.1.0
+1.RCS.100000.0.0
+1.BCS.100000.0.0
+1.VCS-1.100000.0.0
+1.VECS-1.100000.0.0
+1.CCS.100000.0.1
diff --git a/tools/vmtb/vmm_flows/resources/wsim/ptl/long_preempt.wsim b/tools/vmtb/vmm_flows/resources/wsim/ptl/long_preempt.wsim
new file mode 100644
index 000000000..e06c2f290
--- /dev/null
+++ b/tools/vmtb/vmm_flows/resources/wsim/ptl/long_preempt.wsim
@@ -0,0 +1,16 @@
+###############################################################
+# VF S/R scenario: long preemptable batches
+#
+# 1. Run 100ms preempable batches on each engine
+# 2. Emit the workload for 20s (rerun in a loop) - keep executing during the migration.
+#    Use 'gem_wsim -r 200' that gives: 0.1s * 10 = 1s * 20 = 20s
+# 3. Finish execution in post-migration phase
+#
+# PTL variant - engines:
+# RCS, BCS, VCS-1, VECS-1, CCS
+###############################################################
+1.RCS.100000.0.0
+1.BCS.100000.0.0
+1.VCS-1.100000.0.0
+1.VECS-1.100000.0.0
+1.CCS.100000.0.1
diff --git a/tools/vmtb/vmm_flows/resources/wsim/ptl/short_nonpreempt.wsim b/tools/vmtb/vmm_flows/resources/wsim/ptl/short_nonpreempt.wsim
new file mode 100644
index 000000000..5e8ff1c26
--- /dev/null
+++ b/tools/vmtb/vmm_flows/resources/wsim/ptl/short_nonpreempt.wsim
@@ -0,0 +1,17 @@
+###############################################################
+# VF S/R scenario: short non-preemptable batches
+#
+# 1. Run 5ms non-preempable batches on each engine
+# 2. Emit the workload for 20s (rerun in a loop) - keep executing during the migration.
+#    Use 'gem_wsim -r 4000' that gives: 0.005s * 200 = 1s * 20 = 20s
+# 3. Finish execution in post-migration phase
+#
+# PTL variant - engines:
+# RCS, BCS, VCS-1, VECS-1, CCS
+###############################################################
+X.1.0
+1.RCS.5000.0.0
+1.BCS.5000.0.0
+1.VCS-1.5000.0.0
+1.VECS-1.5000.0.0
+1.CCS.5000.0.1
diff --git a/tools/vmtb/vmm_flows/resources/wsim/ptl/short_preempt.wsim b/tools/vmtb/vmm_flows/resources/wsim/ptl/short_preempt.wsim
new file mode 100644
index 000000000..b2316f957
--- /dev/null
+++ b/tools/vmtb/vmm_flows/resources/wsim/ptl/short_preempt.wsim
@@ -0,0 +1,16 @@
+###############################################################
+# VF S/R scenario: short preemptable batches
+#
+# 1. Run 5ms preempable batches on each engine
+# 2. Emit the workload for 20s (rerun in a loop) - keep executing during the migration.
+#    Use 'gem_wsim -r 4000' that gives: 0.005s * 200 = 1s * 20 = 20s
+# 3. Finish execution in post-migration phase
+#
+# PTL variant - engines:
+# RCS, BCS, VCS-1, VECS-1, CCS
+###############################################################
+1.RCS.5000.0.0
+1.BCS.5000.0.0
+1.VCS-1.5000.0.0
+1.VECS-1.5000.0.0
+1.CCS.5000.0.1
-- 
2.39.1


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [PATCH i-g-t 3/3] tools/vmtb: Add VF migration tests
  2026-04-16  8:35 [PATCH i-g-t 0/3] vmtb: SR-IOV VF migration test suite Adam Miszczak
  2026-04-16  8:35 ` [PATCH i-g-t 1/3] tools/vmtb: Define IGT tests used as VF migration workloads Adam Miszczak
  2026-04-16  8:35 ` [PATCH i-g-t 2/3] tools/vmtb: Provide VF busy migration IGT/gem_wsim workloads Adam Miszczak
@ 2026-04-16  8:35 ` Adam Miszczak
  2026-04-16 15:40 ` ✓ i915.CI.BAT: success for vmtb: SR-IOV VF migration test suite Patchwork
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 9+ messages in thread
From: Adam Miszczak @ 2026-04-16  8:35 UTC (permalink / raw)
  To: igt-dev; +Cc: marcin.bernatowicz, kamil.konieczny

Introduce a comprehensive VF migration (state save/restore) test suite,
covering the following scenarios:
- idle migration: no GPU workload active during save/restore
- idle app migration: GPU contexts created but idle during save/restore
- busy migration (WSIM): short/long preemptable and non-preemptable batches
- busy migration (IGT): xe_exec_reset, xe_exec_threads, xe_ccs,
  xe_compute_preempt workloads in multiple variants
- double migration: re-migration while post-restore resource fixup
  (resfix) is in progress, tested at few KMD debug checkpoints
- checkpointing: restore a VM state saved at earlier point of time
- auxiliary: basic pause/resume exercise, migrate without VF driver loaded

Tests support execution in diversity of configuration variants:
VF/VM counts, auto provisioning or vGPU profiles and scheduling modes.

Signed-off-by: Adam Miszczak <adam.miszczak@linux.intel.com>
---
 tools/vmtb/vmm_flows/test_migration.py | 1199 ++++++++++++++++++++++++
 1 file changed, 1199 insertions(+)
 create mode 100644 tools/vmtb/vmm_flows/test_migration.py

diff --git a/tools/vmtb/vmm_flows/test_migration.py b/tools/vmtb/vmm_flows/test_migration.py
new file mode 100644
index 000000000..8a3f10d52
--- /dev/null
+++ b/tools/vmtb/vmm_flows/test_migration.py
@@ -0,0 +1,1199 @@
+# SPDX-License-Identifier: MIT
+# Copyright © 2024-2026 Intel Corporation
+
+import enum
+import logging
+import random
+import time
+from dataclasses import dataclass
+from typing import List, Tuple
+
+import pytest
+
+from bench import exceptions
+from bench.configurators.vgpu_profile_config import VfProvisioningMode, VfSchedulingMode
+from bench.executors.gem_wsim import ONE_CYCLE_DURATION_MS, PREEMPT_10MS_WORKLOAD, GemWsim
+from bench.executors.igt import IgtExecutor, IgtType
+from bench.executors.shell import ShellExecutor
+from bench.helpers.helpers import (cmd_run_check, driver_check,
+                                   duplicate_vm_image, igt_check,
+                                   igt_run_check, modprobe_driver_run_check)
+from bench.machines.host import Host
+from bench.machines.virtual.vm import VirtualMachine
+from vmm_flows.conftest import (VmmTestingConfig, VmmTestingSetup,
+                                idfn_test_config)
+
+logger = logging.getLogger(__name__)
+
+IGT_INIT_DELAY = 6 # Time between WL start and VM pause (pre-save)
+IGT_RESTORE_DELAY = 3 # Time between VM resume and WL status check (post-restore)
+MS_IN_SEC = 1000
+
+
+# Full configuration variant: 1xVF, 2xVF and MAXxVF with auto and vGPU profiles provisioning
+# TODO: add max VFs variants
+test_variants_full = [(1, VfProvisioningMode.AUTO, VfSchedulingMode.DEFAULT_PROFILE),
+                      (2, VfProvisioningMode.AUTO, VfSchedulingMode.DEFAULT_PROFILE),
+                      (1, VfProvisioningMode.VGPU_PROFILE, VfSchedulingMode.DEFAULT_PROFILE),
+                      (2, VfProvisioningMode.VGPU_PROFILE, VfSchedulingMode.DEFAULT_PROFILE)]
+
+
+# Basic configuration variant: 1xVF and 2xVF with auto provisioning
+test_variants_basic = [(1, VfProvisioningMode.AUTO, VfSchedulingMode.DEFAULT_PROFILE),
+                       (2, VfProvisioningMode.AUTO, VfSchedulingMode.DEFAULT_PROFILE)]
+
+
+# vGPU profiles configuration variant: 1xVF and 2xVF with vGPU profiles provisioning
+test_variants_profiles = [(1, VfProvisioningMode.VGPU_PROFILE, VfSchedulingMode.DEFAULT_PROFILE),
+                          (2, VfProvisioningMode.VGPU_PROFILE, VfSchedulingMode.DEFAULT_PROFILE)]
+
+
+@dataclass
+class MigrationWorkloadWsim:
+    workload_file: str # Wsim workload descriptor file
+    num_clients: int # Fork N clients emitting the workload simultaneously
+    num_repeats: int # How many times to emit the workload
+
+    def __str__(self) -> str:
+        return f'WL:{self.workload_file}-(C:{self.num_clients} R:{self.num_repeats})'
+
+
+# VF busy migration WSIM workloads (payload for TestBusyMigrationWsim[N]):
+wsim_idle_app = MigrationWorkloadWsim('idle_ctxs', 1, 1)
+wsim_short_preempt = MigrationWorkloadWsim('short_preempt', 1, 4000) # 5ms * 4000 (20s)
+wsim_short_nonpreempt = MigrationWorkloadWsim('short_nonpreempt', 1, 4000)
+wsim_long_preempt = MigrationWorkloadWsim('long_preempt', 1, 200) # 100ms * 200 (20s)
+wsim_long_nonpreempt = MigrationWorkloadWsim('long_nonpreempt', 1, 200)
+
+
+@dataclass
+class MigrationWorkloadIgt:
+    igt_test: IgtType # IGT test type
+    num_repeats: int = 1 # Number of repeats of the IGT test (calibrated in runtime)
+
+    def __str__(self) -> str:
+        return f'WL:{self.igt_test}'
+
+# VF busy migration IGT workloads (payload for TestBusyMigrationIgt[M]):
+# xe_exec_reset/long_spin subtests:
+# Average exec time: 12-13s - execute 1x
+igt_exec_reset_long_spin_many_preempt = MigrationWorkloadIgt(
+    IgtType.EXEC_RESET_LONG_SPIN_MANY_PREEMPT)
+igt_exec_reset_long_spin_many_preempt_media = MigrationWorkloadIgt(
+    IgtType.EXEC_RESET_LONG_SPIN_MANY_PREEMPT_MEDIA)
+igt_exec_reset_long_spin_many_preempt_threads = MigrationWorkloadIgt(
+    IgtType.EXEC_RESET_LONG_SPIN_MANY_PREEMPT_THREADS)
+igt_exec_reset_long_spin_many_preempt_gt0_threads = MigrationWorkloadIgt(
+    IgtType.EXEC_RESET_LONG_SPIN_MANY_PREEMPT_GT0_THREADS)
+# Average exec time: 6-7s - execute 2x
+igt_exec_reset_long_spin_many_preempt_gt1_threads = MigrationWorkloadIgt(
+    IgtType.EXEC_RESET_LONG_SPIN_MANY_PREEMPT_GT1_THREADS)
+
+# Average exec time: 12-13s - execute 1x
+igt_exec_reset_long_spin_reuse_many_preempt = MigrationWorkloadIgt(
+    IgtType.EXEC_RESET_LONG_SPIN_REUSE_MANY_PREEMPT)
+igt_exec_reset_long_spin_reuse_many_preempt_media = MigrationWorkloadIgt(
+    IgtType.EXEC_RESET_LONG_SPIN_REUSE_MANY_PREEMPT_MEDIA)
+igt_exec_reset_long_spin_reuse_many_preempt_threads = MigrationWorkloadIgt(
+    IgtType.EXEC_RESET_LONG_SPIN_REUSE_MANY_PREEMPT_THREADS)
+igt_exec_reset_long_spin_reuse_many_preempt_gt0_threads = MigrationWorkloadIgt(
+    IgtType.EXEC_RESET_LONG_SPIN_REUSE_MANY_PREEMPT_GT0_THREADS)
+# Average exec time: 6-7s  execute 2x
+igt_exec_reset_long_spin_reuse_many_preempt_gt1_threads = MigrationWorkloadIgt(
+    IgtType.EXEC_RESET_LONG_SPIN_REUSE_MANY_PREEMPT_GT1_THREADS)
+
+# Average exec time: 12-13s - execute 1x
+igt_exec_reset_long_spin_sys_reuse_many_preempt_threads = MigrationWorkloadIgt(
+    IgtType.EXEC_RESET_LONG_SPIN_SYS_REUSE_MANY_PREEMPT_THREADS)
+igt_exec_reset_long_spin_comp_reuse_many_preempt_threads = MigrationWorkloadIgt(
+    IgtType.EXEC_RESET_LONG_SPIN_COMP_REUSE_MANY_PREEMPT_THREADS)
+
+# xe_exec_reset/cancel subtests:
+# Average exec time: 5-7s  execute 2x
+igt_exec_reset_cancel = MigrationWorkloadIgt(
+    IgtType.EXEC_RESET_CANCEL)
+igt_exec_reset_cancel_preempt = MigrationWorkloadIgt(
+    IgtType.EXEC_RESET_CANCEL_PREEMPT)
+# Average exec time: 10-15s  execute 1x
+igt_exec_reset_cancel_timeslice_preempt = MigrationWorkloadIgt(
+    IgtType.EXEC_RESET_CANCEL_TIMESLICE_PREEMPT)
+# Average exec time: 20-25s  execute 1x
+igt_exec_reset_cancel_timeslice_many_preempt = MigrationWorkloadIgt(
+    IgtType.EXEC_RESET_CANCEL_TIMESLICE_MANY_PREEMPT)
+
+# xe_exec_threads subtests (short, execute in a loop):
+# Average exec time: <500ms
+igt_exec_threads_basic = MigrationWorkloadIgt(
+    IgtType.EXEC_THREADS_BASIC)
+igt_exec_threads_bal_basic = MigrationWorkloadIgt(
+    IgtType.EXEC_THREADS_BAL_BASIC)
+# Average exec time: 1-2s
+igt_exec_threads_cm_userptr_invalidate = MigrationWorkloadIgt(
+    IgtType.EXEC_THREADS_CM_USERPTR_INVALIDATE)
+igt_exec_threads_bal_mixed_userptr_invalidate = MigrationWorkloadIgt(
+    IgtType.EXEC_THREADS_BAL_MIXED_USERPTR_INVALIDATE)
+# Average exec time: 1-4s
+igt_exec_threads_many_queues = MigrationWorkloadIgt(
+    IgtType.EXEC_THREADS_MANY_QUEUES)
+
+# xe_ccs subtest (short, execute in a loop):
+# Average exec time: 200-600ms
+igt_ccs_block_copy_compressed = MigrationWorkloadIgt(
+    IgtType.CCS_BLOCK_COPY_COMPRESSED)
+
+# xe_compute_preempt subtest (short, execute in a loop):
+# Average exec time: 1.8-2s
+igt_compute_preempt_many = MigrationWorkloadIgt(
+    IgtType.COMPUTE_PREEMPT_MANY)
+
+
+class BaseTestBusyMigration:
+    """Base class for busy migration tests (with workload executed).
+
+    The class provides implementation for VF save and restore subtests,
+    supports parametrization with a different VMs number and various IGT workload types.
+
+    Dedicated for inheritance by separate child test classes with specific workload setup
+    to avoid bulk dynamic test variants execution with the same VM setup.
+    """
+
+    # State save result flag: executing test_restore depends on prior test_save success
+    test_save_failed = True
+
+    def __calibrate_igt_wl(self, vm: VirtualMachine, igt_wl: MigrationWorkloadIgt):
+        logger.info("Starting %s test loop calibration for migration workload", igt_wl.igt_test)
+        igt_exec =  IgtExecutor(vm, igt_wl.igt_test)
+        assert igt_exec.check_results(), 'Calibration IGT run failed'
+
+        results_log = igt_exec.get_results_log()
+        igt_exec_time: float = round(results_log['time_elapsed']['end'] - results_log['time_elapsed']['start'], 3)
+
+        # Adjust IGT workload loop to execute longer than pre-save wait (with additional margins)
+        if igt_exec_time < IGT_INIT_DELAY + 2:
+            igt_wl.num_repeats = int(IGT_INIT_DELAY * 2 / igt_exec_time) + 1
+
+        logger.debug("Calibrated IGT workload loop: %s iteration(s) x ~%ss", igt_wl.num_repeats, igt_exec_time)
+
+    @pytest.fixture(scope='class', name='run_source_workload')
+    def fixture_run_source_workload(self, setup_vms, set_migration_wl):
+        ts: VmmTestingSetup = setup_vms
+        vm_src: VirtualMachine = ts.get_vm[0] # First VM as source
+        migration_wl = set_migration_wl # WSIM/IGT Workload variant
+
+        if isinstance(migration_wl, MigrationWorkloadWsim):
+            wsim_file_path = ts.wsim_wl_dir / f'{migration_wl.workload_file}.wsim' # Workload descriptor file path
+            if not wsim_file_path.exists():
+                logger.error("gem_wsim workload file %s not available!", wsim_file_path)
+                raise exceptions.GemWsimError(f'gem_wsim workload file {wsim_file_path} not available!')
+
+            # Run IGT wsim workload in pre-migration and check completion in post-migration
+            return GemWsim(vm_src, migration_wl.num_clients, migration_wl.num_repeats, workload=wsim_file_path)
+
+        if isinstance(migration_wl, MigrationWorkloadIgt):
+            self.__calibrate_igt_wl(vm_src, migration_wl)
+            return IgtExecutor(vm_src, migration_wl.igt_test, migration_wl.num_repeats)
+
+        logger.error("Invalid workload type passed to run_source_workload fixture")
+        raise exceptions.BenchError('Invalid workload type passed to run_source_workload fixture')
+
+    @pytest.fixture(scope='function', name='setup_destination_vm')
+    def fixture_setup_destination_vm(self, setup_vms):
+        ts: VmmTestingSetup = setup_vms
+        vm_src: VirtualMachine = ts.get_vm[0]  # First VM as a source
+        vm_dst: VirtualMachine = ts.get_vm[-1] # Last VM as a destination
+        num_vms = ts.get_num_vms()
+
+        if num_vms == 1:
+            logger.debug("Single VM: the same source and destination VM instance")
+            assert vm_src == vm_dst
+            return vm_dst
+
+        logger.debug("Multiple VMs: reload destination VM with the source image (with state snapshot)")
+
+        if vm_src.is_running():
+            # QMP 'quit' is used for paused VM (cannot be powered off via guest-agent)
+            vm_src.quit()
+
+        if vm_dst.is_running():
+            vm_dst.quit()
+            while vm_dst.is_running():
+                time.sleep(1) # VM usually doesn't terminate immediately
+
+        # Re-start destination VM with an image containing a state snapshot
+        vm_dst.set_migration_source(vm_src.image)
+        vm_dst.poweron()
+
+        return vm_dst
+
+    def test_save(self, setup_vms, run_source_workload):
+        logger.info("Test VM busy migration: state save")
+        ts: VmmTestingSetup = setup_vms
+        vm_src: VirtualMachine = ts.get_vm[0] # First VM as source
+
+        logger.debug("Execute migration in-flight workload on source VM")
+        migration_wl = run_source_workload
+        time.sleep(IGT_INIT_DELAY)
+        assert migration_wl.is_running(), 'IGT/wsim migration workload is not running on source VM'
+
+        # Pause VM and save snapshot
+        logger.debug("Pause execution and save source VM state")
+        try:
+            vm_src.pause()
+            vm_src.save_state()
+        except exceptions.GuestError as exc:
+            logger.error("State save error: %s", exc)
+            assert False, 'VF migration failed on save'
+
+        logger.debug("Resume execution on source VM")
+        vm_src.resume()
+
+        assert migration_wl.check_results(), 'VF migration workload failed on source VM (post-save)'
+
+        if ts.get_num_vms() > 1:
+            logger.debug("Multiple VMs: shutdown source VM")
+            vm_src.poweroff()
+
+        BaseTestBusyMigration.test_save_failed = False
+
+    def test_restore(self, setup_vms, setup_destination_vm, run_source_workload):
+        logger.info("Test VM busy migration: state restore")
+        if BaseTestBusyMigration.test_save_failed:
+            logger.error("State save failed - restore is pointless (fail immediately)")
+            assert False, 'test_save subtest failed - do not execute test_restore'
+
+        ts: VmmTestingSetup = setup_vms
+        vm_dst: VirtualMachine = setup_destination_vm
+        migration_wl = run_source_workload # Get an instance of the IGT WL started in a save test
+
+        # Patch the source IgtExecutor/GemWsim instance with the current VM
+        migration_wl.target = vm_dst
+        if isinstance(migration_wl, IgtExecutor):
+            # Clear IGT test results cache - remove post-save source VM results
+            # TODO: implement common IgtExecutor/GemWsim results clear interface to avoid instance type check
+            migration_wl.results.clear()
+
+        # Load the source state snapshot
+        logger.debug("Restore source state on the destination VM")
+        vm_dst.load_state()
+        vm_dst.resume()
+
+        # TODO: add sync to VM class
+        sync_value = random.randint(1, 0xFFFF)
+        assert vm_dst.ga.sync(sync_value)['return'] == sync_value
+
+        assert migration_wl.is_running(), 'IGT/wsim migration workload is not running on destination VM'
+        time.sleep(IGT_RESTORE_DELAY)
+
+        assert migration_wl.check_results(), 'VF migration workload failed on destination VM (post-restore)'
+
+        logger.debug("Check driver health on host and destination VM")
+        assert driver_check(ts.host)
+        assert driver_check(vm_dst)
+
+
+@pytest.fixture(scope='class', name='set_migration_wl')
+def fixture_set_migration_wl(request):
+    """Set IGT/wsim descriptor file used as a migration workload in a TestBusyMigration[WL]."""
+    # Wsim workload variant provided as MigrationWorkload data class instance
+    return request.param
+
+
+def idfn_workload(workload: MigrationWorkloadWsim):
+    """Add workload name to a test config ID in parametrized tests
+    (e.g. test_something[2VF-WL:workload_type-C:n-R:m].
+    """
+    return str(workload)
+
+
+def set_test_config(test_variants: List[Tuple[int, VfProvisioningMode, VfSchedulingMode]],
+                    max_vms: int = 2, wa_reduce_vf_lmem: bool = False) -> List[VmmTestingConfig]:
+    """Helper function to provide a parametrized test with a list of test configuration variants."""
+    test_configs: List[VmmTestingConfig] = []
+
+    for config in test_variants:
+        (num_vfs, provisioning_mode, scheduling_mode) = config
+        test_configs.append(VmmTestingConfig(num_vfs, max_vms, provisioning_mode, scheduling_mode,
+                                             wa_reduce_vf_lmem=wa_reduce_vf_lmem))
+
+    return test_configs
+
+
+# Busy migration TCs with WSIM workload
+@pytest.mark.parametrize('set_migration_wl', [wsim_short_preempt],
+                         ids=idfn_workload, indirect=['set_migration_wl'])
+@pytest.mark.parametrize('setup_vms', set_test_config(test_variants_full), ids=idfn_test_config, indirect=['setup_vms'])
+class TestBusyMigrationWsim1(BaseTestBusyMigration):
+    """Save-restore VM state with VF busy executing short (5ms) preemptable batches.
+
+    IGT/WSIM workload initiated pre-migration starts firing short submissions on each engine and
+    during the execution VM state is migrated (VM state snapshot is saved, then restored).
+    In the post-migration some additional batches are submitted.
+    Executed in the following VM number variants:
+    - single VF/VM: same VM acts as a source and destination.
+    - multiple VFs/VMs: the workload execution is initiated on the source VM,
+      then migrated and verified on the other, destination one.
+    """
+
+
+@pytest.mark.parametrize('set_migration_wl', [wsim_short_nonpreempt],
+                         ids=idfn_workload, indirect=['set_migration_wl'])
+@pytest.mark.parametrize('setup_vms', set_test_config(test_variants_basic),
+                         ids=idfn_test_config, indirect=['setup_vms'])
+class TestBusyMigrationWsim2(BaseTestBusyMigration):
+    """Save-restore VM state with VF busy executing short (5ms) non-preemptable batches.
+    Similar to TestBusyMigrationShort subtest, but emits non-preemptable batches.
+    """
+
+
+@pytest.mark.parametrize('set_migration_wl', [wsim_long_preempt],
+                         ids=idfn_workload, indirect=['set_migration_wl'])
+@pytest.mark.parametrize('setup_vms', set_test_config(test_variants_basic),
+                         ids=idfn_test_config, indirect=['setup_vms'])
+class TestBusyMigrationWsim3(BaseTestBusyMigration):
+    """Save-restore VM state with VF busy executing quite long (100ms) but preemptable batches.
+
+    IGT/WSIM workload initiated pre-migration starts firing relatively long submissions and
+    during the execution VM state is migrated (VM state snapshot is saved, then restored).
+    In the post-migration some additional batches are submitted.
+    Executed in the following VM number variants:
+    - single VF/VM: same VM acts as a source and destination.
+    - multiple VFs/VMs: the workload execution is initiated on the source VM,
+      then migrated and verified on the other, destination one.
+    """
+
+
+# TODO: convert to negative scenario.
+# Test is expected to fail because non-premptable workload execution time > PT (VLK-81241)
+@pytest.mark.parametrize('set_migration_wl', [wsim_long_nonpreempt],
+                         ids=idfn_workload, indirect=['set_migration_wl'])
+@pytest.mark.parametrize('setup_vms', set_test_config(test_variants_basic),
+                         ids=idfn_test_config, indirect=['setup_vms'])
+class TestBusyMigrationWsim4(BaseTestBusyMigration):
+    """Save-restore VM state with VF busy executing quite long (100ms) non-preemptable batches.
+    Similar to TestBusyMigrationLong subtest, but emits non-preemptable batches.
+    """
+
+
+@pytest.mark.parametrize('set_migration_wl', [wsim_idle_app],
+                         ids=idfn_workload, indirect=['set_migration_wl'])
+@pytest.mark.parametrize('setup_vms', set_test_config(test_variants_basic),
+                         ids=idfn_test_config, indirect=['setup_vms'])
+class TestIdleAppMigration(BaseTestBusyMigration):
+    """Save-restore VM state with an idle VF but user application attached (contexts created).
+
+    IGT/WSIM workload initiated pre-migration creates multiple user contexts and
+    does short submission on each but is idle during a save-restore operation,
+    then resumes post-migration to do more submissions on previously created contexts.
+    Executed in the following VM number variants:
+    - single VF/VM: same VM acts as a source and destination.
+    - multiple VFs/VMs: the workload execution is initiated on the source VM,
+      then migrated and verified on the other, destination one.
+    """
+
+# Busy migration TCs with IGT workload
+@pytest.mark.parametrize('set_migration_wl', [igt_exec_reset_long_spin_many_preempt],
+                         ids=idfn_workload, indirect=['set_migration_wl'])
+@pytest.mark.parametrize('setup_vms', set_test_config(test_variants_basic),
+                         ids=idfn_test_config, indirect=['setup_vms'])
+class TestBusyMigrationIgtExecReset1(BaseTestBusyMigration):
+    """Save-restore VM state with VF busy executing IGT xe_exec_reset@long-spin-many-preempt."""
+
+
+@pytest.mark.parametrize('set_migration_wl', [igt_exec_reset_long_spin_many_preempt_media],
+                         ids=idfn_workload, indirect=['set_migration_wl'])
+@pytest.mark.parametrize('setup_vms', set_test_config(test_variants_basic),
+                         ids=idfn_test_config, indirect=['setup_vms'])
+class TestBusyMigrationIgtExecReset2(BaseTestBusyMigration):
+    """Save-restore VM state with VF busy executing IGT xe_exec_reset@long-spin-many-preempt-media."""
+
+
+@pytest.mark.parametrize('set_migration_wl', [igt_exec_reset_long_spin_many_preempt_threads],
+                         ids=idfn_workload, indirect=['set_migration_wl'])
+@pytest.mark.parametrize('setup_vms', set_test_config(test_variants_full),
+                         ids=idfn_test_config, indirect=['setup_vms'])
+class TestBusyMigrationIgtExecReset3(BaseTestBusyMigration):
+    """Save-restore VM state with VF busy executing IGT xe_exec_reset@long-spin-many-preempt-threads."""
+
+
+@pytest.mark.parametrize('set_migration_wl', [igt_exec_reset_long_spin_many_preempt_gt0_threads],
+                         ids=idfn_workload, indirect=['set_migration_wl'])
+@pytest.mark.parametrize('setup_vms', set_test_config(test_variants_basic),
+                         ids=idfn_test_config, indirect=['setup_vms'])
+class TestBusyMigrationIgtExecReset4(BaseTestBusyMigration):
+    """Save-restore VM state with VF busy executing IGT xe_exec_reset@long-spin-many-preempt-gt0-threads."""
+
+
+@pytest.mark.parametrize('set_migration_wl', [igt_exec_reset_long_spin_many_preempt_gt1_threads],
+                         ids=idfn_workload, indirect=['set_migration_wl'])
+@pytest.mark.parametrize('setup_vms', set_test_config(test_variants_basic),
+                         ids=idfn_test_config, indirect=['setup_vms'])
+class TestBusyMigrationIgtExecReset5(BaseTestBusyMigration):
+    """Save-restore VM state with VF busy executing IGT xe_exec_reset@long-spin-many-preempt-gt1-threads."""
+
+
+@pytest.mark.parametrize('set_migration_wl', [igt_exec_reset_long_spin_reuse_many_preempt],
+                         ids=idfn_workload, indirect=['set_migration_wl'])
+@pytest.mark.parametrize('setup_vms', set_test_config(test_variants_basic),
+                         ids=idfn_test_config, indirect=['setup_vms'])
+class TestBusyMigrationIgtExecReset6(BaseTestBusyMigration):
+    """Save-restore VM state with VF busy executing IGT xe_exec_reset@long-spin-reuse-many-preempt."""
+
+
+@pytest.mark.parametrize('set_migration_wl', [igt_exec_reset_long_spin_reuse_many_preempt_media],
+                         ids=idfn_workload, indirect=['set_migration_wl'])
+@pytest.mark.parametrize('setup_vms', set_test_config(test_variants_basic),
+                         ids=idfn_test_config, indirect=['setup_vms'])
+class TestBusyMigrationIgtExecReset7(BaseTestBusyMigration):
+    """Save-restore VM state with VF busy executing IGT xe_exec_reset@long-spin-reuse-many-preempt-media."""
+
+
+@pytest.mark.parametrize('set_migration_wl', [igt_exec_reset_long_spin_reuse_many_preempt_threads],
+                         ids=idfn_workload, indirect=['set_migration_wl'])
+@pytest.mark.parametrize('setup_vms', set_test_config(test_variants_full),
+                         ids=idfn_test_config, indirect=['setup_vms'])
+class TestBusyMigrationIgtExecReset8(BaseTestBusyMigration):
+    """Save-restore VM state with VF busy executing IGT xe_exec_reset@long-spin-reuse-many-preempt-threads."""
+
+
+@pytest.mark.parametrize('set_migration_wl', [igt_exec_reset_long_spin_reuse_many_preempt_gt0_threads],
+                         ids=idfn_workload, indirect=['set_migration_wl'])
+@pytest.mark.parametrize('setup_vms', set_test_config(test_variants_basic),
+                         ids=idfn_test_config, indirect=['setup_vms'])
+class TestBusyMigrationIgtExecReset9(BaseTestBusyMigration):
+    """Save-restore VM state with VF busy executing IGT xe_exec_reset@long-spin-reuse-many-preempt-gt0-threads."""
+
+
+@pytest.mark.parametrize('set_migration_wl', [igt_exec_reset_long_spin_reuse_many_preempt_gt1_threads],
+                         ids=idfn_workload, indirect=['set_migration_wl'])
+@pytest.mark.parametrize('setup_vms', set_test_config(test_variants_basic),
+                         ids=idfn_test_config, indirect=['setup_vms'])
+class TestBusyMigrationIgtExecReset10(BaseTestBusyMigration):
+    """Save-restore VM state with VF busy executing IGT xe_exec_reset@long-spin-reuse-many-preempt-gt1-threads."""
+
+
+@pytest.mark.parametrize('set_migration_wl', [igt_exec_reset_long_spin_sys_reuse_many_preempt_threads],
+                         ids=idfn_workload, indirect=['set_migration_wl'])
+@pytest.mark.parametrize('setup_vms', set_test_config(test_variants_full),
+                         ids=idfn_test_config, indirect=['setup_vms'])
+class TestBusyMigrationIgtExecReset11(BaseTestBusyMigration):
+    """Save-restore VM state with VF busy executing IGT xe_exec_reset@long-spin-sys-reuse-many-preempt-threads."""
+
+
+@pytest.mark.parametrize('set_migration_wl', [igt_exec_reset_long_spin_comp_reuse_many_preempt_threads],
+                         ids=idfn_workload, indirect=['set_migration_wl'])
+@pytest.mark.parametrize('setup_vms', set_test_config(test_variants_full),
+                         ids=idfn_test_config, indirect=['setup_vms'])
+class TestBusyMigrationIgtExecReset12(BaseTestBusyMigration):
+    """Save-restore VM state with VF busy executing IGT xe_exec_reset@long-spin-comp-reuse-many-preempt-threads."""
+
+
+@pytest.mark.parametrize('set_migration_wl', [igt_exec_reset_cancel],
+                         ids=idfn_workload, indirect=['set_migration_wl'])
+@pytest.mark.parametrize('setup_vms', set_test_config(test_variants_basic),
+                         ids=idfn_test_config, indirect=['setup_vms'])
+class TestBusyMigrationIgtExecReset13(BaseTestBusyMigration):
+    """Save-restore VM state with VF busy executing IGT xe_exec_reset@cancel."""
+
+
+@pytest.mark.parametrize('set_migration_wl', [igt_exec_reset_cancel_preempt],
+                         ids=idfn_workload, indirect=['set_migration_wl'])
+@pytest.mark.parametrize('setup_vms', set_test_config(test_variants_basic),
+                         ids=idfn_test_config, indirect=['setup_vms'])
+class TestBusyMigrationIgtExecReset14(BaseTestBusyMigration):
+    """Save-restore VM state with VF busy executing IGT xe_exec_reset@cancel-preempt."""
+
+
+@pytest.mark.parametrize('set_migration_wl', [igt_exec_reset_cancel_timeslice_preempt],
+                         ids=idfn_workload, indirect=['set_migration_wl'])
+@pytest.mark.parametrize('setup_vms', set_test_config(test_variants_basic),
+                         ids=idfn_test_config, indirect=['setup_vms'])
+class TestBusyMigrationIgtExecReset15(BaseTestBusyMigration):
+    """Save-restore VM state with VF busy executing IGT xe_exec_reset@cancel-timeslice-preempt."""
+
+
+@pytest.mark.parametrize('set_migration_wl', [igt_exec_reset_cancel_timeslice_many_preempt],
+                         ids=idfn_workload, indirect=['set_migration_wl'])
+@pytest.mark.parametrize('setup_vms', set_test_config(test_variants_basic),
+                         ids=idfn_test_config, indirect=['setup_vms'])
+class TestBusyMigrationIgtExecReset16(BaseTestBusyMigration):
+    """Save-restore VM state with VF busy executing IGT xe_exec_reset@cancel-timeslice-many-preempt."""
+
+
+@pytest.mark.parametrize('set_migration_wl', [igt_exec_threads_basic],
+                         ids=idfn_workload, indirect=['set_migration_wl'])
+@pytest.mark.parametrize('setup_vms', set_test_config(test_variants_full),
+                         ids=idfn_test_config, indirect=['setup_vms'])
+class TestBusyMigrationIgtExecThreads1(BaseTestBusyMigration):
+    """Save-restore VM state with VF busy executing IGT xe_exec_threads@threads-basic."""
+
+
+@pytest.mark.parametrize('set_migration_wl', [igt_exec_threads_bal_basic],
+                         ids=idfn_workload, indirect=['set_migration_wl'])
+@pytest.mark.parametrize('setup_vms', set_test_config(test_variants_basic),
+                         ids=idfn_test_config, indirect=['setup_vms'])
+class TestBusyMigrationIgtExecThreads2(BaseTestBusyMigration):
+    """Save-restore VM state with VF busy executing IGT xe_exec_threads@threads-bal-basic."""
+
+
+@pytest.mark.parametrize('set_migration_wl', [igt_exec_threads_cm_userptr_invalidate],
+                        ids=idfn_workload, indirect=['set_migration_wl'])
+@pytest.mark.parametrize('setup_vms', set_test_config(test_variants_basic),
+                         ids=idfn_test_config, indirect=['setup_vms'])
+class TestBusyMigrationIgtExecThreads3(BaseTestBusyMigration):
+    """Save-restore VM state with VF busy executing IGT xe_exec_threads@threads-cm-userptr-invalidate."""
+
+
+@pytest.mark.parametrize('set_migration_wl', [igt_exec_threads_many_queues],
+                        ids=idfn_workload, indirect=['set_migration_wl'])
+@pytest.mark.parametrize('setup_vms', set_test_config(test_variants_full),
+                         ids=idfn_test_config, indirect=['setup_vms'])
+class TestBusyMigrationIgtExecThreads4(BaseTestBusyMigration):
+    """Save-restore VM state with VF busy executing IGT xe_exec_threads@threads-many-queues."""
+
+
+@pytest.mark.parametrize('set_migration_wl', [igt_exec_threads_bal_mixed_userptr_invalidate],
+                        ids=idfn_workload, indirect=['set_migration_wl'])
+@pytest.mark.parametrize('setup_vms', set_test_config(test_variants_basic),
+                         ids=idfn_test_config, indirect=['setup_vms'])
+class TestBusyMigrationIgtExecThreads5(BaseTestBusyMigration):
+    """Save-restore VM state with VF busy executing IGT xe_exec_threads@threads-bal-mixed-userptr-invalidate."""
+
+
+@pytest.mark.parametrize('set_migration_wl', [igt_ccs_block_copy_compressed],
+                        ids=idfn_workload, indirect=['set_migration_wl'])
+@pytest.mark.parametrize('setup_vms', set_test_config(test_variants_basic),
+                         ids=idfn_test_config, indirect=['setup_vms'])
+class TestBusyMigrationIgtCcs(BaseTestBusyMigration):
+    """Save-restore VM state with VF busy executing IGT xe_ccs@block-copy-compressed."""
+
+
+@pytest.mark.parametrize('set_migration_wl', [igt_compute_preempt_many],
+                        ids=idfn_workload, indirect=['set_migration_wl'])
+@pytest.mark.parametrize('setup_vms', set_test_config(test_variants_basic),
+                         ids=idfn_test_config, indirect=['setup_vms'])
+class TestBusyMigrationIgtComputePreempt(BaseTestBusyMigration):
+    """Save-restore VM state with VF busy executing IGT xe_compute_preempt@compute-preempt-many (CCS path)."""
+
+
+@pytest.mark.parametrize('setup_vms', set_test_config(test_variants_basic),
+                         ids=idfn_test_config, indirect=['setup_vms'])
+class TestIdleMigration:
+    """Save-restore VM state with an idle VF and no user application attached.
+
+    IGT workload initiated and ended twice: pre- and post-migration, but not executing during a save-restore operation.
+    Test setup:
+    - NxVFs running NxVM instances (first (VM[0]) acts as source and a last (VM[N-1] as a destination)
+    - platform provisioned with the relevant vGPU profile M[N] (ATSM, ADLP) or C[N] (PVC)
+    - VF state is saved on the source VM and then restored on the destination VM instance
+      (in case of a single VF variant, source and destination is the same VM instance)
+    """
+
+    @pytest.fixture(scope='function', name='setup_destination_vm')
+    def fixture_setup_destination_vm(self, setup_vms):
+        ts: VmmTestingSetup = setup_vms
+        vm_src: VirtualMachine = ts.get_vm[0]  # First VM as a source
+        vm_dst: VirtualMachine = ts.get_vm[-1] # Last VM as a destination
+        num_vms = ts.get_num_vms()
+
+        if num_vms == 1:
+            logger.debug("Single VM: the same source and destination VM instance")
+            assert vm_src == vm_dst
+            return vm_dst
+
+        logger.debug("Multiple VMs: reload destination VM with the source image (with state snapshot)")
+
+        if vm_src.is_running():
+            # QMP 'quit' is used for paused VM (cannot be powered off via guest-agent)
+            vm_src.quit()
+
+        if vm_dst.is_running():
+            vm_dst.quit()
+            while vm_dst.is_running():
+                time.sleep(1) # VM usually doesn't terminate immediately
+
+        # Re-start destination VM with an image containing a state snapshot
+        vm_dst.set_migration_source(vm_src.image)
+        vm_dst.poweron()
+
+        return vm_dst
+
+    def test_save(self, setup_vms):
+        logger.info("Test VM idle migration: state save")
+        ts: VmmTestingSetup = setup_vms
+        vm_src: VirtualMachine = ts.get_vm[0] # First VM as source
+
+        # Run some interactive program (not returning, as vim) to verify state after migration
+        src_proc = ShellExecutor(vm_src, 'vim migrate.txt')
+        source_proc = vm_src.execute_status(src_proc.pid)
+        logger.debug("Source process: %s", source_proc)
+        assert source_proc.exited is False, 'Source process is not running'
+
+        logger.debug("Execute pre-migration workload on source VM")
+        assert igt_run_check(vm_src, IgtType.EXEC_STORE)
+
+        # Pause VM and save snapshot
+        logger.debug("Pause execution and save VM state")
+        try:
+            vm_src.pause()
+            vm_src.save_state()
+        except exceptions.GuestError as exc:
+            logger.error("State save error: %s", exc)
+            assert False, 'VF migration failed on save'
+
+    def test_restore(self, setup_vms, setup_destination_vm):
+        logger.info("Test VM idle migration: state restore")
+        ts: VmmTestingSetup = setup_vms
+        vm_dst: VirtualMachine = setup_destination_vm
+
+        # Load the source state snapshot
+        logger.debug("Restore source state on the destination VM")
+        vm_dst.load_state()
+        vm_dst.resume()
+
+        # Verify program initiated on source VM is stil running after migration
+        pgrep_dst = ShellExecutor(vm_dst, 'pgrep -f "vim migrate.txt"')
+        pgrep_dst_result = vm_dst.execute_wait(pgrep_dst.pid)
+        assert pgrep_dst_result.exit_code == 0, 'Source process (vim) not found'
+        restored_proc = vm_dst.execute_status(int(pgrep_dst_result.stdout))
+        logger.debug("Restored process: %s", restored_proc)
+        assert restored_proc.exited is False, 'Restored process is not running'
+
+        logger.debug("Execute post-migration workload on destination VM")
+        assert igt_run_check(vm_dst, IgtType.EXEC_STORE)
+
+        logger.debug("Check driver health on host and destination VM")
+        assert driver_check(ts.host)
+        assert driver_check(vm_dst)
+
+
+class ResfixWaitStage(enum.IntEnum):
+    # Resfix stopper checkpoints
+    VF_MIGRATION_CONTINUE = 0
+    VF_MIGRATION_WAIT_BEFORE_RESFIX_START = 1 << 0
+    VF_MIGRATION_WAIT_BEFORE_FIXUPS = 1 << 1
+    VF_MIGRATION_WAIT_BEFORE_RESTART_JOBS = 1 << 2
+    VF_MIGRATION_WAIT_BEFORE_RESFIX_DONE = 1 << 3
+
+
+class MigrationToRestore(enum.Enum):
+    FIRST = 1
+    SECOND = 2
+
+
+@dataclass
+class DoubleMigrationConfig:
+    resfix_stoppers: ResfixWaitStage # Stage for migration RESFIX stop
+    migration_to_restore: MigrationToRestore # Migration snapshot to be restored after doubled save
+
+    def __str__(self) -> str:
+        return f'RS:{hex(self.resfix_stoppers)}-MR:{self.migration_to_restore}'
+
+
+double_migration_1_resfix_1 = DoubleMigrationConfig(
+    ResfixWaitStage.VF_MIGRATION_WAIT_BEFORE_RESFIX_START, MigrationToRestore.FIRST)
+double_migration_1_resfix_2 = DoubleMigrationConfig(
+    ResfixWaitStage.VF_MIGRATION_WAIT_BEFORE_FIXUPS, MigrationToRestore.FIRST)
+double_migration_1_resfix_3 = DoubleMigrationConfig(
+    ResfixWaitStage.VF_MIGRATION_WAIT_BEFORE_RESTART_JOBS, MigrationToRestore.FIRST)
+double_migration_1_resfix_4 = DoubleMigrationConfig(
+    ResfixWaitStage.VF_MIGRATION_WAIT_BEFORE_RESFIX_DONE, MigrationToRestore.FIRST)
+
+
+double_migration_2_resfix_1 = DoubleMigrationConfig(
+    ResfixWaitStage.VF_MIGRATION_WAIT_BEFORE_RESFIX_START, MigrationToRestore.SECOND)
+double_migration_2_resfix_2 = DoubleMigrationConfig(
+    ResfixWaitStage.VF_MIGRATION_WAIT_BEFORE_FIXUPS, MigrationToRestore.SECOND)
+double_migration_2_resfix_3 = DoubleMigrationConfig(
+    ResfixWaitStage.VF_MIGRATION_WAIT_BEFORE_RESTART_JOBS, MigrationToRestore.SECOND)
+double_migration_2_resfix_4 = DoubleMigrationConfig(
+    ResfixWaitStage.VF_MIGRATION_WAIT_BEFORE_RESFIX_DONE, MigrationToRestore.SECOND)
+
+class BaseTestDoubleMigration:
+    """Base class for double migration tests.
+    Test scenario triggers VF re-migrate while the initial restore (resources fixup) is still ongoing.
+
+    Save-load and immediately save again before the initial migration completes (prior to resfix done).
+    Post migration resources fixup is delayed via KMD debug hook to initiate the 2nd save.
+    Tests Xe KMD corner case where two migration notifications must be handled.
+    IGT/WSIM workload is executing during the migration (started prior to 1st save).
+
+    The class provides implementation for VF save and restore-save subtests,
+    supports parametrization with a different VMs number and double migration scenario variants.
+
+    Dedicated for inheritance by separate child test classes with specific
+    double migration test scenarios configurations:
+    - stopping RESFIX in a different stage
+    - restoring from initial (1st) or latter (2nd) migration
+    """
+
+    def __set_debugfs_resfix_stoppers(self, vm: VirtualMachine, stage: ResfixWaitStage):
+        """Set resfix_stoppers:
+        predefined checkpoints that allow the migration process to pause at specific stages.
+        Each state will pause with a 1-second delay per iteration, continuing until
+        its corresponding bit is cleared.
+        Debug hook path: /sys/kernel/debug/dri/<card>/gt0/vf/resfix_stoppers
+        """
+        vf_driver = vm.get_dut().driver
+        vf_driver.write_debugfs(f'{vf_driver.debugfs_path}/gt0/vf/resfix_stoppers', str(stage))
+
+        resfix_stoppers = vf_driver.read_debugfs(f'{vf_driver.debugfs_path}/gt0/vf/resfix_stoppers').strip()
+        logger.debug("[%s] Set migration resfix stoppers: %s (%s)"
+                     "\nPause checkpoints:"
+                     "\n\tVF_MIGRATION_WAIT_BEFORE_RESFIX_START: BIT(0)"
+                     "\n\tVF_MIGRATION_WAIT_BEFORE_FIXUPS: BIT(1)"
+                     "\n\tVF_MIGRATION_WAIT_BEFORE_RESTART_JOBS: BIT(2)"
+                     "\n\tVF_MIGRATION_WAIT_BEFORE_RESFIX_DONE: BIT(3)"
+                     "\n\tResume execution: 0",
+                     vm, resfix_stoppers, bin(int(resfix_stoppers, 16)))
+
+        return int(resfix_stoppers, 16) == stage
+
+    def __is_resfix_stopped(self, vm: VirtualMachine):
+        vf_driver = vm.get_dut().driver
+        resfix_stoppers = vf_driver.read_debugfs(f'{vf_driver.debugfs_path}/gt0/vf/resfix_stoppers').strip()
+
+        return int(resfix_stoppers, 16) != 0
+
+    @pytest.fixture(scope='function', name='set_resfix_stoppers')
+    def fixture_set_resfix_stoppers(self, setup_vms, set_double_migration_config):
+        ts: VmmTestingSetup = setup_vms
+        migration_config: DoubleMigrationConfig = set_double_migration_config
+        vm_src: VirtualMachine = ts.get_vm[0]  # First VM as a source
+
+        return self.__set_debugfs_resfix_stoppers(vm_src, migration_config.resfix_stoppers)
+
+    @pytest.fixture(scope='function', name='clear_resfix_stoppers')
+    def fixture_clear_resfix_stoppers(self, setup_vms):
+        ts: VmmTestingSetup = setup_vms
+        yield
+
+        for vm in ts.get_vm:
+            if vm.is_running() and self.__is_resfix_stopped(vm):
+                logger.info("Teardown fixture - clear remaining resfix stoppers")
+                self.__set_debugfs_resfix_stoppers(vm, ResfixWaitStage.VF_MIGRATION_CONTINUE)
+
+    @pytest.fixture(scope='class', name='run_source_workload')
+    def fixture_run_source_workload(self, setup_vms):
+        ts: VmmTestingSetup = setup_vms
+        vm_src: VirtualMachine = ts.get_vm[0] # First VM as source
+        migration_wl: MigrationWorkloadWsim = wsim_short_preempt # Workload variant
+        wsim_file_path = ts.wsim_wl_dir / f'{migration_wl.workload_file}.wsim' # Workload descriptor file path
+        if not wsim_file_path.exists():
+            logger.error("gem_wsim workload file %s not available!", wsim_file_path)
+            raise exceptions.GemWsimError(f'gem_wsim workload file {wsim_file_path} not available!')
+
+        # Run IGT wsim workload in pre-migration and check completion in post-migration
+        return GemWsim(vm_src, migration_wl.num_clients, migration_wl.num_repeats, workload=wsim_file_path)
+
+    @pytest.fixture(scope='function', name='setup_destination_vm')
+    def fixture_setup_destination_vm(self, setup_vms):
+        ts: VmmTestingSetup = setup_vms
+        vm_src: VirtualMachine = ts.get_vm[0]  # First VM as a source
+        vm_dst: VirtualMachine = ts.get_vm[-1] # Last VM as a destination
+        num_vms = ts.get_num_vms()
+
+        if num_vms == 1:
+            logger.debug("Single VM: the same source and destination VM instance")
+            assert vm_src == vm_dst
+            vm_dst.pause()
+            return vm_dst
+
+        logger.debug("Multiple VMs: reload destination VM with the source image (with state snapshot)")
+
+        if vm_src.is_running():
+            # QMP 'quit' is used for paused VM (cannot be powered off via guest-agent)
+            vm_src.quit()
+
+        if vm_dst.is_running():
+            vm_dst.quit()
+            while vm_dst.is_running():
+                time.sleep(1) # VM usually doesn't terminate immediately
+
+        # Re-start destination VM with an image containing a state snapshot
+        vm_dst.set_migration_source(vm_src.image)
+        vm_dst.poweron()
+
+        return vm_dst
+
+    def test_save(self, setup_vms, run_source_workload, set_resfix_stoppers):
+        logger.info("Test VM double migration: 1st state save")
+        ts: VmmTestingSetup = setup_vms
+        vm_src: VirtualMachine = ts.get_vm[0] # First VM as source
+        assert set_resfix_stoppers, 'Failed to set migration resfix stoppers'
+
+        logger.debug("Execute throughout-migration workload on source VM")
+        migration_wl: GemWsim = run_source_workload
+        time.sleep(IGT_INIT_DELAY)
+        assert migration_wl.is_running(), 'IGT/wsim migration workload is not running on source VM'
+
+        # Pause source VM and save snapshot
+        logger.debug("Pause execution and save source VM state (snapshot #1)")
+        try:
+            vm_src.pause()
+            vm_src.save_state() # snapshot #1
+        except exceptions.GuestError as exc:
+            logger.error("State save error: %s", exc)
+            assert False, 'VF migration failed on save'
+
+    def test_restore_save(self, setup_destination_vm, run_source_workload,
+                          set_double_migration_config, clear_resfix_stoppers):
+        logger.info("Test VM double migration: state restore and 2nd save prior recovery is done")
+        vm_dst: VirtualMachine = setup_destination_vm
+        migration_wl: GemWsim = run_source_workload # Get an instance of the IGT WL started in a save test
+        migration_config: DoubleMigrationConfig = set_double_migration_config
+
+        # Patch the source IgtExecutor instance with the current VM and clear results cache
+        migration_wl.target = vm_dst
+
+        # Load the source state snapshot
+        logger.debug("Restore source state on the destination VM (snapshot #1)")
+        vm_dst.load_state() # snapshot #1
+        vm_dst.resume()
+
+        time.sleep(3) # Wait a bit for the migration recovery fires
+        logger.debug("Save 2nd VM state (snapshot #2) while the 1st migration recovery still in progress")
+
+        if migration_config.migration_to_restore is MigrationToRestore.FIRST:
+            # VM pause/resume is implicitly called by save,
+            # snapshot #1 recovery is continued immediately after snapshot #2 save completes
+            vm_dst.save_state() # snapshot #2
+            logger.info("Continue source VM state recovery (snapshot #1)")
+
+        if migration_config.migration_to_restore is MigrationToRestore.SECOND:
+            # Include explicit VM pause/resume, snapshot #2 load shall immediately follow it's save,
+            # to not allow continuation of state recovery of snapshot #1.
+            vm_dst.pause()
+            vm_dst.save_state() # snapshot #2
+            logger.info("Load state and re-start state recovery of 2nd saved state (snapshot #2)")
+            vm_dst.load_state() # snapshot #2
+            vm_dst.resume()
+
+        logger.info("Continue migration recovery - clear resfix stoppers")
+        self.__set_debugfs_resfix_stoppers(vm_dst, ResfixWaitStage.VF_MIGRATION_CONTINUE)
+
+        logger.debug("Check migration in-flight workload after destination VM save")
+        time.sleep(IGT_RESTORE_DELAY)
+        assert migration_wl.check_results(), 'VF migration workload failed on destination VM (post-restore)'
+
+
+@pytest.fixture(scope='class', name='set_double_migration_config')
+def fixture_set_double_migration_config(request):
+    """Set migration recovery wait stage for double migration test and number of snapshot to restore."""
+    # Provide list of DoubleMigrationConfig instances to setup the test.
+    return request.param
+
+
+def idfn_double_migration(config: DoubleMigrationConfig):
+    """Add double migration settings to a test config ID in parametrized tests
+    (e.g. test_something[2VF-RS:resfix_stopper-MR:snapshot_to_restore].
+    """
+    return str(config)
+
+
+@pytest.mark.parametrize('set_double_migration_config', [double_migration_1_resfix_1],
+                        ids=idfn_double_migration, indirect=['set_double_migration_config'])
+@pytest.mark.parametrize('setup_vms', set_test_config(test_variants_profiles, wa_reduce_vf_lmem=True),
+                         ids=idfn_test_config, indirect=['setup_vms'])
+class TestDoubleMigration1Resfix1(BaseTestDoubleMigration):
+    """Double migration test restoring the first snapshot (the former, initial migration):
+    save snapshot #1 -> load snapshot #1 -> save snapshot #2 (during #1 recovery) -> continue to recover #1
+    Stop resfix on VF_MIGRATION_WAIT_BEFORE_RESFIX_START (BIT0) checkpoint to initiate 2nd save.
+
+    W/A: reduce VF VRAM quota to speed up the 2nd save (to avoid time-out).
+    """
+
+
+@pytest.mark.parametrize('set_double_migration_config', [double_migration_1_resfix_2],
+                        ids=idfn_double_migration, indirect=['set_double_migration_config'])
+@pytest.mark.parametrize('setup_vms', set_test_config(test_variants_profiles, wa_reduce_vf_lmem=True),
+                         ids=idfn_test_config, indirect=['setup_vms'])
+class TestDoubleMigration1Resfix2(BaseTestDoubleMigration):
+    """Double migration test restoring the first snapshot (the former, initial migration):
+    save snapshot #1 -> load snapshot #1 -> save snapshot #2 (during #1 recovery) -> continue to recover #1
+    Stop resfix on VF_MIGRATION_WAIT_BEFORE_FIXUPS (BIT1) checkpoint to initiate 2nd save.
+
+    W/A: reduce VF VRAM quota to speed up the 2nd save (to avoid time-out).
+    """
+
+
+@pytest.mark.parametrize('set_double_migration_config', [double_migration_1_resfix_3],
+                        ids=idfn_double_migration, indirect=['set_double_migration_config'])
+@pytest.mark.parametrize('setup_vms', set_test_config(test_variants_profiles, wa_reduce_vf_lmem=True),
+                         ids=idfn_test_config, indirect=['setup_vms'])
+class TestDoubleMigration1Resfix3(BaseTestDoubleMigration):
+    """Double migration test restoring the first snapshot (the former, initial migration):
+    save snapshot #1 -> load snapshot #1 -> save snapshot #2 (during #1 recovery) -> continue to recover #1
+    Stop resfix on VF_MIGRATION_WAIT_BEFORE_RESTART_JOBS (BIT2) checkpoint to initiate 2nd save.
+
+    W/A: reduce VF VRAM quota to speed up the 2nd save (to avoid time-out).
+    """
+
+
+@pytest.mark.parametrize('set_double_migration_config', [double_migration_1_resfix_4],
+                        ids=idfn_double_migration, indirect=['set_double_migration_config'])
+@pytest.mark.parametrize('setup_vms', set_test_config(test_variants_profiles, wa_reduce_vf_lmem=True),
+                         ids=idfn_test_config, indirect=['setup_vms'])
+class TestDoubleMigration1Resfix4(BaseTestDoubleMigration):
+    """Double migration test restoring the first snapshot (the former, initial migration):
+    save snapshot #1 -> load snapshot #1 -> save snapshot #2 (during #1 recovery) -> continue to recover #1
+    Stop resfix on VF_MIGRATION_WAIT_BEFORE_RESFIX_DONE (BIT3) checkpoint to initiate 2nd save.
+
+    W/A: reduce VF VRAM quota to speed up the 2nd save (to avoid time-out).
+    """
+
+
+@pytest.mark.parametrize('set_double_migration_config', [double_migration_2_resfix_1],
+                        ids=idfn_double_migration, indirect=['set_double_migration_config'])
+@pytest.mark.parametrize('setup_vms', set_test_config(test_variants_profiles, wa_reduce_vf_lmem=True),
+                         ids=idfn_test_config, indirect=['setup_vms'])
+class TestDoubleMigration2Resfix1(BaseTestDoubleMigration):
+    """Double migration test restoring the second snapshot (the latter migration):
+    save snapshot #1 -> load snapshot #1 -> save snapshot #2 (during #1 recovery) -> load and recover #2
+    Stop resfix on VF_MIGRATION_WAIT_BEFORE_RESFIX_START (BIT0) checkpoint to initiate 2nd save.
+
+    W/A: reduce VF VRAM quota to speed up the 2nd save (to avoid time-out).
+    """
+
+
+@pytest.mark.parametrize('set_double_migration_config', [double_migration_2_resfix_2],
+                        ids=idfn_double_migration, indirect=['set_double_migration_config'])
+@pytest.mark.parametrize('setup_vms', set_test_config(test_variants_profiles, wa_reduce_vf_lmem=True),
+                         ids=idfn_test_config, indirect=['setup_vms'])
+class TestDoubleMigration2Resfix2(BaseTestDoubleMigration):
+    """Double migration test restoring the second snapshot (the latter migration):
+    save snapshot #1 -> load snapshot #1 -> save snapshot #2 (during #1 recovery) -> load and recover #2
+    Stop resfix on VF_MIGRATION_WAIT_BEFORE_FIXUPS (BIT1) checkpoint to initiate 2nd save.
+
+    W/A: reduce VF VRAM quota to speed up the 2nd save (to avoid time-out).
+    """
+
+
+@pytest.mark.parametrize('set_double_migration_config', [double_migration_2_resfix_3],
+                        ids=idfn_double_migration, indirect=['set_double_migration_config'])
+@pytest.mark.parametrize('setup_vms', set_test_config(test_variants_profiles, wa_reduce_vf_lmem=True),
+                         ids=idfn_test_config, indirect=['setup_vms'])
+class TestDoubleMigration2Resfix3(BaseTestDoubleMigration):
+    """Double migration test restoring the second snapshot (the latter migration):
+    save snapshot #1 -> load snapshot #1 -> save snapshot #2 (during #1 recovery) -> load and recover #2
+    Stop resfix on VF_MIGRATION_WAIT_BEFORE_RESTART_JOBS (BIT2) checkpoint to initiate 2nd save.
+
+    W/A: reduce VF VRAM quota to speed up the 2nd save (to avoid time-out).
+    """
+
+
+@pytest.mark.parametrize('set_double_migration_config', [double_migration_2_resfix_4],
+                        ids=idfn_double_migration, indirect=['set_double_migration_config'])
+@pytest.mark.parametrize('setup_vms', set_test_config(test_variants_profiles, wa_reduce_vf_lmem=True),
+                         ids=idfn_test_config, indirect=['setup_vms'])
+class TestDoubleMigration2Resfix4(BaseTestDoubleMigration):
+    """Double migration test restoring the second snapshot (the latter migration):
+    save snapshot #1 -> load snapshot #1 -> save snapshot #2 (during #1 recovery) -> load and recover #2
+    Stop resfix on VF_MIGRATION_WAIT_BEFORE_RESFIX_DONE (BIT3) checkpoint to initiate 2nd save.
+
+    W/A: reduce VF VRAM quota to speed up the 2nd save (to avoid time-out).
+    """
+
+
+@pytest.mark.parametrize('setup_vms', set_test_config(test_variants_basic),
+                         ids=idfn_test_config, indirect=['setup_vms'])
+class TestCheckpoint:
+    """Verify a state can be saved for the future use and then loaded at the previous checkpoint."""
+
+    @pytest.fixture(scope='function', name='setup_destination_vm')
+    def fixture_setup_destination_vm(self, setup_vms):
+        ts: VmmTestingSetup = setup_vms
+        vm_src: VirtualMachine = ts.get_vm[0]  # First VM as a source
+        vm_dst: VirtualMachine = ts.get_vm[-1] # Last VM as a destination
+        num_vms = ts.get_num_vms()
+
+        if num_vms == 1:
+            logger.debug("Single VM: the same source and destination VM instance")
+            assert vm_src == vm_dst
+            return vm_dst
+
+        logger.debug("Multiple VMs: restart destination VM with the source image (with state checkpoint)")
+        vm_dst.poweroff()
+        # Source qcow2 must be copied because multiple VMs cannot run with the same image file
+        vm_dst.set_migration_source(duplicate_vm_image(vm_src.image))
+        vm_dst.poweron()
+        vm_dst.resume()
+        assert modprobe_driver_run_check(vm_dst)
+
+        return vm_dst
+
+    @pytest.fixture(scope='class', name='run_source_workload')
+    def fixture_run_source_workload(self, setup_vms):
+        ts: VmmTestingSetup = setup_vms
+        vm_src: VirtualMachine = ts.get_vm[0] # First VM as source
+
+        # Run IGT workload to check before and after a state checkpoint
+        return IgtExecutor(vm_src, IgtType.SPIN_BATCH)
+
+    def test_save(self, setup_vms, run_source_workload):
+        logger.info("Test VM state checkpoint save")
+        ts: VmmTestingSetup = setup_vms
+        vm_src: VirtualMachine = ts.get_vm[0] # First VM as source
+        igt_src: IgtExecutor = run_source_workload
+
+        # Save state checkpoint
+        logger.debug("Save VM state checkpoint")
+        try:
+            vm_src.save_state()
+        except exceptions.GuestError as exc:
+            logger.error("State save error: %s", exc)
+            assert False, 'VF migration failed on save'
+
+        # Verify workload submitted prior to the state checkpoint succeeds
+        assert igt_check(igt_src), 'Source IGT workload has failed'
+
+        logger.debug("Check driver health on host and source VM")
+        assert driver_check(ts.host)
+        assert driver_check(vm_src)
+
+    def test_load(self, setup_vms, setup_destination_vm, run_source_workload):
+        logger.info("Test VM state checkpoint load")
+        ts: VmmTestingSetup = setup_vms
+        vm_dst: VirtualMachine = setup_destination_vm
+        igt_src: IgtExecutor = run_source_workload # Get an instance of the IGT WL started in a save test
+
+        # Patch the source IgtExecutor instance with the current VM and clear results cache
+        igt_src.target = vm_dst
+        igt_src.results.clear()
+
+        # Workload submitted before the checkpoint should not be active before load
+        logger.debug("Verify IGT workload is not executing prior to the state restore (expected pgrep error)")
+        assert not cmd_run_check(vm_dst, 'pgrep igt_runner'), 'IGT workload is (unexpectedly) running'
+
+        # Load previously saved state checkpoint and resume on destination VM
+        logger.debug("Load VM state checkpoint")
+        vm_dst.load_state()
+
+        # Workload submitted before the checkpoint should be restored in running state after load
+        logger.debug("Verify IGT workload is executing again after the state restore")
+        assert not igt_src.status().exited, 'IGT workload is not running after checkpoint load'
+        assert igt_check(igt_src), 'IGT workload loaded on checkpoint has failed'
+
+        logger.debug("Check driver health on host and destination VM")
+        assert driver_check(ts.host)
+        assert driver_check(vm_dst)
+
+
+def test_2vm_pause_resume(create_1host_2vm):
+    """
+    VM/VF pause-resume does not affect workload execution:
+     - 2xVFs running 2xVM instance
+     - both VFs auto-provisioned, running IGT workloads
+     - 1st VM/VF is paused and resumed (but VF state is not saved/loaded)
+     - 2nd VM/VF workload should not be interrupted
+     - IGT workloads shall finish successfully on both VMs
+    """
+    ts: VmmTestingSetup = create_1host_2vm
+    host: Host = ts.host
+    vm0: VirtualMachine = ts.get_vm[0]
+    vm1: VirtualMachine = ts.get_vm[1]
+    assert driver_check(host)
+
+    num_vfs = ts.testing_config.num_vfs
+    assert ts.get_dut().create_vf(num_vfs) == num_vfs
+
+    vf1, vf2 = ts.get_dut().get_vfs_bdf(1, 2)
+    vm0.assign_vf(vf1)
+    vm1.assign_vf(vf2)
+    ts.poweron_vms()
+
+    pause_vf_num = 1
+
+    assert modprobe_driver_run_check(vm0)
+    assert modprobe_driver_run_check(vm1)
+
+    logger.debug("Submit IGT WL (gem_wsim) on VM0")
+    iterations = 3000 # 3k iterations of 10ms WLs give 30s total expected time
+    expected_elapsed_sec = ONE_CYCLE_DURATION_MS * iterations / MS_IN_SEC
+    gem_wsim_vm0 = GemWsim(vm0, 1, iterations, PREEMPT_10MS_WORKLOAD)
+
+    # Allow wsim WL to run some time
+    time.sleep(IGT_INIT_DELAY)
+    assert gem_wsim_vm0.is_running()
+
+    logger.debug("Submit IGT WL (gem_spin_batch) on VM1")
+    igt_vm1 = IgtExecutor(vm1, IgtType.SPIN_BATCH)
+
+    # Special handling of pausing VMs with infinite ExecQuanta - refer to SAS for details
+    logger.debug("Set VF1 EQ/PF before the pause")
+    ts.get_dut().driver.set_exec_quantum_ms(pause_vf_num, 1)
+    ts.get_dut().driver.set_preempt_timeout_us(pause_vf_num, 100)
+
+    logger.debug("Pause execution on VM0/VF1")
+    vm0.pause()
+
+    assert igt_check(igt_vm1)
+    logger.debug("VM1 IGT WL (not paused) finished successfully")
+
+    logger.debug("Resume execution on VM0/VF1")
+    vm0.resume()
+
+    logger.debug("Reset VF1 EQ/PF to the initial values (infinite) after resume")
+    ts.get_dut().driver.set_exec_quantum_ms(pause_vf_num, 0)
+    ts.get_dut().driver.set_preempt_timeout_us(pause_vf_num, 0)
+
+    result_vm0 = gem_wsim_vm0.wait_results() # Throws exception on wsim fail
+    assert expected_elapsed_sec * 0.8 < result_vm0.elapsed_sec < expected_elapsed_sec * 1.5
+    logger.debug("VM0 IGT WL (paused-resumed) finished successfully")
+
+    # Check host and VM health status after pause-resume transition
+    assert driver_check(host)
+    assert driver_check(vm0)
+    assert driver_check(vm1)
+
+
+def test_1vm_save_restore_no_driver(create_1host_1vm):
+    """
+    Save/restore single VM state with no guest driver loaded:
+     - 1xVFs running 1xVM instance (single VM acts as source and destination)
+     - platform provisioned with vGPU profile M1 (ATSM, ADLP) or C1 (PVC)
+     - VF state saved and then restored on the same VM instance
+     - driver probed on VM after the resume, IGT workload executed
+    """
+    ts: VmmTestingSetup = create_1host_1vm
+    host: Host = ts.host
+    vm: VirtualMachine = ts.get_vm[0]
+    assert driver_check(host)
+
+    num_vfs = ts.testing_config.num_vfs
+    assert ts.get_dut().create_vf(num_vfs) == num_vfs
+
+    vf = ts.get_dut().get_vf_bdf(1)
+    vm.assign_vf(vf)
+
+    vm.poweron()
+
+    # Run some interactive program (not returning, as vim) to verify state after migration
+    src_proc = ShellExecutor(vm, 'vim migrate.txt')
+    src_pid = src_proc.pid
+
+    # Pause VM and save snapshot
+    logger.debug("Pause execution and save VM state")
+    try:
+        vm.pause()
+        vm.save_state()
+    except exceptions.GuestError as exc:
+        logger.error("State save error: %s", exc)
+        assert False, 'VF migration failed on save'
+
+    # Load previously saved snapshot and resume the same VM
+    logger.debug("Load state on the same VM instance")
+    vm.load_state()
+    vm.resume()
+
+    # Verify program initiated on source VM is stil running after migration
+    migrated_proc = vm.execute_status(src_pid)
+    logger.debug("Migrated process: %s", migrated_proc)
+    assert migrated_proc.exited is False, 'Migrated process is not running after VM snapshot load'
+
+    logger.debug("Probe driver and execute workload on VM")
+    assert modprobe_driver_run_check(vm)
+    assert igt_run_check(vm, IgtType.EXEC_STORE)
+
+    logger.debug("Check driver health on host and VM")
+    assert driver_check(host)
+    assert driver_check(vm)
-- 
2.39.1


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* ✓ i915.CI.BAT: success for vmtb: SR-IOV VF migration test suite
  2026-04-16  8:35 [PATCH i-g-t 0/3] vmtb: SR-IOV VF migration test suite Adam Miszczak
                   ` (2 preceding siblings ...)
  2026-04-16  8:35 ` [PATCH i-g-t 3/3] tools/vmtb: Add VF migration tests Adam Miszczak
@ 2026-04-16 15:40 ` Patchwork
  2026-04-16 15:50 ` ✓ Xe.CI.BAT: " Patchwork
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-04-16 15:40 UTC (permalink / raw)
  To: Adam Miszczak; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 6523 bytes --]

== Series Details ==

Series: vmtb: SR-IOV VF migration test suite
URL   : https://patchwork.freedesktop.org/series/164985/
State : success

== Summary ==

CI Bug Log - changes from IGT_8862 -> IGTPW_14997
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/index.html

Participating hosts (41 -> 40)
------------------------------

  Additional (1): bat-adls-6 
  Missing    (2): bat-dg2-13 fi-snb-2520m 

Known issues
------------

  Here are the changes found in IGTPW_14997 that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@dmabuf@all-tests:
    - bat-arlh-3:         NOTRUN -> [SKIP][1] ([i915#15931])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/bat-arlh-3/igt@dmabuf@all-tests.html
    - bat-adls-6:         NOTRUN -> [SKIP][2] ([i915#15931])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/bat-adls-6/igt@dmabuf@all-tests.html

  * igt@gem_lmem_swapping@parallel-random-engines:
    - bat-adls-6:         NOTRUN -> [SKIP][3] ([i915#4613]) +3 other tests skip
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/bat-adls-6/igt@gem_lmem_swapping@parallel-random-engines.html

  * igt@gem_tiled_pread_basic@basic:
    - bat-adls-6:         NOTRUN -> [SKIP][4] ([i915#15656])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/bat-adls-6/igt@gem_tiled_pread_basic@basic.html

  * igt@i915_selftest@live@workarounds:
    - bat-arls-6:         [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/bat-arls-6/igt@i915_selftest@live@workarounds.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/bat-arls-6/igt@i915_selftest@live@workarounds.html

  * igt@intel_hwmon@hwmon-read:
    - bat-adls-6:         NOTRUN -> [SKIP][7] ([i915#7707]) +1 other test skip
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/bat-adls-6/igt@intel_hwmon@hwmon-read.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - bat-adls-6:         NOTRUN -> [SKIP][8] ([i915#4103]) +1 other test skip
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/bat-adls-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html

  * igt@kms_dsc@dsc-basic:
    - bat-adls-6:         NOTRUN -> [SKIP][9] ([i915#3555] / [i915#3840])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/bat-adls-6/igt@kms_dsc@dsc-basic.html

  * igt@kms_force_connector_basic@force-load-detect:
    - bat-adls-6:         NOTRUN -> [SKIP][10]
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/bat-adls-6/igt@kms_force_connector_basic@force-load-detect.html

  * igt@kms_pm_backlight@basic-brightness:
    - bat-adls-6:         NOTRUN -> [SKIP][11] ([i915#5354])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/bat-adls-6/igt@kms_pm_backlight@basic-brightness.html

  * igt@kms_psr@psr-primary-mmap-gtt:
    - bat-adls-6:         NOTRUN -> [SKIP][12] ([i915#1072] / [i915#9732]) +3 other tests skip
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/bat-adls-6/igt@kms_psr@psr-primary-mmap-gtt.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - bat-adls-6:         NOTRUN -> [SKIP][13] ([i915#3555])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/bat-adls-6/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@prime_vgem@basic-fence-read:
    - bat-adls-6:         NOTRUN -> [SKIP][14] ([i915#3291]) +2 other tests skip
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/bat-adls-6/igt@prime_vgem@basic-fence-read.html

  
#### Possible fixes ####

  * igt@i915_selftest@live:
    - bat-arlh-3:         [INCOMPLETE][15] ([i915#15622]) -> [PASS][16]
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/bat-arlh-3/igt@i915_selftest@live.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/bat-arlh-3/igt@i915_selftest@live.html

  * igt@i915_selftest@live@gt_pm:
    - bat-arlh-3:         [INCOMPLETE][17] -> [PASS][18]
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/bat-arlh-3/igt@i915_selftest@live@gt_pm.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/bat-arlh-3/igt@i915_selftest@live@gt_pm.html

  * igt@i915_selftest@live@workarounds:
    - bat-arls-5:         [DMESG-FAIL][19] ([i915#12061]) -> [PASS][20] +1 other test pass
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/bat-arls-5/igt@i915_selftest@live@workarounds.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/bat-arls-5/igt@i915_selftest@live@workarounds.html
    - bat-dg2-9:          [DMESG-FAIL][21] ([i915#12061]) -> [PASS][22] +1 other test pass
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/bat-dg2-9/igt@i915_selftest@live@workarounds.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/bat-dg2-9/igt@i915_selftest@live@workarounds.html

  
  [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
  [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
  [i915#15622]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15622
  [i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656
  [i915#15931]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931
  [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
  [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
  [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
  [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
  [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
  [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
  [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
  [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732


Build changes
-------------

  * CI: CI-20190529 -> None
  * IGT: IGT_8862 -> IGTPW_14997

  CI-20190529: 20190529
  CI_DRM_18342: 207a25698a481a39132b52060d7bb294384876ac @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_14997: 48af934059b52ad1cf6246aa4a2c99119bd51a5e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8862: 9b95600c4ae2cb683a8a19ad2a7c006263811a8f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/index.html

[-- Attachment #2: Type: text/html, Size: 7812 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* ✓ Xe.CI.BAT: success for vmtb: SR-IOV VF migration test suite
  2026-04-16  8:35 [PATCH i-g-t 0/3] vmtb: SR-IOV VF migration test suite Adam Miszczak
                   ` (3 preceding siblings ...)
  2026-04-16 15:40 ` ✓ i915.CI.BAT: success for vmtb: SR-IOV VF migration test suite Patchwork
@ 2026-04-16 15:50 ` Patchwork
  2026-04-16 17:34 ` ✗ Xe.CI.FULL: failure " Patchwork
  2026-04-17  3:47 ` ✗ i915.CI.Full: " Patchwork
  6 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-04-16 15:50 UTC (permalink / raw)
  To: Adam Miszczak; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 1152 bytes --]

== Series Details ==

Series: vmtb: SR-IOV VF migration test suite
URL   : https://patchwork.freedesktop.org/series/164985/
State : success

== Summary ==

CI Bug Log - changes from XEIGT_8862_BAT -> XEIGTPW_14997_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (13 -> 13)
------------------------------

  No changes in participating hosts


Changes
-------

  No changes found


Build changes
-------------

  * IGT: IGT_8862 -> IGTPW_14997
  * Linux: xe-4912-7f72587254d9c0142ac57eb050acd8f817585623 -> xe-4913-207a25698a481a39132b52060d7bb294384876ac

  IGTPW_14997: 48af934059b52ad1cf6246aa4a2c99119bd51a5e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8862: 9b95600c4ae2cb683a8a19ad2a7c006263811a8f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4912-7f72587254d9c0142ac57eb050acd8f817585623: 7f72587254d9c0142ac57eb050acd8f817585623
  xe-4913-207a25698a481a39132b52060d7bb294384876ac: 207a25698a481a39132b52060d7bb294384876ac

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/index.html

[-- Attachment #2: Type: text/html, Size: 1711 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* ✗ Xe.CI.FULL: failure for vmtb: SR-IOV VF migration test suite
  2026-04-16  8:35 [PATCH i-g-t 0/3] vmtb: SR-IOV VF migration test suite Adam Miszczak
                   ` (4 preceding siblings ...)
  2026-04-16 15:50 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-04-16 17:34 ` Patchwork
  2026-04-17  3:47 ` ✗ i915.CI.Full: " Patchwork
  6 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-04-16 17:34 UTC (permalink / raw)
  To: Adam Miszczak; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 32287 bytes --]

== Series Details ==

Series: vmtb: SR-IOV VF migration test suite
URL   : https://patchwork.freedesktop.org/series/164985/
State : failure

== Summary ==

CI Bug Log - changes from XEIGT_8862_FULL -> XEIGTPW_14997_FULL
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with XEIGTPW_14997_FULL absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in XEIGTPW_14997_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 (2 -> 2)
------------------------------

  No changes in participating hosts

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in XEIGTPW_14997_FULL:

### IGT changes ###

#### Possible regressions ####

  * igt@kms_vblank@query-idle-hang:
    - shard-bmg:          NOTRUN -> [FAIL][1] +1 other test fail
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-6/igt@kms_vblank@query-idle-hang.html

  
Known issues
------------

  Here are the changes found in XEIGTPW_14997_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
    - shard-bmg:          NOTRUN -> [SKIP][2] ([Intel XE#2370])
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html

  * igt@kms_big_fb@linear-8bpp-rotate-90:
    - shard-bmg:          NOTRUN -> [SKIP][3] ([Intel XE#2327]) +4 other tests skip
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-8/igt@kms_big_fb@linear-8bpp-rotate-90.html

  * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-bmg:          NOTRUN -> [SKIP][4] ([Intel XE#7059] / [Intel XE#7085])
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
    - shard-bmg:          NOTRUN -> [SKIP][5] ([Intel XE#1124]) +12 other tests skip
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
    - shard-bmg:          NOTRUN -> [SKIP][6] ([Intel XE#607] / [Intel XE#7361])
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-2/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html

  * igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][7] ([Intel XE#7621])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-7/igt@kms_bw@connected-linear-tiling-1-displays-2160x1440p.html

  * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][8] ([Intel XE#7679])
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-5/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html

  * igt@kms_bw@linear-tiling-2-displays-2560x1440p:
    - shard-bmg:          NOTRUN -> [SKIP][9] ([Intel XE#367] / [Intel XE#7354]) +3 other tests skip
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-9/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2:
    - shard-bmg:          NOTRUN -> [SKIP][10] ([Intel XE#2652]) +17 other tests skip
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-bmg:          [PASS][11] -> [INCOMPLETE][12] ([Intel XE#7084]) +1 other test incomplete
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
    - shard-bmg:          NOTRUN -> [SKIP][13] ([Intel XE#3432]) +2 other tests skip
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
    - shard-bmg:          NOTRUN -> [SKIP][14] ([Intel XE#2887]) +14 other tests skip
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-10/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_cdclk@mode-transition:
    - shard-bmg:          NOTRUN -> [SKIP][15] ([Intel XE#2724] / [Intel XE#7449])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-5/igt@kms_cdclk@mode-transition.html

  * igt@kms_chamelium_color@ctm-0-25:
    - shard-bmg:          NOTRUN -> [SKIP][16] ([Intel XE#2325] / [Intel XE#7358]) +4 other tests skip
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-3/igt@kms_chamelium_color@ctm-0-25.html

  * igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:
    - shard-bmg:          NOTRUN -> [SKIP][17] ([Intel XE#2252]) +8 other tests skip
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-10/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html

  * igt@kms_content_protection@legacy:
    - shard-bmg:          NOTRUN -> [FAIL][18] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +5 other tests fail
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-7/igt@kms_content_protection@legacy.html

  * igt@kms_content_protection@type1:
    - shard-bmg:          NOTRUN -> [SKIP][19] ([Intel XE#7642])
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-5/igt@kms_content_protection@type1.html

  * igt@kms_content_protection@uevent:
    - shard-bmg:          NOTRUN -> [FAIL][20] ([Intel XE#6707] / [Intel XE#7439]) +1 other test fail
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-3/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-onscreen-256x85:
    - shard-bmg:          NOTRUN -> [SKIP][21] ([Intel XE#2320]) +4 other tests skip
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-10/igt@kms_cursor_crc@cursor-onscreen-256x85.html

  * igt@kms_cursor_crc@cursor-onscreen-512x170:
    - shard-bmg:          NOTRUN -> [SKIP][22] ([Intel XE#2321] / [Intel XE#7355]) +4 other tests skip
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-7/igt@kms_cursor_crc@cursor-onscreen-512x170.html

  * igt@kms_cursor_crc@cursor-sliding-256x256:
    - shard-bmg:          [PASS][23] -> [FAIL][24] ([Intel XE#6747]) +1 other test fail
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-3/igt@kms_cursor_crc@cursor-sliding-256x256.html
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-256x256.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-bmg:          NOTRUN -> [SKIP][25] ([Intel XE#2286] / [Intel XE#6035]) +1 other test skip
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
    - shard-bmg:          NOTRUN -> [SKIP][26] ([Intel XE#1508])
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-4/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html

  * igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
    - shard-bmg:          NOTRUN -> [SKIP][27] ([Intel XE#4210] / [Intel XE#7467])
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-4/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html

  * igt@kms_dp_link_training@uhbr-mst:
    - shard-bmg:          NOTRUN -> [SKIP][28] ([Intel XE#4354] / [Intel XE#7386])
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-8/igt@kms_dp_link_training@uhbr-mst.html

  * igt@kms_dsc@dsc-with-bpc:
    - shard-bmg:          NOTRUN -> [SKIP][29] ([Intel XE#2244]) +1 other test skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-10/igt@kms_dsc@dsc-with-bpc.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][30] ([Intel XE#6126] / [Intel XE#776]) +1 other test skip
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-7/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a3:
    - shard-bmg:          NOTRUN -> [ABORT][31] ([Intel XE#5545] / [Intel XE#6652])
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-2/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a3.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
    - shard-bmg:          NOTRUN -> [SKIP][32] ([Intel XE#7178] / [Intel XE#7351]) +3 other tests skip
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][33] ([Intel XE#4141]) +20 other tests skip
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][34] ([Intel XE#2311]) +41 other tests skip
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][35] ([Intel XE#7061] / [Intel XE#7356]) +5 other tests skip
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][36] ([Intel XE#2313]) +35 other tests skip
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_joiner@basic-big-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][37] ([Intel XE#6901])
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-6/igt@kms_joiner@basic-big-joiner.html

  * igt@kms_joiner@basic-ultra-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][38] ([Intel XE#6911] / [Intel XE#7378]) +1 other test skip
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-3/igt@kms_joiner@basic-ultra-joiner.html

  * igt@kms_joiner@invalid-modeset-force-ultra-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][39] ([Intel XE#6911] / [Intel XE#7466])
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-4/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html

  * igt@kms_panel_fitting@atomic-fastset:
    - shard-bmg:          NOTRUN -> [SKIP][40] ([Intel XE#2486])
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-3/igt@kms_panel_fitting@atomic-fastset.html

  * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5:
    - shard-bmg:          NOTRUN -> [SKIP][41] ([Intel XE#7130]) +1 other test skip
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-4/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html

  * igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping:
    - shard-bmg:          NOTRUN -> [SKIP][42] ([Intel XE#7283]) +7 other tests skip
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-1/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html

  * igt@kms_plane_lowres@tiling-y:
    - shard-bmg:          NOTRUN -> [SKIP][43] ([Intel XE#2393]) +1 other test skip
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-7/igt@kms_plane_lowres@tiling-y.html

  * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b:
    - shard-bmg:          NOTRUN -> [SKIP][44] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b.html

  * igt@kms_pm_backlight@basic-brightness:
    - shard-bmg:          NOTRUN -> [SKIP][45] ([Intel XE#7376] / [Intel XE#870])
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-10/igt@kms_pm_backlight@basic-brightness.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-bmg:          NOTRUN -> [SKIP][46] ([Intel XE#2499])
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-4/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
    - shard-bmg:          NOTRUN -> [SKIP][47] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836])
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-1/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html

  * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
    - shard-bmg:          NOTRUN -> [SKIP][48] ([Intel XE#1489]) +10 other tests skip
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-3/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html

  * igt@kms_psr2_su@frontbuffer-xrgb8888:
    - shard-bmg:          NOTRUN -> [SKIP][49] ([Intel XE#2387] / [Intel XE#7429])
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-4/igt@kms_psr2_su@frontbuffer-xrgb8888.html

  * igt@kms_psr@psr-primary-page-flip:
    - shard-bmg:          NOTRUN -> [SKIP][50] ([Intel XE#2234] / [Intel XE#2850]) +15 other tests skip
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-2/igt@kms_psr@psr-primary-page-flip.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-bmg:          NOTRUN -> [SKIP][51] ([Intel XE#1406] / [Intel XE#2414])
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@kms_rotation_crc@primary-rotation-90:
    - shard-bmg:          NOTRUN -> [SKIP][52] ([Intel XE#3904] / [Intel XE#7342]) +1 other test skip
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-3/igt@kms_rotation_crc@primary-rotation-90.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
    - shard-bmg:          NOTRUN -> [SKIP][53] ([Intel XE#2330] / [Intel XE#5813])
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-9/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html

  * igt@kms_scaling_modes@scaling-mode-full:
    - shard-bmg:          NOTRUN -> [SKIP][54] ([Intel XE#2413])
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-5/igt@kms_scaling_modes@scaling-mode-full.html

  * igt@kms_sharpness_filter@invalid-filter-with-scaling-mode:
    - shard-bmg:          NOTRUN -> [SKIP][55] ([Intel XE#6503]) +4 other tests skip
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-2/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html

  * igt@kms_vrr@flip-basic:
    - shard-bmg:          NOTRUN -> [SKIP][56] ([Intel XE#1499]) +1 other test skip
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-5/igt@kms_vrr@flip-basic.html

  * igt@xe_compute@ccs-mode-basic:
    - shard-bmg:          NOTRUN -> [SKIP][57] ([Intel XE#6599])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-3/igt@xe_compute@ccs-mode-basic.html

  * igt@xe_create@multigpu-create-massive-size:
    - shard-bmg:          NOTRUN -> [SKIP][58] ([Intel XE#2504] / [Intel XE#7319] / [Intel XE#7350])
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-9/igt@xe_create@multigpu-create-massive-size.html

  * igt@xe_eudebug@basic-exec-queues-enable:
    - shard-bmg:          NOTRUN -> [SKIP][59] ([Intel XE#7636]) +16 other tests skip
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-10/igt@xe_eudebug@basic-exec-queues-enable.html

  * igt@xe_evict@evict-mixed-many-threads-small:
    - shard-bmg:          [PASS][60] -> [INCOMPLETE][61] ([Intel XE#6321])
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-small.html
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-small.html

  * igt@xe_evict@evict-small-multi-queue-priority:
    - shard-bmg:          NOTRUN -> [SKIP][62] ([Intel XE#7140])
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-10/igt@xe_evict@evict-small-multi-queue-priority.html

  * igt@xe_exec_basic@multigpu-once-null-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][63] ([Intel XE#2322] / [Intel XE#7372]) +9 other tests skip
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-6/igt@xe_exec_basic@multigpu-once-null-rebind.html

  * igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr:
    - shard-bmg:          NOTRUN -> [SKIP][64] ([Intel XE#7136]) +15 other tests skip
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-1/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr.html

  * igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate:
    - shard-bmg:          NOTRUN -> [SKIP][65] ([Intel XE#6874]) +38 other tests skip
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-10/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-userptr-invalidate.html

  * igt@xe_exec_threads@threads-multi-queue-mixed-userptr-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][66] ([Intel XE#7138]) +11 other tests skip
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-7/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-rebind.html

  * igt@xe_multigpu_svm@mgpu-atomic-op-basic:
    - shard-bmg:          NOTRUN -> [SKIP][67] ([Intel XE#6964]) +5 other tests skip
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-5/igt@xe_multigpu_svm@mgpu-atomic-op-basic.html

  * igt@xe_pm@d3cold-basic:
    - shard-bmg:          NOTRUN -> [SKIP][68] ([Intel XE#2284] / [Intel XE#7370]) +1 other test skip
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-5/igt@xe_pm@d3cold-basic.html

  * igt@xe_pm@d3hot-i2c:
    - shard-bmg:          NOTRUN -> [SKIP][69] ([Intel XE#5742] / [Intel XE#7328] / [Intel XE#7400])
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-3/igt@xe_pm@d3hot-i2c.html

  * igt@xe_pm_residency@cpg-basic:
    - shard-bmg:          [PASS][70] -> [DMESG-WARN][71] ([Intel XE#7725])
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-3/igt@xe_pm_residency@cpg-basic.html
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-3/igt@xe_pm_residency@cpg-basic.html

  * igt@xe_pxp@pxp-optout:
    - shard-bmg:          NOTRUN -> [SKIP][72] ([Intel XE#4733] / [Intel XE#7417]) +3 other tests skip
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-5/igt@xe_pxp@pxp-optout.html

  * igt@xe_query@multigpu-query-invalid-cs-cycles:
    - shard-bmg:          NOTRUN -> [SKIP][73] ([Intel XE#944]) +3 other tests skip
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-10/igt@xe_query@multigpu-query-invalid-cs-cycles.html

  * igt@xe_sriov_flr@flr-twice:
    - shard-bmg:          NOTRUN -> [FAIL][74] ([Intel XE#6569])
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-1/igt@xe_sriov_flr@flr-twice.html

  * igt@xe_survivability@runtime-survivability:
    - shard-bmg:          NOTRUN -> [DMESG-WARN][75] ([Intel XE#6627] / [Intel XE#7419])
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-7/igt@xe_survivability@runtime-survivability.html

  
#### Possible fixes ####

  * igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p:
    - shard-bmg:          [SKIP][76] ([Intel XE#7621]) -> [PASS][77]
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-3/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-4/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic:
    - shard-bmg:          [FAIL][78] ([Intel XE#7571]) -> [PASS][79]
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-10/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-10/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html

  * igt@kms_flip@plain-flip-fb-recreate-interruptible@b-dp2:
    - shard-bmg:          [ABORT][80] ([Intel XE#5545] / [Intel XE#6652]) -> [PASS][81]
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-2/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-dp2.html
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-2/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-dp2.html

  * igt@kms_hdmi_inject@inject-audio:
    - shard-bmg:          [SKIP][82] ([Intel XE#7308]) -> [PASS][83]
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-8/igt@kms_hdmi_inject@inject-audio.html
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-6/igt@kms_hdmi_inject@inject-audio.html

  * igt@kms_hdr@invalid-hdr:
    - shard-bmg:          [SKIP][84] ([Intel XE#1503]) -> [PASS][85]
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-10/igt@kms_hdr@invalid-hdr.html
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-1/igt@kms_hdr@invalid-hdr.html

  * igt@kms_vrr@cmrr@pipe-a-edp-1:
    - shard-lnl:          [FAIL][86] ([Intel XE#4459]) -> [PASS][87] +1 other test pass
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-lnl-4/igt@kms_vrr@cmrr@pipe-a-edp-1.html
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html

  * igt@xe_sriov_flr@flr-vf1-clear:
    - shard-bmg:          [FAIL][88] ([Intel XE#6569]) -> [PASS][89]
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-2/igt@xe_sriov_flr@flr-vf1-clear.html
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-1/igt@xe_sriov_flr@flr-vf1-clear.html

  
#### Warnings ####

  * igt@kms_hdr@brightness-with-hdr:
    - shard-bmg:          [SKIP][90] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][91] ([Intel XE#3544])
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8862/shard-bmg-3/igt@kms_hdr@brightness-with-hdr.html
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html

  
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
  [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [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#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
  [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
  [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
  [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
  [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#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
  [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
  [Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
  [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
  [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
  [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
  [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210
  [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
  [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
  [Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742
  [Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813
  [Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035
  [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
  [Intel XE#6126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6126
  [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
  [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
  [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
  [Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
  [Intel XE#6627]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6627
  [Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
  [Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
  [Intel XE#6747]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6747
  [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
  [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
  [Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901
  [Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
  [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
  [Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
  [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
  [Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
  [Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085
  [Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130
  [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
  [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
  [Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
  [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
  [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
  [Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308
  [Intel XE#7319]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7319
  [Intel XE#7328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7328
  [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
  [Intel XE#7350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7350
  [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
  [Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354
  [Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
  [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
  [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
  [Intel XE#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361
  [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
  [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
  [Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
  [Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
  [Intel XE#7378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7378
  [Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
  [Intel XE#7386]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7386
  [Intel XE#7400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7400
  [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
  [Intel XE#7419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7419
  [Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
  [Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439
  [Intel XE#7449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7449
  [Intel XE#7466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7466
  [Intel XE#7467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7467
  [Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
  [Intel XE#7621]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7621
  [Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
  [Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
  [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
  [Intel XE#7725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7725
  [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


Build changes
-------------

  * IGT: IGT_8862 -> IGTPW_14997
  * Linux: xe-4912-7f72587254d9c0142ac57eb050acd8f817585623 -> xe-4913-207a25698a481a39132b52060d7bb294384876ac

  IGTPW_14997: 48af934059b52ad1cf6246aa4a2c99119bd51a5e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8862: 9b95600c4ae2cb683a8a19ad2a7c006263811a8f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4912-7f72587254d9c0142ac57eb050acd8f817585623: 7f72587254d9c0142ac57eb050acd8f817585623
  xe-4913-207a25698a481a39132b52060d7bb294384876ac: 207a25698a481a39132b52060d7bb294384876ac

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14997/index.html

[-- Attachment #2: Type: text/html, Size: 34799 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* ✗ i915.CI.Full: failure for vmtb: SR-IOV VF migration test suite
  2026-04-16  8:35 [PATCH i-g-t 0/3] vmtb: SR-IOV VF migration test suite Adam Miszczak
                   ` (5 preceding siblings ...)
  2026-04-16 17:34 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-04-17  3:47 ` Patchwork
  6 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-04-17  3:47 UTC (permalink / raw)
  To: Adam Miszczak; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 150533 bytes --]

== Series Details ==

Series: vmtb: SR-IOV VF migration test suite
URL   : https://patchwork.freedesktop.org/series/164985/
State : failure

== Summary ==

CI Bug Log - changes from IGT_8862_full -> IGTPW_14997_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_14997_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_14997_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_14997/index.html

Participating hosts (10 -> 10)
------------------------------

  No changes in participating hosts

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in IGTPW_14997_full:

### IGT changes ###

#### Possible regressions ####

  * igt@gem_exec_schedule@manyslice@bcs0:
    - shard-dg2:          [PASS][1] -> [ABORT][2] +1 other test abort
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-dg2-1/igt@gem_exec_schedule@manyslice@bcs0.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-3/igt@gem_exec_schedule@manyslice@bcs0.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
    - shard-rkl:          NOTRUN -> [ABORT][3] +1 other test abort
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html

  
New tests
---------

  New tests have been introduced between IGT_8862_full and IGTPW_14997_full:

### New IGT tests (113) ###

  * igt@i915_drm_fdinfo@all-busy-check-all:
    - Statuses : 2 pass(s) 4 skip(s)
    - Exec time: [0.0, 0.53] s

  * igt@i915_drm_fdinfo@all-busy-idle-check-all:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_drm_fdinfo@basics:
    - Statuses : 6 pass(s) 1 skip(s)
    - Exec time: [0.0] s

  * igt@i915_drm_fdinfo@busy:
    - Statuses : 3 pass(s) 4 skip(s)
    - Exec time: [0.0, 2.63] s

  * igt@i915_drm_fdinfo@busy-check-all:
    - Statuses : 2 pass(s) 4 skip(s)
    - Exec time: [0.0, 2.60] s

  * igt@i915_drm_fdinfo@busy-check-all@bcs0:
    - Statuses : 2 pass(s) 3 skip(s)
    - Exec time: [0.0, 0.53] s

  * igt@i915_drm_fdinfo@busy-check-all@ccs0:
    - Statuses : 2 skip(s)
    - Exec time: [0.0] s

  * igt@i915_drm_fdinfo@busy-check-all@rcs0:
    - Statuses : 2 pass(s) 3 skip(s)
    - Exec time: [0.00, 0.53] s

  * igt@i915_drm_fdinfo@busy-check-all@vcs0:
    - Statuses : 2 pass(s) 3 skip(s)
    - Exec time: [0.0, 0.53] s

  * igt@i915_drm_fdinfo@busy-check-all@vcs1:
    - Statuses : 1 pass(s) 3 skip(s)
    - Exec time: [0.0, 0.52] s

  * igt@i915_drm_fdinfo@busy-check-all@vecs0:
    - Statuses : 2 pass(s) 3 skip(s)
    - Exec time: [0.0, 0.53] s

  * igt@i915_drm_fdinfo@busy-check-all@vecs1:
    - Statuses : 1 skip(s)
    - Exec time: [0.0] s

  * igt@i915_drm_fdinfo@busy-hang:
    - Statuses : 1 pass(s) 4 skip(s)
    - Exec time: [0.0, 5.14] s

  * igt@i915_drm_fdinfo@busy-hang@bcs0:
    - Statuses : 1 pass(s) 3 skip(s)
    - Exec time: [0.00, 1.02] s

  * igt@i915_drm_fdinfo@busy-hang@ccs0:
    - Statuses : 2 skip(s)
    - Exec time: [0.0, 0.00] s

  * igt@i915_drm_fdinfo@busy-hang@rcs0:
    - Statuses : 1 pass(s) 3 skip(s)
    - Exec time: [0.00, 1.03] s

  * igt@i915_drm_fdinfo@busy-hang@vcs0:
    - Statuses : 1 pass(s) 3 skip(s)
    - Exec time: [0.0, 1.02] s

  * igt@i915_drm_fdinfo@busy-hang@vcs1:
    - Statuses : 1 pass(s) 3 skip(s)
    - Exec time: [0.0, 1.03] s

  * igt@i915_drm_fdinfo@busy-hang@vecs0:
    - Statuses : 1 pass(s) 3 skip(s)
    - Exec time: [0.0, 1.02] s

  * igt@i915_drm_fdinfo@busy-hang@vecs1:
    - Statuses : 1 skip(s)
    - Exec time: [0.00] s

  * igt@i915_drm_fdinfo@busy-idle:
    - Statuses : 3 pass(s) 4 skip(s)
    - Exec time: [0.0, 3.11] s

  * igt@i915_drm_fdinfo@busy-idle-check-all:
    - Statuses : 3 pass(s) 4 skip(s)
    - Exec time: [0.0, 3.11] s

  * igt@i915_drm_fdinfo@busy-idle-check-all@bcs0:
    - Statuses : 3 pass(s) 3 skip(s)
    - Exec time: [0.0, 0.64] s

  * igt@i915_drm_fdinfo@busy-idle-check-all@ccs0:
    - Statuses : 2 skip(s)
    - Exec time: [0.0] s

  * igt@i915_drm_fdinfo@busy-idle-check-all@rcs0:
    - Statuses : 3 pass(s) 3 skip(s)
    - Exec time: [0.00, 0.63] s

  * igt@i915_drm_fdinfo@busy-idle-check-all@vcs0:
    - Statuses : 3 pass(s) 3 skip(s)
    - Exec time: [0.0, 0.63] s

  * igt@i915_drm_fdinfo@busy-idle-check-all@vcs1:
    - Statuses : 1 pass(s) 3 skip(s)
    - Exec time: [0.0, 0.62] s

  * igt@i915_drm_fdinfo@busy-idle-check-all@vecs0:
    - Statuses : 3 pass(s) 3 skip(s)
    - Exec time: [0.0, 0.64] s

  * igt@i915_drm_fdinfo@busy-idle@bcs0:
    - Statuses : 3 pass(s) 3 skip(s)
    - Exec time: [0.0, 0.63] s

  * igt@i915_drm_fdinfo@busy-idle@ccs0:
    - Statuses : 2 skip(s)
    - Exec time: [0.0] s

  * igt@i915_drm_fdinfo@busy-idle@rcs0:
    - Statuses : 3 pass(s) 3 skip(s)
    - Exec time: [0.0, 0.63] s

  * igt@i915_drm_fdinfo@busy-idle@vcs0:
    - Statuses : 3 pass(s) 3 skip(s)
    - Exec time: [0.0, 0.63] s

  * igt@i915_drm_fdinfo@busy-idle@vcs1:
    - Statuses : 1 pass(s) 3 skip(s)
    - Exec time: [0.0, 0.62] s

  * igt@i915_drm_fdinfo@busy-idle@vecs0:
    - Statuses : 3 pass(s) 3 skip(s)
    - Exec time: [0.0, 0.63] s

  * igt@i915_drm_fdinfo@busy-idle@vecs1:
    - Statuses : 1 skip(s)
    - Exec time: [0.0] s

  * igt@i915_drm_fdinfo@busy@bcs0:
    - Statuses : 3 pass(s) 3 skip(s)
    - Exec time: [0.0, 0.53] s

  * igt@i915_drm_fdinfo@busy@ccs0:
    - Statuses : 2 skip(s)
    - Exec time: [0.0] s

  * igt@i915_drm_fdinfo@busy@rcs0:
    - Statuses : 3 pass(s) 3 skip(s)
    - Exec time: [0.0, 0.53] s

  * igt@i915_drm_fdinfo@busy@vcs0:
    - Statuses : 3 pass(s) 3 skip(s)
    - Exec time: [0.0, 0.53] s

  * igt@i915_drm_fdinfo@busy@vcs1:
    - Statuses : 1 pass(s) 3 skip(s)
    - Exec time: [0.0, 0.52] s

  * igt@i915_drm_fdinfo@busy@vecs0:
    - Statuses : 3 pass(s) 3 skip(s)
    - Exec time: [0.0, 0.53] s

  * igt@i915_drm_fdinfo@busy@vecs1:
    - Statuses : 1 skip(s)
    - Exec time: [0.01] s

  * igt@i915_drm_fdinfo@context-close-stress:
    - Statuses : 6 pass(s) 1 skip(s)
    - Exec time: [0.0, 10.76] s

  * igt@i915_drm_fdinfo@idle:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [0.0, 3.61] s

  * igt@i915_drm_fdinfo@idle@bcs0:
    - Statuses : 4 pass(s)
    - Exec time: [0.50] s

  * igt@i915_drm_fdinfo@idle@ccs0:
    - Statuses : 2 pass(s)
    - Exec time: [0.50] s

  * igt@i915_drm_fdinfo@idle@rcs0:
    - Statuses : 4 pass(s)
    - Exec time: [0.50, 0.57] s

  * igt@i915_drm_fdinfo@idle@vcs0:
    - Statuses : 4 pass(s)
    - Exec time: [0.50] s

  * igt@i915_drm_fdinfo@idle@vcs1:
    - Statuses : 4 pass(s)
    - Exec time: [0.50] s

  * igt@i915_drm_fdinfo@idle@vecs0:
    - Statuses : 4 pass(s)
    - Exec time: [0.50] s

  * igt@i915_drm_fdinfo@idle@vecs1:
    - Statuses : 1 pass(s)
    - Exec time: [0.50] s

  * igt@i915_drm_fdinfo@isolation:
    - Statuses : 1 pass(s) 4 skip(s)
    - Exec time: [0.0, 2.63] s

  * igt@i915_drm_fdinfo@isolation@bcs0:
    - Statuses : 1 pass(s) 3 skip(s)
    - Exec time: [0.0, 0.53] s

  * igt@i915_drm_fdinfo@isolation@ccs0:
    - Statuses : 2 skip(s)
    - Exec time: [0.0] s

  * igt@i915_drm_fdinfo@isolation@rcs0:
    - Statuses : 1 pass(s) 3 skip(s)
    - Exec time: [0.00, 0.52] s

  * igt@i915_drm_fdinfo@isolation@vcs0:
    - Statuses : 1 pass(s) 3 skip(s)
    - Exec time: [0.0, 0.52] s

  * igt@i915_drm_fdinfo@isolation@vcs1:
    - Statuses : 1 pass(s) 3 skip(s)
    - Exec time: [0.0, 0.53] s

  * igt@i915_drm_fdinfo@isolation@vecs0:
    - Statuses : 1 pass(s) 3 skip(s)
    - Exec time: [0.0, 0.52] s

  * igt@i915_drm_fdinfo@isolation@vecs1:
    - Statuses : 1 skip(s)
    - Exec time: [0.0] s

  * igt@i915_drm_fdinfo@memory-info-active:
    - Statuses : 6 pass(s) 1 skip(s)
    - Exec time: [0.0, 8.63] s

  * igt@i915_drm_fdinfo@memory-info-active@lmem0:
    - Statuses : 2 pass(s)
    - Exec time: [3.80, 4.35] s

  * igt@i915_drm_fdinfo@memory-info-active@smem0:
    - Statuses : 6 pass(s)
    - Exec time: [1.05, 4.28] s

  * igt@i915_drm_fdinfo@memory-info-idle:
    - Statuses : 3 pass(s) 1 skip(s)
    - Exec time: [0.0, 0.12] s

  * igt@i915_drm_fdinfo@memory-info-idle@lmem0:
    - Statuses : 1 pass(s)
    - Exec time: [0.07] s

  * igt@i915_drm_fdinfo@memory-info-idle@smem0:
    - Statuses : 3 pass(s)
    - Exec time: [0.03, 0.05] s

  * igt@i915_drm_fdinfo@memory-info-purgeable:
    - Statuses : 6 pass(s) 1 skip(s)
    - Exec time: [0.0, 8.37] s

  * igt@i915_drm_fdinfo@memory-info-purgeable@lmem0:
    - Statuses : 2 pass(s)
    - Exec time: [3.46, 4.25] s

  * igt@i915_drm_fdinfo@memory-info-purgeable@smem0:
    - Statuses : 6 pass(s)
    - Exec time: [1.11, 4.29] s

  * igt@i915_drm_fdinfo@memory-info-resident:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [0.0, 8.79] s

  * igt@i915_drm_fdinfo@memory-info-resident@lmem0:
    - Statuses : 2 pass(s)
    - Exec time: [3.58, 4.19] s

  * igt@i915_drm_fdinfo@memory-info-resident@smem0:
    - Statuses : 4 pass(s)
    - Exec time: [1.20, 4.59] s

  * igt@i915_drm_fdinfo@memory-info-shared:
    - Statuses : 6 pass(s) 1 skip(s)
    - Exec time: [0.0, 0.12] s

  * igt@i915_drm_fdinfo@memory-info-shared@lmem0:
    - Statuses : 2 pass(s)
    - Exec time: [0.07, 0.08] s

  * igt@i915_drm_fdinfo@memory-info-shared@smem0:
    - Statuses : 6 pass(s)
    - Exec time: [0.04, 0.05] s

  * igt@i915_drm_fdinfo@most-busy-check-all:
    - Statuses : 2 pass(s) 4 skip(s)
    - Exec time: [0.0, 2.69] s

  * igt@i915_drm_fdinfo@most-busy-check-all@bcs0:
    - Statuses : 2 pass(s) 3 skip(s)
    - Exec time: [0.0, 0.54] s

  * igt@i915_drm_fdinfo@most-busy-check-all@ccs0:
    - Statuses : 2 skip(s)
    - Exec time: [0.0] s

  * igt@i915_drm_fdinfo@most-busy-check-all@rcs0:
    - Statuses : 2 pass(s) 3 skip(s)
    - Exec time: [0.00, 0.56] s

  * igt@i915_drm_fdinfo@most-busy-check-all@vcs0:
    - Statuses : 2 pass(s) 3 skip(s)
    - Exec time: [0.0, 0.53] s

  * igt@i915_drm_fdinfo@most-busy-check-all@vcs1:
    - Statuses : 1 pass(s) 3 skip(s)
    - Exec time: [0.0, 0.53] s

  * igt@i915_drm_fdinfo@most-busy-check-all@vecs0:
    - Statuses : 2 pass(s) 3 skip(s)
    - Exec time: [0.0, 0.53] s

  * igt@i915_drm_fdinfo@most-busy-check-all@vecs1:
    - Statuses : 1 skip(s)
    - Exec time: [0.0] s

  * igt@i915_drm_fdinfo@most-busy-idle-check-all:
    - Statuses : 2 pass(s) 4 skip(s)
    - Exec time: [0.0, 3.16] s

  * igt@i915_drm_fdinfo@most-busy-idle-check-all@bcs0:
    - Statuses : 2 pass(s) 3 skip(s)
    - Exec time: [0.0, 0.63] s

  * igt@i915_drm_fdinfo@most-busy-idle-check-all@ccs0:
    - Statuses : 2 skip(s)
    - Exec time: [0.0] s

  * igt@i915_drm_fdinfo@most-busy-idle-check-all@rcs0:
    - Statuses : 2 pass(s) 3 skip(s)
    - Exec time: [0.00, 0.66] s

  * igt@i915_drm_fdinfo@most-busy-idle-check-all@vcs0:
    - Statuses : 2 pass(s) 3 skip(s)
    - Exec time: [0.0, 0.63] s

  * igt@i915_drm_fdinfo@most-busy-idle-check-all@vcs1:
    - Statuses : 1 pass(s) 3 skip(s)
    - Exec time: [0.0, 0.62] s

  * igt@i915_drm_fdinfo@most-busy-idle-check-all@vecs0:
    - Statuses : 2 pass(s) 3 skip(s)
    - Exec time: [0.0, 0.63] s

  * igt@i915_drm_fdinfo@most-busy-idle-check-all@vecs1:
    - Statuses : 1 skip(s)
    - Exec time: [0.0] s

  * igt@i915_drm_fdinfo@virtual-busy:
    - Statuses : 3 pass(s) 4 skip(s)
    - Exec time: [0.0, 2.66] s

  * igt@i915_drm_fdinfo@virtual-busy-all:
    - Statuses : 3 pass(s) 4 skip(s)
    - Exec time: [0.0, 0.52] s

  * igt@i915_drm_fdinfo@virtual-busy-hang:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_drm_fdinfo@virtual-busy-hang-all:
    - Statuses : 3 pass(s) 4 skip(s)
    - Exec time: [0.0, 1.02] s

  * igt@i915_drm_fdinfo@virtual-busy-idle:
    - Statuses :
    - Exec time: [None] s

  * igt@i915_drm_fdinfo@virtual-busy-idle-all:
    - Statuses : 3 pass(s) 4 skip(s)
    - Exec time: [0.0, 0.62] s

  * igt@i915_drm_fdinfo@virtual-idle:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [0.0, 3.59] s

  * igt@kms_flip@addfb25-y-tiled-small-legacy:
    - Statuses :
    - Exec time: [None] s

  * igt@kms_flip@after:
    - Statuses :
    - Exec time: [None] s

  * igt@kms_flip@context-create:
    - Statuses :
    - Exec time: [None] s

  * igt@kms_flip@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc:
    - Statuses :
    - Exec time: [None] s

  * igt@kms_flip@display-3x:
    - Statuses :
    - Exec time: [None] s

  * igt@kms_flip@fbc-1p-primscrn-indfb-msflip-blt:
    - Statuses :
    - Exec time: [None] s

  * igt@kms_flip@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-cpu:
    - Statuses :
    - Exec time: [None] s

  * igt@kms_flip@linear-16bpp-rotate-90:
    - Statuses :
    - Exec time: [None] s

  * igt@kms_flip@multi-wait-all-signaled:
    - Statuses :
    - Exec time: [None] s

  * igt@kms_flip@process:
    - Statuses :
    - Exec time: [None] s

  * igt@kms_flip@rc6-idle:
    - Statuses :
    - Exec time: [None] s

  * igt@kms_flip@sysfs:
    - Statuses :
    - Exec time: [None] s

  * igt@kms_plane_multiple@2x-tiling-x@pipe-a-hdmi-a-1-pipe-b-vga-1:
    - Statuses : 1 pass(s)
    - Exec time: [0.79] s

  * igt@kms_plane_multiple@2x-tiling-x@pipe-a-vga-1-pipe-b-hdmi-a-1:
    - Statuses : 1 pass(s)
    - Exec time: [0.67] s

  * igt@kms_plane_multiple@2x-tiling-x@pipe-b-hdmi-a-1-pipe-a-vga-1:
    - Statuses : 1 pass(s)
    - Exec time: [0.82] s

  * igt@kms_plane_multiple@2x-tiling-x@pipe-b-vga-1-pipe-a-hdmi-a-1:
    - Statuses : 1 pass(s)
    - Exec time: [0.69] s

  

Known issues
------------

  Here are the changes found in IGTPW_14997_full that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@api_intel_bb@crc32:
    - shard-tglu:         NOTRUN -> [SKIP][4] ([i915#6230])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-4/igt@api_intel_bb@crc32.html

  * igt@api_intel_bb@object-reloc-keep-cache:
    - shard-rkl:          NOTRUN -> [SKIP][5] ([i915#8411]) +1 other test skip
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-2/igt@api_intel_bb@object-reloc-keep-cache.html

  * igt@device_reset@cold-reset-bound:
    - shard-tglu-1:       NOTRUN -> [SKIP][6] ([i915#11078])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-1/igt@device_reset@cold-reset-bound.html

  * igt@device_reset@unbind-cold-reset-rebind:
    - shard-dg1:          NOTRUN -> [SKIP][7] ([i915#11078])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-15/igt@device_reset@unbind-cold-reset-rebind.html
    - shard-tglu:         NOTRUN -> [SKIP][8] ([i915#11078])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-7/igt@device_reset@unbind-cold-reset-rebind.html
    - shard-mtlp:         NOTRUN -> [SKIP][9] ([i915#11078])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-mtlp-4/igt@device_reset@unbind-cold-reset-rebind.html
    - shard-dg2:          NOTRUN -> [SKIP][10] ([i915#11078])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-1/igt@device_reset@unbind-cold-reset-rebind.html

  * igt@drm_buddy@drm_buddy:
    - shard-rkl:          NOTRUN -> [SKIP][11] ([i915#15678])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-2/igt@drm_buddy@drm_buddy.html

  * igt@fbdev@pan:
    - shard-snb:          [PASS][12] -> [FAIL][13] ([i915#15792])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-snb6/igt@fbdev@pan.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-snb4/igt@fbdev@pan.html

  * igt@gem_basic@multigpu-create-close:
    - shard-tglu-1:       NOTRUN -> [SKIP][14] ([i915#7697])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-1/igt@gem_basic@multigpu-create-close.html

  * igt@gem_ccs@block-multicopy-compressed:
    - shard-tglu:         NOTRUN -> [SKIP][15] ([i915#9323])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-9/igt@gem_ccs@block-multicopy-compressed.html

  * igt@gem_ccs@ctrl-surf-copy:
    - shard-rkl:          NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9323])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-2/igt@gem_ccs@ctrl-surf-copy.html

  * igt@gem_ccs@suspend-resume:
    - shard-rkl:          NOTRUN -> [SKIP][17] ([i915#14544] / [i915#9323])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@gem_ccs@suspend-resume.html
    - shard-tglu-1:       NOTRUN -> [SKIP][18] ([i915#9323])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-1/igt@gem_ccs@suspend-resume.html
    - shard-dg1:          NOTRUN -> [SKIP][19] ([i915#9323])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-16/igt@gem_ccs@suspend-resume.html
    - shard-mtlp:         NOTRUN -> [SKIP][20] ([i915#9323])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-mtlp-3/igt@gem_ccs@suspend-resume.html

  * igt@gem_close_race@multigpu-basic-threads:
    - shard-tglu:         NOTRUN -> [SKIP][21] ([i915#7697])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-7/igt@gem_close_race@multigpu-basic-threads.html

  * igt@gem_create@create-ext-set-pat:
    - shard-dg2:          NOTRUN -> [SKIP][22] ([i915#8562])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-8/igt@gem_create@create-ext-set-pat.html

  * igt@gem_ctx_isolation@preservation-s3@rcs0:
    - shard-glk:          [PASS][23] -> [INCOMPLETE][24] ([i915#13356])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-glk2/igt@gem_ctx_isolation@preservation-s3@rcs0.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-glk6/igt@gem_ctx_isolation@preservation-s3@rcs0.html

  * igt@gem_ctx_persistence@heartbeat-hostile:
    - shard-dg2:          NOTRUN -> [SKIP][25] ([i915#8555]) +1 other test skip
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-1/igt@gem_ctx_persistence@heartbeat-hostile.html
    - shard-dg1:          NOTRUN -> [SKIP][26] ([i915#8555]) +1 other test skip
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-15/igt@gem_ctx_persistence@heartbeat-hostile.html
    - shard-mtlp:         NOTRUN -> [SKIP][27] ([i915#8555]) +1 other test skip
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-mtlp-4/igt@gem_ctx_persistence@heartbeat-hostile.html

  * igt@gem_ctx_sseu@mmap-args:
    - shard-rkl:          NOTRUN -> [SKIP][28] ([i915#14544] / [i915#280])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@gem_ctx_sseu@mmap-args.html
    - shard-tglu:         NOTRUN -> [SKIP][29] ([i915#280]) +1 other test skip
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-4/igt@gem_ctx_sseu@mmap-args.html

  * igt@gem_eio@in-flight-suspend:
    - shard-rkl:          [PASS][30] -> [INCOMPLETE][31] ([i915#13390])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-4/igt@gem_eio@in-flight-suspend.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@gem_eio@in-flight-suspend.html
    - shard-dg1:          [PASS][32] -> [DMESG-WARN][33] ([i915#4391] / [i915#4423])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-dg1-17/igt@gem_eio@in-flight-suspend.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-15/igt@gem_eio@in-flight-suspend.html

  * igt@gem_exec_balancer@invalid-bonds:
    - shard-dg2:          NOTRUN -> [SKIP][34] ([i915#4036])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-6/igt@gem_exec_balancer@invalid-bonds.html
    - shard-dg1:          NOTRUN -> [SKIP][35] ([i915#4036])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-12/igt@gem_exec_balancer@invalid-bonds.html

  * igt@gem_exec_balancer@parallel-bb-first:
    - shard-tglu-1:       NOTRUN -> [SKIP][36] ([i915#4525])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-1/igt@gem_exec_balancer@parallel-bb-first.html

  * igt@gem_exec_capture@capture-invisible:
    - shard-glk10:        NOTRUN -> [SKIP][37] ([i915#6334]) +1 other test skip
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-glk10/igt@gem_exec_capture@capture-invisible.html

  * igt@gem_exec_capture@capture-invisible@smem0:
    - shard-tglu:         NOTRUN -> [SKIP][38] ([i915#6334]) +1 other test skip
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-5/igt@gem_exec_capture@capture-invisible@smem0.html

  * igt@gem_exec_capture@capture-recoverable:
    - shard-rkl:          NOTRUN -> [SKIP][39] ([i915#14544] / [i915#6344])
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@gem_exec_capture@capture-recoverable.html
    - shard-tglu-1:       NOTRUN -> [SKIP][40] ([i915#6344])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-1/igt@gem_exec_capture@capture-recoverable.html

  * igt@gem_exec_fence@submit67:
    - shard-dg2:          NOTRUN -> [SKIP][41] ([i915#4812])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-5/igt@gem_exec_fence@submit67.html
    - shard-dg1:          NOTRUN -> [SKIP][42] ([i915#4812]) +1 other test skip
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-13/igt@gem_exec_fence@submit67.html
    - shard-mtlp:         NOTRUN -> [SKIP][43] ([i915#4812])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-mtlp-8/igt@gem_exec_fence@submit67.html

  * igt@gem_exec_flush@basic-uc-set-default:
    - shard-dg2:          NOTRUN -> [SKIP][44] ([i915#3539])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-4/igt@gem_exec_flush@basic-uc-set-default.html

  * igt@gem_exec_flush@basic-wb-rw-default:
    - shard-dg2:          NOTRUN -> [SKIP][45] ([i915#3539] / [i915#4852]) +3 other tests skip
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-4/igt@gem_exec_flush@basic-wb-rw-default.html
    - shard-dg1:          NOTRUN -> [SKIP][46] ([i915#3539] / [i915#4852]) +2 other tests skip
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-19/igt@gem_exec_flush@basic-wb-rw-default.html

  * igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
    - shard-dg2:          NOTRUN -> [SKIP][47] ([i915#3281]) +9 other tests skip
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-7/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html

  * igt@gem_exec_reloc@basic-gtt-cpu-noreloc:
    - shard-mtlp:         NOTRUN -> [SKIP][48] ([i915#3281]) +3 other tests skip
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-mtlp-4/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html

  * igt@gem_exec_reloc@basic-wc-read:
    - shard-dg1:          NOTRUN -> [SKIP][49] ([i915#3281]) +4 other tests skip
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-12/igt@gem_exec_reloc@basic-wc-read.html

  * igt@gem_exec_reloc@basic-write-read-noreloc:
    - shard-rkl:          NOTRUN -> [SKIP][50] ([i915#3281]) +9 other tests skip
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-2/igt@gem_exec_reloc@basic-write-read-noreloc.html

  * igt@gem_exec_schedule@preempt-queue-chain:
    - shard-mtlp:         NOTRUN -> [SKIP][51] ([i915#4537] / [i915#4812])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-mtlp-1/igt@gem_exec_schedule@preempt-queue-chain.html
    - shard-dg2:          NOTRUN -> [SKIP][52] ([i915#4537] / [i915#4812]) +1 other test skip
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-7/igt@gem_exec_schedule@preempt-queue-chain.html

  * igt@gem_fence_thrash@bo-write-verify-none:
    - shard-dg1:          NOTRUN -> [SKIP][53] ([i915#4860])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-14/igt@gem_fence_thrash@bo-write-verify-none.html
    - shard-mtlp:         NOTRUN -> [SKIP][54] ([i915#4860])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-mtlp-7/igt@gem_fence_thrash@bo-write-verify-none.html
    - shard-dg2:          NOTRUN -> [SKIP][55] ([i915#4860])
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-7/igt@gem_fence_thrash@bo-write-verify-none.html

  * igt@gem_lmem_swapping@parallel-multi:
    - shard-tglu-1:       NOTRUN -> [SKIP][56] ([i915#4613])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-1/igt@gem_lmem_swapping@parallel-multi.html

  * igt@gem_lmem_swapping@random:
    - shard-rkl:          NOTRUN -> [SKIP][57] ([i915#4613]) +1 other test skip
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-2/igt@gem_lmem_swapping@random.html

  * igt@gem_lmem_swapping@random-engines:
    - shard-glk:          NOTRUN -> [SKIP][58] ([i915#4613]) +5 other tests skip
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-glk5/igt@gem_lmem_swapping@random-engines.html

  * igt@gem_lmem_swapping@smem-oom:
    - shard-tglu:         NOTRUN -> [SKIP][59] ([i915#4613]) +1 other test skip
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-8/igt@gem_lmem_swapping@smem-oom.html

  * igt@gem_mmap_gtt@basic-write-read:
    - shard-mtlp:         NOTRUN -> [SKIP][60] ([i915#4077]) +3 other tests skip
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-mtlp-8/igt@gem_mmap_gtt@basic-write-read.html

  * igt@gem_mmap_gtt@cpuset-big-copy-odd:
    - shard-dg2:          NOTRUN -> [SKIP][61] ([i915#4077]) +8 other tests skip
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-5/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
    - shard-dg1:          NOTRUN -> [SKIP][62] ([i915#4077]) +4 other tests skip
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-14/igt@gem_mmap_gtt@cpuset-big-copy-odd.html

  * igt@gem_mmap_wc@write-read-distinct:
    - shard-dg2:          NOTRUN -> [SKIP][63] ([i915#4083]) +2 other tests skip
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-6/igt@gem_mmap_wc@write-read-distinct.html
    - shard-dg1:          NOTRUN -> [SKIP][64] ([i915#4083]) +1 other test skip
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-12/igt@gem_mmap_wc@write-read-distinct.html
    - shard-mtlp:         NOTRUN -> [SKIP][65] ([i915#4083])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-mtlp-6/igt@gem_mmap_wc@write-read-distinct.html

  * igt@gem_partial_pwrite_pread@reads-uncached:
    - shard-rkl:          NOTRUN -> [SKIP][66] ([i915#3282]) +3 other tests skip
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-8/igt@gem_partial_pwrite_pread@reads-uncached.html

  * igt@gem_pread@snoop:
    - shard-dg2:          NOTRUN -> [SKIP][67] ([i915#3282]) +4 other tests skip
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-6/igt@gem_pread@snoop.html
    - shard-dg1:          NOTRUN -> [SKIP][68] ([i915#3282]) +4 other tests skip
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-12/igt@gem_pread@snoop.html
    - shard-mtlp:         NOTRUN -> [SKIP][69] ([i915#3282]) +2 other tests skip
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-mtlp-6/igt@gem_pread@snoop.html

  * igt@gem_pxp@reject-modify-context-protection-off-3:
    - shard-dg2:          NOTRUN -> [SKIP][70] ([i915#4270]) +2 other tests skip
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-3/igt@gem_pxp@reject-modify-context-protection-off-3.html
    - shard-dg1:          NOTRUN -> [SKIP][71] ([i915#4270])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-16/igt@gem_pxp@reject-modify-context-protection-off-3.html

  * igt@gem_render_copy@yf-tiled-to-vebox-y-tiled:
    - shard-mtlp:         NOTRUN -> [SKIP][72] ([i915#8428]) +1 other test skip
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-mtlp-7/igt@gem_render_copy@yf-tiled-to-vebox-y-tiled.html

  * igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled:
    - shard-dg2:          NOTRUN -> [SKIP][73] ([i915#5190] / [i915#8428]) +6 other tests skip
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-8/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html

  * igt@gem_set_tiling_vs_blt@tiled-to-tiled:
    - shard-dg2:          NOTRUN -> [SKIP][74] ([i915#4079])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-8/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
    - shard-dg1:          NOTRUN -> [SKIP][75] ([i915#4079])
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-18/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
    - shard-mtlp:         NOTRUN -> [SKIP][76] ([i915#4079])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-mtlp-1/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html

  * igt@gem_userptr_blits@coherency-unsync:
    - shard-tglu:         NOTRUN -> [SKIP][77] ([i915#3297]) +1 other test skip
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-7/igt@gem_userptr_blits@coherency-unsync.html

  * igt@gem_userptr_blits@dmabuf-sync:
    - shard-tglu-1:       NOTRUN -> [SKIP][78] ([i915#3297] / [i915#3323])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-1/igt@gem_userptr_blits@dmabuf-sync.html

  * igt@gem_userptr_blits@map-fixed-invalidate-busy:
    - shard-dg2:          NOTRUN -> [SKIP][79] ([i915#3297] / [i915#4880])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate-busy.html

  * igt@gem_userptr_blits@readonly-pwrite-unsync:
    - shard-tglu-1:       NOTRUN -> [SKIP][80] ([i915#3297]) +1 other test skip
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-1/igt@gem_userptr_blits@readonly-pwrite-unsync.html

  * igt@gem_userptr_blits@readonly-unsync:
    - shard-rkl:          NOTRUN -> [SKIP][81] ([i915#3297]) +1 other test skip
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-5/igt@gem_userptr_blits@readonly-unsync.html

  * igt@gem_userptr_blits@unsync-unmap:
    - shard-dg2:          NOTRUN -> [SKIP][82] ([i915#3297])
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-3/igt@gem_userptr_blits@unsync-unmap.html
    - shard-rkl:          NOTRUN -> [SKIP][83] ([i915#14544] / [i915#3297])
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap.html

  * igt@gem_workarounds@suspend-resume:
    - shard-glk11:        NOTRUN -> [INCOMPLETE][84] ([i915#13356] / [i915#14586])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-glk11/igt@gem_workarounds@suspend-resume.html

  * igt@gem_workarounds@suspend-resume-context:
    - shard-glk:          NOTRUN -> [INCOMPLETE][85] ([i915#13356])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-glk9/igt@gem_workarounds@suspend-resume-context.html

  * igt@gem_workarounds@suspend-resume-fd:
    - shard-rkl:          [PASS][86] -> [INCOMPLETE][87] ([i915#13356])
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-2/igt@gem_workarounds@suspend-resume-fd.html
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-4/igt@gem_workarounds@suspend-resume-fd.html
    - shard-glk:          [PASS][88] -> [INCOMPLETE][89] ([i915#13356] / [i915#14586])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-glk3/igt@gem_workarounds@suspend-resume-fd.html
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-glk4/igt@gem_workarounds@suspend-resume-fd.html

  * igt@gen7_exec_parse@load-register-reg:
    - shard-mtlp:         NOTRUN -> [SKIP][90] +6 other tests skip
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-mtlp-3/igt@gen7_exec_parse@load-register-reg.html

  * igt@gen9_exec_parse@allowed-single:
    - shard-tglu-1:       NOTRUN -> [SKIP][91] ([i915#2527] / [i915#2856]) +1 other test skip
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-1/igt@gen9_exec_parse@allowed-single.html

  * igt@gen9_exec_parse@basic-rejected:
    - shard-tglu:         NOTRUN -> [SKIP][92] ([i915#2527] / [i915#2856]) +3 other tests skip
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-8/igt@gen9_exec_parse@basic-rejected.html

  * igt@gen9_exec_parse@bb-secure:
    - shard-dg1:          NOTRUN -> [SKIP][93] ([i915#2527])
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-12/igt@gen9_exec_parse@bb-secure.html
    - shard-mtlp:         NOTRUN -> [SKIP][94] ([i915#2856])
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-mtlp-6/igt@gen9_exec_parse@bb-secure.html

  * igt@gen9_exec_parse@secure-batches:
    - shard-dg2:          NOTRUN -> [SKIP][95] ([i915#2856]) +3 other tests skip
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-5/igt@gen9_exec_parse@secure-batches.html

  * igt@gen9_exec_parse@shadow-peek:
    - shard-rkl:          NOTRUN -> [SKIP][96] ([i915#2527]) +1 other test skip
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-2/igt@gen9_exec_parse@shadow-peek.html

  * igt@i915_drm_fdinfo@all-busy-check-all (NEW):
    - shard-dg2:          NOTRUN -> [SKIP][97] ([i915#14123])
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-7/igt@i915_drm_fdinfo@all-busy-check-all.html

  * igt@i915_drm_fdinfo@busy-idle-check-all@vcs0 (NEW):
    - shard-dg2:          NOTRUN -> [SKIP][98] ([i915#11527]) +7 other tests skip
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-7/igt@i915_drm_fdinfo@busy-idle-check-all@vcs0.html

  * igt@i915_module_load@fault-injection@intel_connector_register:
    - shard-glk:          NOTRUN -> [ABORT][99] ([i915#15342]) +1 other test abort
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-glk8/igt@i915_module_load@fault-injection@intel_connector_register.html

  * igt@i915_module_load@resize-bar:
    - shard-dg2:          [PASS][100] -> [DMESG-WARN][101] ([i915#14545])
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-dg2-5/igt@i915_module_load@resize-bar.html
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-7/igt@i915_module_load@resize-bar.html
    - shard-rkl:          NOTRUN -> [SKIP][102] ([i915#6412])
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-5/igt@i915_module_load@resize-bar.html

  * igt@i915_pm_freq_api@freq-suspend:
    - shard-rkl:          NOTRUN -> [SKIP][103] ([i915#8399])
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-1/igt@i915_pm_freq_api@freq-suspend.html
    - shard-tglu-1:       NOTRUN -> [SKIP][104] ([i915#8399])
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-1/igt@i915_pm_freq_api@freq-suspend.html

  * igt@i915_pm_freq_mult@media-freq@gt0:
    - shard-tglu-1:       NOTRUN -> [SKIP][105] ([i915#6590]) +1 other test skip
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-1/igt@i915_pm_freq_mult@media-freq@gt0.html

  * igt@i915_pm_rpm@system-suspend-execbuf:
    - shard-rkl:          NOTRUN -> [INCOMPLETE][106] ([i915#13356])
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-3/igt@i915_pm_rpm@system-suspend-execbuf.html

  * igt@i915_pm_rps@basic-api:
    - shard-dg2:          NOTRUN -> [SKIP][107] ([i915#11681] / [i915#6621])
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-8/igt@i915_pm_rps@basic-api.html

  * igt@i915_pm_rps@thresholds-idle-park:
    - shard-dg2:          NOTRUN -> [SKIP][108] ([i915#11681])
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-1/igt@i915_pm_rps@thresholds-idle-park.html

  * igt@i915_power@sanity:
    - shard-rkl:          NOTRUN -> [SKIP][109] ([i915#7984])
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-3/igt@i915_power@sanity.html

  * igt@i915_query@query-topology-coherent-slice-mask:
    - shard-dg2:          NOTRUN -> [SKIP][110] ([i915#6188])
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-4/igt@i915_query@query-topology-coherent-slice-mask.html

  * igt@i915_query@test-query-geometry-subslices:
    - shard-tglu:         NOTRUN -> [SKIP][111] ([i915#5723])
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-4/igt@i915_query@test-query-geometry-subslices.html

  * igt@i915_selftest@live@workarounds:
    - shard-dg2:          NOTRUN -> [DMESG-FAIL][112] ([i915#12061]) +1 other test dmesg-fail
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-1/igt@i915_selftest@live@workarounds.html

  * igt@i915_suspend@fence-restore-untiled:
    - shard-glk:          [PASS][113] -> [INCOMPLETE][114] ([i915#4817])
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-glk6/igt@i915_suspend@fence-restore-untiled.html
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-glk5/igt@i915_suspend@fence-restore-untiled.html

  * igt@i915_suspend@forcewake:
    - shard-glk:          NOTRUN -> [INCOMPLETE][115] ([i915#4817])
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-glk3/igt@i915_suspend@forcewake.html
    - shard-rkl:          [PASS][116] -> [ABORT][117] ([i915#15140])
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-4/igt@i915_suspend@forcewake.html
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-1/igt@i915_suspend@forcewake.html

  * igt@i915_suspend@sysfs-reader:
    - shard-glk10:        NOTRUN -> [INCOMPLETE][118] ([i915#4817])
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-glk10/igt@i915_suspend@sysfs-reader.html

  * igt@kms_addfb_basic@basic-x-tiled-legacy:
    - shard-dg2:          NOTRUN -> [SKIP][119] ([i915#4212]) +2 other tests skip
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-4/igt@kms_addfb_basic@basic-x-tiled-legacy.html

  * igt@kms_addfb_basic@tile-pitch-mismatch:
    - shard-dg1:          NOTRUN -> [SKIP][120] ([i915#4212])
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-19/igt@kms_addfb_basic@tile-pitch-mismatch.html
    - shard-mtlp:         NOTRUN -> [SKIP][121] ([i915#4212])
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-mtlp-5/igt@kms_addfb_basic@tile-pitch-mismatch.html

  * igt@kms_atomic@plane-primary-overlay-mutable-zpos:
    - shard-tglu:         NOTRUN -> [SKIP][122] ([i915#9531])
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
    - shard-dg2:          NOTRUN -> [FAIL][123] ([i915#5956]) +1 other test fail
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
    - shard-mtlp:         NOTRUN -> [SKIP][124] ([i915#1769] / [i915#3555])
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-mtlp-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html

  * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
    - shard-glk:          NOTRUN -> [SKIP][125] ([i915#1769])
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-glk2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
    - shard-dg2:          NOTRUN -> [SKIP][126] ([i915#1769] / [i915#3555])
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
    - shard-rkl:          NOTRUN -> [SKIP][127] ([i915#1769] / [i915#3555])
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
    - shard-dg1:          NOTRUN -> [SKIP][128] ([i915#1769] / [i915#3555])
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-18/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
    - shard-snb:          NOTRUN -> [SKIP][129] ([i915#1769])
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-snb5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
    - shard-tglu:         NOTRUN -> [SKIP][130] ([i915#1769] / [i915#3555])
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html

  * igt@kms_big_fb@4-tiled-32bpp-rotate-270:
    - shard-rkl:          NOTRUN -> [SKIP][131] ([i915#14544] / [i915#5286])
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-0:
    - shard-tglu-1:       NOTRUN -> [SKIP][132] ([i915#5286]) +2 other tests skip
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-1/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html

  * igt@kms_big_fb@4-tiled-addfb-size-overflow:
    - shard-rkl:          NOTRUN -> [SKIP][133] ([i915#5286]) +2 other tests skip
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-4/igt@kms_big_fb@4-tiled-addfb-size-overflow.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-tglu:         NOTRUN -> [SKIP][134] ([i915#5286]) +4 other tests skip
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-dg1:          NOTRUN -> [SKIP][135] ([i915#4538] / [i915#5286]) +1 other test skip
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-12/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-mtlp:         [PASS][136] -> [FAIL][137] ([i915#15733] / [i915#5138]) +1 other test fail
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@linear-64bpp-rotate-90:
    - shard-rkl:          NOTRUN -> [SKIP][138] ([i915#3638]) +8 other tests skip
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-1/igt@kms_big_fb@linear-64bpp-rotate-90.html
    - shard-dg1:          NOTRUN -> [SKIP][139] ([i915#3638]) +3 other tests skip
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-14/igt@kms_big_fb@linear-64bpp-rotate-90.html

  * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-rkl:          NOTRUN -> [SKIP][140] ([i915#14544] / [i915#3828])
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
    - shard-tglu-1:       NOTRUN -> [SKIP][141] ([i915#3828])
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-1/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-tglu:         NOTRUN -> [SKIP][142] ([i915#3828]) +1 other test skip
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-8/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-270:
    - shard-dg2:          NOTRUN -> [SKIP][143] +13 other tests skip
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-7/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-64bpp-rotate-90:
    - shard-glk11:        NOTRUN -> [SKIP][144] +64 other tests skip
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-glk11/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
    - shard-dg2:          NOTRUN -> [SKIP][145] ([i915#4538] / [i915#5190]) +8 other tests skip
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html

  * igt@kms_big_fb@yf-tiled-addfb:
    - shard-dg2:          NOTRUN -> [SKIP][146] ([i915#5190])
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-6/igt@kms_big_fb@yf-tiled-addfb.html
    - shard-mtlp:         NOTRUN -> [SKIP][147] ([i915#6187])
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-mtlp-6/igt@kms_big_fb@yf-tiled-addfb.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-rkl:          NOTRUN -> [SKIP][148] ([i915#14544]) +3 other tests skip
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-dg1:          NOTRUN -> [SKIP][149] ([i915#4538])
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-14/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
    - shard-dg1:          NOTRUN -> [SKIP][150] ([i915#6095]) +188 other tests skip
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-19/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html

  * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][151] ([i915#14098] / [i915#14544] / [i915#6095]) +2 other tests skip
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2.html

  * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][152] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
    - shard-rkl:          NOTRUN -> [SKIP][153] ([i915#12313]) +2 other tests skip
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-7/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1:
    - shard-tglu-1:       NOTRUN -> [SKIP][154] ([i915#6095]) +19 other tests skip
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][155] ([i915#14544] / [i915#6095]) +3 other tests skip
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [SKIP][156] ([i915#6095]) +49 other tests skip
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-3/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-3.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
    - shard-dg2:          NOTRUN -> [SKIP][157] ([i915#12313]) +1 other test skip
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
    - shard-tglu-1:       NOTRUN -> [SKIP][158] ([i915#12313])
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
    - shard-glk:          NOTRUN -> [SKIP][159] +361 other tests skip
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-glk2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html

  * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs:
    - shard-tglu:         NOTRUN -> [SKIP][160] ([i915#6095]) +49 other tests skip
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-10/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-rkl:          NOTRUN -> [SKIP][161] ([i915#12805])
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
    - shard-glk:          NOTRUN -> [INCOMPLETE][162] ([i915#15582]) +1 other test incomplete
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-glk6/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
    - shard-dg2:          NOTRUN -> [SKIP][163] ([i915#10307] / [i915#6095]) +98 other tests skip
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html

  * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-c-hdmi-a-1:
    - shard-rkl:          NOTRUN -> [SKIP][164] ([i915#14098] / [i915#6095]) +41 other tests skip
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-2/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-c-hdmi-a-1.html

  * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-2:
    - shard-glk10:        NOTRUN -> [SKIP][165] +154 other tests skip
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-glk10/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-2.html

  * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
    - shard-tglu:         NOTRUN -> [SKIP][166] ([i915#12313]) +3 other tests skip
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-3/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][167] ([i915#6095]) +65 other tests skip
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html

  * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-b-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][168] ([i915#6095]) +19 other tests skip
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-mtlp-1/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-b-edp-1.html

  * igt@kms_cdclk@mode-transition:
    - shard-dg1:          NOTRUN -> [SKIP][169] ([i915#3742])
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-17/igt@kms_cdclk@mode-transition.html

  * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1:
    - shard-dg2:          NOTRUN -> [SKIP][170] ([i915#13781]) +4 other tests skip
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-4/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html

  * igt@kms_chamelium_audio@hdmi-audio-edid:
    - shard-tglu-1:       NOTRUN -> [SKIP][171] ([i915#11151] / [i915#7828]) +4 other tests skip
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-1/igt@kms_chamelium_audio@hdmi-audio-edid.html

  * igt@kms_chamelium_frames@dp-crc-single:
    - shard-tglu:         NOTRUN -> [SKIP][172] ([i915#11151] / [i915#7828]) +6 other tests skip
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-4/igt@kms_chamelium_frames@dp-crc-single.html

  * igt@kms_chamelium_frames@hdmi-frame-dump:
    - shard-rkl:          NOTRUN -> [SKIP][173] ([i915#11151] / [i915#7828]) +8 other tests skip
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-4/igt@kms_chamelium_frames@hdmi-frame-dump.html

  * igt@kms_chamelium_frames@vga-frame-dump:
    - shard-rkl:          NOTRUN -> [SKIP][174] ([i915#11151] / [i915#14544] / [i915#7828])
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@kms_chamelium_frames@vga-frame-dump.html

  * igt@kms_chamelium_hpd@dp-hpd-storm:
    - shard-dg2:          NOTRUN -> [SKIP][175] ([i915#11151] / [i915#7828]) +6 other tests skip
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-4/igt@kms_chamelium_hpd@dp-hpd-storm.html
    - shard-dg1:          NOTRUN -> [SKIP][176] ([i915#11151] / [i915#7828]) +1 other test skip
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-17/igt@kms_chamelium_hpd@dp-hpd-storm.html

  * igt@kms_content_protection@dp-mst-lic-type-0:
    - shard-rkl:          NOTRUN -> [SKIP][177] ([i915#15330] / [i915#3116])
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-0.html

  * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
    - shard-rkl:          NOTRUN -> [SKIP][178] ([i915#15330]) +1 other test skip
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-2/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
    - shard-dg1:          NOTRUN -> [SKIP][179] ([i915#15330])
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-18/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
    - shard-tglu:         NOTRUN -> [SKIP][180] ([i915#15330])
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-2/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
    - shard-mtlp:         NOTRUN -> [SKIP][181] ([i915#15330])
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-mtlp-7/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html

  * igt@kms_content_protection@dp-mst-type-0-hdcp14:
    - shard-dg2:          NOTRUN -> [SKIP][182] ([i915#15330])
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-7/igt@kms_content_protection@dp-mst-type-0-hdcp14.html

  * igt@kms_content_protection@legacy-hdcp14:
    - shard-tglu-1:       NOTRUN -> [SKIP][183] ([i915#15865])
   [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-1/igt@kms_content_protection@legacy-hdcp14.html

  * igt@kms_content_protection@lic-type-1:
    - shard-rkl:          NOTRUN -> [SKIP][184] ([i915#15865]) +1 other test skip
   [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-2/igt@kms_content_protection@lic-type-1.html

  * igt@kms_content_protection@suspend-resume:
    - shard-tglu:         NOTRUN -> [SKIP][185] ([i915#15865]) +2 other tests skip
   [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-8/igt@kms_content_protection@suspend-resume.html

  * igt@kms_content_protection@type1:
    - shard-dg2:          NOTRUN -> [SKIP][186] ([i915#15865])
   [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-1/igt@kms_content_protection@type1.html
    - shard-dg1:          NOTRUN -> [SKIP][187] ([i915#15865])
   [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-15/igt@kms_content_protection@type1.html

  * igt@kms_cursor_crc@cursor-offscreen-512x512:
    - shard-dg2:          NOTRUN -> [SKIP][188] ([i915#13049]) +2 other tests skip
   [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-8/igt@kms_cursor_crc@cursor-offscreen-512x512.html
    - shard-dg1:          NOTRUN -> [SKIP][189] ([i915#13049])
   [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-15/igt@kms_cursor_crc@cursor-offscreen-512x512.html
    - shard-mtlp:         NOTRUN -> [SKIP][190] ([i915#13049])
   [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-mtlp-5/igt@kms_cursor_crc@cursor-offscreen-512x512.html

  * igt@kms_cursor_crc@cursor-onscreen-64x21:
    - shard-rkl:          [PASS][191] -> [FAIL][192] ([i915#13566]) +1 other test fail
   [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-64x21.html
   [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-64x21.html

  * igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1:
    - shard-tglu:         [PASS][193] -> [FAIL][194] ([i915#13566]) +1 other test fail
   [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1.html
   [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1.html

  * igt@kms_cursor_crc@cursor-random-512x170:
    - shard-rkl:          NOTRUN -> [SKIP][195] ([i915#13049]) +3 other tests skip
   [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-8/igt@kms_cursor_crc@cursor-random-512x170.html
    - shard-tglu:         NOTRUN -> [SKIP][196] ([i915#13049]) +2 other tests skip
   [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-8/igt@kms_cursor_crc@cursor-random-512x170.html

  * igt@kms_cursor_crc@cursor-rapid-movement-32x32:
    - shard-dg2:          NOTRUN -> [SKIP][197] ([i915#3555]) +5 other tests skip
   [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-5/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
    - shard-tglu-1:       NOTRUN -> [SKIP][198] ([i915#3555]) +1 other test skip
   [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
    - shard-dg1:          NOTRUN -> [SKIP][199] ([i915#3555]) +4 other tests skip
   [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-14/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html

  * igt@kms_cursor_crc@cursor-sliding-256x85:
    - shard-tglu:         NOTRUN -> [FAIL][200] ([i915#13566]) +1 other test fail
   [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-3/igt@kms_cursor_crc@cursor-sliding-256x85.html

  * igt@kms_cursor_crc@cursor-sliding-256x85@pipe-a-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [FAIL][201] ([i915#13566])
   [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-256x85@pipe-a-hdmi-a-2.html

  * igt@kms_cursor_crc@cursor-sliding-32x32:
    - shard-mtlp:         NOTRUN -> [SKIP][202] ([i915#3555] / [i915#8814])
   [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-mtlp-6/igt@kms_cursor_crc@cursor-sliding-32x32.html

  * igt@kms_cursor_crc@cursor-suspend:
    - shard-glk11:        NOTRUN -> [INCOMPLETE][203] ([i915#12358] / [i915#14152] / [i915#7882])
   [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-glk11/igt@kms_cursor_crc@cursor-suspend.html

  * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1:
    - shard-glk11:        NOTRUN -> [INCOMPLETE][204] ([i915#12358] / [i915#14152])
   [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-glk11/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html

  * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [INCOMPLETE][205] ([i915#12358] / [i915#14152]) +1 other test incomplete
   [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
    - shard-rkl:          NOTRUN -> [SKIP][206] +15 other tests skip
   [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
    - shard-rkl:          NOTRUN -> [SKIP][207] ([i915#4103]) +1 other test skip
   [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
    - shard-dg2:          NOTRUN -> [SKIP][208] ([i915#13046] / [i915#5354]) +4 other tests skip
   [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
    - shard-tglu:         NOTRUN -> [SKIP][209] ([i915#4103])
   [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html

  * igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
    - shard-rkl:          NOTRUN -> [SKIP][210] ([i915#14544] / [i915#9723])
   [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html

  * igt@kms_dp_link_training@non-uhbr-sst:
    - shard-dg2:          NOTRUN -> [SKIP][211] ([i915#13749])
   [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-1/igt@kms_dp_link_training@non-uhbr-sst.html

  * igt@kms_dp_link_training@uhbr-mst:
    - shard-tglu:         NOTRUN -> [SKIP][212] ([i915#13748])
   [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-2/igt@kms_dp_link_training@uhbr-mst.html

  * igt@kms_dp_link_training@uhbr-sst:
    - shard-tglu-1:       NOTRUN -> [SKIP][213] ([i915#13748])
   [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-1/igt@kms_dp_link_training@uhbr-sst.html

  * igt@kms_draw_crc@draw-method-mmap-wc:
    - shard-dg2:          NOTRUN -> [SKIP][214] ([i915#8812])
   [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-4/igt@kms_draw_crc@draw-method-mmap-wc.html
    - shard-dg1:          NOTRUN -> [SKIP][215] ([i915#8812])
   [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-19/igt@kms_draw_crc@draw-method-mmap-wc.html

  * igt@kms_dsc@dsc-basic:
    - shard-rkl:          NOTRUN -> [SKIP][216] ([i915#3555] / [i915#3840]) +2 other tests skip
   [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-4/igt@kms_dsc@dsc-basic.html

  * igt@kms_dsc@dsc-with-output-formats:
    - shard-dg2:          NOTRUN -> [SKIP][217] ([i915#3555] / [i915#3840]) +1 other test skip
   [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-4/igt@kms_dsc@dsc-with-output-formats.html
    - shard-dg1:          NOTRUN -> [SKIP][218] ([i915#3555] / [i915#3840])
   [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-17/igt@kms_dsc@dsc-with-output-formats.html

  * igt@kms_dsc@dsc-with-output-formats-with-bpc:
    - shard-tglu-1:       NOTRUN -> [SKIP][219] ([i915#3840] / [i915#9053])
   [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html

  * igt@kms_fbcon_fbt@psr-suspend:
    - shard-rkl:          NOTRUN -> [SKIP][220] ([i915#3955])
   [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-5/igt@kms_fbcon_fbt@psr-suspend.html
    - shard-dg1:          NOTRUN -> [SKIP][221] ([i915#3469])
   [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-14/igt@kms_fbcon_fbt@psr-suspend.html
    - shard-tglu:         NOTRUN -> [SKIP][222] ([i915#3469])
   [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-5/igt@kms_fbcon_fbt@psr-suspend.html
    - shard-dg2:          NOTRUN -> [SKIP][223] ([i915#3469])
   [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-7/igt@kms_fbcon_fbt@psr-suspend.html

  * igt@kms_feature_discovery@display-3x:
    - shard-dg2:          NOTRUN -> [SKIP][224] ([i915#1839])
   [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-5/igt@kms_feature_discovery@display-3x.html
    - shard-rkl:          NOTRUN -> [SKIP][225] ([i915#1839])
   [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-2/igt@kms_feature_discovery@display-3x.html

  * igt@kms_flip@2x-blocking-absolute-wf_vblank:
    - shard-tglu:         NOTRUN -> [SKIP][226] ([i915#3637] / [i915#9934]) +6 other tests skip
   [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-4/igt@kms_flip@2x-blocking-absolute-wf_vblank.html

  * igt@kms_flip@2x-flip-vs-dpms-on-nop:
    - shard-tglu:         NOTRUN -> [SKIP][227] ([i915#9934])
   [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-4/igt@kms_flip@2x-flip-vs-dpms-on-nop.html

  * igt@kms_flip@2x-plain-flip-interruptible:
    - shard-tglu-1:       NOTRUN -> [SKIP][228] ([i915#3637] / [i915#9934]) +2 other tests skip
   [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-1/igt@kms_flip@2x-plain-flip-interruptible.html

  * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
    - shard-dg2:          NOTRUN -> [SKIP][229] ([i915#9934]) +2 other tests skip
   [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-8/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
    - shard-rkl:          NOTRUN -> [SKIP][230] ([i915#9934]) +5 other tests skip
   [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-4/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-glk:          NOTRUN -> [INCOMPLETE][231] ([i915#12745] / [i915#4839] / [i915#6113])
   [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-glk1/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
    - shard-glk:          NOTRUN -> [INCOMPLETE][232] ([i915#12745])
   [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-glk1/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling:
    - shard-mtlp:         NOTRUN -> [SKIP][233] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip
   [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
    - shard-dg2:          NOTRUN -> [SKIP][234] ([i915#15643] / [i915#5190])
   [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
    - shard-tglu:         NOTRUN -> [SKIP][235] ([i915#15643]) +2 other tests skip
   [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
    - shard-tglu-1:       NOTRUN -> [SKIP][236] ([i915#15643]) +1 other test skip
   [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
    - shard-dg2:          NOTRUN -> [SKIP][237] ([i915#15643]) +1 other test skip
   [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
    - shard-rkl:          NOTRUN -> [SKIP][238] ([i915#15643]) +1 other test skip
   [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
    - shard-rkl:          NOTRUN -> [SKIP][239] ([i915#14544] / [i915#15643]) +1 other test skip
   [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
    - shard-dg1:          NOTRUN -> [SKIP][240] ([i915#15643])
   [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-16/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
    - shard-mtlp:         NOTRUN -> [SKIP][241] ([i915#15643])
   [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-gtt:
    - shard-dg1:          NOTRUN -> [SKIP][242] ([i915#15104]) +1 other test skip
   [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-gtt.html
    - shard-mtlp:         NOTRUN -> [SKIP][243] ([i915#15104])
   [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render:
    - shard-dg2:          NOTRUN -> [FAIL][244] ([i915#15389] / [i915#6880])
   [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu:
    - shard-tglu-1:       NOTRUN -> [SKIP][245] +26 other tests skip
   [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:
    - shard-dg2:          NOTRUN -> [SKIP][246] ([i915#5354]) +25 other tests skip
   [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt:
    - shard-dg2:          NOTRUN -> [SKIP][247] ([i915#8708]) +17 other tests skip
   [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbc-tiling-4:
    - shard-dg1:          NOTRUN -> [SKIP][248] ([i915#5439])
   [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-tiling-4.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc:
    - shard-snb:          NOTRUN -> [SKIP][249] +84 other tests skip
   [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-snb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
    - shard-tglu:         NOTRUN -> [SKIP][250] ([i915#15102]) +17 other tests skip
   [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
    - shard-dg2:          NOTRUN -> [SKIP][251] ([i915#15104]) +1 other test skip
   [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-pwrite:
    - shard-rkl:          NOTRUN -> [SKIP][252] ([i915#14544] / [i915#1825]) +3 other tests skip
   [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite:
    - shard-dg1:          NOTRUN -> [SKIP][253] +22 other tests skip
   [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
    - shard-tglu:         NOTRUN -> [SKIP][254] +54 other tests skip
   [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render:
    - shard-mtlp:         NOTRUN -> [SKIP][255] ([i915#1825]) +10 other tests skip
   [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc:
    - shard-dg1:          NOTRUN -> [SKIP][256] ([i915#8708]) +8 other tests skip
   [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
    - shard-rkl:          NOTRUN -> [SKIP][257] ([i915#5439])
   [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html

  * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
    - shard-dg2:          NOTRUN -> [SKIP][258] ([i915#10055])
   [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
    - shard-rkl:          NOTRUN -> [SKIP][259] ([i915#14544] / [i915#15102] / [i915#3023])
   [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt:
    - shard-dg2:          NOTRUN -> [SKIP][260] ([i915#15102]) +2 other tests skip
   [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html
    - shard-rkl:          NOTRUN -> [SKIP][261] ([i915#15102]) +1 other test skip
   [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html
    - shard-dg1:          NOTRUN -> [SKIP][262] ([i915#15102])
   [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
    - shard-rkl:          NOTRUN -> [SKIP][263] ([i915#15102] / [i915#3023]) +19 other tests skip
   [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
    - shard-dg2:          NOTRUN -> [SKIP][264] ([i915#15102] / [i915#3458]) +15 other tests skip
   [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
    - shard-dg1:          NOTRUN -> [SKIP][265] ([i915#15102] / [i915#3458]) +3 other tests skip
   [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
    - shard-rkl:          NOTRUN -> [SKIP][266] ([i915#1825]) +33 other tests skip
   [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc:
    - shard-tglu-1:       NOTRUN -> [SKIP][267] ([i915#15102]) +10 other tests skip
   [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html

  * igt@kms_hdmi_inject@inject-4k:
    - shard-mtlp:         [PASS][268] -> [SKIP][269] ([i915#15725])
   [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-mtlp-8/igt@kms_hdmi_inject@inject-4k.html
   [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-mtlp-1/igt@kms_hdmi_inject@inject-4k.html

  * igt@kms_hdr@bpc-switch-dpms:
    - shard-tglu:         NOTRUN -> [SKIP][270] ([i915#3555] / [i915#8228])
   [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-3/igt@kms_hdr@bpc-switch-dpms.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-mtlp:         NOTRUN -> [SKIP][271] ([i915#12713])
   [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-mtlp-8/igt@kms_hdr@brightness-with-hdr.html
    - shard-dg2:          NOTRUN -> [SKIP][272] ([i915#12713])
   [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-5/igt@kms_hdr@brightness-with-hdr.html
    - shard-rkl:          NOTRUN -> [SKIP][273] ([i915#12713])
   [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-7/igt@kms_hdr@brightness-with-hdr.html
    - shard-dg1:          NOTRUN -> [SKIP][274] ([i915#12713])
   [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-14/igt@kms_hdr@brightness-with-hdr.html
    - shard-tglu:         NOTRUN -> [SKIP][275] ([i915#12713])
   [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-4/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_hdr@invalid-hdr:
    - shard-dg1:          NOTRUN -> [SKIP][276] ([i915#3555] / [i915#8228])
   [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-15/igt@kms_hdr@invalid-hdr.html

  * igt@kms_hdr@static-toggle:
    - shard-rkl:          [PASS][277] -> [SKIP][278] ([i915#3555] / [i915#8228])
   [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_hdr@static-toggle.html
   [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-8/igt@kms_hdr@static-toggle.html

  * igt@kms_hdr@static-toggle-suspend:
    - shard-dg2:          NOTRUN -> [SKIP][279] ([i915#3555] / [i915#8228]) +1 other test skip
   [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-8/igt@kms_hdr@static-toggle-suspend.html
    - shard-rkl:          NOTRUN -> [SKIP][280] ([i915#3555] / [i915#8228])
   [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-2/igt@kms_hdr@static-toggle-suspend.html

  * igt@kms_joiner@basic-big-joiner:
    - shard-dg2:          NOTRUN -> [SKIP][281] ([i915#15460])
   [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-4/igt@kms_joiner@basic-big-joiner.html

  * igt@kms_joiner@basic-force-big-joiner:
    - shard-rkl:          NOTRUN -> [SKIP][282] ([i915#15459])
   [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-7/igt@kms_joiner@basic-force-big-joiner.html

  * igt@kms_joiner@basic-max-non-joiner:
    - shard-tglu:         NOTRUN -> [SKIP][283] ([i915#13688])
   [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-6/igt@kms_joiner@basic-max-non-joiner.html

  * igt@kms_joiner@invalid-modeset-force-ultra-joiner:
    - shard-tglu-1:       NOTRUN -> [SKIP][284] ([i915#15458]) +1 other test skip
   [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html

  * igt@kms_joiner@invalid-modeset-ultra-joiner:
    - shard-rkl:          NOTRUN -> [SKIP][285] ([i915#15458])
   [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-8/igt@kms_joiner@invalid-modeset-ultra-joiner.html

  * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
    - shard-tglu:         NOTRUN -> [SKIP][286] ([i915#15638] / [i915#15722])
   [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-8/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html

  * igt@kms_panel_fitting@legacy:
    - shard-tglu:         NOTRUN -> [SKIP][287] ([i915#6301])
   [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-9/igt@kms_panel_fitting@legacy.html
    - shard-dg2:          NOTRUN -> [SKIP][288] ([i915#6301])
   [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-1/igt@kms_panel_fitting@legacy.html
    - shard-rkl:          NOTRUN -> [SKIP][289] ([i915#6301])
   [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-5/igt@kms_panel_fitting@legacy.html
    - shard-dg1:          NOTRUN -> [SKIP][290] ([i915#6301])
   [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-15/igt@kms_panel_fitting@legacy.html

  * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [INCOMPLETE][291] ([i915#12756])
   [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-2.html

  * igt@kms_pipe_stress@stress-xrgb8888-4tiled:
    - shard-rkl:          NOTRUN -> [SKIP][292] ([i915#14712])
   [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-5/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html

  * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier:
    - shard-tglu:         NOTRUN -> [SKIP][293] ([i915#15709]) +3 other tests skip
   [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-9/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html
    - shard-mtlp:         NOTRUN -> [SKIP][294] ([i915#15709]) +3 other tests skip
   [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-mtlp-7/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html

  * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier:
    - shard-rkl:          NOTRUN -> [SKIP][295] ([i915#14544] / [i915#15709]) +2 other tests skip
   [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier.html

  * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping:
    - shard-rkl:          NOTRUN -> [SKIP][296] ([i915#15709]) +4 other tests skip
   [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-4/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
    - shard-dg1:          NOTRUN -> [SKIP][297] ([i915#15709]) +4 other tests skip
   [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-17/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html

  * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier:
    - shard-tglu-1:       NOTRUN -> [SKIP][298] ([i915#15709]) +3 other tests skip
   [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html

  * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-a-plane-7:
    - shard-tglu:         NOTRUN -> [SKIP][299] ([i915#15608]) +1 other test skip
   [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-5/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-a-plane-7.html

  * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier:
    - shard-dg2:          NOTRUN -> [SKIP][300] ([i915#15709]) +9 other tests skip
   [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-1/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html

  * igt@kms_plane_alpha_blend@alpha-basic:
    - shard-glk:          NOTRUN -> [FAIL][301] ([i915#12178])
   [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-glk3/igt@kms_plane_alpha_blend@alpha-basic.html

  * igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1:
    - shard-glk:          NOTRUN -> [FAIL][302] ([i915#7862]) +1 other test fail
   [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-glk3/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1.html

  * igt@kms_plane_multiple@2x-tiling-y:
    - shard-dg2:          NOTRUN -> [SKIP][303] ([i915#13958])
   [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-3/igt@kms_plane_multiple@2x-tiling-y.html

  * igt@kms_plane_multiple@tiling-4:
    - shard-tglu:         NOTRUN -> [SKIP][304] ([i915#14259])
   [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-3/igt@kms_plane_multiple@tiling-4.html

  * igt@kms_plane_multiple@tiling-x:
    - shard-dg1:          [PASS][305] -> [DMESG-WARN][306] ([i915#4423]) +3 other tests dmesg-warn
   [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-dg1-18/igt@kms_plane_multiple@tiling-x.html
   [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-15/igt@kms_plane_multiple@tiling-x.html

  * igt@kms_plane_scaling@2x-scaler-multi-pipe:
    - shard-dg2:          NOTRUN -> [SKIP][307] ([i915#13046] / [i915#5354] / [i915#9423])
   [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-4/igt@kms_plane_scaling@2x-scaler-multi-pipe.html

  * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
    - shard-tglu-1:       NOTRUN -> [SKIP][308] ([i915#15329] / [i915#3555])
   [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html

  * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b:
    - shard-tglu-1:       NOTRUN -> [SKIP][309] ([i915#15329]) +3 other tests skip
   [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html

  * igt@kms_pm_backlight@bad-brightness:
    - shard-rkl:          NOTRUN -> [SKIP][310] ([i915#5354]) +1 other test skip
   [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-5/igt@kms_pm_backlight@bad-brightness.html

  * igt@kms_pm_backlight@basic-brightness:
    - shard-tglu-1:       NOTRUN -> [SKIP][311] ([i915#9812])
   [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-1/igt@kms_pm_backlight@basic-brightness.html

  * igt@kms_pm_backlight@brightness-with-dpms:
    - shard-dg2:          NOTRUN -> [SKIP][312] ([i915#12343])
   [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-4/igt@kms_pm_backlight@brightness-with-dpms.html
    - shard-rkl:          NOTRUN -> [SKIP][313] ([i915#12343])
   [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-7/igt@kms_pm_backlight@brightness-with-dpms.html
    - shard-dg1:          NOTRUN -> [SKIP][314] ([i915#12343])
   [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-19/igt@kms_pm_backlight@brightness-with-dpms.html
    - shard-tglu:         NOTRUN -> [SKIP][315] ([i915#12343])
   [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-9/igt@kms_pm_backlight@brightness-with-dpms.html

  * igt@kms_pm_dc@dc6-dpms:
    - shard-rkl:          NOTRUN -> [FAIL][316] ([i915#15752])
   [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-8/igt@kms_pm_dc@dc6-dpms.html

  * igt@kms_pm_dc@dc6-psr:
    - shard-dg2:          NOTRUN -> [SKIP][317] ([i915#9685])
   [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-3/igt@kms_pm_dc@dc6-psr.html
    - shard-rkl:          NOTRUN -> [SKIP][318] ([i915#9685])
   [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-8/igt@kms_pm_dc@dc6-psr.html

  * igt@kms_pm_dc@dc9-dpms:
    - shard-tglu:         NOTRUN -> [SKIP][319] ([i915#15739])
   [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-9/igt@kms_pm_dc@dc9-dpms.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-dg1:          NOTRUN -> [SKIP][320] ([i915#9340])
   [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-18/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_pm_lpsp@screens-disabled:
    - shard-dg2:          NOTRUN -> [SKIP][321] ([i915#8430])
   [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-3/igt@kms_pm_lpsp@screens-disabled.html

  * igt@kms_pm_rpm@modeset-lpsp:
    - shard-dg2:          NOTRUN -> [SKIP][322] ([i915#15073])
   [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp.html

  * igt@kms_pm_rpm@modeset-lpsp-stress:
    - shard-dg1:          [PASS][323] -> [SKIP][324] ([i915#15073]) +3 other tests skip
   [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp-stress.html
   [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-17/igt@kms_pm_rpm@modeset-lpsp-stress.html

  * igt@kms_pm_rpm@modeset-non-lpsp:
    - shard-rkl:          [PASS][325] -> [SKIP][326] ([i915#15073]) +1 other test skip
   [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp.html
   [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp.html

  * igt@kms_pm_rpm@package-g7:
    - shard-rkl:          NOTRUN -> [SKIP][327] ([i915#15403])
   [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-1/igt@kms_pm_rpm@package-g7.html
    - shard-tglu-1:       NOTRUN -> [SKIP][328] ([i915#15403])
   [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-1/igt@kms_pm_rpm@package-g7.html

  * igt@kms_prime@basic-crc-hybrid:
    - shard-tglu:         NOTRUN -> [SKIP][329] ([i915#6524])
   [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-9/igt@kms_prime@basic-crc-hybrid.html

  * igt@kms_prime@basic-modeset-hybrid:
    - shard-dg2:          NOTRUN -> [SKIP][330] ([i915#6524] / [i915#6805])
   [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-7/igt@kms_prime@basic-modeset-hybrid.html
    - shard-dg1:          NOTRUN -> [SKIP][331] ([i915#6524])
   [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-19/igt@kms_prime@basic-modeset-hybrid.html

  * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
    - shard-dg2:          NOTRUN -> [SKIP][332] ([i915#11520]) +9 other tests skip
   [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-7/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
    - shard-glk10:        NOTRUN -> [SKIP][333] ([i915#11520]) +2 other tests skip
   [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-glk10/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf:
    - shard-glk:          NOTRUN -> [SKIP][334] ([i915#11520]) +10 other tests skip
   [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-glk3/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html
    - shard-tglu-1:       NOTRUN -> [SKIP][335] ([i915#11520]) +4 other tests skip
   [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html

  * igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area:
    - shard-tglu:         NOTRUN -> [SKIP][336] ([i915#11520]) +4 other tests skip
   [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-10/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1:
    - shard-mtlp:         NOTRUN -> [SKIP][337] ([i915#9808]) +1 other test skip
   [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-mtlp-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
    - shard-rkl:          NOTRUN -> [SKIP][338] ([i915#11520]) +5 other tests skip
   [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area:
    - shard-snb:          NOTRUN -> [SKIP][339] ([i915#11520]) +1 other test skip
   [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-snb1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html
    - shard-mtlp:         NOTRUN -> [SKIP][340] ([i915#12316]) +3 other tests skip
   [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-mtlp-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
    - shard-dg1:          NOTRUN -> [SKIP][341] ([i915#11520]) +2 other tests skip
   [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-12/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html

  * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
    - shard-glk11:        NOTRUN -> [SKIP][342] ([i915#11520])
   [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-glk11/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_su@page_flip-nv12:
    - shard-rkl:          NOTRUN -> [SKIP][343] ([i915#9683])
   [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-3/igt@kms_psr2_su@page_flip-nv12.html
    - shard-tglu:         NOTRUN -> [SKIP][344] ([i915#9683]) +1 other test skip
   [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-6/igt@kms_psr2_su@page_flip-nv12.html

  * igt@kms_psr2_su@page_flip-p010:
    - shard-dg2:          NOTRUN -> [SKIP][345] ([i915#9683])
   [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-3/igt@kms_psr2_su@page_flip-p010.html
    - shard-mtlp:         NOTRUN -> [SKIP][346] ([i915#4348])
   [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-mtlp-5/igt@kms_psr2_su@page_flip-p010.html

  * igt@kms_psr@fbc-pr-cursor-blt:
    - shard-tglu:         NOTRUN -> [SKIP][347] ([i915#9732]) +16 other tests skip
   [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-8/igt@kms_psr@fbc-pr-cursor-blt.html

  * igt@kms_psr@fbc-pr-primary-mmap-cpu:
    - shard-rkl:          NOTRUN -> [SKIP][348] ([i915#1072] / [i915#14544] / [i915#9732])
   [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@kms_psr@fbc-pr-primary-mmap-cpu.html

  * igt@kms_psr@fbc-pr-sprite-plane-onoff:
    - shard-rkl:          NOTRUN -> [SKIP][349] ([i915#1072] / [i915#9732]) +19 other tests skip
   [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-5/igt@kms_psr@fbc-pr-sprite-plane-onoff.html

  * igt@kms_psr@fbc-psr-primary-blt:
    - shard-dg2:          NOTRUN -> [SKIP][350] ([i915#1072] / [i915#9732]) +17 other tests skip
   [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-4/igt@kms_psr@fbc-psr-primary-blt.html

  * igt@kms_psr@fbc-psr-sprite-plane-onoff:
    - shard-mtlp:         NOTRUN -> [SKIP][351] ([i915#9688]) +4 other tests skip
   [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-mtlp-1/igt@kms_psr@fbc-psr-sprite-plane-onoff.html

  * igt@kms_psr@fbc-psr2-basic:
    - shard-dg1:          NOTRUN -> [SKIP][352] ([i915#1072] / [i915#9732]) +8 other tests skip
   [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-17/igt@kms_psr@fbc-psr2-basic.html

  * igt@kms_psr@psr-cursor-plane-onoff:
    - shard-tglu-1:       NOTRUN -> [SKIP][353] ([i915#9732]) +8 other tests skip
   [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-1/igt@kms_psr@psr-cursor-plane-onoff.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-dg1:          NOTRUN -> [SKIP][354] ([i915#9685])
   [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-18/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@kms_rotation_crc@exhaust-fences:
    - shard-dg2:          NOTRUN -> [SKIP][355] ([i915#4235])
   [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-4/igt@kms_rotation_crc@exhaust-fences.html

  * igt@kms_rotation_crc@multiplane-rotation:
    - shard-glk:          NOTRUN -> [INCOMPLETE][356] ([i915#15492])
   [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-glk8/igt@kms_rotation_crc@multiplane-rotation.html

  * igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
    - shard-glk11:        NOTRUN -> [INCOMPLETE][357] ([i915#15500])
   [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-glk11/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html

  * igt@kms_rotation_crc@primary-rotation-270:
    - shard-mtlp:         NOTRUN -> [SKIP][358] ([i915#12755] / [i915#15867])
   [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-mtlp-7/igt@kms_rotation_crc@primary-rotation-270.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
    - shard-dg2:          NOTRUN -> [SKIP][359] ([i915#12755] / [i915#15867] / [i915#5190])
   [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
    - shard-tglu:         NOTRUN -> [SKIP][360] ([i915#5289]) +1 other test skip
   [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html

  * igt@kms_rotation_crc@sprite-rotation-90:
    - shard-dg2:          NOTRUN -> [SKIP][361] ([i915#12755] / [i915#15867]) +2 other tests skip
   [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-3/igt@kms_rotation_crc@sprite-rotation-90.html

  * igt@kms_scaling_modes@scaling-mode-full:
    - shard-tglu:         NOTRUN -> [SKIP][362] ([i915#3555]) +3 other tests skip
   [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-4/igt@kms_scaling_modes@scaling-mode-full.html

  * igt@kms_scaling_modes@scaling-mode-none:
    - shard-rkl:          NOTRUN -> [SKIP][363] ([i915#3555]) +5 other tests skip
   [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-7/igt@kms_scaling_modes@scaling-mode-none.html

  * igt@kms_setmode@basic:
    - shard-tglu:         [PASS][364] -> [FAIL][365] ([i915#15106]) +2 other tests fail
   [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-tglu-6/igt@kms_setmode@basic.html
   [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-10/igt@kms_setmode@basic.html

  * igt@kms_vblank@ts-continuation-dpms-suspend:
    - shard-rkl:          [PASS][366] -> [INCOMPLETE][367] ([i915#12276])
   [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-5/igt@kms_vblank@ts-continuation-dpms-suspend.html
   [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@kms_vblank@ts-continuation-dpms-suspend.html

  * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [INCOMPLETE][368] ([i915#12276])
   [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2.html

  * igt@kms_vrr@flip-basic:
    - shard-rkl:          NOTRUN -> [SKIP][369] ([i915#15243] / [i915#3555]) +1 other test skip
   [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-3/igt@kms_vrr@flip-basic.html

  * igt@kms_vrr@flip-dpms:
    - shard-dg2:          NOTRUN -> [SKIP][370] ([i915#15243] / [i915#3555]) +1 other test skip
   [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-8/igt@kms_vrr@flip-dpms.html
    - shard-mtlp:         NOTRUN -> [SKIP][371] ([i915#3555] / [i915#8808])
   [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-mtlp-8/igt@kms_vrr@flip-dpms.html

  * igt@kms_vrr@seamless-rr-switch-drrs:
    - shard-tglu:         NOTRUN -> [SKIP][372] ([i915#9906])
   [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-6/igt@kms_vrr@seamless-rr-switch-drrs.html

  * igt@perf@global-sseu-config:
    - shard-dg2:          NOTRUN -> [SKIP][373] ([i915#7387])
   [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-4/igt@perf@global-sseu-config.html

  * igt@perf@unprivileged-single-ctx-counters:
    - shard-rkl:          NOTRUN -> [SKIP][374] ([i915#2433])
   [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-8/igt@perf@unprivileged-single-ctx-counters.html

  * igt@perf_pmu@module-unload:
    - shard-glk:          NOTRUN -> [ABORT][375] ([i915#15778])
   [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-glk4/igt@perf_pmu@module-unload.html
    - shard-rkl:          NOTRUN -> [ABORT][376] ([i915#15778])
   [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-8/igt@perf_pmu@module-unload.html

  * igt@prime_mmap@test_aperture_limit:
    - shard-dg2:          NOTRUN -> [SKIP][377] ([i915#14121]) +1 other test skip
   [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-4/igt@prime_mmap@test_aperture_limit.html

  * igt@prime_vgem@basic-fence-mmap:
    - shard-dg2:          NOTRUN -> [SKIP][378] ([i915#3708] / [i915#4077])
   [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-6/igt@prime_vgem@basic-fence-mmap.html

  * igt@prime_vgem@basic-read:
    - shard-dg2:          NOTRUN -> [SKIP][379] ([i915#3291] / [i915#3708])
   [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-8/igt@prime_vgem@basic-read.html

  * igt@prime_vgem@basic-write:
    - shard-rkl:          NOTRUN -> [SKIP][380] ([i915#3291] / [i915#3708])
   [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-7/igt@prime_vgem@basic-write.html

  * igt@prime_vgem@fence-read-hang:
    - shard-dg2:          NOTRUN -> [SKIP][381] ([i915#3708])
   [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-1/igt@prime_vgem@fence-read-hang.html
    - shard-dg1:          NOTRUN -> [SKIP][382] ([i915#3708]) +1 other test skip
   [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-19/igt@prime_vgem@fence-read-hang.html

  * igt@sriov_basic@enable-vfs-bind-unbind-each:
    - shard-dg2:          NOTRUN -> [SKIP][383] ([i915#9917])
   [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-7/igt@sriov_basic@enable-vfs-bind-unbind-each.html
    - shard-rkl:          NOTRUN -> [SKIP][384] ([i915#9917])
   [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-7/igt@sriov_basic@enable-vfs-bind-unbind-each.html

  
#### Possible fixes ####

  * igt@gem_eio@execbuf:
    - shard-dg1:          [DMESG-WARN][385] ([i915#4423]) -> [PASS][386] +1 other test pass
   [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-dg1-18/igt@gem_eio@execbuf.html
   [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-19/igt@gem_eio@execbuf.html

  * igt@i915_pm_rpm@system-suspend:
    - shard-rkl:          [INCOMPLETE][387] ([i915#13356]) -> [PASS][388]
   [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@i915_pm_rpm@system-suspend.html
   [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-7/igt@i915_pm_rpm@system-suspend.html

  * igt@i915_pm_rpm@system-suspend-devices:
    - shard-rkl:          [ABORT][389] ([i915#15060]) -> [PASS][390]
   [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-1/igt@i915_pm_rpm@system-suspend-devices.html
   [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@i915_pm_rpm@system-suspend-devices.html

  * igt@kms_atomic_transition@plane-toggle-modeset-transition:
    - shard-dg2:          [FAIL][391] ([i915#5956]) -> [PASS][392]
   [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-dg2-5/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
   [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-4/igt@kms_atomic_transition@plane-toggle-modeset-transition.html

  * igt@kms_cursor_crc@cursor-onscreen-256x85:
    - shard-tglu:         [FAIL][393] ([i915#13566]) -> [PASS][394] +5 other tests pass
   [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-256x85.html
   [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-256x85.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-dg2:          [ABORT][395] ([i915#15132]) -> [PASS][396]
   [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-dg2-10/igt@kms_flip@flip-vs-suspend.html
   [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-5/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2:
    - shard-rkl:          [INCOMPLETE][397] ([i915#6113]) -> [PASS][398] +1 other test pass
   [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html
   [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-3/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html

  * igt@kms_force_connector_basic@force-connector-state:
    - shard-mtlp:         [SKIP][399] ([i915#15672]) -> [PASS][400]
   [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-mtlp-1/igt@kms_force_connector_basic@force-connector-state.html
   [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-mtlp-4/igt@kms_force_connector_basic@force-connector-state.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite:
    - shard-dg2:          [FAIL][401] ([i915#15389] / [i915#6880]) -> [PASS][402]
   [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html
   [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html

  * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2:
    - shard-rkl:          [INCOMPLETE][403] ([i915#13476]) -> [PASS][404]
   [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2.html
   [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2.html

  * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
    - shard-rkl:          [SKIP][405] ([i915#15073]) -> [PASS][406] +1 other test pass
   [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
   [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html

  * igt@kms_pm_rpm@modeset-lpsp-stress:
    - shard-dg2:          [SKIP][407] ([i915#15073]) -> [PASS][408]
   [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp-stress.html
   [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress.html

  * igt@kms_pm_rpm@system-suspend-idle:
    - shard-dg2:          [INCOMPLETE][409] ([i915#14419]) -> [PASS][410]
   [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-dg2-4/igt@kms_pm_rpm@system-suspend-idle.html
   [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-7/igt@kms_pm_rpm@system-suspend-idle.html

  * igt@kms_pm_rpm@system-suspend-modeset:
    - shard-rkl:          [INCOMPLETE][411] ([i915#14419]) -> [PASS][412]
   [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-4/igt@kms_pm_rpm@system-suspend-modeset.html
   [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-7/igt@kms_pm_rpm@system-suspend-modeset.html

  * igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_create:
    - shard-glk:          [ABORT][413] ([i915#13179]) -> [PASS][414]
   [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-glk3/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_create.html
   [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-glk8/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_create.html

  * igt@perf_pmu@rc6-suspend:
    - shard-rkl:          [INCOMPLETE][415] ([i915#13520]) -> [PASS][416]
   [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@perf_pmu@rc6-suspend.html
   [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-4/igt@perf_pmu@rc6-suspend.html

  
#### Warnings ####

  * igt@gem_ccs@block-copy-compressed:
    - shard-rkl:          [SKIP][417] ([i915#14544] / [i915#3555] / [i915#9323]) -> [SKIP][418] ([i915#3555] / [i915#9323])
   [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@gem_ccs@block-copy-compressed.html
   [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-5/igt@gem_ccs@block-copy-compressed.html

  * igt@gem_exec_balancer@parallel-bb-first:
    - shard-rkl:          [SKIP][419] ([i915#4525]) -> [SKIP][420] ([i915#14544] / [i915#4525])
   [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-2/igt@gem_exec_balancer@parallel-bb-first.html
   [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@gem_exec_balancer@parallel-bb-first.html

  * igt@gem_exec_balancer@parallel-keep-in-fence:
    - shard-rkl:          [SKIP][421] ([i915#14544] / [i915#4525]) -> [SKIP][422] ([i915#4525])
   [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@gem_exec_balancer@parallel-keep-in-fence.html
   [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-2/igt@gem_exec_balancer@parallel-keep-in-fence.html

  * igt@gem_exec_params@secure-non-master:
    - shard-rkl:          [SKIP][423] -> [SKIP][424] ([i915#14544]) +6 other tests skip
   [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-3/igt@gem_exec_params@secure-non-master.html
   [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@gem_exec_params@secure-non-master.html

  * igt@gem_exec_reloc@basic-gtt-cpu-active:
    - shard-rkl:          [SKIP][425] ([i915#14544] / [i915#3281]) -> [SKIP][426] ([i915#3281]) +2 other tests skip
   [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-cpu-active.html
   [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-cpu-active.html

  * igt@gem_lmem_swapping@heavy-multi:
    - shard-rkl:          [SKIP][427] ([i915#14544] / [i915#4613]) -> [SKIP][428] ([i915#4613])
   [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@gem_lmem_swapping@heavy-multi.html
   [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-8/igt@gem_lmem_swapping@heavy-multi.html

  * igt@gem_lmem_swapping@parallel-multi:
    - shard-rkl:          [SKIP][429] ([i915#4613]) -> [SKIP][430] ([i915#14544] / [i915#4613]) +1 other test skip
   [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-4/igt@gem_lmem_swapping@parallel-multi.html
   [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@gem_lmem_swapping@parallel-multi.html

  * igt@gem_partial_pwrite_pread@writes-after-reads:
    - shard-rkl:          [SKIP][431] ([i915#14544] / [i915#3282]) -> [SKIP][432] ([i915#3282]) +2 other tests skip
   [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads.html
   [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-7/igt@gem_partial_pwrite_pread@writes-after-reads.html

  * igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
    - shard-rkl:          [SKIP][433] ([i915#3282]) -> [SKIP][434] ([i915#14544] / [i915#3282]) +1 other test skip
   [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-8/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
   [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html

  * igt@gem_set_tiling_vs_blt@untiled-to-tiled:
    - shard-rkl:          [SKIP][435] ([i915#8411]) -> [SKIP][436] ([i915#14544] / [i915#8411])
   [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-2/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
   [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html

  * igt@gem_tiled_pread_basic@basic:
    - shard-rkl:          [SKIP][437] ([i915#14544] / [i915#15656]) -> [SKIP][438] ([i915#15656])
   [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@gem_tiled_pread_basic@basic.html
   [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-2/igt@gem_tiled_pread_basic@basic.html

  * igt@gem_userptr_blits@create-destroy-unsync:
    - shard-rkl:          [SKIP][439] ([i915#14544] / [i915#3297]) -> [SKIP][440] ([i915#3297]) +2 other tests skip
   [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@gem_userptr_blits@create-destroy-unsync.html
   [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-2/igt@gem_userptr_blits@create-destroy-unsync.html

  * igt@gen3_render_mixed_blits:
    - shard-rkl:          [SKIP][441] ([i915#14544]) -> [SKIP][442] +2 other tests skip
   [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@gen3_render_mixed_blits.html
   [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-7/igt@gen3_render_mixed_blits.html

  * igt@gen9_exec_parse@allowed-single:
    - shard-rkl:          [SKIP][443] ([i915#2527]) -> [SKIP][444] ([i915#14544] / [i915#2527])
   [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-4/igt@gen9_exec_parse@allowed-single.html
   [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@gen9_exec_parse@allowed-single.html

  * igt@i915_module_load@fault-injection:
    - shard-dg1:          [ABORT][445] ([i915#11814] / [i915#15481]) -> [ABORT][446] ([i915#11814]) +1 other test abort
   [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-dg1-19/igt@i915_module_load@fault-injection.html
   [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-17/igt@i915_module_load@fault-injection.html

  * igt@intel_hwmon@hwmon-read:
    - shard-rkl:          [SKIP][447] ([i915#7707]) -> [SKIP][448] ([i915#14544] / [i915#7707])
   [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-7/igt@intel_hwmon@hwmon-read.html
   [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@intel_hwmon@hwmon-read.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-0:
    - shard-rkl:          [SKIP][449] ([i915#14544] / [i915#5286]) -> [SKIP][450] ([i915#5286]) +1 other test skip
   [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
   [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-1/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
    - shard-rkl:          [SKIP][451] ([i915#5286]) -> [SKIP][452] ([i915#14544] / [i915#5286])
   [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
   [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html

  * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-rkl:          [SKIP][453] ([i915#14544] / [i915#3828]) -> [SKIP][454] ([i915#3828])
   [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
   [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-5/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_big_fb@y-tiled-64bpp-rotate-270:
    - shard-rkl:          [SKIP][455] ([i915#14544] / [i915#3638]) -> [SKIP][456] ([i915#3638])
   [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
   [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-4/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html

  * igt@kms_big_fb@y-tiled-64bpp-rotate-90:
    - shard-rkl:          [SKIP][457] ([i915#3638]) -> [SKIP][458] ([i915#14544] / [i915#3638])
   [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-2/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
   [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2:
    - shard-rkl:          [SKIP][459] ([i915#14544] / [i915#6095]) -> [SKIP][460] ([i915#6095]) +2 other tests skip
   [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html
   [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-4/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html

  * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2:
    - shard-rkl:          [SKIP][461] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][462] ([i915#14098] / [i915#6095]) +4 other tests skip
   [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html
   [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-4/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2:
    - shard-rkl:          [SKIP][463] ([i915#6095]) -> [SKIP][464] ([i915#14544] / [i915#6095]) +3 other tests skip
   [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html
   [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2:
    - shard-rkl:          [SKIP][465] ([i915#14098] / [i915#6095]) -> [SKIP][466] ([i915#14098] / [i915#14544] / [i915#6095]) +4 other tests skip
   [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html
   [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html

  * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
    - shard-rkl:          [SKIP][467] ([i915#12313]) -> [SKIP][468] ([i915#12313] / [i915#14544])
   [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
   [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html

  * igt@kms_chamelium_edid@hdmi-mode-timings:
    - shard-rkl:          [SKIP][469] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][470] ([i915#11151] / [i915#7828]) +2 other tests skip
   [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_chamelium_edid@hdmi-mode-timings.html
   [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-3/igt@kms_chamelium_edid@hdmi-mode-timings.html

  * igt@kms_chamelium_frames@dp-crc-fast:
    - shard-rkl:          [SKIP][471] ([i915#11151] / [i915#7828]) -> [SKIP][472] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip
   [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-2/igt@kms_chamelium_frames@dp-crc-fast.html
   [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@kms_chamelium_frames@dp-crc-fast.html

  * igt@kms_content_protection@atomic:
    - shard-dg2:          [FAIL][473] ([i915#7173]) -> [SKIP][474] ([i915#15865])
   [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-dg2-10/igt@kms_content_protection@atomic.html
   [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-4/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@dp-mst-type-1-suspend-resume:
    - shard-rkl:          [SKIP][475] ([i915#14544] / [i915#15330]) -> [SKIP][476] ([i915#15330])
   [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
   [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-7/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html

  * igt@kms_content_protection@srm:
    - shard-rkl:          [SKIP][477] ([i915#14544] / [i915#15865]) -> [SKIP][478] ([i915#15865])
   [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_content_protection@srm.html
   [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-7/igt@kms_content_protection@srm.html

  * igt@kms_content_protection@type1:
    - shard-rkl:          [SKIP][479] ([i915#15865]) -> [SKIP][480] ([i915#14544] / [i915#15865]) +2 other tests skip
   [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-3/igt@kms_content_protection@type1.html
   [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@kms_content_protection@type1.html

  * igt@kms_cursor_crc@cursor-offscreen-32x32:
    - shard-rkl:          [SKIP][481] ([i915#3555]) -> [SKIP][482] ([i915#14544] / [i915#3555])
   [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-7/igt@kms_cursor_crc@cursor-offscreen-32x32.html
   [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-32x32.html

  * igt@kms_cursor_crc@cursor-offscreen-512x170:
    - shard-rkl:          [SKIP][483] ([i915#13049] / [i915#14544]) -> [SKIP][484] ([i915#13049])
   [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-512x170.html
   [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-3/igt@kms_cursor_crc@cursor-offscreen-512x170.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
    - shard-dg1:          [SKIP][485] -> [SKIP][486] ([i915#4423])
   [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-dg1-16/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
   [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-17/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html

  * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
    - shard-rkl:          [SKIP][487] ([i915#14544] / [i915#4103]) -> [SKIP][488] ([i915#4103])
   [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
   [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html

  * igt@kms_display_modes@extended-mode-basic:
    - shard-rkl:          [SKIP][489] ([i915#13691] / [i915#14544]) -> [SKIP][490] ([i915#13691])
   [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_display_modes@extended-mode-basic.html
   [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-2/igt@kms_display_modes@extended-mode-basic.html

  * igt@kms_dp_link_training@uhbr-sst:
    - shard-rkl:          [SKIP][491] ([i915#13748]) -> [SKIP][492] ([i915#13748] / [i915#14544])
   [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-4/igt@kms_dp_link_training@uhbr-sst.html
   [492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@kms_dp_link_training@uhbr-sst.html

  * igt@kms_dsc@dsc-fractional-bpp-with-bpc:
    - shard-rkl:          [SKIP][493] ([i915#14544] / [i915#3840]) -> [SKIP][494] ([i915#3840])
   [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
   [494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-5/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html

  * igt@kms_feature_discovery@dp-mst:
    - shard-rkl:          [SKIP][495] ([i915#9337]) -> [SKIP][496] ([i915#14544] / [i915#9337])
   [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-5/igt@kms_feature_discovery@dp-mst.html
   [496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@kms_feature_discovery@dp-mst.html

  * igt@kms_flip@2x-flip-vs-dpms:
    - shard-rkl:          [SKIP][497] ([i915#9934]) -> [SKIP][498] ([i915#14544] / [i915#9934]) +2 other tests skip
   [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-4/igt@kms_flip@2x-flip-vs-dpms.html
   [498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms.html

  * igt@kms_flip@2x-plain-flip-interruptible:
    - shard-rkl:          [SKIP][499] ([i915#14544] / [i915#9934]) -> [SKIP][500] ([i915#9934])
   [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_flip@2x-plain-flip-interruptible.html
   [500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-1/igt@kms_flip@2x-plain-flip-interruptible.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
    - shard-rkl:          [SKIP][501] ([i915#14544] / [i915#15643]) -> [SKIP][502] ([i915#15643])
   [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
   [502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html

  * igt@kms_force_connector_basic@force-load-detect:
    - shard-mtlp:         [SKIP][503] -> [SKIP][504] ([i915#15672])
   [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-mtlp-5/igt@kms_force_connector_basic@force-load-detect.html
   [504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-mtlp-1/igt@kms_force_connector_basic@force-load-detect.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-cpu:
    - shard-rkl:          [SKIP][505] ([i915#14544] / [i915#1825]) -> [SKIP][506] ([i915#1825]) +3 other tests skip
   [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-cpu.html
   [506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu:
    - shard-rkl:          [SKIP][507] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][508] ([i915#15102] / [i915#3023]) +3 other tests skip
   [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
   [508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite:
    - shard-dg2:          [SKIP][509] ([i915#15102] / [i915#3458]) -> [SKIP][510] ([i915#10433] / [i915#15102] / [i915#3458])
   [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html
   [510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbcpsr-suspend:
    - shard-rkl:          [SKIP][511] ([i915#15102] / [i915#3023]) -> [SKIP][512] ([i915#14544] / [i915#15102] / [i915#3023]) +6 other tests skip
   [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
   [512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt:
    - shard-rkl:          [SKIP][513] ([i915#14544] / [i915#15102]) -> [SKIP][514] ([i915#15102]) +1 other test skip
   [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
   [514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
    - shard-dg2:          [SKIP][515] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][516] ([i915#15102] / [i915#3458]) +1 other test skip
   [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
   [516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt:
    - shard-rkl:          [SKIP][517] ([i915#1825]) -> [SKIP][518] ([i915#14544] / [i915#1825]) +8 other tests skip
   [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt.html
   [518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt.html

  * igt@kms_joiner@basic-force-ultra-joiner:
    - shard-rkl:          [SKIP][519] ([i915#14544] / [i915#15458]) -> [SKIP][520] ([i915#15458])
   [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_joiner@basic-force-ultra-joiner.html
   [520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-4/igt@kms_joiner@basic-force-ultra-joiner.html

  * igt@kms_pipe_stress@stress-xrgb8888-yftiled:
    - shard-rkl:          [SKIP][521] ([i915#14712]) -> [SKIP][522] ([i915#14544] / [i915#14712])
   [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-7/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
   [522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html

  * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier:
    - shard-rkl:          [SKIP][523] ([i915#15709]) -> [SKIP][524] ([i915#14544] / [i915#15709])
   [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-3/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
   [524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html

  * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier:
    - shard-rkl:          [SKIP][525] ([i915#14544] / [i915#15709]) -> [SKIP][526] ([i915#15709])
   [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html
   [526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-3/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html

  * igt@kms_plane_lowres@tiling-yf:
    - shard-rkl:          [SKIP][527] ([i915#14544] / [i915#3555]) -> [SKIP][528] ([i915#3555]) +1 other test skip
   [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_plane_lowres@tiling-yf.html
   [528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-4/igt@kms_plane_lowres@tiling-yf.html

  * igt@kms_pm_dc@dc3co-vpb-simulation:
    - shard-rkl:          [SKIP][529] ([i915#9685]) -> [SKIP][530] ([i915#14544] / [i915#9685])
   [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-8/igt@kms_pm_dc@dc3co-vpb-simulation.html
   [530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@kms_pm_dc@dc3co-vpb-simulation.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-rkl:          [SKIP][531] ([i915#14544] / [i915#9685]) -> [SKIP][532] ([i915#9685])
   [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_pm_dc@dc5-psr.html
   [532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-3/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_pm_lpsp@kms-lpsp:
    - shard-rkl:          [SKIP][533] ([i915#9340]) -> [SKIP][534] ([i915#3828])
   [533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-3/igt@kms_pm_lpsp@kms-lpsp.html
   [534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-2/igt@kms_pm_lpsp@kms-lpsp.html

  * igt@kms_prime@d3hot:
    - shard-rkl:          [SKIP][535] ([i915#6524]) -> [SKIP][536] ([i915#14544] / [i915#6524])
   [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-5/igt@kms_prime@d3hot.html
   [536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@kms_prime@d3hot.html

  * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
    - shard-rkl:          [SKIP][537] ([i915#11520] / [i915#14544]) -> [SKIP][538] ([i915#11520])
   [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
   [538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-5/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html

  * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
    - shard-rkl:          [SKIP][539] ([i915#11520]) -> [SKIP][540] ([i915#11520] / [i915#14544])
   [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-2/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
   [540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr@fbc-psr2-primary-blt:
    - shard-rkl:          [SKIP][541] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][542] ([i915#1072] / [i915#9732]) +3 other tests skip
   [541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@kms_psr@fbc-psr2-primary-blt.html
   [542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-5/igt@kms_psr@fbc-psr2-primary-blt.html

  * igt@kms_psr@psr-cursor-plane-move:
    - shard-rkl:          [SKIP][543] ([i915#1072] / [i915#9732]) -> [SKIP][544] ([i915#1072] / [i915#14544] / [i915#9732]) +5 other tests skip
   [543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-2/igt@kms_psr@psr-cursor-plane-move.html
   [544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@kms_psr@psr-cursor-plane-move.html

  * igt@kms_psr@psr2-cursor-render:
    - shard-dg1:          [SKIP][545] ([i915#1072] / [i915#9732]) -> [SKIP][546] ([i915#1072] / [i915#4423] / [i915#9732])
   [545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-dg1-16/igt@kms_psr@psr2-cursor-render.html
   [546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-dg1-17/igt@kms_psr@psr2-cursor-render.html

  * igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free:
    - shard-glk:          [DMESG-FAIL][547] -> [ABORT][548] ([i915#13179])
   [547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-glk3/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html
   [548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-glk8/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html

  * igt@kms_vrr@flip-suspend:
    - shard-rkl:          [SKIP][549] ([i915#15243] / [i915#3555]) -> [SKIP][550] ([i915#14544] / [i915#15243] / [i915#3555])
   [549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-8/igt@kms_vrr@flip-suspend.html
   [550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-6/igt@kms_vrr@flip-suspend.html

  * igt@perf_pmu@module-unload:
    - shard-tglu:         [INCOMPLETE][551] ([i915#13520]) -> [ABORT][552] ([i915#15778])
   [551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-tglu-9/igt@perf_pmu@module-unload.html
   [552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-tglu-10/igt@perf_pmu@module-unload.html

  * igt@prime_vgem@fence-flip-hang:
    - shard-rkl:          [SKIP][553] ([i915#14544] / [i915#3708]) -> [SKIP][554] ([i915#3708])
   [553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8862/shard-rkl-6/igt@prime_vgem@fence-flip-hang.html
   [554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/shard-rkl-1/igt@prime_vgem@fence-flip-hang.html

  
  [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
  [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
  [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
  [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
  [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
  [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
  [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
  [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
  [i915#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527
  [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
  [i915#11814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11814
  [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
  [i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178
  [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
  [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
  [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
  [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
  [i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
  [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
  [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
  [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
  [i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
  [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
  [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
  [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
  [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
  [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
  [i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390
  [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
  [i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520
  [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
  [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
  [i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
  [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
  [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
  [i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781
  [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
  [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
  [i915#14121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14121
  [i915#14123]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14123
  [i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152
  [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
  [i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
  [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
  [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
  [i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586
  [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
  [i915#15060]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15060
  [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
  [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
  [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
  [i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106
  [i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
  [i915#15140]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15140
  [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
  [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
  [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
  [i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342
  [i915#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389
  [i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403
  [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
  [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
  [i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460
  [i915#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481
  [i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492
  [i915#15500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15500
  [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
  [i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608
  [i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638
  [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
  [i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656
  [i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672
  [i915#15678]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678
  [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
  [i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722
  [i915#15725]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15725
  [i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
  [i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739
  [i915#15752]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15752
  [i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
  [i915#15792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15792
  [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
  [i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
  [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
  [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
  [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
  [i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
  [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
  [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
  [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
  [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
  [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
  [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
  [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
  [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
  [i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
  [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
  [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
  [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
  [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
  [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
  [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
  [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
  [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
  [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
  [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
  [i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
  [i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036
  [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
  [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
  [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
  [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
  [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
  [i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
  [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
  [i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348
  [i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391
  [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
  [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
  [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
  [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
  [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
  [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
  [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
  [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
  [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
  [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
  [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
  [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
  [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
  [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
  [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
  [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
  [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
  [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
  [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
  [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
  [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
  [i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
  [i915#6188]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6188
  [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
  [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
  [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
  [i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
  [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
  [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
  [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
  [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
  [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
  [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
  [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
  [i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
  [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
  [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
  [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
  [i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862
  [i915#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882
  [i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
  [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
  [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
  [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
  [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
  [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
  [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
  [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
  [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
  [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
  [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
  [i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
  [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
  [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
  [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
  [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
  [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
  [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
  [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
  [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
  [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
  [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
  [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
  [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
  [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
  [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
  [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
  [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
  [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
  [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934


Build changes
-------------

  * CI: CI-20190529 -> None
  * IGT: IGT_8862 -> IGTPW_14997

  CI-20190529: 20190529
  CI_DRM_18342: 207a25698a481a39132b52060d7bb294384876ac @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_14997: 48af934059b52ad1cf6246aa4a2c99119bd51a5e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  IGT_8862: 9b95600c4ae2cb683a8a19ad2a7c006263811a8f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14997/index.html

[-- Attachment #2: Type: text/html, Size: 200064 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH i-g-t 1/3] tools/vmtb: Define IGT tests used as VF migration workloads
  2026-04-16  8:35 ` [PATCH i-g-t 1/3] tools/vmtb: Define IGT tests used as VF migration workloads Adam Miszczak
@ 2026-04-20 18:27   ` Kamil Konieczny
  0 siblings, 0 replies; 9+ messages in thread
From: Kamil Konieczny @ 2026-04-20 18:27 UTC (permalink / raw)
  To: Adam Miszczak; +Cc: igt-dev, marcin.bernatowicz

Hi Adam,
On 2026-04-16 at 10:35:42 +0200, Adam Miszczak wrote:
> New VF busy migration scenarios are expected to utilize IGT tests as workloads,
> specifically several subtests from 'xe_exec_reset', 'xe_exec_threads', 'xe_ccs'
> and 'xe_compute_preempt'.
> Extend IgtExecutor support for relevant IGTs (IgtType definitions and mappings).
> 
> Signed-off-by: Adam Miszczak <adam.miszczak@linux.intel.com>

For a series
Acked-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>

Regards,
Kamil

> ---
>  tools/vmtb/bench/executors/igt.py | 96 +++++++++++++++++++++++++++++--
>  1 file changed, 90 insertions(+), 6 deletions(-)
> 
> diff --git a/tools/vmtb/bench/executors/igt.py b/tools/vmtb/bench/executors/igt.py
> index a08f71d54..f443fb99e 100644
> --- a/tools/vmtb/bench/executors/igt.py
> +++ b/tools/vmtb/bench/executors/igt.py
> @@ -17,17 +17,101 @@ logger = logging.getLogger('IgtExecutor')
>  
>  
>  class IgtType(enum.Enum):
> -    EXEC_BASIC = 1
> -    EXEC_STORE = 2
> -    SPIN_BATCH = 3
> +    # Basic/generic IGT tests:
> +    EXEC_BASIC = enum.auto()
> +    EXEC_STORE = enum.auto()
> +    SPIN_BATCH = enum.auto()
> +    # VF migration workloads - xe_exec_reset/long_spin subtests:
> +    EXEC_RESET_LONG_SPIN_MANY_PREEMPT = enum.auto()
> +    EXEC_RESET_LONG_SPIN_MANY_PREEMPT_MEDIA = enum.auto()
> +    EXEC_RESET_LONG_SPIN_MANY_PREEMPT_THREADS = enum.auto()
> +    EXEC_RESET_LONG_SPIN_MANY_PREEMPT_GT0_THREADS = enum.auto()
> +    EXEC_RESET_LONG_SPIN_MANY_PREEMPT_GT1_THREADS = enum.auto()
> +    EXEC_RESET_LONG_SPIN_REUSE_MANY_PREEMPT = enum.auto()
> +    EXEC_RESET_LONG_SPIN_REUSE_MANY_PREEMPT_MEDIA = enum.auto()
> +    EXEC_RESET_LONG_SPIN_REUSE_MANY_PREEMPT_THREADS = enum.auto()
> +    EXEC_RESET_LONG_SPIN_REUSE_MANY_PREEMPT_GT0_THREADS = enum.auto()
> +    EXEC_RESET_LONG_SPIN_REUSE_MANY_PREEMPT_GT1_THREADS = enum.auto()
> +    EXEC_RESET_LONG_SPIN_SYS_REUSE_MANY_PREEMPT_THREADS = enum.auto()
> +    EXEC_RESET_LONG_SPIN_COMP_REUSE_MANY_PREEMPT_THREADS = enum.auto()
> +    # VF migration workloads - xe_exec_reset/cancel subtests:
> +    EXEC_RESET_CANCEL = enum.auto()
> +    EXEC_RESET_CANCEL_PREEMPT = enum.auto()
> +    EXEC_RESET_CANCEL_TIMESLICE_PREEMPT = enum.auto()
> +    EXEC_RESET_CANCEL_TIMESLICE_MANY_PREEMPT = enum.auto()
> +    # VF migration workloads - xe_exec_threads subtests:
> +    EXEC_THREADS_BASIC = enum.auto()
> +    EXEC_THREADS_BAL_BASIC = enum.auto()
> +    EXEC_THREADS_CM_USERPTR_INVALIDATE = enum.auto()
> +    EXEC_THREADS_BAL_MIXED_USERPTR_INVALIDATE = enum.auto()
> +    EXEC_THREADS_MANY_QUEUES = enum.auto()
> +    # VF migration workloads - xe_ccs subtest:
> +    CCS_BLOCK_COPY_COMPRESSED = enum.auto()
> +    # VF migration workloads - xe_compute_preempt subtest:
> +    COMPUTE_PREEMPT_MANY = enum.auto()
>  
>  
>  # Mappings of driver specific (i915/xe) IGT instances:
>  # {IGT type: (i915 IGT name, xe IGT name)}
>  igt_tests: typing.Dict[IgtType, typing.Tuple[str, str]] = {
> -    IgtType.EXEC_BASIC: ('igt@gem_exec_basic@basic', 'igt@xe_exec_basic@once-basic'),
> -    IgtType.EXEC_STORE: ('igt@gem_exec_store@dword', 'igt@xe_exec_store@basic-store'),
> -    IgtType.SPIN_BATCH: ('igt@gem_spin_batch@legacy', 'igt@xe_spin_batch@spin-basic')
> +    # Basic/generic IGT tests:
> +    IgtType.EXEC_BASIC:
> +      ('igt@gem_exec_basic@basic', 'igt@xe_exec_basic@once-basic'),
> +    IgtType.EXEC_STORE:
> +      ('igt@gem_exec_store@dword', 'igt@xe_exec_store@basic-store'),
> +    IgtType.SPIN_BATCH:
> +      ('igt@gem_spin_batch@legacy', 'igt@xe_spin_batch@spin-basic'),
> +    # VF migration workloads - xe_exec_reset/long_spin subtests:
> +    IgtType.EXEC_RESET_LONG_SPIN_MANY_PREEMPT:
> +      ('n/a', 'igt@xe_exec_reset@long-spin-many-preempt'),
> +    IgtType.EXEC_RESET_LONG_SPIN_MANY_PREEMPT_MEDIA:
> +      ('n/a', 'igt@xe_exec_reset@long-spin-many-preempt-media'),
> +    IgtType.EXEC_RESET_LONG_SPIN_MANY_PREEMPT_THREADS:
> +      ('n/a', 'igt@xe_exec_reset@long-spin-many-preempt-threads'),
> +    IgtType.EXEC_RESET_LONG_SPIN_MANY_PREEMPT_GT0_THREADS:
> +      ('n/a', 'igt@xe_exec_reset@long-spin-many-preempt-gt0-threads'),
> +    IgtType.EXEC_RESET_LONG_SPIN_MANY_PREEMPT_GT1_THREADS:
> +      ('n/a', 'igt@xe_exec_reset@long-spin-many-preempt-gt1-threads'),
> +    IgtType.EXEC_RESET_LONG_SPIN_REUSE_MANY_PREEMPT:
> +      ('n/a', 'igt@xe_exec_reset@long-spin-reuse-many-preempt'),
> +    IgtType.EXEC_RESET_LONG_SPIN_REUSE_MANY_PREEMPT_MEDIA:
> +      ('n/a', 'igt@xe_exec_reset@long-spin-reuse-many-preempt-media'),
> +    IgtType.EXEC_RESET_LONG_SPIN_REUSE_MANY_PREEMPT_THREADS:
> +      ('n/a', 'igt@xe_exec_reset@long-spin-reuse-many-preempt-threads'),
> +    IgtType.EXEC_RESET_LONG_SPIN_REUSE_MANY_PREEMPT_GT0_THREADS:
> +      ('n/a', 'igt@xe_exec_reset@long-spin-reuse-many-preempt-gt0-threads'),
> +    IgtType.EXEC_RESET_LONG_SPIN_REUSE_MANY_PREEMPT_GT1_THREADS:
> +      ('n/a', 'igt@xe_exec_reset@long-spin-reuse-many-preempt-gt1-threads'),
> +    IgtType.EXEC_RESET_LONG_SPIN_SYS_REUSE_MANY_PREEMPT_THREADS:
> +      ('n/a', 'igt@xe_exec_reset@long-spin-sys-reuse-many-preempt-threads'),
> +    IgtType.EXEC_RESET_LONG_SPIN_COMP_REUSE_MANY_PREEMPT_THREADS:
> +      ('n/a', 'igt@xe_exec_reset@long-spin-comp-reuse-many-preempt-threads'),
> +    # VF migration workloads - xe_exec_reset/cancel subtests:
> +    IgtType.EXEC_RESET_CANCEL:
> +      ('n/a', 'igt@xe_exec_reset@cancel'),
> +    IgtType.EXEC_RESET_CANCEL_PREEMPT:
> +      ('n/a', 'igt@xe_exec_reset@cancel-preempt'),
> +    IgtType.EXEC_RESET_CANCEL_TIMESLICE_PREEMPT:
> +      ('n/a', 'igt@xe_exec_reset@cancel-timeslice-preempt'),
> +    IgtType.EXEC_RESET_CANCEL_TIMESLICE_MANY_PREEMPT:
> +      ('n/a', 'igt@xe_exec_reset@cancel-timeslice-many-preempt'),
> +    # VF migration workloads - xe_exec_threads subtests:
> +    IgtType.EXEC_THREADS_BASIC:
> +      ('n/a', 'igt@xe_exec_threads@threads-basic'),
> +    IgtType.EXEC_THREADS_BAL_BASIC:
> +      ('n/a', 'igt@xe_exec_threads@threads-bal-basic'),
> +    IgtType.EXEC_THREADS_CM_USERPTR_INVALIDATE:
> +      ('n/a', 'igt@xe_exec_threads@threads-cm-userptr-invalidate'),
> +    IgtType.EXEC_THREADS_BAL_MIXED_USERPTR_INVALIDATE:
> +      ('n/a', 'igt@xe_exec_threads@threads-bal-mixed-userptr-invalidate'),
> +    IgtType.EXEC_THREADS_MANY_QUEUES:
> +      ('n/a', 'igt@xe_exec_threads@threads-many-queues'),
> +    # VF migration workloads - xe_ccs subtest:
> +    IgtType.CCS_BLOCK_COPY_COMPRESSED:
> +      ('n/a', 'igt@xe_ccs@block-copy-compressed'),
> +    # VF migration workloads - xe_compute_preempt subtest:
> +    IgtType.COMPUTE_PREEMPT_MANY:
> +      ('n/a', 'igt@xe_compute_preempt@compute-preempt-many')
>      }
>  
>  
> -- 
> 2.39.1
> 

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2026-04-20 18:27 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-16  8:35 [PATCH i-g-t 0/3] vmtb: SR-IOV VF migration test suite Adam Miszczak
2026-04-16  8:35 ` [PATCH i-g-t 1/3] tools/vmtb: Define IGT tests used as VF migration workloads Adam Miszczak
2026-04-20 18:27   ` Kamil Konieczny
2026-04-16  8:35 ` [PATCH i-g-t 2/3] tools/vmtb: Provide VF busy migration IGT/gem_wsim workloads Adam Miszczak
2026-04-16  8:35 ` [PATCH i-g-t 3/3] tools/vmtb: Add VF migration tests Adam Miszczak
2026-04-16 15:40 ` ✓ i915.CI.BAT: success for vmtb: SR-IOV VF migration test suite Patchwork
2026-04-16 15:50 ` ✓ Xe.CI.BAT: " Patchwork
2026-04-16 17:34 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-04-17  3:47 ` ✗ 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