* [PATCH i-g-t] tests/xe_pat: Add subtests for validating cached pagetables
@ 2026-03-17 19:37 Zbigniew Kempczyński
2026-03-18 2:28 ` ✓ Xe.CI.BAT: success for " Patchwork
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Zbigniew Kempczyński @ 2026-03-17 19:37 UTC (permalink / raw)
To: igt-dev; +Cc: Zbigniew Kempczyński, Matthew Auld
For platforms where pagetables might be cached (WB and 2-way coherency)
verify there're no pagefaults when walker goes over partially valid
cachelines.
Introduced subtests utilize pagetables on different levels with different
offset selection strategies - sequential and randomized. Sequential
binds two PTEs per same cacheline whereas randomized distributes binds
"equally" (with the respect of level set size). Additionally PAT+PTE
subtest rebinds on same PTE replacing normal bind to NULL and vice-versa
validating pagetable walk uses updated entries and objects underneath
contain expected data.
Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Matthew Auld <matthew.auld@intel.com>
---
tests/intel/xe_pat.c | 415 +++++++++++++++++++++++++++++++++++++++++++
1 file changed, 415 insertions(+)
diff --git a/tests/intel/xe_pat.c b/tests/intel/xe_pat.c
index b92512164c..1a11bda6c3 100644
--- a/tests/intel/xe_pat.c
+++ b/tests/intel/xe_pat.c
@@ -18,6 +18,7 @@
#include "igt_device.h"
#include "igt_fs.h"
#include "igt_kmod.h"
+#include "igt_map.h"
#include "igt_syncobj.h"
#include "igt_sysfs.h"
#include "igt_vgem.h"
@@ -1636,6 +1637,408 @@ static void xa_app_transient_test(int configfs_device_fd, bool media_on)
close(fw_handle);
}
+/**
+ * SUBTEST: pt-caching
+ * Description: verify pt fetch doesn't trigger pagefaults on TLB eviction
+ * (use many objects)
+ *
+ * SUBTEST: pt-caching-single-object
+ * Description: verify pt fetch doesn't trigger pagefaults on TLB eviction
+ * (use single object bound with different offsets)
+ *
+ * SUBTEST: pt-caching-random-offsets
+ * Description: verify pt fetch doesn't trigger pagefaults on TLB eviction
+ * (use many objects with random offsets)
+ *
+ * SUBTEST: pt-caching-update-pat-and-pte
+ * Description: verify read after write returns expected values when
+ * NULL and normal object PTEs exists in same cacheline
+ *
+ */
+
+/*
+ * Helpers for spreading over pagetables
+ *
+ * E D C B A
+ * +- 9bits -+- 9bits -+- 9bits -+- 9bits -+- 9bits -+
+ * |876543210|876543210|876543210|876543210|876543210|
+ *
+ * index is spread over n-groups
+ *
+ * (example) index = 876543210 (bits, not value)
+ *
+ * for 3-group bit shift will land
+ * C B A
+ * |000000852|000000741|000000630|
+ *
+ * for 4-group bit shift will land
+ * D C B A
+ * |000000073|000000062|000000051|000000840|
+ *
+ * for 5-group bit shift will land
+ * E D C B A
+ * |000000004|000000083|000000072|000000061|000000050|
+ */
+
+enum pt_groups {
+ GROUPS_3s = 3,
+ GROUPS_4s,
+ GROUPS_5s,
+};
+
+enum pt_test_opts {
+ PT_SINGLE_OBJECT = 1,
+ PT_RANDOM_OFFSETS = 2,
+ PT_UPDATE_PAT_AND_PTE = 3,
+};
+
+static uint64_t get_every_nth_bit(uint64_t v, int nth)
+{
+ uint64_t ret = 0;
+ int i = 0;
+
+ while (v) {
+ ret |= (v & 1) << i;
+ v >>= nth;
+ i++;
+ }
+
+ return ret;
+}
+
+static uint64_t pt_spread(uint64_t nr, enum pt_groups groups)
+{
+ uint64_t ret_pt = 0;
+
+ switch (groups) {
+ case GROUPS_5s:
+ ret_pt |= get_every_nth_bit(nr >> 4, groups) << 36;
+ case GROUPS_4s:
+ ret_pt |= get_every_nth_bit(nr >> 3, groups) << 27;
+ case GROUPS_3s:
+ ret_pt |= get_every_nth_bit(nr >> 2, groups) << 18 |
+ get_every_nth_bit(nr >> 1, groups) << 9 |
+ get_every_nth_bit(nr, groups);
+ break;
+ }
+
+ return ret_pt;
+}
+
+struct pt_object {
+ uint32_t bo;
+ uint32_t size;
+ uint64_t address;
+ uint64_t offset;
+ uint32_t dword;
+ uint32_t flags;
+};
+
+/* Batch address, selected low to avoid being placed in 48-57 range */
+#define BATCH_ADDRESS 0x10000
+
+/* Start address for all allocations */
+#define OFFSET_START 0x200000
+
+static struct pt_object *
+pt_create_objects(int xe, int num_objs, enum pt_test_opts opts, enum pt_groups groups,
+ uint64_t addr_shift)
+{
+ struct pt_object *objs;
+ uint64_t obj_size = SZ_4K;
+ uint64_t va_mask = (1ULL << xe_va_bits(xe)) - 1;
+ struct igt_map *hash = NULL;
+ int i, max_randoms;
+ uint32_t region = system_memory(xe), vram_region = vram_memory(xe, 0);
+ uint32_t flags = 0;
+
+ objs = calloc(num_objs, sizeof(*objs));
+ igt_assert(objs);
+
+ if (xe_has_vram(xe) && xe_min_page_size(xe, vram_region) == SZ_4K) {
+ region = vram_region;
+ flags = DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM;
+ }
+
+ if (opts == PT_RANDOM_OFFSETS)
+ hash = igt_map_create(igt_map_hash_64, igt_map_equal_64);
+
+ for (i = 0; i < num_objs; i++) {
+ if (opts == PT_RANDOM_OFFSETS) {
+ uint64_t addr, *paddr;
+
+ objs[i].bo = xe_bo_create(xe, 0, obj_size, region, flags);
+ objs[i].size = obj_size;
+
+ max_randoms = 16; /* arbitrary, very unlikely to exceed */
+ while (--max_randoms) {
+ addr = (uint64_t)rand() << 32 | rand();
+ addr &= ~((1 << 21) - 1) & va_mask;
+ if (addr > addr + OFFSET_START)
+ continue; /* avoid wrap around */
+ addr += OFFSET_START;
+ paddr = igt_map_search(hash, &addr);
+ if (!paddr)
+ break;
+ else
+ igt_debug("Address 0x%lx already found, randomizing again\n",
+ addr);
+ }
+ igt_assert_neq(max_randoms, 0);
+ igt_map_insert(hash, &addr, from_user_pointer(i));
+ objs[i].address = addr;
+ } else if (opts == PT_SINGLE_OBJECT) {
+ if (!i) {
+ uint64_t total_size = num_objs * obj_size;
+
+ objs[i].bo = xe_bo_create(xe, 0, total_size,
+ region, flags);
+ objs[i].size = total_size;
+ } else {
+ objs[i].bo = objs[0].bo;
+ }
+ objs[i].offset = i * obj_size;
+ objs[i].address = (pt_spread(i, groups) << 21) +
+ OFFSET_START + addr_shift;
+ } else {
+ objs[i].bo = xe_bo_create_caching(xe, 0, obj_size, region, flags,
+ DRM_XE_GEM_CPU_CACHING_WC);
+ objs[i].size = obj_size;
+ objs[i].address = (pt_spread(i, groups) << 21) +
+ OFFSET_START + addr_shift;
+ }
+ objs[i].dword = i + 1 + addr_shift;
+
+ igt_debug("object[%d]: [bo: %u, size: 0x%x, offset: 0x%lx, address: 0x%lx]\n",
+ i, objs[i].bo, objs[i].size, objs[i].offset, objs[i].address);
+ }
+
+ igt_map_destroy(hash, NULL);
+
+ return objs;
+}
+
+static void pt_destroy_objects(int xe, struct pt_object *objs, int num_objs)
+{
+ int i;
+
+ for (i = 0; i < num_objs; i++) {
+ if (objs[i].size)
+ gem_close(xe, objs[i].bo);
+ else
+ break;
+ }
+ free(objs);
+}
+
+static void pt_bind_objects(int xe, uint32_t vm, struct pt_object *objs,
+ int num_objs, uint32_t flags, uint8_t pat_index)
+{
+ struct drm_xe_sync sync = {
+ .type = DRM_XE_SYNC_TYPE_SYNCOBJ,
+ .flags = DRM_XE_SYNC_FLAG_SIGNAL,
+ };
+ uint32_t obj_size = SZ_4K;
+ int i;
+
+ for (i = 0; i < num_objs; i++) {
+ igt_debug("i: %x, address: 0x%lx, offset: %lx\n",
+ i, objs[i].address, objs[i].offset);
+
+ sync.handle = syncobj_create(xe, 0);
+
+ igt_assert_eq(__xe_vm_bind(xe, vm, 0,
+ flags == DRM_XE_VM_BIND_FLAG_NULL ? 0 : objs[i].bo,
+ objs[i].offset,
+ objs[i].address, obj_size,
+ DRM_XE_VM_BIND_OP_MAP,
+ flags,
+ &sync, 1, 0,
+ pat_index, 0), 0);
+
+ igt_assert(syncobj_wait(xe, &sync.handle, 1, INT64_MAX, 0, NULL));
+ syncobj_destroy(xe, sync.handle);
+ objs[i].flags = flags;
+ }
+}
+
+static void pt_fill_objects(int xe, uint32_t vm, struct pt_object *objs,
+ int num_objs)
+{
+ uint64_t bb_size = num_objs * 4 * sizeof(uint32_t) + sizeof(uint32_t);
+ uint64_t batch_addr = 0;
+ uint32_t bb, exec_queue;
+ uint32_t *batch;
+ int i, n = 0;
+
+ batch_addr = ALIGN(BATCH_ADDRESS, xe_get_default_alignment(xe));
+ igt_debug("Batch offset: 0x%lx\n", batch_addr);
+
+ bb_size = xe_bb_size(xe, bb_size);
+ bb = xe_bo_create(xe, 0, bb_size, vram_if_possible(xe, 0),
+ DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
+ xe_vm_bind_sync(xe, vm, bb, 0, batch_addr, bb_size);
+ batch = xe_bo_map(xe, bb, bb_size);
+ for (i = 0; i < num_objs; i++) {
+ batch[n++] = MI_STORE_DWORD_IMM_GEN4;
+ batch[n++] = objs[i].address;
+ batch[n++] = objs[i].address >> 32;
+ batch[n++] = objs[i].dword;
+ }
+ batch[n++] = MI_BATCH_BUFFER_END;
+ munmap(batch, bb_size);
+
+ exec_queue = xe_exec_queue_create_class(xe, vm, DRM_XE_ENGINE_CLASS_COPY);
+ xe_exec_wait(xe, exec_queue, batch_addr);
+
+ xe_exec_queue_destroy(xe, exec_queue);
+ xe_vm_unbind_sync(xe, vm, 0, batch_addr, bb_size);
+ gem_close(xe, bb);
+}
+
+static void pt_check_objects(int xe, struct pt_object *objs, int num_objs,
+ enum pt_test_opts opts)
+{
+ uint32_t *map, v;
+ int i;
+
+ igt_debug("Checking objects\n");
+ if (opts == PT_SINGLE_OBJECT) {
+ map = xe_bo_map(xe, objs[0].bo, objs[0].size);
+ for (i = 0; i < num_objs; i++) {
+ v = map[0 + (i * SZ_4K / sizeof(*map))];
+ igt_debug("[%d]: bo: %u, value %08x\n", i, objs[i].bo, v);
+ igt_assert_eq(v, objs[i].dword);
+ }
+ munmap(map, objs[0].size);
+ } else {
+ for (i = 0; i < num_objs; i++) {
+ map = xe_bo_map(xe, objs[i].bo, objs[i].size);
+ v = map[0];
+ igt_debug("[%d]: bo: %u, value %08x\n", i, objs[i].bo, v);
+
+ /*
+ * CPU mapping points to object data, so after rebind
+ * from writeable to NULL GPU binding writing to it
+ * will still keep previous data in the object from
+ * CPU point of view. Clear it to ensure we don't read
+ * stale data.
+ */
+ if (opts == PT_UPDATE_PAT_AND_PTE)
+ memset(map, 0, objs[i].size);
+
+ munmap(map, objs[i].size);
+ if (objs[i].flags == DRM_XE_VM_BIND_FLAG_NULL)
+ igt_assert_eq(v, 0);
+ else
+ igt_assert_eq(v, objs[i].dword);
+ }
+ }
+}
+
+#define FILL_TLB_SIZE SZ_1M
+static void pt_caching_test(int xe, enum pt_test_opts opts)
+{
+ struct pt_object *objs1, *objs2;
+ uint32_t vm;
+ uint8_t pat_index = DEFAULT_PAT_INDEX;
+ int num_objs = FILL_TLB_SIZE / 64, every, bits, bgrps, i;
+
+ igt_require_f(xe_min_page_size(xe, system_memory(xe)) == SZ_4K,
+ "We need at least one region with 4K alignment\n");
+
+ /*
+ * For discrete where alignment is larger than 4K fallback to system
+ * memory for objects location and decrease number of iterations.
+ */
+ if (xe_get_default_alignment(xe) != SZ_4K) {
+ num_objs /= 4;
+ } else if (xe_has_vram(xe)) {
+ /*
+ * For random offsets each 4K object may consume up to 3 or 4
+ * 4K pages for pde/pte - so divisor == 12 should be enough
+ * to keep everything in vram with some minor free space margin.
+ * For rest each 4K object has 4K pte + pde which consumes about
+ * ~7%, so divisor == 4 should cause to occupy ~82% of vram.
+ */
+ int div = opts == PT_RANDOM_OFFSETS ? 12 : 4;
+
+ num_objs = min_t(int, num_objs,
+ (xe_visible_vram_size(xe, 0) / SZ_4K / div));
+ }
+
+ vm = xe_vm_create(xe, 0, 0);
+ igt_info("va_bits: %d, num_objs: %u, spread over pt levels:\n",
+ xe_va_bits(xe), num_objs);
+
+ if (xe_va_bits(xe) > 48)
+ every = 4;
+ else
+ every = 3;
+
+ if (opts != PT_RANDOM_OFFSETS) {
+ bits = igt_fls(num_objs - 1);
+ bgrps = DIV_ROUND_UP(bits, every);
+ for (i = 0; i < every; i++)
+ igt_info("[%d]: %d\n", i, num_objs >> bgrps * i);
+ } else {
+ uint32_t seed = time(NULL);
+
+ igt_info("-> random, seed: %u\n", seed);
+ srand(seed);
+ }
+
+ objs1 = pt_create_objects(xe, num_objs, opts, every, 0);
+ objs2 = pt_create_objects(xe, num_objs, opts, every, SZ_8K);
+
+ /*
+ * Testing scenario:
+ * - bind 4K objects or single one (using different offsets)
+ * spreading them over different pt/pd levels
+ * - do memory writes to all of these objects causing TLB eviction
+ * - bind another set of 4K objects which will reside in same cache
+ * line, but after one entry gap
+ * - ensure writes succeed and no pagefault occur
+ */
+ if (opts != PT_UPDATE_PAT_AND_PTE) {
+ pt_bind_objects(xe, vm, objs1, num_objs, 0, pat_index);
+ pt_fill_objects(xe, vm, objs1, num_objs);
+ pt_check_objects(xe, objs1, num_objs, opts);
+
+ pt_bind_objects(xe, vm, objs2, num_objs, 0, pat_index);
+ pt_fill_objects(xe, vm, objs2, num_objs);
+ pt_check_objects(xe, objs2, num_objs, opts);
+ /*
+ * For PAT/PTE change we use different pat indices and
+ * we keep <NULL PTE, invalid, valid obj PTE> in same cache line.
+ * After write/read scenario we exchange the arrangement to
+ * <valid obj PTE, invalid, NULL PTE> to ensure cachelines were
+ * properly invalidated.
+ */
+ } else {
+ pat_index = get_pat_idx_uc(xe, NULL);
+ pt_bind_objects(xe, vm, objs1, num_objs, DRM_XE_VM_BIND_FLAG_NULL, pat_index);
+ pt_bind_objects(xe, vm, objs2, num_objs, 0, pat_index);
+ pt_fill_objects(xe, vm, objs1, num_objs);
+ pt_fill_objects(xe, vm, objs2, num_objs);
+ pt_check_objects(xe, objs1, num_objs, opts);
+ pt_check_objects(xe, objs2, num_objs, opts);
+
+ pat_index = get_pat_idx_wb(xe, NULL);
+ pt_bind_objects(xe, vm, objs1, num_objs, 0, pat_index);
+ pt_bind_objects(xe, vm, objs2, num_objs, DRM_XE_VM_BIND_FLAG_NULL, pat_index);
+ pt_fill_objects(xe, vm, objs1, num_objs);
+ pt_fill_objects(xe, vm, objs2, num_objs);
+ pt_check_objects(xe, objs1, num_objs, opts);
+ pt_check_objects(xe, objs2, num_objs, opts);
+ }
+
+ /* Implicit vm cleanup */
+ xe_vm_destroy(xe, vm);
+ pt_destroy_objects(xe, objs1, num_objs);
+ pt_destroy_objects(xe, objs2, num_objs);
+}
+
static int opt_handler(int opt, int opt_index, void *data)
{
switch (opt) {
@@ -1757,6 +2160,18 @@ int igt_main_args("V", NULL, help_str, opt_handler, NULL)
}
}
+ igt_subtest("pt-caching")
+ pt_caching_test(fd, 0);
+
+ igt_subtest("pt-caching-single-object")
+ pt_caching_test(fd, PT_SINGLE_OBJECT);
+
+ igt_subtest("pt-caching-random-offsets")
+ pt_caching_test(fd, PT_RANDOM_OFFSETS);
+
+ igt_subtest("pt-caching-update-pat-and-pte")
+ pt_caching_test(fd, PT_UPDATE_PAT_AND_PTE);
+
igt_fixture()
drm_close_driver(fd);
}
--
2.43.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* ✓ Xe.CI.BAT: success for tests/xe_pat: Add subtests for validating cached pagetables
2026-03-17 19:37 [PATCH i-g-t] tests/xe_pat: Add subtests for validating cached pagetables Zbigniew Kempczyński
@ 2026-03-18 2:28 ` Patchwork
2026-03-18 2:42 ` ✓ i915.CI.BAT: " Patchwork
` (3 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-03-18 2:28 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5715 bytes --]
== Series Details ==
Series: tests/xe_pat: Add subtests for validating cached pagetables
URL : https://patchwork.freedesktop.org/series/163402/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8807_BAT -> XEIGTPW_14798_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 14)
------------------------------
Additional (2): bat-adlp-7 bat-bmg-3
Known issues
------------
Here are the changes found in XEIGTPW_14798_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_dsc@dsc-basic:
- bat-adlp-7: NOTRUN -> [SKIP][1] ([Intel XE#2244] / [Intel XE#455])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/bat-adlp-7/igt@kms_dsc@dsc-basic.html
* igt@kms_flip@basic-flip-vs-dpms:
- bat-adlp-7: NOTRUN -> [DMESG-WARN][2] ([Intel XE#7483]) +12 other tests dmesg-warn
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/bat-adlp-7/igt@kms_flip@basic-flip-vs-dpms.html
* igt@xe_evict@evict-beng-small:
- bat-adlp-7: NOTRUN -> [SKIP][3] ([Intel XE#261] / [Intel XE#5564] / [Intel XE#688]) +9 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/bat-adlp-7/igt@xe_evict@evict-beng-small.html
* igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd:
- bat-adlp-7: NOTRUN -> [SKIP][4] ([Intel XE#5563] / [Intel XE#688]) +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/bat-adlp-7/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html
* igt@xe_exec_balancer@twice-cm-virtual-userptr:
- bat-adlp-7: NOTRUN -> [SKIP][5] ([Intel XE#7482]) +17 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/bat-adlp-7/igt@xe_exec_balancer@twice-cm-virtual-userptr.html
* igt@xe_exec_fault_mode@twice-rebind-prefetch:
- bat-adlp-7: NOTRUN -> [SKIP][6] ([Intel XE#288] / [Intel XE#5561]) +32 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/bat-adlp-7/igt@xe_exec_fault_mode@twice-rebind-prefetch.html
* igt@xe_live_ktest@xe_bo:
- bat-adlp-7: NOTRUN -> [SKIP][7] ([Intel XE#2229] / [Intel XE#455]) +2 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/bat-adlp-7/igt@xe_live_ktest@xe_bo.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- bat-adlp-7: NOTRUN -> [SKIP][8] ([Intel XE#2229] / [Intel XE#5488])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/bat-adlp-7/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_mmap@vram:
- bat-adlp-7: NOTRUN -> [SKIP][9] ([Intel XE#1008] / [Intel XE#5591])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/bat-adlp-7/igt@xe_mmap@vram.html
* igt@xe_pat@pat-index-xe2:
- bat-adlp-7: NOTRUN -> [SKIP][10] ([Intel XE#977])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/bat-adlp-7/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xehpc:
- bat-adlp-7: NOTRUN -> [SKIP][11] ([Intel XE#2838] / [Intel XE#979])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/bat-adlp-7/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelpg:
- bat-adlp-7: NOTRUN -> [SKIP][12] ([Intel XE#979])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/bat-adlp-7/igt@xe_pat@pat-index-xelpg.html
* igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p:
- bat-bmg-3: NOTRUN -> [SKIP][13] ([Intel XE#6566]) +3 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/bat-bmg-3/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html
[Intel XE#1008]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1008
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#5488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5488
[Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
[Intel XE#5563]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5563
[Intel XE#5564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5564
[Intel XE#5591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5591
[Intel XE#6566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6566
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7483]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7483
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
Build changes
-------------
* IGT: IGT_8807 -> IGTPW_14798
* Linux: xe-4735-113073d07f958385b5b80d29b62e10d2cf0181d6 -> xe-4740-c479cdf62a3f9a6101dd020abbc471f35142b3d1
IGTPW_14798: 14798
IGT_8807: 7f44d96d705f1583d689f1f8c2275b685b4ca11d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4735-113073d07f958385b5b80d29b62e10d2cf0181d6: 113073d07f958385b5b80d29b62e10d2cf0181d6
xe-4740-c479cdf62a3f9a6101dd020abbc471f35142b3d1: c479cdf62a3f9a6101dd020abbc471f35142b3d1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/index.html
[-- Attachment #2: Type: text/html, Size: 6823 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ i915.CI.BAT: success for tests/xe_pat: Add subtests for validating cached pagetables
2026-03-17 19:37 [PATCH i-g-t] tests/xe_pat: Add subtests for validating cached pagetables Zbigniew Kempczyński
2026-03-18 2:28 ` ✓ Xe.CI.BAT: success for " Patchwork
@ 2026-03-18 2:42 ` Patchwork
2026-03-19 6:39 ` ✗ i915.CI.Full: failure " Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-03-18 2:42 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2117 bytes --]
== Series Details ==
Series: tests/xe_pat: Add subtests for validating cached pagetables
URL : https://patchwork.freedesktop.org/series/163402/
State : success
== Summary ==
CI Bug Log - changes from IGT_8807 -> IGTPW_14798
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/index.html
Participating hosts (42 -> 39)
------------------------------
Missing (3): bat-dg2-13 fi-snb-2520m bat-adls-6
Known issues
------------
Here are the changes found in IGTPW_14798 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live:
- bat-dg2-8: [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8807/bat-dg2-8/igt@i915_selftest@live.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/bat-dg2-8/igt@i915_selftest@live.html
#### Possible fixes ####
* igt@i915_pm_rpm@module-reload:
- bat-adlp-6: [DMESG-WARN][3] ([i915#15673]) -> [PASS][4] +78 other tests pass
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8807/bat-adlp-6/igt@i915_pm_rpm@module-reload.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/bat-adlp-6/igt@i915_pm_rpm@module-reload.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#15673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15673
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8807 -> IGTPW_14798
* Linux: CI_DRM_18164 -> CI_DRM_18169
CI-20190529: 20190529
CI_DRM_18164: 113073d07f958385b5b80d29b62e10d2cf0181d6 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_18169: c479cdf62a3f9a6101dd020abbc471f35142b3d1 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14798: 14798
IGT_8807: 7f44d96d705f1583d689f1f8c2275b685b4ca11d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/index.html
[-- Attachment #2: Type: text/html, Size: 2742 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ i915.CI.Full: failure for tests/xe_pat: Add subtests for validating cached pagetables
2026-03-17 19:37 [PATCH i-g-t] tests/xe_pat: Add subtests for validating cached pagetables Zbigniew Kempczyński
2026-03-18 2:28 ` ✓ Xe.CI.BAT: success for " Patchwork
2026-03-18 2:42 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-03-19 6:39 ` Patchwork
2026-03-19 15:33 ` ✗ Xe.CI.FULL: " Patchwork
2026-03-25 17:37 ` [PATCH i-g-t] " Matthew Auld
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-03-19 6:39 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 151727 bytes --]
== Series Details ==
Series: tests/xe_pat: Add subtests for validating cached pagetables
URL : https://patchwork.freedesktop.org/series/163402/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_18169_full -> IGTPW_14798_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_14798_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_14798_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/index.html
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_14798_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_lmem_swapping@massive:
- shard-dg2: [PASS][1] -> [FAIL][2] +1 other test fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-dg2-8/igt@gem_lmem_swapping@massive.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-8/igt@gem_lmem_swapping@massive.html
* igt@gem_workarounds@suspend-resume-context:
- shard-glk: NOTRUN -> [INCOMPLETE][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-glk3/igt@gem_workarounds@suspend-resume-context.html
Known issues
------------
Here are the changes found in IGTPW_14798_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg1: NOTRUN -> [SKIP][4] ([i915#8411])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-12/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@gem_bad_reloc@negative-reloc-bltcopy:
- shard-mtlp: NOTRUN -> [SKIP][5] ([i915#3281]) +7 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-2/igt@gem_bad_reloc@negative-reloc-bltcopy.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-tglu: NOTRUN -> [SKIP][6] ([i915#9323])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-9/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-dg1: NOTRUN -> [SKIP][7] ([i915#9323])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-16/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][8] ([i915#12392] / [i915#13356])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-10/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html
* igt@gem_close_race@multigpu-basic-process:
- shard-rkl: NOTRUN -> [SKIP][9] ([i915#7697])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-4/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: NOTRUN -> [FAIL][10] ([i915#15454])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-8/igt@gem_create@create-ext-cpu-access-big.html
- shard-rkl: NOTRUN -> [SKIP][11] ([i915#6335])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-1/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_persistence@engines-hostile:
- shard-snb: NOTRUN -> [SKIP][12] ([i915#1099]) +2 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-snb5/igt@gem_ctx_persistence@engines-hostile.html
* igt@gem_ctx_sseu@engines:
- shard-dg2: NOTRUN -> [SKIP][13] ([i915#280])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-3/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-args:
- shard-dg1: NOTRUN -> [SKIP][14] ([i915#280])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-17/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@mmap-args:
- shard-rkl: NOTRUN -> [SKIP][15] ([i915#280])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-7/igt@gem_ctx_sseu@mmap-args.html
- shard-tglu-1: NOTRUN -> [SKIP][16] ([i915#280]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-1/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg2: NOTRUN -> [SKIP][17] ([i915#4036])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-7/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_14798/shard-mtlp-1/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@noheartbeat:
- shard-dg2: NOTRUN -> [SKIP][19] ([i915#8555]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-8/igt@gem_exec_balancer@noheartbeat.html
- shard-dg1: NOTRUN -> [SKIP][20] ([i915#8555]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-14/igt@gem_exec_balancer@noheartbeat.html
- shard-mtlp: NOTRUN -> [SKIP][21] ([i915#8555]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-7/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_balancer@parallel:
- shard-rkl: NOTRUN -> [SKIP][22] ([i915#4525]) +2 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-8/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_balancer@parallel-out-fence:
- shard-tglu: NOTRUN -> [SKIP][23] ([i915#4525])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-4/igt@gem_exec_balancer@parallel-out-fence.html
* igt@gem_exec_balancer@sliced:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#4812]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-5/igt@gem_exec_balancer@sliced.html
* igt@gem_exec_capture@capture-invisible@lmem0:
- shard-dg2: NOTRUN -> [SKIP][25] ([i915#6334]) +2 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-5/igt@gem_exec_capture@capture-invisible@lmem0.html
- shard-dg1: NOTRUN -> [SKIP][26] ([i915#6334]) +2 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-18/igt@gem_exec_capture@capture-invisible@lmem0.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-glk: NOTRUN -> [SKIP][27] ([i915#6334]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-glk9/igt@gem_exec_capture@capture-invisible@smem0.html
- shard-rkl: NOTRUN -> [SKIP][28] ([i915#6334]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-7/igt@gem_exec_capture@capture-invisible@smem0.html
- shard-tglu: NOTRUN -> [SKIP][29] ([i915#6334]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-5/igt@gem_exec_capture@capture-invisible@smem0.html
- shard-mtlp: NOTRUN -> [SKIP][30] ([i915#6334]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-6/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_fence@submit67:
- shard-mtlp: NOTRUN -> [SKIP][31] ([i915#4812])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-6/igt@gem_exec_fence@submit67.html
* igt@gem_exec_flush@basic-uc-pro-default:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#3539] / [i915#4852]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-4/igt@gem_exec_flush@basic-uc-pro-default.html
- shard-dg1: NOTRUN -> [SKIP][33] ([i915#3539] / [i915#4852]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-14/igt@gem_exec_flush@basic-uc-pro-default.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-rkl: NOTRUN -> [SKIP][34] ([i915#3281]) +18 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-5/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-softpin:
- shard-dg2: NOTRUN -> [SKIP][35] ([i915#3281]) +9 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-7/igt@gem_exec_reloc@basic-softpin.html
- shard-dg1: NOTRUN -> [SKIP][36] ([i915#3281]) +9 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-16/igt@gem_exec_reloc@basic-softpin.html
* igt@gem_exec_reloc@basic-wc-noreloc:
- shard-rkl: NOTRUN -> [SKIP][37] ([i915#14544] / [i915#3281])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-6/igt@gem_exec_reloc@basic-wc-noreloc.html
* igt@gem_exec_schedule@preempt-queue:
- shard-dg1: NOTRUN -> [SKIP][38] ([i915#4812]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-18/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: NOTRUN -> [SKIP][39] ([i915#7276])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-7/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_exec_suspend@basic-s3:
- shard-glk11: NOTRUN -> [INCOMPLETE][40] ([i915#13196] / [i915#13356]) +1 other test incomplete
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-glk11/igt@gem_exec_suspend@basic-s3.html
* igt@gem_huc_copy@huc-copy:
- shard-tglu-1: NOTRUN -> [SKIP][41] ([i915#2190])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-1/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: NOTRUN -> [SKIP][42] ([i915#4613] / [i915#7582])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-2/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-rkl: NOTRUN -> [SKIP][43] ([i915#4613]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-2/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
- shard-tglu-1: NOTRUN -> [SKIP][44] ([i915#4613]) +2 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
- shard-dg1: NOTRUN -> [SKIP][45] ([i915#12193])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-17/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4613])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-4/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][47] ([i915#4565])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-17/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html
* igt@gem_lmem_swapping@massive-random:
- shard-tglu: NOTRUN -> [SKIP][48] ([i915#4613])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-4/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@parallel-random-engines:
- shard-rkl: NOTRUN -> [SKIP][49] ([i915#14544] / [i915#4613])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_lmem_swapping@random-engines:
- shard-glk: NOTRUN -> [SKIP][50] ([i915#4613]) +5 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-glk1/igt@gem_lmem_swapping@random-engines.html
* igt@gem_madvise@dontneed-before-exec:
- shard-mtlp: NOTRUN -> [SKIP][51] ([i915#3282]) +2 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-2/igt@gem_madvise@dontneed-before-exec.html
* igt@gem_media_vme:
- shard-tglu: NOTRUN -> [SKIP][52] ([i915#284])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-6/igt@gem_media_vme.html
* igt@gem_mmap@bad-object:
- shard-dg1: NOTRUN -> [SKIP][53] ([i915#4083]) +5 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-14/igt@gem_mmap@bad-object.html
- shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4083]) +2 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-7/igt@gem_mmap@bad-object.html
* igt@gem_mmap_gtt@close-race:
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#4077]) +5 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-17/igt@gem_mmap_gtt@close-race.html
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4077]) +4 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-4/igt@gem_mmap_gtt@close-race.html
* igt@gem_mmap_gtt@cpuset-big-copy:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#4077]) +9 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-4/igt@gem_mmap_gtt@cpuset-big-copy.html
* igt@gem_mmap_wc@write-prefaulted:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#4083]) +3 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-1/igt@gem_mmap_wc@write-prefaulted.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][59] ([i915#3282]) +7 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-1/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pread@exhaustion:
- shard-glk: NOTRUN -> [WARN][60] ([i915#2658])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-glk9/igt@gem_pread@exhaustion.html
* igt@gem_pread@snoop:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#3282]) +4 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-7/igt@gem_pread@snoop.html
* igt@gem_pwrite@basic-exhaustion:
- shard-tglu-1: NOTRUN -> [WARN][62] ([i915#2658])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-1/igt@gem_pwrite@basic-exhaustion.html
- shard-glk10: NOTRUN -> [WARN][63] ([i915#14702] / [i915#2658])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-glk10/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@display-protected-crc:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#4270]) +3 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-1/igt@gem_pxp@display-protected-crc.html
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#4270]) +2 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-16/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-rkl: NOTRUN -> [SKIP][66] ([i915#13717])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-8/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_pxp@hw-rejects-pxp-context:
- shard-tglu-1: NOTRUN -> [SKIP][67] ([i915#13398])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-context.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-rkl: [PASS][68] -> [SKIP][69] ([i915#4270])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-2/igt@gem_pxp@regular-baseline-src-copy-readible.html
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-4/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_readwrite@write-bad-handle:
- shard-dg1: NOTRUN -> [SKIP][70] ([i915#3282]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-16/igt@gem_readwrite@write-bad-handle.html
* igt@gem_render_copy@x-tiled-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][71] ([i915#8428]) +3 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-8/igt@gem_render_copy@x-tiled-to-vebox-y-tiled.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#5190] / [i915#8428]) +5 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-5/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#4079])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-1/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
- shard-rkl: NOTRUN -> [SKIP][74] ([i915#8411])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-7/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
- shard-dg1: NOTRUN -> [SKIP][75] ([i915#4079])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-18/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
- shard-mtlp: NOTRUN -> [SKIP][76] ([i915#4079])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-8/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_softpin@noreloc-s3:
- shard-rkl: NOTRUN -> [INCOMPLETE][77] ([i915#13809])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-6/igt@gem_softpin@noreloc-s3.html
* igt@gem_userptr_blits@coherency-sync:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#3297]) +3 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-5/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#3297])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-8/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@relocations:
- shard-rkl: NOTRUN -> [SKIP][80] ([i915#3281] / [i915#3297])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-5/igt@gem_userptr_blits@relocations.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-rkl: NOTRUN -> [SKIP][81] ([i915#3297])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-2/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gem_workarounds@suspend-resume-context:
- shard-rkl: NOTRUN -> [INCOMPLETE][82] ([i915#13356])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-3/igt@gem_workarounds@suspend-resume-context.html
* igt@gem_workarounds@suspend-resume-fd:
- shard-rkl: [PASS][83] -> [INCOMPLETE][84] ([i915#13356])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-7/igt@gem_workarounds@suspend-resume-fd.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-4/igt@gem_workarounds@suspend-resume-fd.html
* igt@gen9_exec_parse@allowed-single:
- shard-tglu-1: NOTRUN -> [SKIP][85] ([i915#2527] / [i915#2856]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-1/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-tglu: NOTRUN -> [SKIP][86] ([i915#2527] / [i915#2856]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-5/igt@gen9_exec_parse@basic-rejected-ctx-param.html
- shard-mtlp: NOTRUN -> [SKIP][87] ([i915#2856])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-8/igt@gen9_exec_parse@basic-rejected-ctx-param.html
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#2856])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-5/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-rkl: NOTRUN -> [SKIP][89] ([i915#2527]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-5/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@batch-without-end:
- shard-dg1: NOTRUN -> [SKIP][90] ([i915#2527]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-14/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@secure-batches:
- shard-rkl: NOTRUN -> [SKIP][91] ([i915#14544] / [i915#2527]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-6/igt@gen9_exec_parse@secure-batches.html
* igt@i915_drm_fdinfo@busy-hang@ccs0:
- shard-mtlp: NOTRUN -> [SKIP][92] ([i915#14073]) +6 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-7/igt@i915_drm_fdinfo@busy-hang@ccs0.html
* igt@i915_drm_fdinfo@busy-hang@vcs0:
- shard-dg2: NOTRUN -> [SKIP][93] ([i915#14073]) +7 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-8/igt@i915_drm_fdinfo@busy-hang@vcs0.html
* igt@i915_drm_fdinfo@busy-idle-check-all@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][94] ([i915#11527]) +6 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-5/igt@i915_drm_fdinfo@busy-idle-check-all@rcs0.html
* igt@i915_drm_fdinfo@busy-idle-check-all@vcs0:
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#11527]) +7 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-8/igt@i915_drm_fdinfo@busy-idle-check-all@vcs0.html
* igt@i915_drm_fdinfo@busy-idle-check-all@vcs1:
- shard-dg1: NOTRUN -> [SKIP][96] ([i915#11527]) +5 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-13/igt@i915_drm_fdinfo@busy-idle-check-all@vcs1.html
* igt@i915_drm_fdinfo@busy-idle@bcs0:
- shard-dg1: NOTRUN -> [SKIP][97] ([i915#14073]) +5 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-16/igt@i915_drm_fdinfo@busy-idle@bcs0.html
* igt@i915_drm_fdinfo@virtual-busy-idle:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#14118])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-7/igt@i915_drm_fdinfo@virtual-busy-idle.html
- shard-dg1: NOTRUN -> [SKIP][99] ([i915#14118])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-17/igt@i915_drm_fdinfo@virtual-busy-idle.html
- shard-mtlp: NOTRUN -> [SKIP][100] ([i915#14118])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-6/igt@i915_drm_fdinfo@virtual-busy-idle.html
* igt@i915_module_load@fault-injection@__uc_init:
- shard-rkl: NOTRUN -> [SKIP][101] ([i915#15479]) +4 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-8/igt@i915_module_load@fault-injection@__uc_init.html
* igt@i915_module_load@fault-injection@intel_connector_register:
- shard-rkl: NOTRUN -> [ABORT][102] ([i915#15342]) +1 other test abort
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-8/igt@i915_module_load@fault-injection@intel_connector_register.html
- shard-tglu: NOTRUN -> [ABORT][103] ([i915#15342]) +1 other test abort
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-2/igt@i915_module_load@fault-injection@intel_connector_register.html
* igt@i915_module_load@fault-injection@uc_fw_rsa_data_create:
- shard-tglu: NOTRUN -> [SKIP][104] ([i915#15479]) +4 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-2/igt@i915_module_load@fault-injection@uc_fw_rsa_data_create.html
* igt@i915_module_load@reload-no-display:
- shard-dg2: NOTRUN -> [DMESG-WARN][105] ([i915#13029] / [i915#14545])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-4/igt@i915_module_load@reload-no-display.html
- shard-dg1: [PASS][106] -> [DMESG-WARN][107] ([i915#13029] / [i915#14545])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-dg1-18/igt@i915_module_load@reload-no-display.html
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-17/igt@i915_module_load@reload-no-display.html
* igt@i915_module_load@resize-bar:
- shard-tglu: NOTRUN -> [SKIP][108] ([i915#6412])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-8/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-rkl: NOTRUN -> [SKIP][109] ([i915#8399])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-2/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#6590]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-12/igt@i915_pm_freq_mult@media-freq@gt0.html
- shard-tglu: NOTRUN -> [SKIP][111] ([i915#6590]) +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-3/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_freq_mult@media-freq@gt1:
- shard-mtlp: NOTRUN -> [SKIP][112] ([i915#6590]) +2 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-7/igt@i915_pm_freq_mult@media-freq@gt1.html
* igt@i915_pm_rpm@system-suspend:
- shard-glk11: NOTRUN -> [INCOMPLETE][113] ([i915#13356])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-glk11/igt@i915_pm_rpm@system-suspend.html
* igt@i915_pm_rpm@system-suspend-devices:
- shard-dg2: [PASS][114] -> [ABORT][115] ([i915#15060])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-dg2-7/igt@i915_pm_rpm@system-suspend-devices.html
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-10/igt@i915_pm_rpm@system-suspend-devices.html
* igt@i915_pm_rps@thresholds-idle:
- shard-dg1: NOTRUN -> [SKIP][116] ([i915#11681])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-13/igt@i915_pm_rps@thresholds-idle.html
* igt@i915_pm_rps@thresholds-idle-park:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#11681])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-5/igt@i915_pm_rps@thresholds-idle-park.html
- shard-mtlp: NOTRUN -> [SKIP][118] ([i915#11681])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-8/igt@i915_pm_rps@thresholds-idle-park.html
* igt@i915_query@hwconfig_table:
- shard-tglu: NOTRUN -> [SKIP][119] ([i915#6245])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-2/igt@i915_query@hwconfig_table.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-tglu: NOTRUN -> [INCOMPLETE][120] ([i915#4817] / [i915#7443])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-9/igt@i915_suspend@basic-s3-without-i915.html
- shard-mtlp: NOTRUN -> [SKIP][121] ([i915#6645])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html
- shard-glk: NOTRUN -> [INCOMPLETE][122] ([i915#4817]) +1 other test incomplete
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-glk2/igt@i915_suspend@basic-s3-without-i915.html
* igt@i915_suspend@forcewake:
- shard-rkl: [PASS][123] -> [ABORT][124] ([i915#15140])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-2/igt@i915_suspend@forcewake.html
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-1/igt@i915_suspend@forcewake.html
* igt@intel_hwmon@hwmon-read:
- shard-rkl: NOTRUN -> [SKIP][125] ([i915#7707])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-4/igt@intel_hwmon@hwmon-read.html
- shard-tglu-1: NOTRUN -> [SKIP][126] ([i915#7707])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-1/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-mtlp: NOTRUN -> [SKIP][127] ([i915#4212])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-6/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
- shard-dg1: NOTRUN -> [SKIP][128] ([i915#4212])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-19/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#4212]) +2 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-4/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-rkl: [PASS][130] -> [INCOMPLETE][131] ([i915#12761])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-8/igt@kms_async_flips@async-flip-suspend-resume.html
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-6/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-1:
- shard-glk: [PASS][132] -> [INCOMPLETE][133] ([i915#12761])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-glk2/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-1.html
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-glk6/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-1.html
* igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [INCOMPLETE][134] ([i915#12761])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-6/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg1: [PASS][135] -> [DMESG-WARN][136] ([i915#4423])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-dg1-17/igt@kms_async_flips@invalid-async-flip.html
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-16/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg1: NOTRUN -> [SKIP][137] ([i915#1769] / [i915#3555]) +1 other test skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-18/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#1769] / [i915#3555])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-rkl: NOTRUN -> [SKIP][139] ([i915#1769] / [i915#3555])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-snb: NOTRUN -> [SKIP][140] ([i915#1769])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-snb4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-tglu: NOTRUN -> [SKIP][141] ([i915#1769] / [i915#3555])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [FAIL][142] ([i915#5956]) +1 other test fail
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][143] ([i915#5286]) +9 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-5/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][144] ([i915#4538] / [i915#5286]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-13/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-dg1: NOTRUN -> [SKIP][145] ([i915#5286])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-13/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: NOTRUN -> [SKIP][146] ([i915#5286]) +3 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-tglu-1: NOTRUN -> [SKIP][147] ([i915#5286]) +4 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][148] ([i915#3638]) +2 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-14/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][149] ([i915#14544] / [i915#3638])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-6/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#3828])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-3/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#3828])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-5/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#3828])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-16/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
- shard-mtlp: NOTRUN -> [SKIP][153] ([i915#3828])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-2/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
- shard-tglu: NOTRUN -> [SKIP][154] ([i915#3828]) +1 other test skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-3/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][155] +13 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-10/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#3638]) +3 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-8/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg2: NOTRUN -> [SKIP][157] ([i915#4538] / [i915#5190]) +14 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][158] ([i915#4538]) +3 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-19/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][159] ([i915#6095]) +191 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-18/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][160] ([i915#10307] / [i915#6095]) +116 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-8/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-3.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][161] ([i915#12313]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-8/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][162] ([i915#6095]) +84 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#12313]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-8/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][164] ([i915#12313])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-5/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][165] ([i915#6095]) +54 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#12805]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][167] ([i915#12805]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][168] ([i915#14544] / [i915#6095])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#14098] / [i915#14544] / [i915#6095])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#6095]) +34 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][171] ([i915#12805])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
- shard-dg1: NOTRUN -> [SKIP][172] ([i915#12805])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-16/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
- shard-tglu: NOTRUN -> [SKIP][173] ([i915#12805])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-8/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk11: NOTRUN -> [INCOMPLETE][174] ([i915#15582]) +1 other test incomplete
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-glk11/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][175] ([i915#6095]) +49 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-5/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [INCOMPLETE][176] ([i915#15582])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][177] ([i915#15582]) +1 other test incomplete
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-glk5/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][178] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][179] ([i915#14098] / [i915#6095]) +59 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-4/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][180] ([i915#6095]) +29 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-4/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg1: NOTRUN -> [SKIP][181] ([i915#3742])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-13/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-mtlp: NOTRUN -> [SKIP][182] +15 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-6/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_edid@dp-mode-timings:
- shard-dg2: NOTRUN -> [SKIP][183] ([i915#11151] / [i915#7828]) +7 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-3/igt@kms_chamelium_edid@dp-mode-timings.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#11151] / [i915#7828]) +8 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-2/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_chamelium_edid@vga-edid-read:
- shard-rkl: NOTRUN -> [SKIP][185] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-6/igt@kms_chamelium_edid@vga-edid-read.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-tglu-1: NOTRUN -> [SKIP][186] ([i915#11151] / [i915#7828]) +4 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-1/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-dg1: NOTRUN -> [SKIP][187] ([i915#11151] / [i915#7828]) +4 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-17/igt@kms_chamelium_hpd@vga-hpd-fast.html
- shard-tglu: NOTRUN -> [SKIP][188] ([i915#11151] / [i915#7828]) +8 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-3/igt@kms_chamelium_hpd@vga-hpd-fast.html
- shard-mtlp: NOTRUN -> [SKIP][189] ([i915#11151] / [i915#7828]) +3 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-6/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_content_protection@atomic-hdcp14:
- shard-tglu-1: NOTRUN -> [SKIP][190] ([i915#6944])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-1/igt@kms_content_protection@atomic-hdcp14.html
* igt@kms_content_protection@content-type-change:
- shard-rkl: NOTRUN -> [SKIP][191] ([i915#6944] / [i915#9424])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-8/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][192] ([i915#15330] / [i915#3116] / [i915#3299])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-7/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-mtlp: NOTRUN -> [SKIP][193] ([i915#15330] / [i915#3299])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-2/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#15330] / [i915#3299])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-1/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-rkl: NOTRUN -> [SKIP][195] ([i915#15330] / [i915#3116])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-2/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-dg1: NOTRUN -> [SKIP][196] ([i915#15330] / [i915#3299])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-16/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-rkl: NOTRUN -> [SKIP][197] ([i915#15330]) +1 other test skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-4/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-type-1-suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][198] ([i915#15330])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-5/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
- shard-mtlp: NOTRUN -> [SKIP][199] ([i915#15330])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-6/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
- shard-dg2: NOTRUN -> [SKIP][200] ([i915#15330])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-5/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
- shard-dg1: NOTRUN -> [SKIP][201] ([i915#15330])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-18/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#6944]) +2 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-7/igt@kms_content_protection@legacy-hdcp14.html
- shard-mtlp: NOTRUN -> [SKIP][203] ([i915#6944])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-6/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_content_protection@lic-type-0-hdcp14:
- shard-dg1: NOTRUN -> [SKIP][204] ([i915#6944])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-14/igt@kms_content_protection@lic-type-0-hdcp14.html
* igt@kms_content_protection@mei-interface:
- shard-tglu: NOTRUN -> [SKIP][205] ([i915#6944] / [i915#9424])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-10/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-tglu-1: NOTRUN -> [SKIP][206] ([i915#6944] / [i915#7116] / [i915#7118])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-1/igt@kms_content_protection@srm.html
* igt@kms_content_protection@srm@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [FAIL][207] ([i915#7173])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-10/igt@kms_content_protection@srm@pipe-a-dp-3.html
* igt@kms_content_protection@uevent:
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#6944] / [i915#7118] / [i915#9424])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-8/igt@kms_content_protection@uevent.html
* igt@kms_content_protection@uevent-hdcp14:
- shard-rkl: NOTRUN -> [SKIP][209] ([i915#6944]) +2 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-3/igt@kms_content_protection@uevent-hdcp14.html
* igt@kms_content_protection@uevent@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [FAIL][210] ([i915#1339] / [i915#7173])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-10/igt@kms_content_protection@uevent@pipe-a-dp-3.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-mtlp: NOTRUN -> [SKIP][211] ([i915#13049]) +1 other test skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-2/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-rkl: NOTRUN -> [SKIP][212] ([i915#13049]) +2 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-512x512.html
- shard-tglu-1: NOTRUN -> [SKIP][213] ([i915#13049])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-rkl: [PASS][214] -> [FAIL][215] ([i915#13566])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-128x42.html
- shard-tglu: [PASS][216] -> [FAIL][217] ([i915#13566]) +3 other tests fail
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-tglu: NOTRUN -> [SKIP][218] ([i915#13049]) +3 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#3555]) +1 other test skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-6/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [FAIL][220] ([i915#13566]) +1 other test fail
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-1/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-rkl: NOTRUN -> [SKIP][221] ([i915#3555]) +3 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-5/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#13049]) +1 other test skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-4/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#13049] / [i915#14544])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
- shard-dg1: NOTRUN -> [SKIP][224] ([i915#13049]) +1 other test skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-13/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-mtlp: NOTRUN -> [SKIP][225] ([i915#8814]) +1 other test skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-1/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][226] ([i915#13566]) +4 other tests fail
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-tglu-1: NOTRUN -> [SKIP][227] ([i915#3555])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-rkl: NOTRUN -> [SKIP][228] +26 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-4/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-rkl: NOTRUN -> [SKIP][229] ([i915#14544]) +2 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#13046] / [i915#5354]) +2 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
- shard-mtlp: NOTRUN -> [SKIP][231] ([i915#9809]) +1 other test skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: NOTRUN -> [FAIL][232] ([i915#15804]) +1 other test fail
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-rkl: NOTRUN -> [SKIP][233] ([i915#4103])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-tglu: NOTRUN -> [SKIP][234] ([i915#4103])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#9833])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-5/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
- shard-dg1: NOTRUN -> [SKIP][236] ([i915#9723])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-18/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
- shard-mtlp: NOTRUN -> [SKIP][237] ([i915#9833])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-8/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][238] ([i915#9723]) +1 other test skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-tglu: NOTRUN -> [SKIP][239] ([i915#9723]) +1 other test skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-7/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-rkl: NOTRUN -> [SKIP][240] ([i915#3555] / [i915#3804])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
- shard-dg1: NOTRUN -> [SKIP][241] ([i915#3555]) +3 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-16/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
- shard-tglu: NOTRUN -> [SKIP][242] ([i915#1769] / [i915#3555] / [i915#3804])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][243] ([i915#3804])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
- shard-tglu: NOTRUN -> [SKIP][244] ([i915#3804])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_aux_dev:
- shard-tglu-1: NOTRUN -> [SKIP][245] ([i915#1257])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-1/igt@kms_dp_aux_dev.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-rkl: NOTRUN -> [SKIP][246] ([i915#13748])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-3/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg2: NOTRUN -> [SKIP][247] ([i915#13707])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-mtlp: NOTRUN -> [SKIP][248] ([i915#13707])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-1/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][249] ([i915#8812])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-18/igt@kms_draw_crc@draw-method-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][250] ([i915#3555] / [i915#8812])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-8/igt@kms_draw_crc@draw-method-mmap-gtt.html
- shard-dg2: NOTRUN -> [SKIP][251] ([i915#8812])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-5/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-basic:
- shard-tglu: NOTRUN -> [SKIP][252] ([i915#3555] / [i915#3840])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-8/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-dg1: NOTRUN -> [SKIP][253] ([i915#3840])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-19/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-formats:
- shard-tglu-1: NOTRUN -> [SKIP][254] ([i915#3555] / [i915#3840])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-1/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-rkl: NOTRUN -> [SKIP][255] ([i915#3555] / [i915#3840]) +1 other test skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-7/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#3469])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-7/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@chamelium:
- shard-tglu-1: NOTRUN -> [SKIP][257] ([i915#2065] / [i915#4854])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-1/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-3x:
- shard-rkl: NOTRUN -> [SKIP][258] ([i915#1839]) +1 other test skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-4/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-tglu-1: NOTRUN -> [SKIP][259] ([i915#1839])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-1/igt@kms_feature_discovery@display-4x.html
* igt@kms_fence_pin_leak:
- shard-dg2: NOTRUN -> [SKIP][260] ([i915#4881])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-3/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-tglu-1: NOTRUN -> [SKIP][261] ([i915#3637] / [i915#9934]) +1 other test skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-1/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-tglu-1: NOTRUN -> [SKIP][262] ([i915#9934])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-dg2: NOTRUN -> [SKIP][263] ([i915#9934]) +7 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-7/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
- shard-dg1: NOTRUN -> [SKIP][264] ([i915#9934]) +5 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-19/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
- shard-tglu: NOTRUN -> [SKIP][265] ([i915#3637] / [i915#9934]) +8 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-mtlp: NOTRUN -> [SKIP][266] ([i915#3637] / [i915#9934]) +7 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-1/igt@kms_flip@2x-flip-vs-suspend.html
- shard-glk: NOTRUN -> [INCOMPLETE][267] ([i915#12314] / [i915#12745] / [i915#4839])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-glk8/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2:
- shard-glk: NOTRUN -> [INCOMPLETE][268] ([i915#12314] / [i915#4839])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-glk8/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-rkl: NOTRUN -> [SKIP][269] ([i915#9934]) +12 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-4/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-rkl: NOTRUN -> [SKIP][270] ([i915#14544] / [i915#9934]) +1 other test skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-6/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_flip@wf_vblank-ts-check-interruptible:
- shard-rkl: [PASS][271] -> [FAIL][272] ([i915#14600])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-1/igt@kms_flip@wf_vblank-ts-check-interruptible.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-5/igt@kms_flip@wf_vblank-ts-check-interruptible.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1:
- shard-rkl: NOTRUN -> [FAIL][273] ([i915#14600])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-5/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-tglu: NOTRUN -> [SKIP][274] ([i915#15643]) +2 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][275] ([i915#15643]) +2 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][276] ([i915#14544] / [i915#15643])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][277] ([i915#15643] / [i915#5190]) +1 other test skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][278] ([i915#3555] / [i915#8810] / [i915#8813])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][279] ([i915#8810] / [i915#8813])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-dg1: NOTRUN -> [SKIP][280] ([i915#15643]) +4 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][281] ([i915#15643]) +3 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-glk11: NOTRUN -> [SKIP][282] +6 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-glk11/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][283] ([i915#15643]) +6 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
- shard-tglu-1: NOTRUN -> [SKIP][284] ([i915#15643]) +4 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][285] ([i915#15104]) +1 other test skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][286] ([i915#8708]) +9 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][287] ([i915#8708]) +5 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][288] ([i915#10055])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
- shard-dg2: NOTRUN -> [SKIP][289] ([i915#10055])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][290] ([i915#15102]) +4 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][291] ([i915#15102]) +2 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
- shard-rkl: NOTRUN -> [SKIP][292] ([i915#15102] / [i915#3023]) +22 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][293] ([i915#14544] / [i915#15102] / [i915#3023])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render:
- shard-glk10: NOTRUN -> [SKIP][294] +85 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-glk10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-rte:
- shard-dg1: NOTRUN -> [SKIP][295] ([i915#15102] / [i915#3458]) +8 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][296] ([i915#8708]) +17 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
- shard-rkl: NOTRUN -> [SKIP][297] ([i915#14544] / [i915#1825]) +7 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff:
- shard-tglu-1: NOTRUN -> [SKIP][298] +37 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
- shard-dg1: NOTRUN -> [SKIP][299] +28 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][300] ([i915#5354]) +27 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][301] ([i915#1825]) +50 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][302] ([i915#5439])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][303] ([i915#15102]) +2 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][304] ([i915#15104])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-tglu: NOTRUN -> [SKIP][305] ([i915#15102]) +19 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-rte:
- shard-tglu-1: NOTRUN -> [SKIP][306] ([i915#15102]) +14 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][307] +44 other tests skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
- shard-mtlp: NOTRUN -> [SKIP][308] ([i915#1825]) +20 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: NOTRUN -> [SKIP][309] ([i915#15102] / [i915#3458]) +12 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_hdr@bpc-switch:
- shard-rkl: NOTRUN -> [SKIP][310] ([i915#3555] / [i915#8228]) +2 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-2/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@invalid-hdr:
- shard-tglu-1: NOTRUN -> [SKIP][311] ([i915#3555] / [i915#8228])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-1/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@static-toggle:
- shard-dg2: NOTRUN -> [SKIP][312] ([i915#3555] / [i915#8228]) +1 other test skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-3/igt@kms_hdr@static-toggle.html
- shard-dg1: NOTRUN -> [SKIP][313] ([i915#3555] / [i915#8228]) +1 other test skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-12/igt@kms_hdr@static-toggle.html
- shard-tglu: NOTRUN -> [SKIP][314] ([i915#3555] / [i915#8228]) +1 other test skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-10/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-dpms:
- shard-mtlp: NOTRUN -> [SKIP][315] ([i915#12713] / [i915#3555] / [i915#8228]) +1 other test skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-7/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_joiner@basic-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][316] ([i915#15460])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-8/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][317] ([i915#15460])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-4/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][318] ([i915#15459])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-2/igt@kms_joiner@invalid-modeset-force-big-joiner.html
- shard-tglu-1: NOTRUN -> [SKIP][319] ([i915#15459]) +1 other test skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][320] ([i915#15458]) +1 other test skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][321] ([i915#15638] / [i915#15722])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-2/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-tglu-1: NOTRUN -> [SKIP][322] ([i915#15638] / [i915#15722])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-dg1: NOTRUN -> [SKIP][323] ([i915#15638] / [i915#15722])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-17/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][324] ([i915#15638] / [i915#15722])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-4/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: NOTRUN -> [SKIP][325] ([i915#15815])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-tglu: NOTRUN -> [SKIP][326] ([i915#15815])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-9/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-glk: NOTRUN -> [INCOMPLETE][327] ([i915#12756] / [i915#13409] / [i915#13476])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-glk5/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][328] ([i915#13409] / [i915#13476])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-glk5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2: NOTRUN -> [SKIP][329] ([i915#13705])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-10/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
- shard-mtlp: NOTRUN -> [SKIP][330] ([i915#13705])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-5/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping:
- shard-dg1: NOTRUN -> [SKIP][331] ([i915#15709]) +1 other test skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-18/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping:
- shard-tglu-1: NOTRUN -> [SKIP][332] ([i915#15709]) +1 other test skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-5:
- shard-dg2: NOTRUN -> [SKIP][333] ([i915#15608]) +3 other tests skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-6/igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping:
- shard-rkl: NOTRUN -> [SKIP][334] ([i915#15709]) +8 other tests skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-2/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier:
- shard-tglu: NOTRUN -> [SKIP][335] ([i915#15709]) +2 other tests skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-4/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-a-plane-5:
- shard-mtlp: NOTRUN -> [SKIP][336] ([i915#15608]) +3 other tests skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-2/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier:
- shard-dg2: NOTRUN -> [SKIP][337] ([i915#15709]) +4 other tests skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-3/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7:
- shard-tglu-1: NOTRUN -> [SKIP][338] ([i915#15608]) +1 other test skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7:
- shard-dg1: NOTRUN -> [SKIP][339] ([i915#15608]) +5 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-18/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7.html
- shard-tglu: NOTRUN -> [SKIP][340] ([i915#15608]) +3 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-8/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-b-plane-5:
- shard-rkl: NOTRUN -> [SKIP][341] ([i915#15608]) +3 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-7/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-modifier:
- shard-mtlp: NOTRUN -> [SKIP][342] ([i915#15709]) +2 other tests skip
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-1/igt@kms_plane@pixel-format-y-tiled-modifier.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-glk10: NOTRUN -> [INCOMPLETE][343] ([i915#13026]) +1 other test incomplete
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-glk10/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_alpha_blend@alpha-basic:
- shard-glk: NOTRUN -> [FAIL][344] ([i915#12178])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-glk8/igt@kms_plane_alpha_blend@alpha-basic.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][345] ([i915#7862]) +1 other test fail
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-glk8/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-glk: NOTRUN -> [FAIL][346] ([i915#10647] / [i915#12177])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/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][347] ([i915#10647]) +1 other test fail
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-glk4/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-dg2: NOTRUN -> [SKIP][348] ([i915#13958]) +1 other test skip
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-7/igt@kms_plane_multiple@2x-tiling-4.html
- shard-mtlp: NOTRUN -> [SKIP][349] ([i915#13958]) +1 other test skip
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-6/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-rkl: NOTRUN -> [SKIP][350] ([i915#13958]) +2 other tests skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-2/igt@kms_plane_multiple@2x-tiling-none.html
- shard-tglu-1: NOTRUN -> [SKIP][351] ([i915#13958])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-dg1: NOTRUN -> [SKIP][352] ([i915#13958])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-16/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-tglu: NOTRUN -> [SKIP][353] ([i915#13958]) +1 other test skip
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-7/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@tiling-4:
- shard-tglu-1: NOTRUN -> [SKIP][354] ([i915#14259])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-1/igt@kms_plane_multiple@tiling-4.html
* igt@kms_plane_multiple@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][355] ([i915#14259])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-2/igt@kms_plane_multiple@tiling-y.html
- shard-dg2: NOTRUN -> [SKIP][356] ([i915#14259])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-1/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-rkl: NOTRUN -> [SKIP][357] ([i915#6953])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-4/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-rkl: NOTRUN -> [SKIP][358] ([i915#15329] / [i915#3555])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
- shard-tglu: NOTRUN -> [SKIP][359] ([i915#15329] / [i915#3555])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b:
- shard-rkl: NOTRUN -> [SKIP][360] ([i915#15329]) +2 other tests skip
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][361] ([i915#15329]) +8 other tests skip
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
- shard-dg1: NOTRUN -> [SKIP][362] ([i915#15329]) +4 other tests skip
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-17/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-mtlp: NOTRUN -> [SKIP][363] ([i915#15329] / [i915#6953])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c:
- shard-mtlp: NOTRUN -> [SKIP][364] ([i915#15329]) +3 other tests skip
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][365] ([i915#5354]) +1 other test skip
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-5/igt@kms_pm_backlight@fade-with-dpms.html
- shard-dg1: NOTRUN -> [SKIP][366] ([i915#5354]) +1 other test skip
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-16/igt@kms_pm_backlight@fade-with-dpms.html
- shard-tglu: NOTRUN -> [SKIP][367] ([i915#9812])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-4/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2: NOTRUN -> [SKIP][368] ([i915#9685])
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-4/igt@kms_pm_dc@dc5-psr.html
- shard-rkl: NOTRUN -> [SKIP][369] ([i915#14544] / [i915#9685])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-6/igt@kms_pm_dc@dc5-psr.html
- shard-dg1: NOTRUN -> [SKIP][370] ([i915#9685])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-17/igt@kms_pm_dc@dc5-psr.html
- shard-tglu: NOTRUN -> [SKIP][371] ([i915#9685])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-2/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-psr:
- shard-rkl: NOTRUN -> [SKIP][372] ([i915#9685]) +1 other test skip
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-8/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg1: [PASS][373] -> [SKIP][374] ([i915#15073])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-12/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg2: [PASS][375] -> [SKIP][376] ([i915#15073])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-dg2-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: NOTRUN -> [SKIP][377] ([i915#15073]) +1 other test skip
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@package-g7:
- shard-dg2: NOTRUN -> [SKIP][378] ([i915#15403])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-3/igt@kms_pm_rpm@package-g7.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-tglu: NOTRUN -> [SKIP][379] ([i915#6524])
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-3/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf:
- shard-snb: NOTRUN -> [SKIP][380] ([i915#11520]) +4 other tests skip
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-snb4/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][381] ([i915#11520]) +8 other tests skip
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-2/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
- shard-glk11: NOTRUN -> [SKIP][382] ([i915#11520])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-glk11/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-tglu-1: NOTRUN -> [SKIP][383] ([i915#11520]) +4 other tests skip
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][384] ([i915#9808])
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][385] ([i915#12316]) +3 other tests skip
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
- shard-glk: NOTRUN -> [SKIP][386] ([i915#11520]) +14 other tests skip
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-glk4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf:
- shard-glk10: NOTRUN -> [SKIP][387] ([i915#11520]) +1 other test skip
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-glk10/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][388] ([i915#11520] / [i915#14544])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-6/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][389] ([i915#11520]) +4 other tests skip
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-14/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
- shard-tglu: NOTRUN -> [SKIP][390] ([i915#11520]) +4 other tests skip
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-4/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
- shard-dg2: NOTRUN -> [SKIP][391] ([i915#11520]) +6 other tests skip
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-6/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr@fbc-pr-sprite-render:
- shard-dg1: NOTRUN -> [SKIP][392] ([i915#1072] / [i915#9732]) +13 other tests skip
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-13/igt@kms_psr@fbc-pr-sprite-render.html
* igt@kms_psr@fbc-psr2-cursor-mmap-gtt:
- shard-glk: NOTRUN -> [SKIP][393] +470 other tests skip
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-glk3/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html
* igt@kms_psr@pr-primary-page-flip:
- shard-tglu: NOTRUN -> [SKIP][394] ([i915#9732]) +14 other tests skip
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-4/igt@kms_psr@pr-primary-page-flip.html
* igt@kms_psr@pr-sprite-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][395] ([i915#9688]) +10 other tests skip
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-8/igt@kms_psr@pr-sprite-mmap-cpu.html
* igt@kms_psr@psr-cursor-plane-move:
- shard-tglu-1: NOTRUN -> [SKIP][396] ([i915#9732]) +13 other tests skip
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-1/igt@kms_psr@psr-cursor-plane-move.html
* igt@kms_psr@psr-cursor-render:
- shard-dg2: NOTRUN -> [SKIP][397] ([i915#1072] / [i915#9732]) +19 other tests skip
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-6/igt@kms_psr@psr-cursor-render.html
* igt@kms_psr@psr-primary-blt:
- shard-rkl: NOTRUN -> [SKIP][398] ([i915#1072] / [i915#14544] / [i915#9732]) +1 other test skip
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-6/igt@kms_psr@psr-primary-blt.html
* igt@kms_psr@psr-primary-mmap-gtt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][399] ([i915#4077] / [i915#9688]) +1 other test skip
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-2/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html
* igt@kms_psr@psr2-sprite-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][400] ([i915#1072] / [i915#9732]) +28 other tests skip
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-4/igt@kms_psr@psr2-sprite-mmap-cpu.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-mtlp: NOTRUN -> [SKIP][401] ([i915#12755])
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-7/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg2: NOTRUN -> [SKIP][402] ([i915#4235])
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-6/igt@kms_rotation_crc@exhaust-fences.html
- shard-dg1: NOTRUN -> [SKIP][403] ([i915#4884])
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-18/igt@kms_rotation_crc@exhaust-fences.html
- shard-mtlp: NOTRUN -> [SKIP][404] ([i915#4235])
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-8/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
- shard-glk: NOTRUN -> [INCOMPLETE][405] ([i915#15500])
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-glk6/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-top:
- shard-glk: NOTRUN -> [INCOMPLETE][406] ([i915#15492])
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-glk4/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-rkl: NOTRUN -> [SKIP][407] ([i915#14544] / [i915#5289])
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-dg2: NOTRUN -> [SKIP][408] ([i915#5190])
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-tglu-1: NOTRUN -> [SKIP][409] ([i915#5289]) +1 other test skip
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/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][410] ([i915#12755]) +1 other test skip
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-7/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-tglu: NOTRUN -> [SKIP][411] ([i915#3555]) +3 other tests skip
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-8/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-glk: NOTRUN -> [FAIL][412] ([i915#10959])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-glk4/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-tglu-1: NOTRUN -> [SKIP][413] ([i915#8623])
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][414] ([i915#12276]) +3 other tests incomplete
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-glk3/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html
* igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2:
- shard-rkl: [PASS][415] -> [INCOMPLETE][416] ([i915#12276]) +1 other test incomplete
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-4/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-6/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2.html
* igt@kms_vrr@flip-basic:
- shard-rkl: NOTRUN -> [SKIP][417] ([i915#15243] / [i915#3555]) +1 other test skip
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-4/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@flipline:
- shard-mtlp: NOTRUN -> [SKIP][418] ([i915#3555] / [i915#8808])
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-6/igt@kms_vrr@flipline.html
- shard-dg2: NOTRUN -> [SKIP][419] ([i915#15243] / [i915#3555])
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-7/igt@kms_vrr@flipline.html
* igt@kms_vrr@lobf:
- shard-tglu-1: NOTRUN -> [SKIP][420] ([i915#11920])
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-1/igt@kms_vrr@lobf.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-dg2: NOTRUN -> [SKIP][421] ([i915#9906])
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-3/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-tglu-1: NOTRUN -> [SKIP][422] ([i915#9906])
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-dg2: NOTRUN -> [SKIP][423] ([i915#2436])
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-7/igt@perf@gen8-unprivileged-single-ctx-counters.html
- shard-rkl: NOTRUN -> [SKIP][424] ([i915#2436])
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-3/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@global-sseu-config-invalid:
- shard-dg2: NOTRUN -> [SKIP][425] ([i915#7387])
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-1/igt@perf@global-sseu-config-invalid.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][426] ([i915#2433])
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-7/igt@perf@unprivileged-single-ctx-counters.html
- shard-dg1: NOTRUN -> [SKIP][427] ([i915#2433]) +1 other test skip
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-18/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@busy-accuracy-98:
- shard-snb: NOTRUN -> [SKIP][428] +196 other tests skip
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-snb5/igt@perf_pmu@busy-accuracy-98.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [PASS][429] -> [FAIL][430] ([i915#4349]) +4 other tests fail
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-4/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@busy-idle@bcs0:
- shard-mtlp: [PASS][431] -> [FAIL][432] ([i915#4349]) +5 other tests fail
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-mtlp-4/igt@perf_pmu@busy-idle@bcs0.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-6/igt@perf_pmu@busy-idle@bcs0.html
* igt@perf_pmu@event-wait:
- shard-mtlp: NOTRUN -> [SKIP][433] ([i915#8807])
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-7/igt@perf_pmu@event-wait.html
* igt@perf_pmu@event-wait@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][434] ([i915#3555] / [i915#8807])
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-7/igt@perf_pmu@event-wait@rcs0.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-tglu-1: NOTRUN -> [SKIP][435] ([i915#8516])
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-1/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_vgem@basic-fence-read:
- shard-dg2: NOTRUN -> [SKIP][436] ([i915#3291] / [i915#3708])
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-3/igt@prime_vgem@basic-fence-read.html
- shard-rkl: NOTRUN -> [SKIP][437] ([i915#3291] / [i915#3708])
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-4/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@coherency-gtt:
- shard-dg2: NOTRUN -> [SKIP][438] ([i915#3708] / [i915#4077])
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-1/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-read-hang:
- shard-dg2: NOTRUN -> [SKIP][439] ([i915#3708])
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-5/igt@prime_vgem@fence-read-hang.html
- shard-rkl: NOTRUN -> [SKIP][440] ([i915#3708])
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-8/igt@prime_vgem@fence-read-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-tglu: NOTRUN -> [FAIL][441] ([i915#12910]) +9 other tests fail
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-9/igt@sriov_basic@enable-vfs-autoprobe-on.html
- shard-rkl: NOTRUN -> [SKIP][442] ([i915#9917])
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-3/igt@sriov_basic@enable-vfs-autoprobe-on.html
#### Possible fixes ####
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
- shard-dg2: [INCOMPLETE][443] ([i915#13356]) -> [PASS][444]
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-dg2-7/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-10/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
* igt@gem_ctx_isolation@preservation-s3:
- shard-rkl: [INCOMPLETE][445] ([i915#13356]) -> [PASS][446] +1 other test pass
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-4/igt@gem_ctx_isolation@preservation-s3.html
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-5/igt@gem_ctx_isolation@preservation-s3.html
* igt@gem_eio@hibernate:
- shard-rkl: [ABORT][447] ([i915#7975]) -> [PASS][448]
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-1/igt@gem_eio@hibernate.html
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-4/igt@gem_eio@hibernate.html
* igt@gem_eio@in-flight-suspend:
- shard-rkl: [INCOMPLETE][449] ([i915#13390]) -> [PASS][450]
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-6/igt@gem_eio@in-flight-suspend.html
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-4/igt@gem_eio@in-flight-suspend.html
* igt@gem_exec_big@single:
- shard-tglu: [DMESG-FAIL][451] ([i915#15478]) -> [PASS][452]
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-tglu-4/igt@gem_exec_big@single.html
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-9/igt@gem_exec_big@single.html
- shard-mtlp: [DMESG-FAIL][453] ([i915#15478]) -> [PASS][454]
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-mtlp-6/igt@gem_exec_big@single.html
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-8/igt@gem_exec_big@single.html
* igt@i915_pm_freq_api@freq-suspend@gt0:
- shard-dg2: [INCOMPLETE][455] ([i915#13356] / [i915#13820]) -> [PASS][456] +1 other test pass
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-dg2-4/igt@i915_pm_freq_api@freq-suspend@gt0.html
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-7/igt@i915_pm_freq_api@freq-suspend@gt0.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglu: [WARN][457] ([i915#13790] / [i915#2681]) -> [PASS][458] +1 other test pass
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-fence.html
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_selftest@live:
- shard-dg1: [DMESG-FAIL][459] ([i915#15560]) -> [PASS][460]
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-dg1-19/igt@i915_selftest@live.html
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-16/igt@i915_selftest@live.html
- shard-mtlp: [DMESG-FAIL][461] ([i915#12061] / [i915#15560]) -> [PASS][462]
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-mtlp-8/igt@i915_selftest@live.html
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-1/igt@i915_selftest@live.html
* igt@i915_selftest@live@gem_contexts:
- shard-dg1: [DMESG-FAIL][463] ([i915#15433]) -> [PASS][464]
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-dg1-19/igt@i915_selftest@live@gem_contexts.html
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-16/igt@i915_selftest@live@gem_contexts.html
* igt@i915_selftest@live@workarounds:
- shard-mtlp: [DMESG-FAIL][465] ([i915#12061]) -> [PASS][466]
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-mtlp-8/igt@i915_selftest@live@workarounds.html
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-1/igt@i915_selftest@live@workarounds.html
* igt@i915_suspend@sysfs-reader:
- shard-glk: [INCOMPLETE][467] ([i915#4817]) -> [PASS][468]
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-glk9/igt@i915_suspend@sysfs-reader.html
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-glk3/igt@i915_suspend@sysfs-reader.html
* igt@kms_atomic_interruptible@legacy-cursor:
- shard-dg1: [DMESG-WARN][469] ([i915#4423]) -> [PASS][470] +3 other tests pass
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-dg1-19/igt@kms_atomic_interruptible@legacy-cursor.html
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-16/igt@kms_atomic_interruptible@legacy-cursor.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3:
- shard-dg2: [FAIL][471] ([i915#5956]) -> [PASS][472] +1 other test pass
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [FAIL][473] ([i915#15733] / [i915#5138]) -> [PASS][474]
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [INCOMPLETE][475] ([i915#15582]) -> [PASS][476]
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-rkl: [FAIL][477] ([i915#13566]) -> [PASS][478]
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-256x85.html
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-256x85.html
- shard-tglu: [FAIL][479] ([i915#13566]) -> [PASS][480] +1 other test pass
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-tglu-6/igt@kms_cursor_crc@cursor-sliding-256x85.html
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-9/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_legacy@cursora-vs-flipa-toggle:
- shard-mtlp: [ABORT][481] ([i915#13562]) -> [PASS][482]
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-mtlp-1/igt@kms_cursor_legacy@cursora-vs-flipa-toggle.html
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-5/igt@kms_cursor_legacy@cursora-vs-flipa-toggle.html
* igt@kms_flip@flip-vs-suspend:
- shard-rkl: [INCOMPLETE][483] ([i915#6113]) -> [PASS][484]
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-3/igt@kms_flip@flip-vs-suspend.html
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-5/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg2: [ABORT][485] ([i915#15132]) -> [PASS][486]
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-dg2-10/igt@kms_flip@flip-vs-suspend-interruptible.html
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-7/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu:
- shard-dg2: [FAIL][487] ([i915#15389] / [i915#6880]) -> [PASS][488] +1 other test pass
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-rkl: [INCOMPLETE][489] ([i915#10056]) -> [PASS][490]
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-suspend.html
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [SKIP][491] ([i915#15073]) -> [PASS][492]
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-dg2: [INCOMPLETE][493] ([i915#14419]) -> [PASS][494]
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-dg2-5/igt@kms_pm_rpm@system-suspend-idle.html
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-4/igt@kms_pm_rpm@system-suspend-idle.html
* igt@perf_pmu@busy-idle-check-all@ccs0:
- shard-mtlp: [FAIL][495] ([i915#4349]) -> [PASS][496] +4 other tests pass
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-mtlp-7/igt@perf_pmu@busy-idle-check-all@ccs0.html
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-mtlp-4/igt@perf_pmu@busy-idle-check-all@ccs0.html
* igt@perf_pmu@busy-idle-check-all@vecs0:
- shard-dg1: [FAIL][497] ([i915#4349]) -> [PASS][498] +3 other tests pass
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-dg1-18/igt@perf_pmu@busy-idle-check-all@vecs0.html
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-19/igt@perf_pmu@busy-idle-check-all@vecs0.html
#### Warnings ####
* igt@gem_ccs@ctrl-surf-copy:
- shard-rkl: [SKIP][499] ([i915#3555] / [i915#9323]) -> [SKIP][500] ([i915#14544] / [i915#3555] / [i915#9323])
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-8/igt@gem_ccs@ctrl-surf-copy.html
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_exec_balancer@parallel-keep-in-fence:
- shard-rkl: [SKIP][501] ([i915#4525]) -> [SKIP][502] ([i915#14544] / [i915#4525])
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-2/igt@gem_exec_balancer@parallel-keep-in-fence.html
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-6/igt@gem_exec_balancer@parallel-keep-in-fence.html
* igt@gem_exec_reloc@basic-gtt-wc-noreloc:
- shard-rkl: [SKIP][503] ([i915#14544] / [i915#3281]) -> [SKIP][504] ([i915#3281]) +1 other test skip
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
* igt@gem_readwrite@read-bad-handle:
- shard-rkl: [SKIP][505] ([i915#3282]) -> [SKIP][506] ([i915#14544] / [i915#3282])
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-8/igt@gem_readwrite@read-bad-handle.html
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-6/igt@gem_readwrite@read-bad-handle.html
* igt@gem_userptr_blits@access-control:
- shard-rkl: [SKIP][507] ([i915#3297]) -> [SKIP][508] ([i915#14544] / [i915#3297])
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-3/igt@gem_userptr_blits@access-control.html
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-6/igt@gem_userptr_blits@access-control.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-rkl: [SKIP][509] ([i915#2527]) -> [SKIP][510] ([i915#14544] / [i915#2527])
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-5/igt@gen9_exec_parse@bb-start-cmd.html
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-6/igt@gen9_exec_parse@bb-start-cmd.html
* igt@i915_module_load@resize-bar:
- shard-rkl: [SKIP][511] ([i915#14544] / [i915#6412]) -> [SKIP][512] ([i915#6412])
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-6/igt@i915_module_load@resize-bar.html
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-7/igt@i915_module_load@resize-bar.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-rkl: [SKIP][513] ([i915#5286]) -> [SKIP][514] ([i915#14544] / [i915#5286])
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-rkl: [SKIP][515] ([i915#12805]) -> [SKIP][516] ([i915#12805] / [i915#14544])
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc:
- shard-rkl: [SKIP][517] ([i915#14098] / [i915#6095]) -> [SKIP][518] ([i915#14098] / [i915#14544] / [i915#6095])
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
- shard-rkl: [SKIP][519] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][520] ([i915#14098] / [i915#6095])
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][521] ([i915#12313] / [i915#14544]) -> [SKIP][522] ([i915#12313])
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc:
- shard-dg1: [SKIP][523] ([i915#4423] / [i915#6095]) -> [SKIP][524] ([i915#6095])
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-dg1-19/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc.html
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-14/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-rkl: [SKIP][525] ([i915#14544]) -> [SKIP][526]
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-6/igt@kms_chamelium_color@ctm-0-50.html
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-2/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@ctm-max:
- shard-rkl: [SKIP][527] -> [SKIP][528] ([i915#14544]) +4 other tests skip
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-7/igt@kms_chamelium_color@ctm-max.html
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-6/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-rkl: [SKIP][529] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][530] ([i915#11151] / [i915#7828]) +1 other test skip
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-6/igt@kms_chamelium_frames@dp-crc-fast.html
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-8/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-rkl: [SKIP][531] ([i915#11151] / [i915#7828]) -> [SKIP][532] ([i915#11151] / [i915#14544] / [i915#7828])
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-1/igt@kms_chamelium_frames@dp-crc-single.html
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-6/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_content_protection@srm:
- shard-dg2: [SKIP][533] ([i915#6944] / [i915#7118]) -> [FAIL][534] ([i915#7173])
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-dg2-1/igt@kms_content_protection@srm.html
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-10/igt@kms_content_protection@srm.html
* igt@kms_content_protection@uevent:
- shard-dg2: [SKIP][535] ([i915#6944] / [i915#7118] / [i915#9424]) -> [FAIL][536] ([i915#1339] / [i915#7173])
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-dg2-5/igt@kms_content_protection@uevent.html
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-10/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-dg1: [SKIP][537] ([i915#13049]) -> [SKIP][538] ([i915#13049] / [i915#4423])
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-dg1-19/igt@kms_cursor_crc@cursor-sliding-512x512.html
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-18/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-rkl: [SKIP][539] ([i915#14544] / [i915#4103]) -> [SKIP][540] ([i915#4103])
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_feature_discovery@dp-mst:
- shard-rkl: [SKIP][541] ([i915#9337]) -> [SKIP][542] ([i915#14544] / [i915#9337])
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-4/igt@kms_feature_discovery@dp-mst.html
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-6/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr2:
- shard-rkl: [SKIP][543] ([i915#14544] / [i915#658]) -> [SKIP][544] ([i915#658])
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-6/igt@kms_feature_discovery@psr2.html
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-4/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-rkl: [SKIP][545] ([i915#14544] / [i915#9934]) -> [SKIP][546] ([i915#9934])
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-6/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-1/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-dg1: [SKIP][547] ([i915#15643] / [i915#4423]) -> [SKIP][548] ([i915#15643])
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-dg1-19/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-dg1: [SKIP][549] ([i915#4423] / [i915#8708]) -> [SKIP][550] ([i915#8708])
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-rkl: [SKIP][551] ([i915#1825]) -> [SKIP][552] ([i915#14544] / [i915#1825]) +8 other tests skip
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move:
- shard-rkl: [SKIP][553] ([i915#15102] / [i915#3023]) -> [SKIP][554] ([i915#14544] / [i915#15102] / [i915#3023])
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move:
- shard-dg2: [SKIP][555] ([i915#15102] / [i915#3458]) -> [SKIP][556] ([i915#10433] / [i915#15102] / [i915#3458]) +3 other tests skip
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-suspend:
- shard-dg2: [SKIP][557] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][558] ([i915#15102] / [i915#3458]) +2 other tests skip
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-pwrite:
- shard-rkl: [SKIP][559] ([i915#15102]) -> [SKIP][560] ([i915#14544] / [i915#15102])
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-pwrite.html
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move:
- shard-rkl: [SKIP][561] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][562] ([i915#15102] / [i915#3023])
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move.html
[562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
- shard-dg1: [SKIP][563] ([i915#4423]) -> [SKIP][564] +1 other test skip
[563]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
[564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_hdr@brightness-with-hdr:
- shard-tglu: [SKIP][565] ([i915#1187] / [i915#12713]) -> [SKIP][566] ([i915#12713])
[565]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-tglu-2/igt@kms_hdr@brightness-with-hdr.html
[566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-tglu-3/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier:
- shard-rkl: [SKIP][567] ([i915#15709]) -> [SKIP][568] ([i915#14544] / [i915#15709])
[567]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-3/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
[568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-6/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
* igt@kms_plane_multiple@tiling-yf:
- shard-rkl: [SKIP][569] ([i915#14259]) -> [SKIP][570] ([i915#14259] / [i915#14544])
[569]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-7/igt@kms_plane_multiple@tiling-yf.html
[570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-6/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- shard-rkl: [SKIP][571] ([i915#15329]) -> [SKIP][572] ([i915#14544] / [i915#15329]) +3 other tests skip
[571]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
[572]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf:
- shard-rkl: [SKIP][573] ([i915#11520] / [i915#14544]) -> [SKIP][574] ([i915#11520]) +1 other test skip
[573]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
[574]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-4/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-rkl: [SKIP][575] ([i915#9683]) -> [SKIP][576] ([i915#14544] / [i915#9683])
[575]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html
[576]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-psr-cursor-plane-move:
- shard-rkl: [SKIP][577] ([i915#1072] / [i915#9732]) -> [SKIP][578] ([i915#1072] / [i915#14544] / [i915#9732]) +3 other tests skip
[577]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-2/igt@kms_psr@fbc-psr-cursor-plane-move.html
[578]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-6/igt@kms_psr@fbc-psr-cursor-plane-move.html
* igt@kms_psr@psr-sprite-plane-onoff:
- shard-rkl: [SKIP][579] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][580] ([i915#1072] / [i915#9732]) +1 other test skip
[579]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-6/igt@kms_psr@psr-sprite-plane-onoff.html
[580]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-4/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-rkl: [SKIP][581] ([i915#8623]) -> [SKIP][582] ([i915#14544] / [i915#8623])
[581]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-7/igt@kms_tiled_display@basic-test-pattern.html
[582]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern.html
* igt@perf@mi-rpc:
- shard-rkl: [SKIP][583] ([i915#14544] / [i915#2434]) -> [SKIP][584] ([i915#2434])
[583]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-6/igt@perf@mi-rpc.html
[584]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-2/igt@perf@mi-rpc.html
* igt@perf_pmu@module-unload:
- shard-dg2: [ABORT][585] ([i915#13029] / [i915#15778]) -> [ABORT][586] ([i915#15778])
[585]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-dg2-4/igt@perf_pmu@module-unload.html
[586]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-dg2-3/igt@perf_pmu@module-unload.html
* igt@prime_vgem@basic-read:
- shard-rkl: [SKIP][587] ([i915#14544] / [i915#3291] / [i915#3708]) -> [SKIP][588] ([i915#3291] / [i915#3708])
[587]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-6/igt@prime_vgem@basic-read.html
[588]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-5/igt@prime_vgem@basic-read.html
* igt@prime_vgem@fence-flip-hang:
- shard-rkl: [SKIP][589] ([i915#3708]) -> [SKIP][590] ([i915#14544] / [i915#3708])
[589]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-4/igt@prime_vgem@fence-flip-hang.html
[590]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-6/igt@prime_vgem@fence-flip-hang.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-rkl: [SKIP][591] ([i915#9917]) -> [SKIP][592] ([i915#14544] / [i915#9917])
[591]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18169/shard-rkl-1/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[592]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14798/shard-rkl-6/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[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#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959
[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#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177
[i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178
[i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193
[i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
[i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026
[i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13196
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#1339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1339
[i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390
[i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
[i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409
[i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
[i915#13562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13562
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13705]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13705
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790
[i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809
[i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
[i915#14600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600
[i915#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702
[i915#15060]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15060
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
[i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
[i915#15140]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15140
[i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342
[i915#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389
[i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403
[i915#15433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15433
[i915#15454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15454
[i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
[i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460
[i915#15478]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15478
[i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479
[i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492
[i915#15500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15500
[i915#15560]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15560
[i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
[i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608
[i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722
[i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
[i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
[i915#15804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15804
[i915#15815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15815
[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#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[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#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#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#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#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#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#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#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
[i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881
[i915#4884]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4884
[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#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#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#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
[i915#6645]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6645
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276
[i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
[i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443
[i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862
[i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8807]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8807
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833
[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_8807 -> IGTPW_14798
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_18169: c479cdf62a3f9a6101dd020abbc471f35142b3d1 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14798: 14798
IGT_8807: 7f44d96d705f1583d689f1f8c2275b685b4ca11d @ 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_14798/index.html
[-- Attachment #2: Type: text/html, Size: 200119 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ Xe.CI.FULL: failure for tests/xe_pat: Add subtests for validating cached pagetables
2026-03-17 19:37 [PATCH i-g-t] tests/xe_pat: Add subtests for validating cached pagetables Zbigniew Kempczyński
` (2 preceding siblings ...)
2026-03-19 6:39 ` ✗ i915.CI.Full: failure " Patchwork
@ 2026-03-19 15:33 ` Patchwork
2026-03-25 17:37 ` [PATCH i-g-t] " Matthew Auld
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-03-19 15:33 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 70441 bytes --]
== Series Details ==
Series: tests/xe_pat: Add subtests for validating cached pagetables
URL : https://patchwork.freedesktop.org/series/163402/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8807_FULL -> XEIGTPW_14798_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_14798_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_14798_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_14798_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_exec_system_allocator@many-execqueues-mmap-file:
- shard-bmg: NOTRUN -> [DMESG-FAIL][1]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@xe_exec_system_allocator@many-execqueues-mmap-file.html
* igt@xe_live_ktest@xe_migrate@xe_migrate_sanity_kunit:
- shard-bmg: [PASS][2] -> [FAIL][3] +2 other tests fail
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-3/igt@xe_live_ktest@xe_migrate@xe_migrate_sanity_kunit.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@xe_live_ktest@xe_migrate@xe_migrate_sanity_kunit.html
New tests
---------
New tests have been introduced between XEIGT_8807_FULL and XEIGTPW_14798_FULL:
### New IGT tests (4) ###
* igt@xe_pat@pt-caching:
- Statuses : 2 pass(s)
- Exec time: [7.66, 14.09] s
* igt@xe_pat@pt-caching-random-offsets:
- Statuses : 2 pass(s)
- Exec time: [9.87, 18.36] s
* igt@xe_pat@pt-caching-single-object:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.0, 6.62] s
* igt@xe_pat@pt-caching-update-pat-and-pte:
- Statuses : 2 pass(s)
- Exec time: [16.87, 26.67] s
Known issues
------------
Here are the changes found in XEIGTPW_14798_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#2327]) +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-6/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#7059] / [Intel XE#7085])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#1124]) +6 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-9/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_bw@linear-tiling-2-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#367] / [Intel XE#7354])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-9/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2887]) +6 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-8/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#3432])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-10/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2652]) +8 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-7/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_chamelium_frames@vga-frame-dump:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2252]) +2 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-6/igt@kms_chamelium_frames@vga-frame-dump.html
* igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][12] ([Intel XE#3304] / [Intel XE#7374])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-6/igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2.html
* igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][13] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +3 other tests fail
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-1/igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2.html
* igt@kms_content_protection@uevent-hdcp14:
- shard-bmg: NOTRUN -> [FAIL][14] ([Intel XE#6707] / [Intel XE#7439]) +1 other test fail
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-8/igt@kms_content_protection@uevent-hdcp14.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2321] / [Intel XE#7355])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2320]) +5 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-8/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
- shard-bmg: [PASS][17] -> [SKIP][18] ([Intel XE#2291]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-bmg: [PASS][19] -> [SKIP][20] ([Intel XE#2291] / [Intel XE#7343])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [PASS][21] -> [FAIL][22] ([Intel XE#7571])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-bmg: [PASS][23] -> [SKIP][24] ([Intel XE#4294])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-4/igt@kms_dp_linktrain_fallback@dp-fallback.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-3/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_feature_discovery@display-2x:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2373] / [Intel XE#7344])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-3/igt@kms_feature_discovery@display-2x.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: [PASS][26] -> [SKIP][27] ([Intel XE#2316]) +4 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-4/igt@kms_flip@2x-nonexisting-fb.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-5/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2316])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-3/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [PASS][29] -> [FAIL][30] ([Intel XE#301]) +1 other test fail
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [PASS][31] -> [INCOMPLETE][32] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-7/igt@kms_flip@flip-vs-suspend-interruptible.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-1/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@plain-flip-fb-recreate@c-dp2:
- shard-bmg: [PASS][33] -> [DMESG-FAIL][34] ([Intel XE#5545])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_flip@plain-flip-fb-recreate@c-dp2.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@kms_flip@plain-flip-fb-recreate@c-dp2.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#7178] / [Intel XE#7351]) +3 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2311]) +12 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2312]) +4 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#4141]) +4 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2313]) +11 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2352] / [Intel XE#7399])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_hdr@static-toggle-suspend:
- shard-bmg: [PASS][42] -> [SKIP][43] ([Intel XE#1503])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-4/igt@kms_hdr@static-toggle-suspend.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-3/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-bmg: [PASS][44] -> [SKIP][45] ([Intel XE#4596])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-none.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#5021] / [Intel XE#7377])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2763] / [Intel XE#6886]) +3 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html
* igt@kms_pm_backlight@basic-brightness:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#7376] / [Intel XE#870])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2391] / [Intel XE#6927])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-8/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@deep-pkgc:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2505] / [Intel XE#7447])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#1489]) +4 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-3/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2387] / [Intel XE#7429])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-10/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-psr2-cursor-plane-move:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-1/igt@kms_psr@fbc-psr2-cursor-plane-move.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#1406] / [Intel XE#2414])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_sharpness_filter@filter-toggle:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#6503])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-9/igt@kms_sharpness_filter@filter-toggle.html
* igt@kms_vrr@cmrr:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2168] / [Intel XE#7444])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-10/igt@kms_vrr@cmrr.html
* igt@kms_vrr@flip-suspend:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#1499]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-3/igt@kms_vrr@flip-suspend.html
* igt@xe_eudebug@vma-ufence:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#4837]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-6/igt@xe_eudebug@vma-ufence.html
* igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#4837] / [Intel XE#6665]) +3 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-4/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-vram.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [PASS][60] -> [INCOMPLETE][61] ([Intel XE#6321])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-3/igt@xe_evict@evict-mixed-many-threads-small.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-5/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_basic@multigpu-once-null-rebind:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2322] / [Intel XE#7372]) +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-10/igt@xe_exec_basic@multigpu-once-null-rebind.html
* igt@xe_exec_fault_mode@once-multi-queue-rebind-imm:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#7136]) +6 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@xe_exec_fault_mode@once-multi-queue-rebind-imm.html
* igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-dyn-priority-smem:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#6874]) +15 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-5/igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-dyn-priority-smem.html
* igt@xe_exec_system_allocator@once-mmap-race-nomemset:
- shard-bmg: [PASS][65] -> [SKIP][66] ([Intel XE#6557] / [Intel XE#6703]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-1/igt@xe_exec_system_allocator@once-mmap-race-nomemset.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@xe_exec_system_allocator@once-mmap-race-nomemset.html
* igt@xe_exec_system_allocator@process-many-mmap-shared-remap-dontunmap-eocheck:
- shard-bmg: [PASS][67] -> [DMESG-FAIL][68] ([Intel XE#6652])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-9/igt@xe_exec_system_allocator@process-many-mmap-shared-remap-dontunmap-eocheck.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@xe_exec_system_allocator@process-many-mmap-shared-remap-dontunmap-eocheck.html
* igt@xe_exec_system_allocator@threads-many-stride-malloc-nomemset:
- shard-bmg: [PASS][69] -> [SKIP][70] ([Intel XE#6703]) +185 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-6/igt@xe_exec_system_allocator@threads-many-stride-malloc-nomemset.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@xe_exec_system_allocator@threads-many-stride-malloc-nomemset.html
* igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#7138]) +3 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-9/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#6703]) +38 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init:
- shard-bmg: [PASS][73] -> [ABORT][74] ([Intel XE#7578])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-9/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
* igt@xe_oa@non-zero-reason-all:
- shard-lnl: [PASS][75] -> [FAIL][76] ([Intel XE#7334]) +1 other test fail
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-lnl-3/igt@xe_oa@non-zero-reason-all.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-lnl-5/igt@xe_oa@non-zero-reason-all.html
* igt@xe_pat@pat-index-xehpc:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#1420])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-4/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pm@d3cold-basic:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2284] / [Intel XE#7370])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-8/igt@xe_pm@d3cold-basic.html
* igt@xe_pxp@pxp-stale-queue-post-termination-irq:
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#4733] / [Intel XE#7417])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-5/igt@xe_pxp@pxp-stale-queue-post-termination-irq.html
* igt@xe_query@multigpu-query-engines:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#944])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-3/igt@xe_query@multigpu-query-engines.html
* igt@xe_survivability@runtime-survivability:
- shard-bmg: [PASS][81] -> [DMESG-WARN][82] ([Intel XE#6627] / [Intel XE#7419])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@xe_survivability@runtime-survivability.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-10/igt@xe_survivability@runtime-survivability.html
#### Possible fixes ####
* igt@core_hotunplug@hotreplug:
- shard-bmg: [ABORT][83] ([Intel XE#7578]) -> [PASS][84]
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-8/igt@core_hotunplug@hotreplug.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-7/igt@core_hotunplug@hotreplug.html
* igt@core_hotunplug@hotunplug-rescan:
- shard-bmg: [SKIP][85] ([Intel XE#6779]) -> [PASS][86]
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@core_hotunplug@hotunplug-rescan.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-3/igt@core_hotunplug@hotunplug-rescan.html
* igt@intel_hwmon@hwmon-write:
- shard-bmg: [FAIL][87] ([Intel XE#7445]) -> [PASS][88]
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-1/igt@intel_hwmon@hwmon-write.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-4/igt@intel_hwmon@hwmon-write.html
* igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p:
- shard-bmg: [SKIP][89] ([Intel XE#7621]) -> [PASS][90]
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-1/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-3/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-bmg: [SKIP][91] ([Intel XE#2291]) -> [PASS][92] +2 other tests pass
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [SKIP][93] ([Intel XE#2291] / [Intel XE#7343]) -> [PASS][94]
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-9/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset:
- shard-bmg: [SKIP][95] ([Intel XE#2316]) -> [PASS][96] +3 other tests pass
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-10/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@flip-vs-expired-vblank@b-edp1:
- shard-lnl: [FAIL][97] ([Intel XE#301]) -> [PASS][98] +1 other test pass
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
* igt@kms_hdr@static-toggle:
- shard-bmg: [SKIP][99] ([Intel XE#1503]) -> [PASS][100]
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_hdr@static-toggle.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-7/igt@kms_hdr@static-toggle.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-bmg: [SKIP][101] ([Intel XE#7086]) -> [PASS][102]
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_joiner@basic-force-big-joiner.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-3/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [FAIL][103] ([Intel XE#7340]) -> [PASS][104] +1 other test pass
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-lnl-5/igt@kms_pm_dc@dc6-psr.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-lnl-6/igt@kms_pm_dc@dc6-psr.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-bmg: [FAIL][105] ([Intel XE#5937]) -> [PASS][106]
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-1/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_exec_system_allocator@twice-large-mmap:
- shard-bmg: [SKIP][107] ([Intel XE#6557] / [Intel XE#6703]) -> [PASS][108] +2 other tests pass
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_exec_system_allocator@twice-large-mmap.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-3/igt@xe_exec_system_allocator@twice-large-mmap.html
* igt@xe_vm@large-userptr-split-misaligned-binds-67108864:
- shard-bmg: [SKIP][109] ([Intel XE#6703]) -> [PASS][110] +101 other tests pass
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_vm@large-userptr-split-misaligned-binds-67108864.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-4/igt@xe_vm@large-userptr-split-misaligned-binds-67108864.html
#### Warnings ####
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-bmg: [SKIP][111] ([Intel XE#2370]) -> [SKIP][112] ([Intel XE#6703])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-bmg: [SKIP][113] ([Intel XE#2327]) -> [SKIP][114] ([Intel XE#6703]) +1 other test skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-7/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-bmg: [SKIP][115] ([Intel XE#6703]) -> [SKIP][116] ([Intel XE#1124]) +1 other test skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-bmg: [SKIP][117] ([Intel XE#1124]) -> [SKIP][118] ([Intel XE#6703])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-bmg: [SKIP][119] ([Intel XE#6703]) -> [SKIP][120] ([Intel XE#7621])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-8/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-3-displays-3840x2160p:
- shard-bmg: [SKIP][121] ([Intel XE#367] / [Intel XE#7354]) -> [SKIP][122] ([Intel XE#6703])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-1/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-bmg: [SKIP][123] ([Intel XE#2652]) -> [SKIP][124] ([Intel XE#6703])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-9/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs:
- shard-bmg: [SKIP][125] ([Intel XE#2887]) -> [SKIP][126] ([Intel XE#6703]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-bmg: [SKIP][127] ([Intel XE#3432]) -> [SKIP][128] ([Intel XE#6703]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: [SKIP][129] ([Intel XE#6703]) -> [SKIP][130] ([Intel XE#2887]) +3 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-bmg: [SKIP][131] ([Intel XE#2724] / [Intel XE#7449]) -> [SKIP][132] ([Intel XE#6703])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-3/igt@kms_cdclk@mode-transition-all-outputs.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@degamma:
- shard-bmg: [SKIP][133] ([Intel XE#2325] / [Intel XE#7358]) -> [SKIP][134] ([Intel XE#6703])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-7/igt@kms_chamelium_color@degamma.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_edid@dp-edid-read:
- shard-bmg: [SKIP][135] ([Intel XE#6703]) -> [SKIP][136] ([Intel XE#2252]) +1 other test skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_chamelium_edid@dp-edid-read.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@kms_chamelium_edid@dp-edid-read.html
* igt@kms_content_protection@atomic-dpms-hdcp14:
- shard-bmg: [SKIP][137] ([Intel XE#7194]) -> [FAIL][138] ([Intel XE#3304] / [Intel XE#7374])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_content_protection@atomic-dpms-hdcp14.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-6/igt@kms_content_protection@atomic-dpms-hdcp14.html
* igt@kms_content_protection@content-type-change:
- shard-bmg: [SKIP][139] ([Intel XE#2341]) -> [SKIP][140] ([Intel XE#6703])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-9/igt@kms_content_protection@content-type-change.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@legacy:
- shard-bmg: [FAIL][141] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) -> [SKIP][142] ([Intel XE#6703])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-1/igt@kms_content_protection@legacy.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-bmg: [FAIL][143] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) -> [SKIP][144] ([Intel XE#7194])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-1/igt@kms_content_protection@legacy-hdcp14.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-3/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_content_protection@lic-type-0:
- shard-bmg: [FAIL][145] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) -> [SKIP][146] ([Intel XE#2341])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-3/igt@kms_content_protection@lic-type-0.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-3/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-0-hdcp14:
- shard-bmg: [SKIP][147] ([Intel XE#7194]) -> [FAIL][148] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_content_protection@lic-type-0-hdcp14.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-1/igt@kms_content_protection@lic-type-0-hdcp14.html
* igt@kms_content_protection@srm:
- shard-bmg: [SKIP][149] ([Intel XE#2341]) -> [FAIL][150] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_content_protection@srm.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-4/igt@kms_content_protection@srm.html
* igt@kms_content_protection@uevent:
- shard-bmg: [FAIL][151] ([Intel XE#6707] / [Intel XE#7439]) -> [SKIP][152] ([Intel XE#2341])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-7/igt@kms_content_protection@uevent.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-5/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-bmg: [SKIP][153] ([Intel XE#2320]) -> [SKIP][154] ([Intel XE#6703])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-32x10.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-random-256x85:
- shard-bmg: [SKIP][155] ([Intel XE#6703]) -> [SKIP][156] ([Intel XE#2320])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_cursor_crc@cursor-random-256x85.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-4/igt@kms_cursor_crc@cursor-random-256x85.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-bmg: [SKIP][157] ([Intel XE#2321] / [Intel XE#7355]) -> [SKIP][158] ([Intel XE#6703])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-1/igt@kms_cursor_crc@cursor-sliding-512x170.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-bmg: [SKIP][159] ([Intel XE#6703]) -> [SKIP][160] ([Intel XE#2321] / [Intel XE#7355])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-512x512.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-5/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-bmg: [SKIP][161] ([Intel XE#6703]) -> [SKIP][162] ([Intel XE#2291] / [Intel XE#7343])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_dsc@dsc-with-formats:
- shard-bmg: [SKIP][163] ([Intel XE#6703]) -> [SKIP][164] ([Intel XE#2244])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_dsc@dsc-with-formats.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-4/igt@kms_dsc@dsc-with-formats.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
- shard-bmg: [SKIP][165] ([Intel XE#4422] / [Intel XE#7442]) -> [SKIP][166] ([Intel XE#6703])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-3/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
* igt@kms_feature_discovery@chamelium:
- shard-bmg: [SKIP][167] ([Intel XE#2372] / [Intel XE#7359]) -> [SKIP][168] ([Intel XE#6703])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-1/igt@kms_feature_discovery@chamelium.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@kms_feature_discovery@chamelium.html
* igt@kms_flip@2x-busy-flip:
- shard-bmg: [SKIP][169] ([Intel XE#6703]) -> [SKIP][170] ([Intel XE#2316])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_flip@2x-busy-flip.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-5/igt@kms_flip@2x-busy-flip.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-bmg: [SKIP][171] ([Intel XE#7178] / [Intel XE#7351]) -> [SKIP][172] ([Intel XE#6703]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-bmg: [SKIP][173] ([Intel XE#6703]) -> [SKIP][174] ([Intel XE#7178] / [Intel XE#7351])
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x:
- shard-bmg: [SKIP][175] ([Intel XE#7179]) -> [SKIP][176] ([Intel XE#6703])
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-7/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: [SKIP][177] ([Intel XE#6557] / [Intel XE#6703]) -> [SKIP][178] ([Intel XE#2311])
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-10/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][179] ([Intel XE#2312]) -> [SKIP][180] ([Intel XE#2311]) +8 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][181] ([Intel XE#4141]) -> [SKIP][182] ([Intel XE#6703]) +2 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][183] ([Intel XE#6703]) -> [SKIP][184] ([Intel XE#2312]) +1 other test skip
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][185] ([Intel XE#4141]) -> [SKIP][186] ([Intel XE#2312]) +8 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][187] ([Intel XE#2312]) -> [SKIP][188] ([Intel XE#4141]) +6 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][189] ([Intel XE#2312]) -> [SKIP][190] ([Intel XE#6703])
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][191] ([Intel XE#2311]) -> [SKIP][192] ([Intel XE#6703]) +7 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-pgflip-blt.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move:
- shard-bmg: [SKIP][193] ([Intel XE#6703]) -> [SKIP][194] ([Intel XE#2311]) +2 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][195] ([Intel XE#2311]) -> [SKIP][196] ([Intel XE#2312]) +14 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-bmg: [SKIP][197] ([Intel XE#6703]) -> [SKIP][198] ([Intel XE#2352] / [Intel XE#7399])
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff:
- shard-bmg: [SKIP][199] ([Intel XE#2313]) -> [SKIP][200] ([Intel XE#6703]) +9 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][201] ([Intel XE#2313]) -> [SKIP][202] ([Intel XE#2312]) +16 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][203] ([Intel XE#6703]) -> [SKIP][204] ([Intel XE#2313]) +6 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-blt:
- shard-bmg: [SKIP][205] ([Intel XE#7061] / [Intel XE#7356]) -> [SKIP][206] ([Intel XE#6703])
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-blt.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][207] ([Intel XE#2312]) -> [SKIP][208] ([Intel XE#2313]) +10 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][209] ([Intel XE#3544]) -> [SKIP][210] ([Intel XE#3374] / [Intel XE#3544])
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-9/igt@kms_hdr@brightness-with-hdr.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-3/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@basic-big-joiner:
- shard-bmg: [SKIP][211] ([Intel XE#6703]) -> [SKIP][212] ([Intel XE#6901])
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_joiner@basic-big-joiner.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-8/igt@kms_joiner@basic-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-bmg: [SKIP][213] ([Intel XE#6703]) -> [SKIP][214] ([Intel XE#7591])
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-bmg: [SKIP][215] ([Intel XE#2486]) -> [SKIP][216] ([Intel XE#6703])
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-4/igt@kms_panel_fitting@atomic-fastset.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier:
- shard-bmg: [SKIP][217] ([Intel XE#6703]) -> [SKIP][218] ([Intel XE#7283])
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-4/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier:
- shard-bmg: [SKIP][219] ([Intel XE#7283]) -> [SKIP][220] ([Intel XE#6703]) +1 other test skip
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-4/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier.html
* igt@kms_plane_lowres@tiling-y:
- shard-bmg: [SKIP][221] ([Intel XE#2393]) -> [SKIP][222] ([Intel XE#6703])
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-3/igt@kms_plane_lowres@tiling-y.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-bmg: [SKIP][223] ([Intel XE#5021] / [Intel XE#7377]) -> [SKIP][224] ([Intel XE#4596])
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-9/igt@kms_plane_multiple@2x-tiling-y.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75:
- shard-bmg: [SKIP][225] ([Intel XE#6703]) -> [SKIP][226] ([Intel XE#2763] / [Intel XE#6886])
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-bmg: [SKIP][227] ([Intel XE#1439] / [Intel XE#7402] / [Intel XE#836]) -> [SKIP][228] ([Intel XE#6703])
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
- shard-bmg: [SKIP][229] ([Intel XE#6703]) -> [SKIP][230] ([Intel XE#1489])
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-9/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf:
- shard-bmg: [SKIP][231] ([Intel XE#1489]) -> [SKIP][232] ([Intel XE#6703]) +2 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-4/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr@pr-cursor-plane-move:
- shard-bmg: [SKIP][233] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][234] ([Intel XE#6703])
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_psr@pr-cursor-plane-move.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@kms_psr@pr-cursor-plane-move.html
* igt@kms_psr@pr-cursor-plane-onoff:
- shard-bmg: [SKIP][235] ([Intel XE#6703]) -> [SKIP][236] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_psr@pr-cursor-plane-onoff.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-10/igt@kms_psr@pr-cursor-plane-onoff.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-bmg: [SKIP][237] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) -> [SKIP][238] ([Intel XE#6703])
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-4/igt@kms_rotation_crc@bad-pixel-format.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-bmg: [SKIP][239] ([Intel XE#1435]) -> [SKIP][240] ([Intel XE#6703])
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-1/igt@kms_setmode@invalid-clone-exclusive-crtc.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_sharpness_filter@filter-basic:
- shard-bmg: [SKIP][241] ([Intel XE#6703]) -> [SKIP][242] ([Intel XE#6503])
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@kms_sharpness_filter@filter-basic.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@kms_sharpness_filter@filter-basic.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [SKIP][243] ([Intel XE#2426] / [Intel XE#5848]) -> [SKIP][244] ([Intel XE#6703])
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern.html
* igt@xe_compute@eu-busy-10s:
- shard-bmg: [SKIP][245] ([Intel XE#6599]) -> [SKIP][246] ([Intel XE#6703])
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-3/igt@xe_compute@eu-busy-10s.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@xe_compute@eu-busy-10s.html
* igt@xe_eudebug@multigpu-basic-client:
- shard-bmg: [SKIP][247] ([Intel XE#6703]) -> [SKIP][248] ([Intel XE#4837])
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_eudebug@multigpu-basic-client.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-1/igt@xe_eudebug@multigpu-basic-client.html
* igt@xe_evict@evict-threads-small-multi-queue:
- shard-bmg: [SKIP][249] ([Intel XE#6703]) -> [SKIP][250] ([Intel XE#7140])
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_evict@evict-threads-small-multi-queue.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-3/igt@xe_evict@evict-threads-small-multi-queue.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind:
- shard-bmg: [SKIP][251] ([Intel XE#6703]) -> [SKIP][252] ([Intel XE#2322] / [Intel XE#7372]) +1 other test skip
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-10/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind:
- shard-bmg: [SKIP][253] ([Intel XE#2322] / [Intel XE#7372]) -> [SKIP][254] ([Intel XE#6703]) +4 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-rebind:
- shard-bmg: [SKIP][255] ([Intel XE#6703]) -> [SKIP][256] ([Intel XE#7136])
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-rebind.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-10/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-rebind.html
* igt@xe_exec_fault_mode@many-multi-queue-invalid-fault:
- shard-bmg: [SKIP][257] ([Intel XE#7136]) -> [SKIP][258] ([Intel XE#6703]) +4 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_exec_fault_mode@many-multi-queue-invalid-fault.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@xe_exec_fault_mode@many-multi-queue-invalid-fault.html
* igt@xe_exec_multi_queue@many-queues-basic:
- shard-bmg: [SKIP][259] ([Intel XE#6703]) -> [SKIP][260] ([Intel XE#6874]) +4 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_exec_multi_queue@many-queues-basic.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-4/igt@xe_exec_multi_queue@many-queues-basic.html
* igt@xe_exec_multi_queue@many-queues-basic-smem:
- shard-bmg: [SKIP][261] ([Intel XE#6874]) -> [SKIP][262] ([Intel XE#6703]) +8 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@xe_exec_multi_queue@many-queues-basic-smem.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@xe_exec_multi_queue@many-queues-basic-smem.html
* igt@xe_exec_sip_eudebug@breakpoint-writesip-nodebug:
- shard-bmg: [SKIP][263] ([Intel XE#4837]) -> [SKIP][264] ([Intel XE#6703]) +2 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-5/igt@xe_exec_sip_eudebug@breakpoint-writesip-nodebug.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@xe_exec_sip_eudebug@breakpoint-writesip-nodebug.html
* igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr:
- shard-bmg: [SKIP][265] ([Intel XE#7138]) -> [SKIP][266] ([Intel XE#6703]) +2 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-9/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr.html
* igt@xe_exec_threads@threads-multi-queue-fd-userptr-rebind:
- shard-bmg: [SKIP][267] ([Intel XE#6703]) -> [SKIP][268] ([Intel XE#7138]) +1 other test skip
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-fd-userptr-rebind.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-10/igt@xe_exec_threads@threads-multi-queue-fd-userptr-rebind.html
* igt@xe_pm@d3cold-mmap-system:
- shard-bmg: [SKIP][269] ([Intel XE#6703]) -> [SKIP][270] ([Intel XE#2284] / [Intel XE#7370])
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-2/igt@xe_pm@d3cold-mmap-system.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-1/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pm@s3-d3cold-basic-exec:
- shard-bmg: [SKIP][271] ([Intel XE#2284] / [Intel XE#7370]) -> [SKIP][272] ([Intel XE#6703])
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-7/igt@xe_pm@s3-d3cold-basic-exec.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@xe_pm@s3-d3cold-basic-exec.html
* igt@xe_pxp@pxp-termination-key-update-post-suspend:
- shard-bmg: [SKIP][273] ([Intel XE#4733] / [Intel XE#7417]) -> [SKIP][274] ([Intel XE#6703])
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8807/shard-bmg-4/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/shard-bmg-2/igt@xe_pxp@pxp-termination-key-update-post-suspend.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#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#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#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[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#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[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#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557
[Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
[Intel XE#6627]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6627
[Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
[Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
[Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
[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#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901
[Intel XE#6927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6927
[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#7086]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7086
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
[Intel XE#7194]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7194
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7334]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7334
[Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
[Intel XE#7344]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7344
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7359]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7359
[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#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
[Intel XE#7402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7402
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7419
[Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
[Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439
[Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442
[Intel XE#7444]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7444
[Intel XE#7445]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7445
[Intel XE#7447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7447
[Intel XE#7449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7449
[Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
[Intel XE#7578]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7578
[Intel XE#7591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7591
[Intel XE#7621]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7621
[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_8807 -> IGTPW_14798
* Linux: xe-4735-113073d07f958385b5b80d29b62e10d2cf0181d6 -> xe-4740-c479cdf62a3f9a6101dd020abbc471f35142b3d1
IGTPW_14798: 14798
IGT_8807: 7f44d96d705f1583d689f1f8c2275b685b4ca11d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4735-113073d07f958385b5b80d29b62e10d2cf0181d6: 113073d07f958385b5b80d29b62e10d2cf0181d6
xe-4740-c479cdf62a3f9a6101dd020abbc471f35142b3d1: c479cdf62a3f9a6101dd020abbc471f35142b3d1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14798/index.html
[-- Attachment #2: Type: text/html, Size: 87637 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH i-g-t] tests/xe_pat: Add subtests for validating cached pagetables
2026-03-17 19:37 [PATCH i-g-t] tests/xe_pat: Add subtests for validating cached pagetables Zbigniew Kempczyński
` (3 preceding siblings ...)
2026-03-19 15:33 ` ✗ Xe.CI.FULL: " Patchwork
@ 2026-03-25 17:37 ` Matthew Auld
4 siblings, 0 replies; 6+ messages in thread
From: Matthew Auld @ 2026-03-25 17:37 UTC (permalink / raw)
To: Zbigniew Kempczyński, igt-dev
On 17/03/2026 19:37, Zbigniew Kempczyński wrote:
> For platforms where pagetables might be cached (WB and 2-way coherency)
> verify there're no pagefaults when walker goes over partially valid
> cachelines.
>
> Introduced subtests utilize pagetables on different levels with different
> offset selection strategies - sequential and randomized. Sequential
> binds two PTEs per same cacheline whereas randomized distributes binds
> "equally" (with the respect of level set size). Additionally PAT+PTE
> subtest rebinds on same PTE replacing normal bind to NULL and vice-versa
> validating pagetable walk uses updated entries and objects underneath
> contain expected data.
>
> Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> Cc: Matthew Auld <matthew.auld@intel.com>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2026-03-25 17:37 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-17 19:37 [PATCH i-g-t] tests/xe_pat: Add subtests for validating cached pagetables Zbigniew Kempczyński
2026-03-18 2:28 ` ✓ Xe.CI.BAT: success for " Patchwork
2026-03-18 2:42 ` ✓ i915.CI.BAT: " Patchwork
2026-03-19 6:39 ` ✗ i915.CI.Full: failure " Patchwork
2026-03-19 15:33 ` ✗ Xe.CI.FULL: " Patchwork
2026-03-25 17:37 ` [PATCH i-g-t] " Matthew Auld
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox