* [PATCH 0/3] tests/intel/xe_pat: dynamic PAT index selection for pat-index-auto
@ 2026-05-11 23:36 Zongyao Bai
2026-05-11 23:36 ` [PATCH 1/3] tests/intel/xe_pat: fix typo in r2 wc debug print Zongyao Bai
` (6 more replies)
0 siblings, 7 replies; 9+ messages in thread
From: Zongyao Bai @ 2026-05-11 23:36 UTC (permalink / raw)
To: igt-dev; +Cc: jia.yao, x.wang, Zongyao Bai
From Xe2 onwards, the PAT table has grown large enough that exhaustive
testing of all index combinations is impractical. This series introduces
a new pat-index-auto dynamic subtest that selects PAT indices from the
hardware PAT software configuration at runtime, improving coverage across
runs without hard-coding platform-specific tables.
The main patch adds pat-index-auto, which builds a test mode set in two
stages:
Mandatory entries: one representative WT, coherent, and non-coherent
entry, always included for baseline coverage.
Random entries: remaining valid PAT entries shuffled with Fisher-Yates
and appended up to the configured test count (12 by default, 6 in
simulation mode).
Zongyao Bai (3):
tests/intel/xe_pat: fix typo in r2 wc debug print
tests/intel/xe_pat: drop redundant manual srand initialization
tests/intel/xe_pat: Add dynamic PAT index selection for pat-index-auto
tests/intel-ci/xe.fast-feedback.testlist | 1 +
tests/intel/xe_pat.c | 167 +++++++++++++++++++++--
2 files changed, 160 insertions(+), 8 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH 1/3] tests/intel/xe_pat: fix typo in r2 wc debug print
2026-05-11 23:36 [PATCH 0/3] tests/intel/xe_pat: dynamic PAT index selection for pat-index-auto Zongyao Bai
@ 2026-05-11 23:36 ` Zongyao Bai
2026-05-11 23:36 ` [PATCH 2/3] tests/intel/xe_pat: drop redundant manual srand initialization Zongyao Bai
` (5 subsequent siblings)
6 siblings, 0 replies; 9+ messages in thread
From: Zongyao Bai @ 2026-05-11 23:36 UTC (permalink / raw)
To: igt-dev; +Cc: jia.yao, x.wang, Zongyao Bai
Fix typo in debug output: [r2] log used r1_entry.force_cpu_wc instead of
r2_entry.force_cpu_wc.
Signed-off-by: Zongyao Bai <zongyao.bai@intel.com>
---
tests/intel/xe_pat.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/intel/xe_pat.c b/tests/intel/xe_pat.c
index 81c28677a..e53e08877 100644
--- a/tests/intel/xe_pat.c
+++ b/tests/intel/xe_pat.c
@@ -1515,7 +1515,7 @@ static void subtest_pat_index_modes_with_regions(int fd,
r1_entry.force_cpu_wc, p.r1_compressed);
igt_debug("[r2]: r: %u, idx: %u (%s), coh: %u, wc: %d, comp: %d, w: %u, h: %u, a: %u\n",
p.r2, p.r2_pat_index, r2_entry.name, r2_entry.coh_mode,
- r1_entry.force_cpu_wc, p.r2_compressed,
+ r2_entry.force_cpu_wc, p.r2_compressed,
p.size->width, p.size->height,
p.size->alignment);
--
2.43.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 2/3] tests/intel/xe_pat: drop redundant manual srand initialization
2026-05-11 23:36 [PATCH 0/3] tests/intel/xe_pat: dynamic PAT index selection for pat-index-auto Zongyao Bai
2026-05-11 23:36 ` [PATCH 1/3] tests/intel/xe_pat: fix typo in r2 wc debug print Zongyao Bai
@ 2026-05-11 23:36 ` Zongyao Bai
2026-05-11 23:36 ` [PATCH 3/3] tests/intel/xe_pat: Add dynamic PAT index selection for pat-index-auto Zongyao Bai
` (4 subsequent siblings)
6 siblings, 0 replies; 9+ messages in thread
From: Zongyao Bai @ 2026-05-11 23:36 UTC (permalink / raw)
To: igt-dev; +Cc: jia.yao, x.wang, Zongyao Bai
Remove manual seed initialization and srand() call from igt_fixture().
The IGT framework already handles random seed initialization via igt_srandom()
Signed-off-by: Zongyao Bai <zongyao.bai@intel.com>
---
tests/intel/xe_pat.c | 7 -------
1 file changed, 7 deletions(-)
diff --git a/tests/intel/xe_pat.c b/tests/intel/xe_pat.c
index e53e08877..79f9a87aa 100644
--- a/tests/intel/xe_pat.c
+++ b/tests/intel/xe_pat.c
@@ -2213,15 +2213,8 @@ int igt_main_args("V", NULL, help_str, opt_handler, NULL)
int fd;
igt_fixture() {
- uint32_t seed;
-
fd = drm_open_driver(DRIVER_XE);
dev_id = intel_get_drm_devid(fd);
-
- seed = time(NULL);
- srand(seed);
- igt_debug("seed: %d\n", seed);
-
xe_device_get(fd);
}
--
2.43.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 3/3] tests/intel/xe_pat: Add dynamic PAT index selection for pat-index-auto
2026-05-11 23:36 [PATCH 0/3] tests/intel/xe_pat: dynamic PAT index selection for pat-index-auto Zongyao Bai
2026-05-11 23:36 ` [PATCH 1/3] tests/intel/xe_pat: fix typo in r2 wc debug print Zongyao Bai
2026-05-11 23:36 ` [PATCH 2/3] tests/intel/xe_pat: drop redundant manual srand initialization Zongyao Bai
@ 2026-05-11 23:36 ` Zongyao Bai
2026-05-12 22:44 ` Wang, X
2026-05-12 5:04 ` ✓ i915.CI.BAT: success for tests/intel/xe_pat: " Patchwork
` (3 subsequent siblings)
6 siblings, 1 reply; 9+ messages in thread
From: Zongyao Bai @ 2026-05-11 23:36 UTC (permalink / raw)
To: igt-dev; +Cc: jia.yao, x.wang, Zongyao Bai
Introduce the `pat-index-auto` dynamic subtest to iteratively test
PAT indices based on the hardware configuration, improving test
coverage beyond hardcoded arrays.
Build the test mode set by:
selecting a small common set first (WT, coherent, non-coherent)
adding randomized remaining valid entries
Add pat-index-auto to xe.fast-feedback.testlist.
Signed-off-by: Zongyao Bai <zongyao.bai@intel.com>
---
tests/intel-ci/xe.fast-feedback.testlist | 1 +
tests/intel/xe_pat.c | 158 +++++++++++++++++++++++
2 files changed, 159 insertions(+)
diff --git a/tests/intel-ci/xe.fast-feedback.testlist b/tests/intel-ci/xe.fast-feedback.testlist
index acff025fa..6851c1f49 100644
--- a/tests/intel-ci/xe.fast-feedback.testlist
+++ b/tests/intel-ci/xe.fast-feedback.testlist
@@ -211,6 +211,7 @@ igt@xe_pat@pat-index-xelp
igt@xe_pat@pat-index-xehpc
igt@xe_pat@pat-index-xelpg
igt@xe_pat@pat-index-xe2
+igt@xe_pat@pat-index-auto
igt@xe_waitfence@abstime
igt@xe_waitfence@engine
igt@xe_waitfence@reltime
diff --git a/tests/intel/xe_pat.c b/tests/intel/xe_pat.c
index 79f9a87aa..957f843ec 100644
--- a/tests/intel/xe_pat.c
+++ b/tests/intel/xe_pat.c
@@ -35,6 +35,7 @@
#define XE_COH_NONE 1
#define XE_COH_AT_LEAST_1WAY 2
+#define PAT_NAME_MAX_LEN 64
/*
* PAT index 18: XA (eXclusive Access) + UC (Uncached).
@@ -113,6 +114,7 @@ static void userptr_coh_none(int fd)
#define L3_CACHE_POLICY_WB 0
#define L3_CACHE_POLICY_XD 1
+#define L3_CACHE_POLICY_XA 2
#define L3_CACHE_POLICY_UC 3
#define L4_CACHE_POLICY_WB 0
@@ -1345,6 +1347,147 @@ const struct pat_index_entry bmg_g21_pat_index_modes[] = {
{ NULL, 27, false, "c2-2way", XE_COH_AT_LEAST_1WAY },
};
+static void add_pat_mode(struct pat_index_entry *modes_arr, int idx,
+ uint32_t pat, bool has_comp_en, int pat_idx, bool cpu_wc)
+{
+ modes_arr[idx].get_pat_index = NULL;
+ modes_arr[idx].pat_index = pat_idx;
+ modes_arr[idx].compressed = has_comp_en && !!(pat & XE2_COMP_EN);
+ modes_arr[idx].name = NULL;
+ modes_arr[idx].coh_mode = REG_FIELD_GET(XE2_COH_MODE, pat) >= COH_MODE_1WAY ?
+ XE_COH_AT_LEAST_1WAY : XE_COH_NONE;
+ modes_arr[idx].force_cpu_wc = cpu_wc;
+}
+
+/*
+ * Build pat_index_modes[] test table dynamically from hardware PAT table:
+ * 1. Read PAT entries from hardware
+ * 2. Pick common modes first (WT, Coherent, Non-coherent)
+ * 3. Pick random modes (shuffled remaining entries)
+ * 4. Return the modes array and count through output parameters
+ */
+static int init_pat_index_modes(int fd, struct pat_index_entry **modes)
+{
+ const int TEST_MODE_CNT = 12;
+ const int TEST_COMMON_MODE_MAX = 4;
+
+ /* Static storage for results - persists after function returns */
+ static struct pat_index_entry pat_index_modes[XE_PAT_MAX_ENTRIES * 2];
+ static struct intel_pat_cache pat_sw_config;
+ static char name_storage[XE_PAT_MAX_ENTRIES * 2][PAT_NAME_MAX_LEN];
+
+ int n_entries;
+ bool has_comp_en;
+
+ int test_cnt = igt_run_in_simulation() ? TEST_MODE_CNT / 2 : TEST_MODE_CNT;
+ struct pat_index_entry common_modes[TEST_COMMON_MODE_MAX];
+ struct pat_index_entry random_modes[XE_PAT_MAX_ENTRIES * 2];
+ struct pat_index_entry tmp;
+ int n_common = 0;
+ int n_random = 0;
+ int n_picked = 0;
+ int i, j;
+
+ bool ensure_picked_wt = true;
+ bool ensure_picked_coh = true;
+ bool ensure_picked_noncoh = true;
+
+ /* Fetch PAT config from hardware */
+ n_entries = xe_fetch_pat_sw_config(fd, &pat_sw_config);
+ has_comp_en = HAS_FLATCCS(intel_get_drm_devid(fd));
+
+ igt_assert(n_entries > 0);
+
+ /* Step 1: Split entries into common_modes and random_modes */
+ for (i = 0; i < n_entries; i++) {
+ uint32_t pat = pat_sw_config.entries[i].pat;
+ uint8_t pat_clos = REG_FIELD_GET(XE2_L3_CLOS, pat);
+ uint8_t l3_policy = REG_FIELD_GET(XE2_L3_POLICY, pat);
+ uint8_t l4_policy = REG_FIELD_GET(XE2_L4_POLICY, pat);
+ uint8_t coh_mode = REG_FIELD_GET(XE2_COH_MODE, pat);
+
+ if (pat_sw_config.entries[i].rsvd)
+ continue;
+
+ /* Common pat index type 1: WT mode (l3=xd, l4=wt, coh=0) */
+ if (ensure_picked_wt &&
+ pat_clos == 0 &&
+ l3_policy == L3_CACHE_POLICY_XD &&
+ l4_policy == L4_CACHE_POLICY_WT &&
+ coh_mode == 0) {
+ add_pat_mode(common_modes, n_common, pat, has_comp_en, i, false);
+ n_common++;
+ ensure_picked_wt = false;
+ continue;
+ }
+ /* Common pat index type 2: Coherent mode (l3=wb, l4=uc, coh>=1way) */
+ if (ensure_picked_coh &&
+ pat_clos == 0 &&
+ l3_policy == L3_CACHE_POLICY_WB &&
+ l4_policy == L4_CACHE_POLICY_UC &&
+ coh_mode >= COH_MODE_1WAY) {
+ add_pat_mode(common_modes, n_common, pat, has_comp_en, i, false);
+ n_common++;
+ add_pat_mode(common_modes, n_common, pat, has_comp_en, i, true);
+ n_common++;
+ ensure_picked_coh = false;
+ continue;
+ }
+ /* Common pat index type 3: Non-coherent mode (l3=uc, l4=uc, coh=0) */
+ if (ensure_picked_noncoh &&
+ pat_clos == 0 &&
+ l3_policy == L3_CACHE_POLICY_UC &&
+ l4_policy == L4_CACHE_POLICY_UC &&
+ coh_mode == 0) {
+ add_pat_mode(common_modes, n_common, pat, has_comp_en, i, false);
+ n_common++;
+ ensure_picked_noncoh = false;
+ continue;
+ }
+
+ /* Add to random_modes */
+ add_pat_mode(random_modes, n_random, pat, has_comp_en, i, false);
+ n_random++;
+ if (coh_mode >= COH_MODE_1WAY) {
+ add_pat_mode(random_modes, n_random, pat, has_comp_en, i, true);
+ n_random++;
+ }
+ }
+ igt_assert(n_common + n_random > 0);
+
+ /* Step 2: Fisher-Yates shuffle on random_modes */
+ for (i = n_random - 1; i > 0; i--) {
+ j = random() % (i + 1);
+ tmp = random_modes[i];
+ random_modes[i] = random_modes[j];
+ random_modes[j] = tmp;
+ }
+
+ /* Step 3: Merge common_modes and random_modes into pat_index_modes (up to test_cnt) */
+ for (i = 0; i < n_common && n_picked < test_cnt; i++)
+ pat_index_modes[n_picked++] = common_modes[i];
+ for (i = 0; i < n_random && n_picked < test_cnt; i++)
+ pat_index_modes[n_picked++] = random_modes[i];
+
+ /* Step 4: Assign simple numeric names and print debug info */
+ for (i = 0; i < n_picked; i++) {
+ snprintf(name_storage[i], PAT_NAME_MAX_LEN, "PAT_INDEX_%u%s",
+ pat_index_modes[i].pat_index,
+ pat_index_modes[i].force_cpu_wc ? "-force_cpu_wc" : "");
+
+ pat_index_modes[i].name = name_storage[i];
+
+ igt_debug(" [%d] idx=%2u comp=%d coh=%u cpu_wc=%d name=%s%s\n",
+ i, pat_index_modes[i].pat_index, pat_index_modes[i].compressed,
+ pat_index_modes[i].coh_mode, pat_index_modes[i].force_cpu_wc,
+ pat_index_modes[i].name,
+ (i < n_common) ? " (common)" : " (random)");
+ }
+
+ *modes = pat_index_modes;
+ return n_picked;
+}
+
const struct pat_index_entry xe3p_lpg_coherency_pat_index_modes[] = {
{ NULL, 18, false, "xa-l3-uc", XE_COH_NONE },
{ NULL, 19, false, "xa-l3-1way", XE_COH_AT_LEAST_1WAY },
@@ -1414,6 +1557,12 @@ static uint32_t create_object(int fd, int r, int size, uint16_t coh_mode,
* Description: Check some of the xe2 pat_index modes.
*/
+/**
+ * SUBTEST: pat-index-auto
+ * Test category: functionality test
+ * Description: Dynamically generate and test PAT index modes from platform PAT configuration.
+ */
+
/**
* SUBTEST: xa-app-transient-media-off
* Test category: functionality test
@@ -2275,6 +2424,15 @@ int igt_main_args("V", NULL, help_str, opt_handler, NULL)
ARRAY_SIZE(xe2_pat_index_modes));
}
+ igt_subtest_with_dynamic("pat-index-auto") {
+ struct pat_index_entry *modes;
+ int n_modes;
+
+ igt_require(intel_graphics_ver(dev_id) >= IP_VER(20, 0));
+ n_modes = init_pat_index_modes(fd, &modes);
+ subtest_pat_index_modes_with_regions(fd, modes, n_modes);
+ }
+
igt_subtest("display-vs-wb-transient")
display_vs_wb_transient(fd);
--
2.43.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* ✓ i915.CI.BAT: success for tests/intel/xe_pat: dynamic PAT index selection for pat-index-auto
2026-05-11 23:36 [PATCH 0/3] tests/intel/xe_pat: dynamic PAT index selection for pat-index-auto Zongyao Bai
` (2 preceding siblings ...)
2026-05-11 23:36 ` [PATCH 3/3] tests/intel/xe_pat: Add dynamic PAT index selection for pat-index-auto Zongyao Bai
@ 2026-05-12 5:04 ` Patchwork
2026-05-12 6:41 ` ✓ Xe.CI.BAT: " Patchwork
` (2 subsequent siblings)
6 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-05-12 5:04 UTC (permalink / raw)
To: Zongyao Bai; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2495 bytes --]
== Series Details ==
Series: tests/intel/xe_pat: dynamic PAT index selection for pat-index-auto
URL : https://patchwork.freedesktop.org/series/166367/
State : success
== Summary ==
CI Bug Log - changes from IGT_8903 -> IGTPW_15155
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/index.html
Participating hosts (42 -> 40)
------------------------------
Missing (2): bat-dg2-13 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_15155 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live:
- bat-mtlp-8: [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/bat-mtlp-8/igt@i915_selftest@live.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/bat-mtlp-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-mtlp-9: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@i915_selftest@live@workarounds:
- bat-dg2-9: [DMESG-FAIL][5] ([i915#12061]) -> [PASS][6] +1 other test pass
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8903/bat-dg2-9/igt@i915_selftest@live@workarounds.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/bat-dg2-9/igt@i915_selftest@live@workarounds.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8903 -> IGTPW_15155
* Linux: CI_DRM_18467 -> CI_DRM_18470
CI-20190529: 20190529
CI_DRM_18467: f8ee23694aa6be213355905a78f79bb1b0861565 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_18470: 767b83aa80c6d7eaa1204a866b287b56a1a33122 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15155: 6c2d3b992cff4ab9b8917f254ae543b72344fba5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8903: 6f88532e2fe22529195cc2f8cabff93d994688f8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/index.html
[-- Attachment #2: Type: text/html, Size: 3313 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Xe.CI.BAT: success for tests/intel/xe_pat: dynamic PAT index selection for pat-index-auto
2026-05-11 23:36 [PATCH 0/3] tests/intel/xe_pat: dynamic PAT index selection for pat-index-auto Zongyao Bai
` (3 preceding siblings ...)
2026-05-12 5:04 ` ✓ i915.CI.BAT: success for tests/intel/xe_pat: " Patchwork
@ 2026-05-12 6:41 ` Patchwork
2026-05-12 13:47 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-05-12 19:06 ` ✓ i915.CI.Full: success " Patchwork
6 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-05-12 6:41 UTC (permalink / raw)
To: Zongyao Bai; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2487 bytes --]
== Series Details ==
Series: tests/intel/xe_pat: dynamic PAT index selection for pat-index-auto
URL : https://patchwork.freedesktop.org/series/166367/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8903_BAT -> XEIGTPW_15155_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_15155_BAT:
### IGT changes ###
#### Possible regressions ####
* {igt@xe_pat@pat-index-auto} (NEW):
- bat-adlp-7: NOTRUN -> [SKIP][1]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/bat-adlp-7/igt@xe_pat@pat-index-auto.html
- bat-adlp-vm: NOTRUN -> [SKIP][2]
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/bat-adlp-vm/igt@xe_pat@pat-index-auto.html
- bat-atsm-2: NOTRUN -> [SKIP][3]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/bat-atsm-2/igt@xe_pat@pat-index-auto.html
New tests
---------
New tests have been introduced between XEIGT_8903_BAT and XEIGTPW_15155_BAT:
### New IGT tests (4) ###
* igt@xe_pat@pat-index-auto:
- Statuses : 9 pass(s) 3 skip(s)
- Exec time: [0.0, 12.56] s
* igt@xe_pat@pat-index-auto@blt:
- Statuses : 9 pass(s)
- Exec time: [1.49, 4.86] s
* igt@xe_pat@pat-index-auto@dw:
- Statuses : 9 pass(s)
- Exec time: [0.71, 1.98] s
* igt@xe_pat@pat-index-auto@render:
- Statuses : 9 pass(s)
- Exec time: [1.91, 5.79] s
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
Build changes
-------------
* IGT: IGT_8903 -> IGTPW_15155
* Linux: xe-5041-f8ee23694aa6be213355905a78f79bb1b0861565 -> xe-5044-767b83aa80c6d7eaa1204a866b287b56a1a33122
IGTPW_15155: 6c2d3b992cff4ab9b8917f254ae543b72344fba5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8903: 6f88532e2fe22529195cc2f8cabff93d994688f8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5041-f8ee23694aa6be213355905a78f79bb1b0861565: f8ee23694aa6be213355905a78f79bb1b0861565
xe-5044-767b83aa80c6d7eaa1204a866b287b56a1a33122: 767b83aa80c6d7eaa1204a866b287b56a1a33122
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/index.html
[-- Attachment #2: Type: text/html, Size: 3215 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Xe.CI.FULL: failure for tests/intel/xe_pat: dynamic PAT index selection for pat-index-auto
2026-05-11 23:36 [PATCH 0/3] tests/intel/xe_pat: dynamic PAT index selection for pat-index-auto Zongyao Bai
` (4 preceding siblings ...)
2026-05-12 6:41 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-05-12 13:47 ` Patchwork
2026-05-12 19:06 ` ✓ i915.CI.Full: success " Patchwork
6 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-05-12 13:47 UTC (permalink / raw)
To: Zongyao Bai; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 54739 bytes --]
== Series Details ==
Series: tests/intel/xe_pat: dynamic PAT index selection for pat-index-auto
URL : https://patchwork.freedesktop.org/series/166367/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8903_FULL -> XEIGTPW_15155_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_15155_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_15155_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_15155_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@fbdev@unaligned-read:
- shard-bmg: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-5/igt@fbdev@unaligned-read.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-2/igt@fbdev@unaligned-read.html
* igt@xe_exec_reset@long-spin-reuse-many-preempt-gt1-threads:
- shard-bmg: NOTRUN -> [FAIL][3]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-10/igt@xe_exec_reset@long-spin-reuse-many-preempt-gt1-threads.html
#### Warnings ####
* igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-shrfb-msflip-blt:
- shard-lnl: [SKIP][4] ([Intel XE#7905]) -> [ABORT][5]
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-shrfb-msflip-blt.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-shrfb-msflip-blt.html
New tests
---------
New tests have been introduced between XEIGT_8903_FULL and XEIGTPW_15155_FULL:
### New IGT tests (4) ###
* igt@xe_pat@pat-index-auto:
- Statuses : 2 pass(s)
- Exec time: [5.79, 13.65] s
* igt@xe_pat@pat-index-auto@blt:
- Statuses : 2 pass(s)
- Exec time: [1.73, 4.58] s
* igt@xe_pat@pat-index-auto@dw:
- Statuses : 2 pass(s)
- Exec time: [0.69, 2.51] s
* igt@xe_pat@pat-index-auto@render:
- Statuses : 2 pass(s)
- Exec time: [3.37, 6.57] s
Known issues
------------
Here are the changes found in XEIGTPW_15155_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@hotrebind-lateclose:
- shard-bmg: [PASS][6] -> [SKIP][7] ([Intel XE#6779]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-5/igt@core_hotunplug@hotrebind-lateclose.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-2/igt@core_hotunplug@hotrebind-lateclose.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2327])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-3/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#1124]) +2 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-9/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_bw@linear-tiling-1-displays-target-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#367])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-8/igt@kms_bw@linear-tiling-1-displays-target-1920x1080p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2887]) +3 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-9/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#3432])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-10/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs:
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#2887])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-lnl-7/igt@kms_ccs@random-ccs-data-yf-tiled-ccs.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2252]) +2 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-1/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#373])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-lnl-5/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_content_protection@legacy-hdcp14@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][16] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-6/igt@kms_content_protection@legacy-hdcp14@pipe-a-dp-2.html
* igt@kms_content_protection@lic-type-1:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#7642])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-4/igt@kms_content_protection@lic-type-1.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2320]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-10/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#4354] / [Intel XE#5882])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-9/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2244])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-10/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#6126] / [Intel XE#776])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-10/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-bmg: [PASS][22] -> [DMESG-FAIL][23] ([Intel XE#5545]) +3 other tests dmesg-fail
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-1/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-2/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#7178] / [Intel XE#7351])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#6312]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2311]) +19 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#656] / [Intel XE#7905])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#4141]) +5 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#6557] / [Intel XE#6703])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-abgr161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#7061])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrshdr-abgr161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-msflip-blt:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#7905]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-lnl-5/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2313]) +15 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#6901])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-6/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#7283])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-10/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier.html
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#7283])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-lnl-4/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#5021] / [Intel XE#7377])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-10/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#6703]) +12 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-9/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#3309] / [Intel XE#7368])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-1/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@deep-pkgc:
- shard-lnl: [PASS][40] -> [FAIL][41] ([Intel XE#2029] / [Intel XE#7395])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-lnl-3/igt@kms_pm_dc@deep-pkgc.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-lnl-1/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-10/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#1489]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-2/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@fbc-psr-primary-page-flip:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2234] / [Intel XE#2850]) +3 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-8/igt@kms_psr@fbc-psr-primary-page-flip.html
* igt@kms_psr@psr2-primary-render:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2234])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-9/igt@kms_psr@psr2-primary-render.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2330] / [Intel XE#5813])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_sharpness_filter@filter-suspend:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#6503])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-4/igt@kms_sharpness_filter@filter-suspend.html
* igt@kms_vrr@max-min:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#1499]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-4/igt@kms_vrr@max-min.html
* igt@xe_eudebug_online@resume-one:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#7636]) +3 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-3/igt@xe_eudebug_online@resume-one.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [PASS][50] -> [INCOMPLETE][51] ([Intel XE#6321])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-1/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-10/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_evict@evict-mixed-threads-small-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#6540] / [Intel XE#688])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-lnl-4/igt@xe_evict@evict-mixed-threads-small-multi-vm.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2322] / [Intel XE#7372]) +2 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr.html
* igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#7136]) +4 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-3/igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate.html
* igt@xe_exec_multi_queue@few-execs-preempt-mode-fault-basic:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#6874]) +7 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-3/igt@xe_exec_multi_queue@few-execs-preempt-mode-fault-basic.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-prefetch:
- shard-bmg: [PASS][56] -> [SKIP][57] ([Intel XE#6557] / [Intel XE#6703]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-1/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-prefetch.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-2/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-prefetch.html
* igt@xe_exec_system_allocator@twice-mmap-remap-ro-dontunmap-eocheck:
- shard-bmg: [PASS][58] -> [SKIP][59] ([Intel XE#6703]) +136 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-5/igt@xe_exec_system_allocator@twice-mmap-remap-ro-dontunmap-eocheck.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-2/igt@xe_exec_system_allocator@twice-mmap-remap-ro-dontunmap-eocheck.html
* igt@xe_exec_threads@threads-multi-queue-mixed-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#7138])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-10/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-rebind.html
* igt@xe_multigpu_svm@mgpu-coherency-basic:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#6964])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-8/igt@xe_multigpu_svm@mgpu-coherency-basic.html
* igt@xe_pat@pat-index-xelp:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2245] / [Intel XE#7590])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-4/igt@xe_pat@pat-index-xelp.html
* igt@xe_pm@d3cold-i2c:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#5694] / [Intel XE#7370])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-8/igt@xe_pm@d3cold-i2c.html
* igt@xe_pm@d3cold-mmap-system:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2284] / [Intel XE#7370])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-1/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pxp@regular-src-to-pxp-dest-rendercopy:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#4733] / [Intel XE#7417])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-3/igt@xe_pxp@regular-src-to-pxp-dest-rendercopy.html
* igt@xe_wedged@wedged-mode-toggle:
- shard-bmg: NOTRUN -> [ABORT][66] ([Intel XE#7914])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-3/igt@xe_wedged@wedged-mode-toggle.html
#### Possible fixes ####
* igt@intel_hwmon@hwmon-write:
- shard-bmg: [FAIL][67] ([Intel XE#7445]) -> [PASS][68]
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-9/igt@intel_hwmon@hwmon-write.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-10/igt@intel_hwmon@hwmon-write.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3:
- shard-bmg: [DMESG-FAIL][69] ([Intel XE#5545]) -> [PASS][70] +1 other test pass
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [FAIL][71] ([Intel XE#301]) -> [PASS][72] +1 other test pass
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [SKIP][73] ([Intel XE#1503]) -> [PASS][74]
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-10/igt@kms_hdr@invalid-hdr.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-3/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3-xrgb2101010:
- shard-bmg: [SKIP][75] ([Intel XE#7922]) -> [PASS][76] +1 other test pass
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-10/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3-xrgb2101010.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-3/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3-xrgb2101010.html
* igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-3-xrgb16161616f:
- shard-bmg: [SKIP][77] ([Intel XE#7915]) -> [PASS][78] +1 other test pass
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-8/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-3-xrgb16161616f.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-10/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-3-xrgb16161616f.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-lnl: [SKIP][79] ([Intel XE#4692] / [Intel XE#7508]) -> [PASS][80]
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-lnl-7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-lnl-4/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
- shard-lnl: [FAIL][81] ([Intel XE#2142]) -> [PASS][82] +1 other test pass
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-lnl-7/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-lnl-8/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
* igt@xe_copy_basic@mem-page-copy-17:
- shard-lnl: [ABORT][83] -> [PASS][84]
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-lnl-2/igt@xe_copy_basic@mem-page-copy-17.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-lnl-3/igt@xe_copy_basic@mem-page-copy-17.html
* igt@xe_sriov_admin@sched-priority-vf-write-denied:
- shard-bmg: [SKIP][85] ([Intel XE#6703]) -> [PASS][86] +123 other tests pass
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@xe_sriov_admin@sched-priority-vf-write-denied.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-1/igt@xe_sriov_admin@sched-priority-vf-write-denied.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random:
- shard-bmg: [FAIL][87] ([Intel XE#5937]) -> [PASS][88] +1 other test pass
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-10/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-3/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-bmg: [FAIL][89] ([Intel XE#6569]) -> [PASS][90]
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-6/igt@xe_sriov_flr@flr-each-isolation.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-3/igt@xe_sriov_flr@flr-each-isolation.html
#### Warnings ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-bmg: [SKIP][91] ([Intel XE#2233]) -> [SKIP][92] ([Intel XE#6703])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-5/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-bmg: [SKIP][93] ([Intel XE#2327]) -> [SKIP][94] ([Intel XE#6703])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-10/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-2/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
- shard-bmg: [SKIP][95] ([Intel XE#6703]) -> [SKIP][96] ([Intel XE#7059] / [Intel XE#7085])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-bmg: [SKIP][97] ([Intel XE#6703]) -> [SKIP][98] ([Intel XE#1124]) +2 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-8/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-bmg: [SKIP][99] ([Intel XE#1124]) -> [SKIP][100] ([Intel XE#6703]) +2 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-10/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-target-2560x1440p:
- shard-bmg: [SKIP][101] ([Intel XE#7679]) -> [SKIP][102] ([Intel XE#6703])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-target-2560x1440p.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-target-2560x1440p.html
* igt@kms_bw@linear-tiling-3-displays-target-1920x1080p:
- shard-bmg: [SKIP][103] ([Intel XE#6703]) -> [SKIP][104] ([Intel XE#367])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_bw@linear-tiling-3-displays-target-1920x1080p.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-8/igt@kms_bw@linear-tiling-3-displays-target-1920x1080p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: [SKIP][105] ([Intel XE#6703]) -> [SKIP][106] ([Intel XE#2887]) +1 other test skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs:
- shard-bmg: [SKIP][107] ([Intel XE#2887]) -> [SKIP][108] ([Intel XE#6703]) +2 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-6/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-2/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-bmg: [SKIP][109] ([Intel XE#6703]) -> [SKIP][110] ([Intel XE#2325] / [Intel XE#7358]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_chamelium_color@ctm-0-25.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-8/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-bmg: [SKIP][111] ([Intel XE#2325] / [Intel XE#7358]) -> [SKIP][112] ([Intel XE#6703])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-1/igt@kms_chamelium_color@ctm-0-50.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-2/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-bmg: [SKIP][113] ([Intel XE#2252]) -> [SKIP][114] ([Intel XE#6703]) +1 other test skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-1/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-2/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_chamelium_frames@hdmi-crc-single:
- shard-bmg: [SKIP][115] ([Intel XE#6703]) -> [SKIP][116] ([Intel XE#2252])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_chamelium_frames@hdmi-crc-single.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-4/igt@kms_chamelium_frames@hdmi-crc-single.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-bmg: [SKIP][117] ([Intel XE#6703]) -> [FAIL][118] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_content_protection@legacy-hdcp14.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-6/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-bmg: [SKIP][119] ([Intel XE#6703]) -> [SKIP][120] ([Intel XE#2320])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-32x10.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-10/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_flip@wf_vblank-ts-check-interruptible:
- shard-bmg: [FAIL][121] ([Intel XE#5408] / [Intel XE#6266]) -> [SKIP][122] ([Intel XE#6703])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-9/igt@kms_flip@wf_vblank-ts-check-interruptible.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-2/igt@kms_flip@wf_vblank-ts-check-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-bmg: [SKIP][123] ([Intel XE#7178] / [Intel XE#7351]) -> [SKIP][124] ([Intel XE#6703]) +1 other test skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@drrshdr-slowdraw:
- shard-bmg: [SKIP][125] ([Intel XE#2311]) -> [SKIP][126] ([Intel XE#6703]) +13 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-3/igt@kms_frontbuffer_tracking@drrshdr-slowdraw.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-2/igt@kms_frontbuffer_tracking@drrshdr-slowdraw.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render:
- shard-bmg: [SKIP][127] ([Intel XE#6703]) -> [SKIP][128] ([Intel XE#4141]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][129] ([Intel XE#4141]) -> [SKIP][130] ([Intel XE#6703]) +1 other test skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-render:
- shard-bmg: [SKIP][131] ([Intel XE#6703]) -> [SKIP][132] ([Intel XE#7061] / [Intel XE#7356])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-render.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-move:
- shard-bmg: [SKIP][133] ([Intel XE#6703]) -> [SKIP][134] ([Intel XE#2311]) +9 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-move.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-blt:
- shard-bmg: [SKIP][135] ([Intel XE#7061] / [Intel XE#7356]) -> [SKIP][136] ([Intel XE#6703])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-blt.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-abgr161616f-draw-blt:
- shard-bmg: [SKIP][137] ([Intel XE#7061]) -> [SKIP][138] ([Intel XE#6703]) +1 other test skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-abgr161616f-draw-blt.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-abgr161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-blt:
- shard-bmg: [SKIP][139] ([Intel XE#6703]) -> [SKIP][140] ([Intel XE#7061]) +2 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-blt.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-5/igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][141] ([Intel XE#6703]) -> [SKIP][142] ([Intel XE#2313]) +9 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-pri-shrfb-draw-render:
- shard-bmg: [SKIP][143] ([Intel XE#2313]) -> [SKIP][144] ([Intel XE#6703]) +7 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-10/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-pri-shrfb-draw-render.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-2/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_hdmi_inject@inject-audio:
- shard-bmg: [SKIP][145] ([Intel XE#7308]) -> [SKIP][146] ([Intel XE#6703])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-9/igt@kms_hdmi_inject@inject-audio.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-2/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_panel_fitting@legacy:
- shard-bmg: [SKIP][147] ([Intel XE#2486]) -> [SKIP][148] ([Intel XE#6703])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-10/igt@kms_panel_fitting@legacy.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-2/igt@kms_panel_fitting@legacy.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping:
- shard-bmg: [SKIP][149] ([Intel XE#6703]) -> [SKIP][150] ([Intel XE#7283])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-8/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-bmg: [SKIP][151] ([Intel XE#7376] / [Intel XE#870]) -> [SKIP][152] ([Intel XE#6703])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-1/igt@kms_pm_backlight@fade-with-suspend.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-2/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-bmg: [SKIP][153] ([Intel XE#6703]) -> [SKIP][154] ([Intel XE#1489]) +1 other test skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-2/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-bmg: [SKIP][155] ([Intel XE#1489]) -> [SKIP][156] ([Intel XE#6703]) +1 other test skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-2/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr@pr-suspend:
- shard-bmg: [SKIP][157] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][158] ([Intel XE#6703])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-9/igt@kms_psr@pr-suspend.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-2/igt@kms_psr@pr-suspend.html
* igt@kms_psr@psr-basic:
- shard-bmg: [SKIP][159] ([Intel XE#6703]) -> [SKIP][160] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@kms_psr@psr-basic.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-1/igt@kms_psr@psr-basic.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-bmg: [SKIP][161] ([Intel XE#7795]) -> [SKIP][162] ([Intel XE#6703])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@bad-tiling:
- shard-bmg: [SKIP][163] ([Intel XE#3904] / [Intel XE#7342]) -> [SKIP][164] ([Intel XE#6703])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-9/igt@kms_rotation_crc@bad-tiling.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-2/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_sharpness_filter@filter-scaler-downscale:
- shard-bmg: [SKIP][165] ([Intel XE#6503]) -> [SKIP][166] ([Intel XE#6703])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-3/igt@kms_sharpness_filter@filter-scaler-downscale.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-2/igt@kms_sharpness_filter@filter-scaler-downscale.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [SKIP][167] ([Intel XE#2426] / [Intel XE#5848]) -> [FAIL][168] ([Intel XE#1729] / [Intel XE#7424])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern.html
* igt@xe_eudebug@basic-vm-bind-vm-destroy-discovery:
- shard-bmg: [SKIP][169] ([Intel XE#7636]) -> [SKIP][170] ([Intel XE#6703]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-3/igt@xe_eudebug@basic-vm-bind-vm-destroy-discovery.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-2/igt@xe_eudebug@basic-vm-bind-vm-destroy-discovery.html
* igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram:
- shard-bmg: [SKIP][171] ([Intel XE#6703]) -> [SKIP][172] ([Intel XE#7636]) +3 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-10/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html
* igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind:
- shard-bmg: [SKIP][173] ([Intel XE#6703]) -> [SKIP][174] ([Intel XE#2322] / [Intel XE#7372]) +2 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-9/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html
* igt@xe_exec_basic@multigpu-once-userptr-invalidate-race:
- shard-bmg: [SKIP][175] ([Intel XE#2322] / [Intel XE#7372]) -> [SKIP][176] ([Intel XE#6703]) +1 other test skip
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-10/igt@xe_exec_basic@multigpu-once-userptr-invalidate-race.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-2/igt@xe_exec_basic@multigpu-once-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate-race-prefetch:
- shard-bmg: [SKIP][177] ([Intel XE#7136]) -> [SKIP][178] ([Intel XE#6703]) +4 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate-race-prefetch.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-2/igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate-race-prefetch.html
* igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind:
- shard-bmg: [SKIP][179] ([Intel XE#6703]) -> [SKIP][180] ([Intel XE#7136])
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-2/igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind.html
* igt@xe_exec_multi_queue@few-execs-preempt-mode-dyn-priority:
- shard-bmg: [SKIP][181] ([Intel XE#6703]) -> [SKIP][182] ([Intel XE#6874]) +7 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@xe_exec_multi_queue@few-execs-preempt-mode-dyn-priority.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-9/igt@xe_exec_multi_queue@few-execs-preempt-mode-dyn-priority.html
* igt@xe_exec_multi_queue@two-queues-preempt-mode-basic-smem:
- shard-bmg: [SKIP][183] ([Intel XE#6874]) -> [SKIP][184] ([Intel XE#6703]) +8 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-7/igt@xe_exec_multi_queue@two-queues-preempt-mode-basic-smem.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-2/igt@xe_exec_multi_queue@two-queues-preempt-mode-basic-smem.html
* igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr:
- shard-bmg: [SKIP][185] ([Intel XE#6703]) -> [SKIP][186] ([Intel XE#7138]) +2 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-1/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr.html
* igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-invalidate-race:
- shard-bmg: [SKIP][187] ([Intel XE#7138]) -> [SKIP][188] ([Intel XE#6703]) +2 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-3/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-invalidate-race.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-invalidate-race.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-bmg: [SKIP][189] ([Intel XE#2248] / [Intel XE#7325] / [Intel XE#7393]) -> [SKIP][190] ([Intel XE#6703])
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-5/igt@xe_oa@oa-tlb-invalidate.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-2/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_page_reclaim@binds-1g-partial:
- shard-bmg: [SKIP][191] ([Intel XE#6703]) -> [SKIP][192] ([Intel XE#7793])
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@xe_page_reclaim@binds-1g-partial.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-6/igt@xe_page_reclaim@binds-1g-partial.html
* igt@xe_page_reclaim@many-vma-same-bo:
- shard-bmg: [SKIP][193] ([Intel XE#7793]) -> [SKIP][194] ([Intel XE#6703])
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-5/igt@xe_page_reclaim@many-vma-same-bo.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-2/igt@xe_page_reclaim@many-vma-same-bo.html
* igt@xe_pm@d3cold-basic-exec:
- shard-bmg: [SKIP][195] ([Intel XE#2284] / [Intel XE#7370]) -> [SKIP][196] ([Intel XE#6703])
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-4/igt@xe_pm@d3cold-basic-exec.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-2/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-bmg: [SKIP][197] ([Intel XE#6703]) -> [SKIP][198] ([Intel XE#2284] / [Intel XE#7370])
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@xe_pm@d3cold-mmap-vram.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-2/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_query@multigpu-query-gt-list:
- shard-bmg: [SKIP][199] ([Intel XE#944]) -> [SKIP][200] ([Intel XE#6703])
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-6/igt@xe_query@multigpu-query-gt-list.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-2/igt@xe_query@multigpu-query-gt-list.html
* igt@xe_query@multigpu-query-topology:
- shard-bmg: [SKIP][201] ([Intel XE#6703]) -> [SKIP][202] ([Intel XE#944])
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8903/shard-bmg-2/igt@xe_query@multigpu-query-topology.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/shard-bmg-5/igt@xe_query@multigpu-query-topology.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[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#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
[Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[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#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#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#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[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#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[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#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4692
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5408]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5408
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
[Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#5882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5882
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#6126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6126
[Intel XE#6266]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6266
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[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#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
[Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
[Intel XE#6779]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6779
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[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#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#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085
[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#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#7325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7325
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[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#7368]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7368
[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#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377
[Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
[Intel XE#7393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7393
[Intel XE#7395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7395
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
[Intel XE#7445]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7445
[Intel XE#7508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7508
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[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#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
[Intel XE#7795]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7795
[Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905
[Intel XE#7914]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7914
[Intel XE#7915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7915
[Intel XE#7922]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7922
[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_8903 -> IGTPW_15155
* Linux: xe-5041-f8ee23694aa6be213355905a78f79bb1b0861565 -> xe-5044-767b83aa80c6d7eaa1204a866b287b56a1a33122
IGTPW_15155: 6c2d3b992cff4ab9b8917f254ae543b72344fba5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8903: 6f88532e2fe22529195cc2f8cabff93d994688f8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5041-f8ee23694aa6be213355905a78f79bb1b0861565: f8ee23694aa6be213355905a78f79bb1b0861565
xe-5044-767b83aa80c6d7eaa1204a866b287b56a1a33122: 767b83aa80c6d7eaa1204a866b287b56a1a33122
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15155/index.html
[-- Attachment #2: Type: text/html, Size: 66390 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ i915.CI.Full: success for tests/intel/xe_pat: dynamic PAT index selection for pat-index-auto
2026-05-11 23:36 [PATCH 0/3] tests/intel/xe_pat: dynamic PAT index selection for pat-index-auto Zongyao Bai
` (5 preceding siblings ...)
2026-05-12 13:47 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-05-12 19:06 ` Patchwork
6 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-05-12 19:06 UTC (permalink / raw)
To: Zongyao Bai; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 139540 bytes --]
== Series Details ==
Series: tests/intel/xe_pat: dynamic PAT index selection for pat-index-auto
URL : https://patchwork.freedesktop.org/series/166367/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_18470_full -> IGTPW_15155_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/index.html
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in IGTPW_15155_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-rkl: NOTRUN -> [SKIP][1] ([i915#8411])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-5/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@dmabuf@all-tests:
- shard-tglu: NOTRUN -> [SKIP][2] ([i915#15931])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-5/igt@dmabuf@all-tests.html
* igt@gem_basic@multigpu-create-close:
- shard-dg2: NOTRUN -> [SKIP][3] ([i915#7697])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-1/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][4] ([i915#9323])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-4/igt@gem_ccs@suspend-resume.html
- shard-tglu: NOTRUN -> [SKIP][5] ([i915#9323])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-2/igt@gem_ccs@suspend-resume.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-tglu: NOTRUN -> [SKIP][6] ([i915#6335])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-5/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_persistence@processes:
- shard-snb: NOTRUN -> [SKIP][7] ([i915#1099])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-snb7/igt@gem_ctx_persistence@processes.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt:
- shard-dg2: NOTRUN -> [SKIP][8] ([i915#5882]) +7 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-8/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1:
- shard-mtlp: NOTRUN -> [SKIP][9] ([i915#5882]) +6 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-8/igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1.html
* igt@gem_ctx_sseu@engines:
- shard-tglu: NOTRUN -> [SKIP][10] ([i915#280])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-6/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-tglu-1: NOTRUN -> [SKIP][11] ([i915#280])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-1/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@in-flight-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][12] ([i915#13390])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-glk1/igt@gem_eio@in-flight-suspend.html
* igt@gem_exec_balancer@bonded-pair:
- shard-dg2: NOTRUN -> [SKIP][13] ([i915#4771])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-10/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-dg2: NOTRUN -> [SKIP][14] ([i915#4812]) +3 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-3/igt@gem_exec_balancer@bonded-true-hang.html
- shard-dg1: NOTRUN -> [SKIP][15] ([i915#4812]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-17/igt@gem_exec_balancer@bonded-true-hang.html
- shard-mtlp: NOTRUN -> [SKIP][16] ([i915#4812])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-8/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg1: NOTRUN -> [SKIP][17] ([i915#4036])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-18/igt@gem_exec_balancer@invalid-bonds.html
- shard-mtlp: NOTRUN -> [SKIP][18] ([i915#4036])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-4/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@parallel-bb-first:
- shard-tglu-1: NOTRUN -> [SKIP][19] ([i915#4525])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-1/igt@gem_exec_balancer@parallel-bb-first.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-tglu: NOTRUN -> [SKIP][20] ([i915#4525])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-9/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_big@single:
- shard-mtlp: [PASS][21] -> [FAIL][22] ([i915#15871])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-mtlp-2/igt@gem_exec_big@single.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-4/igt@gem_exec_big@single.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-tglu: NOTRUN -> [SKIP][23] ([i915#6334]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-5/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@capture@vecs0-lmem0:
- shard-dg2: NOTRUN -> [FAIL][24] ([i915#11965]) +4 other tests fail
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-10/igt@gem_exec_capture@capture@vecs0-lmem0.html
* igt@gem_exec_endless@dispatch@bcs0:
- shard-dg2: NOTRUN -> [TIMEOUT][25] ([i915#3778] / [i915#7016]) +1 other test timeout
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-4/igt@gem_exec_endless@dispatch@bcs0.html
* igt@gem_exec_flush@basic-wb-rw-before-default:
- shard-dg2: NOTRUN -> [SKIP][26] ([i915#3539] / [i915#4852]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-5/igt@gem_exec_flush@basic-wb-rw-before-default.html
* igt@gem_exec_reloc@basic-range:
- shard-mtlp: NOTRUN -> [SKIP][27] ([i915#3281]) +5 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-2/igt@gem_exec_reloc@basic-range.html
* igt@gem_exec_reloc@basic-wc-cpu:
- shard-dg2: NOTRUN -> [SKIP][28] ([i915#3281]) +9 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-5/igt@gem_exec_reloc@basic-wc-cpu.html
* igt@gem_exec_reloc@basic-write-cpu-active:
- shard-dg1: NOTRUN -> [SKIP][29] ([i915#3281]) +6 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-18/igt@gem_exec_reloc@basic-write-cpu-active.html
* igt@gem_exec_reloc@basic-write-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][30] ([i915#3281]) +10 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-3/igt@gem_exec_reloc@basic-write-read-noreloc.html
* igt@gem_exec_schedule@preempt-queue:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#4537] / [i915#4812])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-6/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-mtlp: NOTRUN -> [SKIP][32] ([i915#4537] / [i915#4812])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-5/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_exec_suspend@basic-s0:
- shard-dg2: [PASS][33] -> [INCOMPLETE][34] ([i915#13356]) +1 other test incomplete
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg2-7/igt@gem_exec_suspend@basic-s0.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-4/igt@gem_exec_suspend@basic-s0.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible:
- shard-dg2: NOTRUN -> [SKIP][35] ([i915#4860])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-4/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html
* igt@gem_lmem_swapping@heavy-verify-random:
- shard-rkl: NOTRUN -> [SKIP][36] ([i915#4613]) +2 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-7/igt@gem_lmem_swapping@heavy-verify-random.html
- shard-mtlp: NOTRUN -> [SKIP][37] ([i915#4613])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-4/igt@gem_lmem_swapping@heavy-verify-random.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-rkl: NOTRUN -> [SKIP][38] ([i915#14544] / [i915#4613])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-6/igt@gem_lmem_swapping@parallel-multi.html
- shard-tglu-1: NOTRUN -> [SKIP][39] ([i915#4613]) +2 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-1/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@random-engines:
- shard-glk: NOTRUN -> [SKIP][40] ([i915#4613]) +3 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-glk5/igt@gem_lmem_swapping@random-engines.html
* igt@gem_lmem_swapping@smem-oom:
- shard-tglu: NOTRUN -> [SKIP][41] ([i915#4613]) +4 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-3/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_mmap_gtt@coherency:
- shard-glk11: NOTRUN -> [SKIP][42] +127 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-glk11/igt@gem_mmap_gtt@coherency.html
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4077]) +2 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-3/igt@gem_mmap_gtt@coherency.html
* igt@gem_mmap_wc@copy:
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#4083]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-18/igt@gem_mmap_wc@copy.html
- shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4083])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-4/igt@gem_mmap_wc@copy.html
* igt@gem_mmap_wc@write:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#4083]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-5/igt@gem_mmap_wc@write.html
* igt@gem_partial_pwrite_pread@reads-display:
- shard-mtlp: NOTRUN -> [SKIP][47] ([i915#3282]) +3 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-7/igt@gem_partial_pwrite_pread@reads-display.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#3282]) +3 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-1/igt@gem_partial_pwrite_pread@reads-uncached.html
- shard-dg1: NOTRUN -> [SKIP][49] ([i915#3282]) +4 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-19/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_partial_pwrite_pread@writes-after-reads-snoop:
- shard-rkl: NOTRUN -> [SKIP][50] ([i915#3282]) +4 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-7/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html
* igt@gem_pread@exhaustion:
- shard-glk: NOTRUN -> [WARN][51] ([i915#2658])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-glk6/igt@gem_pread@exhaustion.html
* igt@gem_pwrite@basic-exhaustion:
- shard-glk: NOTRUN -> [WARN][52] ([i915#14702] / [i915#2658])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-glk1/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#4270]) +4 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-4/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#4270]) +2 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-18/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_render_copy@y-tiled-to-vebox-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#5190] / [i915#8428]) +8 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-8/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html
* igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#8428]) +4 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-7/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-dg1: NOTRUN -> [SKIP][57] ([i915#4079])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-12/igt@gem_set_tiling_vs_gtt.html
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4079])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-6/igt@gem_set_tiling_vs_gtt.html
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#4079])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-5/igt@gem_set_tiling_vs_gtt.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#4885])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-6/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_tiled_blits@basic:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#4077]) +9 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-7/igt@gem_tiled_blits@basic.html
* igt@gem_tiled_partial_pwrite_pread@reads:
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#4077]) +4 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-14/igt@gem_tiled_partial_pwrite_pread@reads.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-tglu: NOTRUN -> [SKIP][63] ([i915#3297]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-10/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#3297])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-8/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#3297])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-15/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#3297] / [i915#4880]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-10/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg1: NOTRUN -> [SKIP][67] ([i915#3297] / [i915#4880])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-19/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_workarounds@suspend-resume:
- shard-glk: NOTRUN -> [INCOMPLETE][68] ([i915#13356] / [i915#14586])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-glk9/igt@gem_workarounds@suspend-resume.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-snb: NOTRUN -> [SKIP][69] +147 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-snb4/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-rkl: NOTRUN -> [SKIP][70] ([i915#2527]) +5 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-3/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@bb-oversize:
- shard-tglu-1: NOTRUN -> [SKIP][71] ([i915#2527] / [i915#2856]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-1/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@shadow-peek:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#2856]) +6 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-1/igt@gen9_exec_parse@shadow-peek.html
- shard-dg1: NOTRUN -> [SKIP][73] ([i915#2527]) +5 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-13/igt@gen9_exec_parse@shadow-peek.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-tglu: NOTRUN -> [SKIP][74] ([i915#2527] / [i915#2856]) +4 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-5/igt@gen9_exec_parse@unaligned-jump.html
- shard-mtlp: NOTRUN -> [SKIP][75] ([i915#2856]) +4 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-1/igt@gen9_exec_parse@unaligned-jump.html
* igt@i915_drm_fdinfo@virtual-busy-idle:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#14118])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-8/igt@i915_drm_fdinfo@virtual-busy-idle.html
* igt@i915_drm_fdinfo@virtual-busy-idle-all:
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#14118])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-18/igt@i915_drm_fdinfo@virtual-busy-idle-all.html
* igt@i915_pm_freq_api@freq-reset:
- shard-tglu-1: NOTRUN -> [SKIP][78] ([i915#8399])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-1/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-tglu: NOTRUN -> [SKIP][79] ([i915#8399])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-4/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_freq_api@freq-suspend@gt0:
- shard-dg2: [PASS][80] -> [INCOMPLETE][81] ([i915#13356] / [i915#13820]) +1 other test incomplete
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg2-5/igt@i915_pm_freq_api@freq-suspend@gt0.html
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-3/igt@i915_pm_freq_api@freq-suspend@gt0.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglu-1: NOTRUN -> [WARN][82] ([i915#13790] / [i915#2681]) +1 other test warn
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-glk: NOTRUN -> [INCOMPLETE][83] ([i915#13356] / [i915#15172])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-glk8/igt@i915_pm_rpm@system-suspend-execbuf.html
- shard-rkl: NOTRUN -> [INCOMPLETE][84] ([i915#13356])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-3/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_query@hwconfig_table:
- shard-dg1: NOTRUN -> [SKIP][85] ([i915#6245])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-13/igt@i915_query@hwconfig_table.html
* igt@i915_selftest@live@workarounds:
- shard-dg2: [PASS][86] -> [DMESG-FAIL][87] ([i915#12061]) +1 other test dmesg-fail
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg2-3/igt@i915_selftest@live@workarounds.html
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-5/igt@i915_selftest@live@workarounds.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-glk11: NOTRUN -> [INCOMPLETE][88] ([i915#4817])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-glk11/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@i915_suspend@sysfs-reader:
- shard-glk: [PASS][89] -> [INCOMPLETE][90] ([i915#4817])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-glk4/igt@i915_suspend@sysfs-reader.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-glk5/igt@i915_suspend@sysfs-reader.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-rkl: NOTRUN -> [SKIP][91] ([i915#9531])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-tglu-1: NOTRUN -> [SKIP][92] ([i915#1769] / [i915#3555])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][93] ([i915#4538] / [i915#5286]) +2 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-14/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-tglu-1: NOTRUN -> [SKIP][94] ([i915#5286]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-1/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: NOTRUN -> [SKIP][95] ([i915#5286]) +4 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-5/igt@kms_big_fb@4-tiled-addfb.html
- shard-tglu: NOTRUN -> [SKIP][96] ([i915#5286]) +5 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-5/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [PASS][97] -> [FAIL][98] ([i915#15733] / [i915#5138])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
- shard-tglu: NOTRUN -> [SKIP][99] ([i915#3828]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-10/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][100] +9 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-7/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
- shard-rkl: NOTRUN -> [SKIP][101] ([i915#3638]) +2 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-4/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][102] ([i915#3638])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-15/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-180:
- shard-mtlp: NOTRUN -> [SKIP][103] +10 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-5/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#4538] / [i915#5190]) +12 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-1/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][105] ([i915#4538]) +3 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][107] ([i915#12313])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-3/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
- shard-dg1: NOTRUN -> [SKIP][108] ([i915#12313])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-17/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs:
- shard-tglu: NOTRUN -> [SKIP][109] ([i915#6095]) +79 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-9/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][110] ([i915#6095]) +39 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [SKIP][111] ([i915#10307] / [i915#6095]) +85 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-10/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-a-dp-3.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][112] ([i915#6095]) +24 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-edp-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][113] ([i915#14544] / [i915#6095]) +8 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
- shard-glk: NOTRUN -> [INCOMPLETE][114] ([i915#15582]) +3 other tests incomplete
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-glk2/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][115] ([i915#14098] / [i915#14544] / [i915#6095]) +6 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][116] ([i915#6095]) +4 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][117] ([i915#14098] / [i915#6095]) +48 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1:
- shard-dg1: NOTRUN -> [SKIP][118] ([i915#6095]) +219 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-15/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#12313])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-1/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][120] ([i915#12313])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-1/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][121] ([i915#6095]) +78 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_cdclk@mode-transition:
- shard-glk: NOTRUN -> [SKIP][122] +524 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-glk8/igt@kms_cdclk@mode-transition.html
- shard-rkl: NOTRUN -> [SKIP][123] ([i915#3742]) +1 other test skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-8/igt@kms_cdclk@mode-transition.html
- shard-tglu: NOTRUN -> [SKIP][124] ([i915#3742])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-8/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][125] ([i915#13781]) +3 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-4/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-dg2: NOTRUN -> [SKIP][126] ([i915#11151] / [i915#7828]) +6 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-1/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-tglu-1: NOTRUN -> [SKIP][127] ([i915#11151] / [i915#7828]) +2 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][128] ([i915#11151] / [i915#7828]) +8 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-4/igt@kms_chamelium_hpd@vga-hpd-fast.html
- shard-dg1: NOTRUN -> [SKIP][129] ([i915#11151] / [i915#7828]) +4 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-13/igt@kms_chamelium_hpd@vga-hpd-fast.html
- shard-tglu: NOTRUN -> [SKIP][130] ([i915#11151] / [i915#7828]) +7 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-7/igt@kms_chamelium_hpd@vga-hpd-fast.html
- shard-mtlp: NOTRUN -> [SKIP][131] ([i915#11151] / [i915#7828]) +2 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-3/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_content_protection@atomic:
- shard-tglu: NOTRUN -> [SKIP][132] ([i915#15865]) +1 other test skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-3/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms-hdcp14:
- shard-rkl: NOTRUN -> [SKIP][133] ([i915#15865])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-3/igt@kms_content_protection@atomic-dpms-hdcp14.html
* igt@kms_content_protection@atomic-hdcp14@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [FAIL][134] ([i915#7173])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-10/igt@kms_content_protection@atomic-hdcp14@pipe-a-dp-3.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][135] ([i915#15330] / [i915#3116] / [i915#3299])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-2/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg2: NOTRUN -> [SKIP][136] ([i915#15330] / [i915#3299])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-3/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-rkl: NOTRUN -> [SKIP][137] ([i915#15330]) +1 other test skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-7/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-tglu-1: NOTRUN -> [SKIP][138] ([i915#15330] / [i915#3116] / [i915#3299])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-1/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-rkl: [PASS][139] -> [FAIL][140] ([i915#13566]) +1 other test fail
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-128x42.html
- shard-tglu: [PASS][141] -> [FAIL][142] ([i915#13566]) +5 other tests fail
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-7/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-tglu-1: NOTRUN -> [FAIL][143] ([i915#13566]) +1 other test fail
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-tglu: NOTRUN -> [SKIP][144] ([i915#3555]) +6 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-tglu: NOTRUN -> [SKIP][145] ([i915#13049]) +2 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-mtlp: NOTRUN -> [SKIP][146] ([i915#13049])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#13049])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-1/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-dg1: NOTRUN -> [SKIP][148] ([i915#13049])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-13/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [FAIL][149] ([i915#13566]) +1 other test fail
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-tglu-1: NOTRUN -> [SKIP][150] ([i915#3555])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-mtlp: NOTRUN -> [SKIP][151] ([i915#8814])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-2/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-rkl: NOTRUN -> [SKIP][152] ([i915#13049]) +1 other test skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][153] ([i915#13566]) +3 other tests fail
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-2.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#4103] / [i915#4213]) +1 other test skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-rkl: NOTRUN -> [SKIP][155] ([i915#4103])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-dg1: NOTRUN -> [SKIP][156] ([i915#4103] / [i915#4213])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-12/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-tglu: NOTRUN -> [SKIP][157] ([i915#4103])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-mtlp: NOTRUN -> [SKIP][158] ([i915#4213])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#13046] / [i915#5354]) +3 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-7/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][160] ([i915#9809]) +2 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-5/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-tglu: [PASS][161] -> [FAIL][162] ([i915#15804])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-tglu-10/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#9067])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-8/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-rkl: NOTRUN -> [SKIP][164] ([i915#9067])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-2/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-dg1: NOTRUN -> [SKIP][165] ([i915#9067])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-16/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-mtlp: NOTRUN -> [SKIP][166] ([i915#9067])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-7/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_display_modes@extended-mode-basic:
- shard-rkl: NOTRUN -> [SKIP][167] ([i915#13691])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-5/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][168] ([i915#3804])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#3555]) +3 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-8/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-mtlp: NOTRUN -> [SKIP][170] ([i915#13749])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-2/igt@kms_dp_link_training@non-uhbr-sst.html
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#13749])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-1/igt@kms_dp_link_training@non-uhbr-sst.html
- shard-rkl: NOTRUN -> [SKIP][172] ([i915#13749])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-1/igt@kms_dp_link_training@non-uhbr-sst.html
- shard-dg1: NOTRUN -> [SKIP][173] ([i915#13749])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-19/igt@kms_dp_link_training@non-uhbr-sst.html
- shard-tglu: NOTRUN -> [SKIP][174] ([i915#13749])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-3/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-tglu-1: NOTRUN -> [SKIP][175] ([i915#13707])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-1/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-basic:
- shard-tglu-1: NOTRUN -> [SKIP][176] ([i915#3555] / [i915#3840])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-1/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-rkl: NOTRUN -> [SKIP][177] ([i915#3840])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-4/igt@kms_dsc@dsc-fractional-bpp.html
- shard-tglu: NOTRUN -> [SKIP][178] ([i915#3840])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-2/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-bpc:
- shard-tglu: NOTRUN -> [SKIP][179] ([i915#3555] / [i915#3840])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-8/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-formats:
- shard-mtlp: NOTRUN -> [SKIP][180] ([i915#3555] / [i915#3840])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-7/igt@kms_dsc@dsc-with-formats.html
- shard-dg2: NOTRUN -> [SKIP][181] ([i915#3555] / [i915#3840])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-8/igt@kms_dsc@dsc-with-formats.html
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#3555] / [i915#3840])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-2/igt@kms_dsc@dsc-with-formats.html
- shard-dg1: NOTRUN -> [SKIP][183] ([i915#3555] / [i915#3840])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-16/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-tglu-1: NOTRUN -> [SKIP][184] ([i915#3840] / [i915#9053])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_feature_discovery@display-4x:
- shard-tglu: NOTRUN -> [SKIP][185] ([i915#1839])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-6/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#14544] / [i915#9934])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-6/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-tglu: NOTRUN -> [SKIP][187] ([i915#9934])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-5/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-tglu: NOTRUN -> [SKIP][188] ([i915#3637] / [i915#9934]) +10 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-3/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#9934]) +8 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-1/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-tglu-1: NOTRUN -> [SKIP][190] ([i915#3637] / [i915#9934]) +3 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-1/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#9934]) +4 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-7/igt@kms_flip@2x-wf_vblank-ts-check.html
- shard-dg1: NOTRUN -> [SKIP][192] ([i915#9934]) +2 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-15/igt@kms_flip@2x-wf_vblank-ts-check.html
- shard-mtlp: NOTRUN -> [SKIP][193] ([i915#3637] / [i915#9934]) +1 other test skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-2/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-vga1:
- shard-snb: NOTRUN -> [FAIL][194] ([i915#14600]) +1 other test fail
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-snb4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-vga1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-tglu: [PASS][195] -> [FAIL][196] ([i915#13027]) +1 other test fail
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-tglu-10/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a1:
- shard-glk: NOTRUN -> [FAIL][197] ([i915#13027]) +1 other test fail
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-glk1/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a1.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#8381])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-1/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip@flip-vs-suspend:
- shard-dg2: [PASS][199] -> [ABORT][200] ([i915#15132]) +1 other test abort
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg2-3/igt@kms_flip@flip-vs-suspend.html
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-10/igt@kms_flip@flip-vs-suspend.html
- shard-rkl: [PASS][201] -> [INCOMPLETE][202] ([i915#6113]) +1 other test incomplete
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-7/igt@kms_flip@flip-vs-suspend.html
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-6/igt@kms_flip@flip-vs-suspend.html
- shard-glk10: NOTRUN -> [INCOMPLETE][203] ([i915#12745] / [i915#4839]) +1 other test incomplete
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-glk10/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2:
- shard-rkl: [PASS][204] -> [ABORT][205] ([i915#15132]) +1 other test abort
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-4/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-1/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html
* igt@kms_flip@flip-vs-suspend@a-dp3:
- shard-dg2: NOTRUN -> [ABORT][206] ([i915#15132])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-10/igt@kms_flip@flip-vs-suspend@a-dp3.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk10: NOTRUN -> [INCOMPLETE][207] ([i915#12745]) +1 other test incomplete
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-glk10/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][208] ([i915#15643])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#15643])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][210] ([i915#15643]) +3 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][211] ([i915#15643]) +6 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
- shard-dg1: NOTRUN -> [SKIP][212] ([i915#15643]) +2 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
- shard-tglu: NOTRUN -> [SKIP][213] ([i915#15643]) +7 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#15643] / [i915#5190]) +2 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_force_connector_basic@force-connector-state:
- shard-mtlp: [PASS][215] -> [SKIP][216] ([i915#15672])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-mtlp-7/igt@kms_force_connector_basic@force-connector-state.html
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-1/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_force_connector_basic@force-edid:
- shard-mtlp: NOTRUN -> [SKIP][217] ([i915#15672])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-1/igt@kms_force_connector_basic@force-edid.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#14544] / [i915#1825]) +1 other test skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][219] +127 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-mtlp: NOTRUN -> [SKIP][220] ([i915#15991] / [i915#1825]) +10 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][221] ([i915#10056])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-glk4/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-shrfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#15989]) +9 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-6/igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff:
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#15989]) +18 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-8/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html
- shard-dg1: NOTRUN -> [SKIP][224] ([i915#15989]) +5 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-19/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][225] ([i915#15990]) +17 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-19/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-pgflip-blt:
- shard-dg1: NOTRUN -> [SKIP][226] +38 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-17/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][227] ([i915#14544]) +8 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbchdr-suspend:
- shard-glk11: NOTRUN -> [INCOMPLETE][228] ([i915#16056])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-glk11/igt@kms_frontbuffer_tracking@fbchdr-suspend.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][229] ([i915#15104] / [i915#15990])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][230] ([i915#15104] / [i915#15990])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt:
- shard-tglu: NOTRUN -> [SKIP][231] ([i915#15102]) +51 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-rte:
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#15102] / [i915#3023]) +13 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#15990] / [i915#8708]) +17 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][234] ([i915#1825]) +31 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][235] ([i915#15990] / [i915#8708]) +4 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][236] ([i915#15991] / [i915#5354]) +23 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#15990] / [i915#8708]) +9 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][238] ([i915#10055])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-plflip-blt:
- shard-dg1: NOTRUN -> [SKIP][239] ([i915#15102]) +8 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][240] ([i915#15102]) +23 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-fullscreen:
- shard-mtlp: NOTRUN -> [SKIP][241] ([i915#15989]) +12 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#15990]) +26 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-tglu-1: NOTRUN -> [SKIP][243] +51 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4:
- shard-tglu-1: NOTRUN -> [SKIP][244] ([i915#5439]) +1 other test skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-indfb-draw-blt:
- shard-tglu: NOTRUN -> [SKIP][245] ([i915#15989]) +25 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-7/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-pwrite:
- shard-glk: [PASS][246] -> [SKIP][247] +2 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-glk8/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-pwrite.html
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-glk1/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-shrfb-plflip-blt:
- shard-tglu-1: NOTRUN -> [SKIP][248] ([i915#15989]) +9 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-1/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-rkl: [PASS][249] -> [SKIP][250] ([i915#15989]) +8 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-mmap-cpu.html
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-3/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-spr-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][251] ([i915#15991]) +17 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-3/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-dg2: NOTRUN -> [SKIP][252] ([i915#9766])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw:
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#15102] / [i915#3458]) +10 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
- shard-dg1: NOTRUN -> [SKIP][254] ([i915#15102] / [i915#3458]) +8 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-tglu-1: NOTRUN -> [SKIP][255] ([i915#15102]) +17 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-1/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-pri-indfb-multidraw:
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#15991]) +36 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-3/igt@kms_frontbuffer_tracking@psrhdr-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][257] ([i915#15990]) +7 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-8/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move:
- shard-rkl: NOTRUN -> [SKIP][258] +58 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-3/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-pwrite:
- shard-glk10: NOTRUN -> [SKIP][259] +193 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-glk10/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psrhdr-slowdraw:
- shard-dg2: NOTRUN -> [SKIP][260] ([i915#15102]) +15 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-8/igt@kms_frontbuffer_tracking@psrhdr-slowdraw.html
* igt@kms_hdmi_inject@inject-audio:
- shard-mtlp: [PASS][261] -> [SKIP][262] ([i915#15725])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-mtlp-3/igt@kms_hdmi_inject@inject-audio.html
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-1/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-dg2: NOTRUN -> [SKIP][263] ([i915#16012] / [i915#3555] / [i915#8228])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-5/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-3-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][264] ([i915#16012]) +1 other test skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-5/igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-3-xrgb2101010.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-tglu: NOTRUN -> [SKIP][265] ([i915#16012] / [i915#3555] / [i915#8228])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-7/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-1-xrgb2101010:
- shard-rkl: NOTRUN -> [SKIP][266] ([i915#16012]) +1 other test skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-2/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-1-xrgb2101010.html
- shard-tglu: NOTRUN -> [SKIP][267] ([i915#16012]) +1 other test skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-7/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-1-xrgb2101010.html
* igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-4-xrgb2101010:
- shard-dg1: NOTRUN -> [SKIP][268] ([i915#16012]) +1 other test skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-16/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-4-xrgb2101010.html
* igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-1-xrgb16161616f:
- shard-tglu: NOTRUN -> [SKIP][269] ([i915#16011]) +2 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-5/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-1-xrgb16161616f.html
* igt@kms_hdr@static-swap:
- shard-rkl: [PASS][270] -> [SKIP][271] ([i915#16011] / [i915#3555] / [i915#8228])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_hdr@static-swap.html
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-5/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-swap@pipe-a-hdmi-a-1-xrgb2101010:
- shard-rkl: NOTRUN -> [SKIP][272] ([i915#16011]) +5 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-5/igt@kms_hdr@static-swap@pipe-a-hdmi-a-1-xrgb2101010.html
* igt@kms_hdr@static-toggle:
- shard-dg1: NOTRUN -> [SKIP][273] ([i915#16011] / [i915#3555] / [i915#8228])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-14/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-dpms:
- shard-rkl: NOTRUN -> [SKIP][274] ([i915#16011] / [i915#3555] / [i915#8228])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-3/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_hdr@static-toggle@pipe-a-hdmi-a-1-xrgb16161616f:
- shard-dg1: NOTRUN -> [SKIP][275] ([i915#16011]) +5 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-14/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-1-xrgb16161616f.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][276] ([i915#15459])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-8/igt@kms_joiner@basic-force-big-joiner.html
- shard-rkl: NOTRUN -> [SKIP][277] ([i915#15459])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-5/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][278] ([i915#15458])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-4/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][279] ([i915#15458])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-8/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier:
- shard-dg2: NOTRUN -> [SKIP][280] ([i915#15709]) +1 other test skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-1/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping:
- shard-tglu-1: NOTRUN -> [SKIP][281] ([i915#15709])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier:
- shard-rkl: NOTRUN -> [SKIP][282] ([i915#15709]) +1 other test skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-5/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
- shard-tglu: NOTRUN -> [SKIP][283] ([i915#15709]) +2 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-5/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7:
- shard-tglu: NOTRUN -> [SKIP][284] ([i915#15608]) +1 other test skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-6/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7:
- shard-tglu-1: NOTRUN -> [SKIP][285] ([i915#15608]) +1 other test skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7.html
* igt@kms_plane_alpha_blend@alpha-basic:
- shard-glk: NOTRUN -> [FAIL][286] ([i915#12178])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-glk1/igt@kms_plane_alpha_blend@alpha-basic.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][287] ([i915#7862]) +1 other test fail
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-glk1/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb:
- shard-glk11: NOTRUN -> [FAIL][288] ([i915#10647] / [i915#12169])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-glk11/igt@kms_plane_alpha_blend@alpha-opaque-fb.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1:
- shard-glk11: NOTRUN -> [FAIL][289] ([i915#10647]) +1 other test fail
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-glk11/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-glk: NOTRUN -> [FAIL][290] ([i915#10647] / [i915#12177])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-glk4/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][291] ([i915#10647]) +1 other test fail
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-glk4/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_alpha_blend@constant-alpha-max:
- shard-glk10: NOTRUN -> [FAIL][292] ([i915#10647] / [i915#12169])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-glk10/igt@kms_plane_alpha_blend@constant-alpha-max.html
* igt@kms_plane_alpha_blend@constant-alpha-max@pipe-a-hdmi-a-1:
- shard-glk10: NOTRUN -> [FAIL][293] ([i915#10647]) +1 other test fail
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-glk10/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-a-hdmi-a-1.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-rkl: NOTRUN -> [SKIP][294] ([i915#13958])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-8/igt@kms_plane_multiple@2x-tiling-none.html
- shard-dg1: NOTRUN -> [SKIP][295] ([i915#13958])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-14/igt@kms_plane_multiple@2x-tiling-none.html
- shard-tglu: NOTRUN -> [SKIP][296] ([i915#13958]) +1 other test skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-2/igt@kms_plane_multiple@2x-tiling-none.html
- shard-mtlp: NOTRUN -> [SKIP][297] ([i915#13958])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-1/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@tiling-yf:
- shard-dg1: NOTRUN -> [SKIP][298] ([i915#14259])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-17/igt@kms_plane_multiple@tiling-yf.html
- shard-dg2: NOTRUN -> [SKIP][299] ([i915#14259])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-3/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a:
- shard-mtlp: NOTRUN -> [SKIP][300] ([i915#15329]) +9 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][301] ([i915#15329]) +8 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-tglu: NOTRUN -> [SKIP][302] ([i915#15329] / [i915#3555])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
- shard-dg1: NOTRUN -> [SKIP][303] ([i915#15329]) +9 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-18/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_pm_backlight@basic-brightness:
- shard-dg2: NOTRUN -> [SKIP][304] ([i915#5354])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-1/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][305] ([i915#12343])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-3/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][306] ([i915#5354])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-8/igt@kms_pm_backlight@fade-with-dpms.html
- shard-tglu-1: NOTRUN -> [SKIP][307] ([i915#9812])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-1/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2: NOTRUN -> [SKIP][308] ([i915#15751])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-7/igt@kms_pm_dc@dc6-dpms.html
- shard-rkl: NOTRUN -> [FAIL][309] ([i915#15752])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-2/igt@kms_pm_dc@dc6-dpms.html
- shard-dg1: NOTRUN -> [SKIP][310] ([i915#3361])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-16/igt@kms_pm_dc@dc6-dpms.html
- shard-tglu: NOTRUN -> [FAIL][311] ([i915#15752])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-7/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: NOTRUN -> [SKIP][312] ([i915#15739])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-3/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-dg1: NOTRUN -> [SKIP][313] ([i915#8430])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-18/igt@kms_pm_lpsp@screens-disabled.html
- shard-tglu: NOTRUN -> [SKIP][314] ([i915#8430])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-10/igt@kms_pm_lpsp@screens-disabled.html
- shard-mtlp: NOTRUN -> [SKIP][315] ([i915#8430])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-8/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][316] ([i915#15073])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-10/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@i2c:
- shard-dg1: [PASS][317] -> [DMESG-WARN][318] ([i915#4423])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg1-13/igt@kms_pm_rpm@i2c.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-13/igt@kms_pm_rpm@i2c.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: [PASS][319] -> [SKIP][320] ([i915#15073]) +1 other test skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp.html
- shard-dg1: [PASS][321] -> [SKIP][322] ([i915#15073])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg1-13/igt@kms_pm_rpm@modeset-non-lpsp.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@package-g7:
- shard-dg2: NOTRUN -> [SKIP][323] ([i915#15403])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-5/igt@kms_pm_rpm@package-g7.html
- shard-tglu-1: NOTRUN -> [SKIP][324] ([i915#15403])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-1/igt@kms_pm_rpm@package-g7.html
* igt@kms_prime@basic-crc-hybrid:
- shard-tglu: NOTRUN -> [SKIP][325] ([i915#6524]) +1 other test skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-2/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg2: NOTRUN -> [SKIP][326] ([i915#11520]) +7 other tests skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-8/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
- shard-rkl: NOTRUN -> [SKIP][327] ([i915#11520]) +7 other tests skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-2/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
- shard-mtlp: NOTRUN -> [SKIP][328] ([i915#12316]) +4 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-7/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-tglu-1: NOTRUN -> [SKIP][329] ([i915#11520]) +2 other tests skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/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-rkl: NOTRUN -> [SKIP][330] ([i915#11520] / [i915#14544])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html
- shard-glk11: NOTRUN -> [SKIP][331] ([i915#11520]) +1 other test skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-glk11/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][332] ([i915#9808])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-8/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-a-edp-1.html
* igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
- shard-tglu: NOTRUN -> [SKIP][333] ([i915#11520]) +8 other tests skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-4/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-snb: NOTRUN -> [SKIP][334] ([i915#11520]) +4 other tests skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-snb5/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
- shard-dg1: NOTRUN -> [SKIP][335] ([i915#11520]) +4 other tests skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-16/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-glk10: NOTRUN -> [SKIP][336] ([i915#11520]) +3 other tests skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-glk10/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][337] ([i915#11520]) +11 other tests skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-glk1/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-tglu: NOTRUN -> [SKIP][338] ([i915#9683])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2: NOTRUN -> [SKIP][339] ([i915#9683])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-5/igt@kms_psr2_su@page_flip-p010.html
- shard-tglu-1: NOTRUN -> [SKIP][340] ([i915#9683])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-1/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-pr-cursor-blt:
- shard-mtlp: NOTRUN -> [SKIP][341] ([i915#9688]) +11 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-1/igt@kms_psr@fbc-pr-cursor-blt.html
* igt@kms_psr@pr-dpms:
- shard-tglu: NOTRUN -> [SKIP][342] ([i915#9732]) +23 other tests skip
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-5/igt@kms_psr@pr-dpms.html
* igt@kms_psr@pr-no-drrs:
- shard-tglu-1: NOTRUN -> [SKIP][343] ([i915#9732]) +8 other tests skip
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-1/igt@kms_psr@pr-no-drrs.html
* igt@kms_psr@psr-cursor-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][344] ([i915#1072] / [i915#9732]) +13 other tests skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-18/igt@kms_psr@psr-cursor-mmap-cpu.html
* igt@kms_psr@psr-cursor-render:
- shard-rkl: NOTRUN -> [SKIP][345] ([i915#1072] / [i915#9732]) +20 other tests skip
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-5/igt@kms_psr@psr-cursor-render.html
* igt@kms_psr@psr2-cursor-plane-move:
- shard-dg2: NOTRUN -> [SKIP][346] ([i915#1072] / [i915#9732]) +20 other tests skip
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-1/igt@kms_psr@psr2-cursor-plane-move.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-tglu-1: NOTRUN -> [SKIP][347] ([i915#15949])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][348] ([i915#12755] / [i915#15867] / [i915#5190]) +1 other test skip
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-tglu-1: NOTRUN -> [SKIP][349] ([i915#5289])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][350] ([i915#12755] / [i915#15867])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-7/igt@kms_rotation_crc@sprite-rotation-270.html
- shard-mtlp: NOTRUN -> [SKIP][351] ([i915#12755] / [i915#15867]) +1 other test skip
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-2/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-rkl: NOTRUN -> [SKIP][352] ([i915#3555]) +2 other tests skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-5/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_selftest@drm_framebuffer:
- shard-glk11: NOTRUN -> [ABORT][353] ([i915#13179]) +1 other test abort
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-glk11/igt@kms_selftest@drm_framebuffer.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg1: NOTRUN -> [SKIP][354] ([i915#8623])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-18/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-tglu: NOTRUN -> [SKIP][355] ([i915#8623])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-10/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-mtlp: NOTRUN -> [SKIP][356] ([i915#8623])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-dg2: NOTRUN -> [SKIP][357] ([i915#8623])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-rkl: [PASS][358] -> [INCOMPLETE][359] ([i915#12276]) +1 other test incomplete
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-3/igt@kms_vblank@ts-continuation-dpms-suspend.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-6/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][360] ([i915#12276]) +1 other test incomplete
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-glk3/igt@kms_vblank@ts-continuation-suspend.html
* igt@kms_vrr@flipline:
- shard-rkl: NOTRUN -> [SKIP][361] ([i915#15243] / [i915#3555])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-2/igt@kms_vrr@flipline.html
* igt@kms_vrr@lobf:
- shard-tglu: NOTRUN -> [SKIP][362] ([i915#11920])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-8/igt@kms_vrr@lobf.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-dg2: NOTRUN -> [SKIP][363] ([i915#9906])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-1/igt@kms_vrr@seamless-rr-switch-drrs.html
- shard-rkl: NOTRUN -> [SKIP][364] ([i915#9906])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-7/igt@kms_vrr@seamless-rr-switch-drrs.html
- shard-dg1: NOTRUN -> [SKIP][365] ([i915#9906])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-13/igt@kms_vrr@seamless-rr-switch-drrs.html
- shard-tglu: NOTRUN -> [SKIP][366] ([i915#9906]) +1 other test skip
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-5/igt@kms_vrr@seamless-rr-switch-drrs.html
- shard-mtlp: NOTRUN -> [SKIP][367] ([i915#8808] / [i915#9906])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-4/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][368] ([i915#2436])
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-7/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: NOTRUN -> [FAIL][369] ([i915#9100]) +1 other test fail
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-6/igt@perf@non-zero-reason@0-rcs0.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][370] ([i915#2433])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-5/igt@perf@unprivileged-single-ctx-counters.html
- shard-dg1: NOTRUN -> [SKIP][371] ([i915#2433])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-19/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@busy-double-start@ccs0:
- shard-dg2: [PASS][372] -> [FAIL][373] ([i915#4349])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg2-1/igt@perf_pmu@busy-double-start@ccs0.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-8/igt@perf_pmu@busy-double-start@ccs0.html
* igt@perf_pmu@busy-double-start@vcs1:
- shard-dg1: [PASS][374] -> [FAIL][375] ([i915#4349]) +3 other tests fail
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg1-14/igt@perf_pmu@busy-double-start@vcs1.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-12/igt@perf_pmu@busy-double-start@vcs1.html
* igt@perf_pmu@busy-double-start@vecs0:
- shard-mtlp: [PASS][376] -> [FAIL][377] ([i915#4349]) +1 other test fail
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-mtlp-7/igt@perf_pmu@busy-double-start@vecs0.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-8/igt@perf_pmu@busy-double-start@vecs0.html
* igt@prime_vgem@basic-fence-flip:
- shard-dg2: NOTRUN -> [SKIP][378] ([i915#3708])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-7/igt@prime_vgem@basic-fence-flip.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2: NOTRUN -> [SKIP][379] ([i915#9917])
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-7/igt@sriov_basic@enable-vfs-autoprobe-off.html
- shard-rkl: NOTRUN -> [SKIP][380] ([i915#9917])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-2/igt@sriov_basic@enable-vfs-autoprobe-off.html
- shard-dg1: NOTRUN -> [SKIP][381] ([i915#9917])
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-16/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6:
- shard-tglu: NOTRUN -> [FAIL][382] ([i915#12910]) +9 other tests fail
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-7/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6.html
- shard-mtlp: NOTRUN -> [FAIL][383] ([i915#12910]) +9 other tests fail
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-7/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6.html
* igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-2:
- shard-tglu-1: NOTRUN -> [FAIL][384] ([i915#12910]) +8 other tests fail
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-tglu-1/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-2.html
#### Possible fixes ####
* igt@gem_exec_suspend@basic-s3:
- shard-glk: [INCOMPLETE][385] ([i915#13196] / [i915#13356]) -> [PASS][386] +1 other test pass
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-glk3/igt@gem_exec_suspend@basic-s3.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-glk4/igt@gem_exec_suspend@basic-s3.html
* igt@i915_suspend@fence-restore-untiled:
- shard-rkl: [INCOMPLETE][387] ([i915#4817]) -> [PASS][388]
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@i915_suspend@fence-restore-untiled.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-5/igt@i915_suspend@fence-restore-untiled.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-dg2: [SKIP][389] ([i915#3555]) -> [PASS][390]
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg2-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-10/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-rkl: [FAIL][391] ([i915#13027]) -> [PASS][392]
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
- shard-dg1: [FAIL][393] ([i915#13027]) -> [PASS][394] +1 other test pass
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg1-14/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-14/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-mtlp: [SKIP][395] ([i915#15672]) -> [PASS][396]
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-mtlp-1/igt@kms_force_connector_basic@prune-stale-modes.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-5/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-draw-blt:
- shard-dg2: [SKIP][397] ([i915#15989]) -> [PASS][398] +2 other tests pass
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg2-1/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-draw-blt.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-10/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-shrfb-plflip-blt:
- shard-rkl: [SKIP][399] ([i915#15989]) -> [PASS][400] +13 other tests pass
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-7/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-shrfb-plflip-blt.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-1/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-shrfb-draw-mmap-gtt:
- shard-glk: [SKIP][401] -> [PASS][402] +3 other tests pass
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-glk4/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-glk8/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-dg2: [SKIP][403] ([i915#16012] / [i915#3555] / [i915#8228]) -> [PASS][404]
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg2-6/igt@kms_hdr@bpc-switch-suspend.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-10/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-rkl: [INCOMPLETE][405] ([i915#12756] / [i915#13476]) -> [PASS][406]
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-7/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2:
- shard-rkl: [INCOMPLETE][407] ([i915#13476]) -> [PASS][408]
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: [SKIP][409] ([i915#15073]) -> [PASS][410] +2 other tests pass
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg1: [SKIP][411] ([i915#15073]) -> [PASS][412] +2 other tests pass
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-18/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-dg2: [INCOMPLETE][413] ([i915#14419]) -> [PASS][414]
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg2-4/igt@kms_pm_rpm@system-suspend-idle.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-8/igt@kms_pm_rpm@system-suspend-idle.html
* igt@kms_setmode@basic:
- shard-dg1: [FAIL][415] ([i915#15106]) -> [PASS][416] +2 other tests pass
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg1-16/igt@kms_setmode@basic.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-16/igt@kms_setmode@basic.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-mtlp: [FAIL][417] ([i915#15106]) -> [PASS][418] +2 other tests pass
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-mtlp-2/igt@kms_setmode@basic@pipe-b-edp-1.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-7/igt@kms_setmode@basic@pipe-b-edp-1.html
#### Warnings ####
* igt@gem_bad_reloc@negative-reloc:
- shard-rkl: [SKIP][419] ([i915#14544] / [i915#3281]) -> [SKIP][420] ([i915#3281])
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@gem_bad_reloc@negative-reloc.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-5/igt@gem_bad_reloc@negative-reloc.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-rkl: [SKIP][421] ([i915#14544] / [i915#7697]) -> [SKIP][422] ([i915#7697])
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@gem_close_race@multigpu-basic-threads.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-2/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_exec_reloc@basic-concurrent0:
- shard-rkl: [SKIP][423] ([i915#3281]) -> [SKIP][424] ([i915#14544] / [i915#3281]) +2 other tests skip
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-1/igt@gem_exec_reloc@basic-concurrent0.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-6/igt@gem_exec_reloc@basic-concurrent0.html
* igt@gem_lmem_swapping@parallel-random-engines:
- shard-rkl: [SKIP][425] ([i915#4613]) -> [SKIP][426] ([i915#14544] / [i915#4613])
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-5/igt@gem_lmem_swapping@parallel-random-engines.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_partial_pwrite_pread@reads:
- shard-rkl: [SKIP][427] ([i915#14544] / [i915#3282]) -> [SKIP][428] ([i915#3282]) +1 other test skip
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@gem_partial_pwrite_pread@reads.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-8/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-rkl: [SKIP][429] ([i915#13717] / [i915#14544]) -> [SKIP][430] ([i915#13717])
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-buffer.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-1/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_readwrite@read-bad-handle:
- shard-rkl: [SKIP][431] ([i915#3282]) -> [SKIP][432] ([i915#14544] / [i915#3282])
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-5/igt@gem_readwrite@read-bad-handle.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-6/igt@gem_readwrite@read-bad-handle.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-rkl: [SKIP][433] ([i915#3297]) -> [SKIP][434] ([i915#14544] / [i915#3297])
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-4/igt@gem_userptr_blits@readonly-unsync.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-6/igt@gem_userptr_blits@readonly-unsync.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-rkl: [SKIP][435] ([i915#2527]) -> [SKIP][436] ([i915#14544] / [i915#2527])
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-2/igt@gen9_exec_parse@cmd-crossing-page.html
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-6/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@gen9_exec_parse@secure-batches:
- shard-rkl: [SKIP][437] ([i915#14544] / [i915#2527]) -> [SKIP][438] ([i915#2527])
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@gen9_exec_parse@secure-batches.html
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-1/igt@gen9_exec_parse@secure-batches.html
* igt@i915_module_load@resize-bar:
- shard-rkl: [SKIP][439] ([i915#14544] / [i915#6412]) -> [SKIP][440] ([i915#6412])
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@i915_module_load@resize-bar.html
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-5/igt@i915_module_load@resize-bar.html
* igt@i915_query@hwconfig_table:
- shard-rkl: [SKIP][441] ([i915#6245]) -> [SKIP][442] ([i915#14544] / [i915#6245])
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-5/igt@i915_query@hwconfig_table.html
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-6/igt@i915_query@hwconfig_table.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-0:
- shard-rkl: [SKIP][443] ([i915#14544] / [i915#5286]) -> [SKIP][444] ([i915#5286])
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-4/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-180:
- shard-rkl: [SKIP][445] ([i915#5286]) -> [SKIP][446] ([i915#14544] / [i915#5286])
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-8/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-rkl: [SKIP][447] ([i915#14544] / [i915#3638]) -> [SKIP][448] ([i915#3638])
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-7/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_ccs@bad-aux-stride-y-tiled-ccs:
- shard-dg1: [SKIP][449] ([i915#4423] / [i915#6095]) -> [SKIP][450] ([i915#6095])
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg1-13/igt@kms_ccs@bad-aux-stride-y-tiled-ccs.html
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-15/igt@kms_ccs@bad-aux-stride-y-tiled-ccs.html
* igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][451] ([i915#6095]) -> [SKIP][452] ([i915#14544] / [i915#6095]) +1 other test skip
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-7/igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-a-hdmi-a-2.html
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-6/igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][453] ([i915#12313] / [i915#14544]) -> [SKIP][454] ([i915#12313])
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@bad-rotation-90-yf-tiled-ccs:
- shard-rkl: [SKIP][455] ([i915#14098] / [i915#6095]) -> [SKIP][456] ([i915#14098] / [i915#14544] / [i915#6095]) +4 other tests skip
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-2/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs.html
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-6/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs:
- shard-rkl: [SKIP][457] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][458] ([i915#14098] / [i915#6095]) +5 other tests skip
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][459] ([i915#12313]) -> [SKIP][460] ([i915#12313] / [i915#14544])
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-7/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-rkl: [SKIP][461] ([i915#3742]) -> [SKIP][462] ([i915#14544] / [i915#3742])
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-3/igt@kms_cdclk@mode-transition-all-outputs.html
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-6/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-rkl: [SKIP][463] ([i915#11151] / [i915#7828]) -> [SKIP][464] ([i915#11151] / [i915#14544] / [i915#7828]) +2 other tests skip
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-3/igt@kms_chamelium_frames@dp-crc-fast.html
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-6/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-rkl: [SKIP][465] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][466] ([i915#11151] / [i915#7828]) +1 other test skip
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_chamelium_frames@hdmi-frame-dump.html
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-8/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_content_protection@atomic-hdcp14:
- shard-dg2: [SKIP][467] ([i915#15865]) -> [FAIL][468] ([i915#7173])
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg2-8/igt@kms_content_protection@atomic-hdcp14.html
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-10/igt@kms_content_protection@atomic-hdcp14.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-rkl: [SKIP][469] ([i915#15865]) -> [SKIP][470] ([i915#14544] / [i915#15865]) +1 other test skip
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-2/igt@kms_content_protection@legacy-hdcp14.html
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-6/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][471] ([i915#15865]) -> [SKIP][472] ([i915#9433])
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg1-14/igt@kms_content_protection@mei-interface.html
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-12/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@suspend-resume:
- shard-rkl: [SKIP][473] ([i915#14544] / [i915#15865]) -> [SKIP][474] ([i915#15865])
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_content_protection@suspend-resume.html
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-4/igt@kms_content_protection@suspend-resume.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2: [SKIP][475] ([i915#13049]) -> [SKIP][476] ([i915#13049] / [i915#3359])
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg2-7/igt@kms_cursor_crc@cursor-offscreen-512x512.html
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-10/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-rkl: [SKIP][477] ([i915#3555]) -> [SKIP][478] ([i915#14544] / [i915#3555]) +2 other tests skip
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-8/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-rkl: [SKIP][479] ([i915#13049] / [i915#14544]) -> [SKIP][480] ([i915#13049])
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-5/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-rkl: [SKIP][481] ([i915#9723]) -> [SKIP][482] ([i915#14544] / [i915#9723])
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-rkl: [SKIP][483] ([i915#14544] / [i915#3555] / [i915#3804]) -> [SKIP][484] ([i915#3555] / [i915#3804])
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dsc@dsc-with-bpc:
- shard-rkl: [SKIP][485] ([i915#3555] / [i915#3840]) -> [SKIP][486] ([i915#14544] / [i915#3555] / [i915#3840])
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-2/igt@kms_dsc@dsc-with-bpc.html
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-6/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-rkl: [SKIP][487] ([i915#14544] / [i915#9934]) -> [SKIP][488] ([i915#9934]) +4 other tests skip
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms.html
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-4/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-rkl: [SKIP][489] ([i915#9934]) -> [SKIP][490] ([i915#14544] / [i915#9934]) +1 other test skip
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-3/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-6/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-rkl: [SKIP][491] ([i915#15643]) -> [SKIP][492] ([i915#14544] / [i915#15643])
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-mtlp: [SKIP][493] ([i915#15672]) -> [SKIP][494]
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-mtlp-1/igt@kms_force_connector_basic@force-load-detect.html
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-mtlp-4/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@fbchdr-suspend:
- shard-rkl: [SKIP][495] ([i915#15989]) -> [INCOMPLETE][496] ([i915#16056])
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-8/igt@kms_frontbuffer_tracking@fbchdr-suspend.html
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-suspend.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt:
- shard-dg2: [SKIP][497] ([i915#15102] / [i915#3458]) -> [SKIP][498] ([i915#10433] / [i915#15102] / [i915#3458])
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-blt:
- shard-rkl: [SKIP][499] ([i915#14544] / [i915#15102]) -> [SKIP][500] ([i915#15102]) +5 other tests skip
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-blt.html
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-stridechange:
- shard-rkl: [SKIP][501] ([i915#15102]) -> [SKIP][502] ([i915#14544] / [i915#15102]) +6 other tests skip
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsrhdr-stridechange.html
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-stridechange.html
* igt@kms_frontbuffer_tracking@hdr-2p-primscrn-spr-indfb-draw-pwrite:
- shard-rkl: [SKIP][503] -> [SKIP][504] ([i915#14544]) +15 other tests skip
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-7/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-spr-indfb-draw-pwrite.html
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@hdr-2p-primscrn-spr-indfb-draw-render:
- shard-dg1: [SKIP][505] ([i915#4423]) -> [SKIP][506]
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg1-13/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-spr-indfb-draw-render.html
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-12/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt:
- shard-dg1: [SKIP][507] ([i915#15104] / [i915#15990] / [i915#4423]) -> [SKIP][508] ([i915#15104] / [i915#15990])
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-rkl: [SKIP][509] ([i915#15102] / [i915#3023]) -> [SKIP][510] ([i915#14544] / [i915#15102] / [i915#3023]) +5 other tests skip
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move:
- shard-rkl: [SKIP][511] ([i915#1825]) -> [SKIP][512] ([i915#14544] / [i915#1825]) +6 other tests skip
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move.html
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt:
- shard-rkl: [SKIP][513] ([i915#14544] / [i915#1825]) -> [SKIP][514] ([i915#1825]) +8 other tests skip
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-suspend:
- shard-rkl: [SKIP][515] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][516] ([i915#15102] / [i915#3023]) +8 other tests skip
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-suspend.html
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-suspend.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-shrfb-plflip-blt:
- shard-rkl: [SKIP][517] ([i915#14544]) -> [SKIP][518] +20 other tests skip
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-shrfb-plflip-blt.html
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-4/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-render:
- shard-dg1: [SKIP][519] ([i915#15102] / [i915#4423]) -> [SKIP][520] ([i915#15102])
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg1-17/igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-render.html
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-15/igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-render.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-rkl: [SKIP][521] ([i915#14544] / [i915#15458]) -> [SKIP][522] ([i915#15458])
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_joiner@basic-force-ultra-joiner.html
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-4/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping:
- shard-rkl: [SKIP][523] ([i915#15709]) -> [SKIP][524] ([i915#14544] / [i915#15709])
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-8/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
- shard-rkl: [SKIP][525] ([i915#15329]) -> [SKIP][526] ([i915#14544] / [i915#15329]) +3 other tests skip
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-7/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html
* igt@kms_pm_dc@dc5-psr:
- shard-rkl: [SKIP][527] ([i915#15948]) -> [SKIP][528] ([i915#14544] / [i915#15948])
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-8/igt@kms_pm_dc@dc5-psr.html
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-6/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-psr:
- shard-rkl: [SKIP][529] ([i915#14544] / [i915#15948]) -> [SKIP][530] ([i915#15948])
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_pm_dc@dc6-psr.html
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-1/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: [SKIP][531] ([i915#9340]) -> [SKIP][532] ([i915#3828])
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-3/igt@kms_pm_lpsp@kms-lpsp.html
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-5/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@package-g7:
- shard-rkl: [SKIP][533] ([i915#15403]) -> [SKIP][534] ([i915#14544] / [i915#15403])
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-5/igt@kms_pm_rpm@package-g7.html
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-6/igt@kms_pm_rpm@package-g7.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
- shard-rkl: [SKIP][535] ([i915#11520]) -> [SKIP][536] ([i915#11520] / [i915#14544])
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-1/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_su@page_flip-p010:
- shard-rkl: [SKIP][537] ([i915#9683]) -> [SKIP][538] ([i915#14544] / [i915#9683])
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-5/igt@kms_psr2_su@page_flip-p010.html
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-6/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@pr-cursor-mmap-cpu:
- shard-rkl: [SKIP][539] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][540] ([i915#1072] / [i915#9732]) +4 other tests skip
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@kms_psr@pr-cursor-mmap-cpu.html
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-8/igt@kms_psr@pr-cursor-mmap-cpu.html
* igt@kms_psr@psr-sprite-plane-onoff:
- shard-dg1: [SKIP][541] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][542] ([i915#1072] / [i915#9732])
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-dg1-13/igt@kms_psr@psr-sprite-plane-onoff.html
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-dg1-13/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_psr@psr2-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/CI_DRM_18470/shard-rkl-8/igt@kms_psr@psr2-cursor-plane-move.html
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-6/igt@kms_psr@psr2-cursor-plane-move.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-rkl: [SKIP][545] ([i915#5289]) -> [SKIP][546] ([i915#14544] / [i915#5289])
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_vrr@lobf:
- shard-rkl: [SKIP][547] ([i915#11920]) -> [SKIP][548] ([i915#11920] / [i915#14544])
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-2/igt@kms_vrr@lobf.html
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-6/igt@kms_vrr@lobf.html
* igt@perf@mi-rpc:
- shard-rkl: [SKIP][549] ([i915#14544] / [i915#2434]) -> [SKIP][550] ([i915#2434])
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-6/igt@perf@mi-rpc.html
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-3/igt@perf@mi-rpc.html
* igt@prime_vgem@basic-read:
- shard-rkl: [SKIP][551] ([i915#3291] / [i915#3708]) -> [SKIP][552] ([i915#14544] / [i915#3291] / [i915#3708])
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-3/igt@prime_vgem@basic-read.html
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-6/igt@prime_vgem@basic-read.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-rkl: [SKIP][553] ([i915#9917]) -> [SKIP][554] ([i915#14544] / [i915#9917])
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18470/shard-rkl-8/igt@sriov_basic@enable-vfs-bind-unbind-each.html
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/shard-rkl-6/igt@sriov_basic@enable-vfs-bind-unbind-each.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
[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#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
[i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177
[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#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#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#13196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13196
[i915#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#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781
[i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790
[i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586
[i915#14600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600
[i915#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702
[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#15172]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15172
[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#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#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
[i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[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#15751]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15751
[i915#15752]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15752
[i915#15804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15804
[i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
[i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
[i915#15871]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15871
[i915#15931]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931
[i915#15948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948
[i915#15949]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15949
[i915#15989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989
[i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990
[i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991
[i915#16011]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16011
[i915#16012]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16012
[i915#16056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16056
[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#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
[i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681
[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#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[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#3778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3778
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#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#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[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#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#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#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#7016]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7016
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[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#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[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#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[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_8903 -> IGTPW_15155
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_18470: 767b83aa80c6d7eaa1204a866b287b56a1a33122 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15155: 6c2d3b992cff4ab9b8917f254ae543b72344fba5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8903: 6f88532e2fe22529195cc2f8cabff93d994688f8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15155/index.html
[-- Attachment #2: Type: text/html, Size: 185582 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 3/3] tests/intel/xe_pat: Add dynamic PAT index selection for pat-index-auto
2026-05-11 23:36 ` [PATCH 3/3] tests/intel/xe_pat: Add dynamic PAT index selection for pat-index-auto Zongyao Bai
@ 2026-05-12 22:44 ` Wang, X
0 siblings, 0 replies; 9+ messages in thread
From: Wang, X @ 2026-05-12 22:44 UTC (permalink / raw)
To: Zongyao Bai, igt-dev; +Cc: jia.yao
On 5/11/2026 16:36, Zongyao Bai wrote:
> Introduce the `pat-index-auto` dynamic subtest to iteratively test
> PAT indices based on the hardware configuration, improving test
> coverage beyond hardcoded arrays.
>
> Build the test mode set by:
> selecting a small common set first (WT, coherent, non-coherent)
> adding randomized remaining valid entries
>
> Add pat-index-auto to xe.fast-feedback.testlist.
>
> Signed-off-by: Zongyao Bai <zongyao.bai@intel.com>
> ---
> tests/intel-ci/xe.fast-feedback.testlist | 1 +
> tests/intel/xe_pat.c | 158 +++++++++++++++++++++++
> 2 files changed, 159 insertions(+)
>
> diff --git a/tests/intel-ci/xe.fast-feedback.testlist b/tests/intel-ci/xe.fast-feedback.testlist
> index acff025fa..6851c1f49 100644
> --- a/tests/intel-ci/xe.fast-feedback.testlist
> +++ b/tests/intel-ci/xe.fast-feedback.testlist
> @@ -211,6 +211,7 @@ igt@xe_pat@pat-index-xelp
> igt@xe_pat@pat-index-xehpc
> igt@xe_pat@pat-index-xelpg
> igt@xe_pat@pat-index-xe2
> +igt@xe_pat@pat-index-auto
> igt@xe_waitfence@abstime
> igt@xe_waitfence@engine
> igt@xe_waitfence@reltime
> diff --git a/tests/intel/xe_pat.c b/tests/intel/xe_pat.c
> index 79f9a87aa..957f843ec 100644
> --- a/tests/intel/xe_pat.c
> +++ b/tests/intel/xe_pat.c
> @@ -35,6 +35,7 @@
>
> #define XE_COH_NONE 1
> #define XE_COH_AT_LEAST_1WAY 2
> +#define PAT_NAME_MAX_LEN 64
>
> /*
> * PAT index 18: XA (eXclusive Access) + UC (Uncached).
> @@ -113,6 +114,7 @@ static void userptr_coh_none(int fd)
>
> #define L3_CACHE_POLICY_WB 0
> #define L3_CACHE_POLICY_XD 1
> +#define L3_CACHE_POLICY_XA 2
> #define L3_CACHE_POLICY_UC 3
>
> #define L4_CACHE_POLICY_WB 0
> @@ -1345,6 +1347,147 @@ const struct pat_index_entry bmg_g21_pat_index_modes[] = {
> { NULL, 27, false, "c2-2way", XE_COH_AT_LEAST_1WAY },
> };
>
> +static void add_pat_mode(struct pat_index_entry *modes_arr, int idx,
> + uint32_t pat, bool has_comp_en, int pat_idx, bool cpu_wc)
> +{
> + modes_arr[idx].get_pat_index = NULL;
> + modes_arr[idx].pat_index = pat_idx;
> + modes_arr[idx].compressed = has_comp_en && !!(pat & XE2_COMP_EN);
> + modes_arr[idx].name = NULL;
> + modes_arr[idx].coh_mode = REG_FIELD_GET(XE2_COH_MODE, pat) >= COH_MODE_1WAY ?
> + XE_COH_AT_LEAST_1WAY : XE_COH_NONE;
> + modes_arr[idx].force_cpu_wc = cpu_wc;
> +}
> +
> +/*
> + * Build pat_index_modes[] test table dynamically from hardware PAT table:
> + * 1. Read PAT entries from hardware
> + * 2. Pick common modes first (WT, Coherent, Non-coherent)
> + * 3. Pick random modes (shuffled remaining entries)
> + * 4. Return the modes array and count through output parameters
> + */
> +static int init_pat_index_modes(int fd, struct pat_index_entry **modes)
> +{
> + const int TEST_MODE_CNT = 12;
From the CI results, it seems the test is quit fast , why the
TEST_MODE_CNT limited to 12 ?
New IGT tests (4)
*
igt@xe_pat@pat-index-auto:
o Statuses : 9 pass(s) 3 skip(s)
o Exec time: [0.0, 12.56] s
*
igt@xe_pat@pat-index-auto@blt:
o Statuses : 9 pass(s)
o Exec time: [1.49, 4.86] s
*
igt@xe_pat@pat-index-auto@dw:
o Statuses : 9 pass(s)
o Exec time: [0.71, 1.98] s
*
igt@xe_pat@pat-index-auto@render:
o Statuses : 9 pass(s)
o Exec time: [1.91, 5.79] s
o
> + const int TEST_COMMON_MODE_MAX = 4;
> +
> + /* Static storage for results - persists after function returns */
> + static struct pat_index_entry pat_index_modes[XE_PAT_MAX_ENTRIES * 2];
> + static struct intel_pat_cache pat_sw_config;
> + static char name_storage[XE_PAT_MAX_ENTRIES * 2][PAT_NAME_MAX_LEN];
> +
> + int n_entries;
> + bool has_comp_en;
> +
> + int test_cnt = igt_run_in_simulation() ? TEST_MODE_CNT / 2 : TEST_MODE_CNT;
> + struct pat_index_entry common_modes[TEST_COMMON_MODE_MAX];
> + struct pat_index_entry random_modes[XE_PAT_MAX_ENTRIES * 2];
> + struct pat_index_entry tmp;
> + int n_common = 0;
> + int n_random = 0;
> + int n_picked = 0;
> + int i, j;
> +
> + bool ensure_picked_wt = true;
> + bool ensure_picked_coh = true;
> + bool ensure_picked_noncoh = true;
> +
> + /* Fetch PAT config from hardware */
> + n_entries = xe_fetch_pat_sw_config(fd, &pat_sw_config);
> + has_comp_en = HAS_FLATCCS(intel_get_drm_devid(fd));
> +
> + igt_assert(n_entries > 0);
> +
> + /* Step 1: Split entries into common_modes and random_modes */
> + for (i = 0; i < n_entries; i++) {
> + uint32_t pat = pat_sw_config.entries[i].pat;
> + uint8_t pat_clos = REG_FIELD_GET(XE2_L3_CLOS, pat);
> + uint8_t l3_policy = REG_FIELD_GET(XE2_L3_POLICY, pat);
> + uint8_t l4_policy = REG_FIELD_GET(XE2_L4_POLICY, pat);
> + uint8_t coh_mode = REG_FIELD_GET(XE2_COH_MODE, pat);
> +
> + if (pat_sw_config.entries[i].rsvd)
> + continue;
> +
> + /* Common pat index type 1: WT mode (l3=xd, l4=wt, coh=0) */
> + if (ensure_picked_wt &&
> + pat_clos == 0 &&
> + l3_policy == L3_CACHE_POLICY_XD &&
> + l4_policy == L4_CACHE_POLICY_WT &&
> + coh_mode == 0) {
> + add_pat_mode(common_modes, n_common, pat, has_comp_en, i, false);
> + n_common++;
> + ensure_picked_wt = false;
> + continue;
> + }
> + /* Common pat index type 2: Coherent mode (l3=wb, l4=uc, coh>=1way) */
> + if (ensure_picked_coh &&
> + pat_clos == 0 &&
> + l3_policy == L3_CACHE_POLICY_WB &&
> + l4_policy == L4_CACHE_POLICY_UC &&
> + coh_mode >= COH_MODE_1WAY) {
> + add_pat_mode(common_modes, n_common, pat, has_comp_en, i, false);
> + n_common++;
> + add_pat_mode(common_modes, n_common, pat, has_comp_en, i, true);
> + n_common++;
> + ensure_picked_coh = false;
> + continue;
> + }
> + /* Common pat index type 3: Non-coherent mode (l3=uc, l4=uc, coh=0) */
> + if (ensure_picked_noncoh &&
> + pat_clos == 0 &&
> + l3_policy == L3_CACHE_POLICY_UC &&
> + l4_policy == L4_CACHE_POLICY_UC &&
> + coh_mode == 0) {
> + add_pat_mode(common_modes, n_common, pat, has_comp_en, i, false);
> + n_common++;
> + ensure_picked_noncoh = false;
> + continue;
> + }
> +
> + /* Add to random_modes */
> + add_pat_mode(random_modes, n_random, pat, has_comp_en, i, false);
> + n_random++;
> + if (coh_mode >= COH_MODE_1WAY) {
> + add_pat_mode(random_modes, n_random, pat, has_comp_en, i, true);
> + n_random++;
> + }
> + }
> + igt_assert(n_common + n_random > 0);
> +
> + /* Step 2: Fisher-Yates shuffle on random_modes */
> + for (i = n_random - 1; i > 0; i--) {
> + j = random() % (i + 1);
> + tmp = random_modes[i];
> + random_modes[i] = random_modes[j];
> + random_modes[j] = tmp;
> + }
> +
> + /* Step 3: Merge common_modes and random_modes into pat_index_modes (up to test_cnt) */
> + for (i = 0; i < n_common && n_picked < test_cnt; i++)
> + pat_index_modes[n_picked++] = common_modes[i];
> + for (i = 0; i < n_random && n_picked < test_cnt; i++)
> + pat_index_modes[n_picked++] = random_modes[i];
> +
> + /* Step 4: Assign simple numeric names and print debug info */
> + for (i = 0; i < n_picked; i++) {
> + snprintf(name_storage[i], PAT_NAME_MAX_LEN, "PAT_INDEX_%u%s",
> + pat_index_modes[i].pat_index,
> + pat_index_modes[i].force_cpu_wc ? "-force_cpu_wc" : "");
> +
> + pat_index_modes[i].name = name_storage[i];
> +
> + igt_debug(" [%d] idx=%2u comp=%d coh=%u cpu_wc=%d name=%s%s\n",
> + i, pat_index_modes[i].pat_index, pat_index_modes[i].compressed,
> + pat_index_modes[i].coh_mode, pat_index_modes[i].force_cpu_wc,
> + pat_index_modes[i].name,
> + (i < n_common) ? " (common)" : " (random)");
> + }
> +
> + *modes = pat_index_modes;
> + return n_picked;
> +}
> +
> const struct pat_index_entry xe3p_lpg_coherency_pat_index_modes[] = {
> { NULL, 18, false, "xa-l3-uc", XE_COH_NONE },
> { NULL, 19, false, "xa-l3-1way", XE_COH_AT_LEAST_1WAY },
> @@ -1414,6 +1557,12 @@ static uint32_t create_object(int fd, int r, int size, uint16_t coh_mode,
> * Description: Check some of the xe2 pat_index modes.
> */
>
> +/**
> + * SUBTEST: pat-index-auto
> + * Test category: functionality test
> + * Description: Dynamically generate and test PAT index modes from platform PAT configuration.
> + */
> +
> /**
> * SUBTEST: xa-app-transient-media-off
> * Test category: functionality test
> @@ -2275,6 +2424,15 @@ int igt_main_args("V", NULL, help_str, opt_handler, NULL)
> ARRAY_SIZE(xe2_pat_index_modes));
> }
>
> + igt_subtest_with_dynamic("pat-index-auto") {
> + struct pat_index_entry *modes;
> + int n_modes;
> +
> + igt_require(intel_graphics_ver(dev_id) >= IP_VER(20, 0));
> + n_modes = init_pat_index_modes(fd, &modes);
> + subtest_pat_index_modes_with_regions(fd, modes, n_modes);
> + }
> +
> igt_subtest("display-vs-wb-transient")
> display_vs_wb_transient(fd);
>
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2026-05-12 22:45 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-11 23:36 [PATCH 0/3] tests/intel/xe_pat: dynamic PAT index selection for pat-index-auto Zongyao Bai
2026-05-11 23:36 ` [PATCH 1/3] tests/intel/xe_pat: fix typo in r2 wc debug print Zongyao Bai
2026-05-11 23:36 ` [PATCH 2/3] tests/intel/xe_pat: drop redundant manual srand initialization Zongyao Bai
2026-05-11 23:36 ` [PATCH 3/3] tests/intel/xe_pat: Add dynamic PAT index selection for pat-index-auto Zongyao Bai
2026-05-12 22:44 ` Wang, X
2026-05-12 5:04 ` ✓ i915.CI.BAT: success for tests/intel/xe_pat: " Patchwork
2026-05-12 6:41 ` ✓ Xe.CI.BAT: " Patchwork
2026-05-12 13:47 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-05-12 19:06 ` ✓ i915.CI.Full: success " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox