* [PATCH i-g-t v5] tests/intel/xe_prefetch_fault: Add SVM and hit-under-miss validation
@ 2026-03-23 9:25 Varun Gupta
2026-03-23 15:18 ` ✓ Xe.CI.BAT: success for tests/intel/xe_prefetch_fault: Add SVM and hit-under-miss validation (rev5) Patchwork
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Varun Gupta @ 2026-03-23 9:25 UTC (permalink / raw)
To: igt-dev; +Cc: nishit.sharma, priyanka.dandamudi
Add a second batch to validate hit-under-miss behavior: placing the BB
at PREFETCH_ADDR ensures the page is already mapped when the shader
prefetch runs, so the prefetch fault counter should not increment.
Add SVM mode (prefetch-fault-svm subtest) that creates the VM with
CPU_ADDR_MIRROR and uses mmap() at PREFETCH_ADDR to make the page
GPU-accessible before the hit-under-miss batch.
Other changes:
- Extract PREFETCH_ADDR and USER_FENCE_VALUE into defines
- Update stat name to 'invalid_prefetch_pagefault_count'
- Add missing cleanup (intel_buf_destroy, xe_exec_queue_destroy,
xe_vm_destroy)
v2:
- Move xe_vm_create() before if(svm) as it is common to both paths (Nishit)
- Separate SVM and non-SVM specific code into if/else blocks (Nishit)
- Add BB_OFFSET and BB_OFFSET_SVM defines (Nishit)
- Add comments wherever needed (Nishit)
v3:
- Drop const from bb_offset and bb_offset2 (Nishit)
- Rename prefetch_pos to prefetch_post (Nishit)
v4:
- Fix build error: misplaced closing bracket.
v5:
- Use xe_supports_faults() in fixture to probe SVM support and store
in svm_supported bool; skip prefetch-fault-svm early with igt_skip() (Priyanka)
Reviewed-by: Nishit Sharma <nishit.sharma@intel.com>
Reviewed-by: Priyanka Dandamudi <priyanka.dandamudi@intel.com>
Signed-off-by: Varun Gupta <varun.gupta@intel.com>
---
tests/intel/xe_prefetch_fault.c | 133 ++++++++++++++++++++++++++------
1 file changed, 108 insertions(+), 25 deletions(-)
diff --git a/tests/intel/xe_prefetch_fault.c b/tests/intel/xe_prefetch_fault.c
index 4a143374a..fcbf305b5 100644
--- a/tests/intel/xe_prefetch_fault.c
+++ b/tests/intel/xe_prefetch_fault.c
@@ -25,6 +25,10 @@
#define WALKER_Y_DIM 1
#define PAGE_SIZE 4096
#define COLOR_C4 0xC4C4C4C4
+#define USER_FENCE_VALUE 0xdeadbeefdeadbeefull
+#define PREFETCH_ADDR 0x1f000000
+#define BB_OFFSET 0x1b000000
+#define BB_OFFSET_SVM 0x2b000000
struct dim_t {
uint32_t x;
@@ -118,7 +122,7 @@ static struct gpgpu_shader *get_prefetch_shader(int fd)
static struct gpgpu_shader *shader;
shader = gpgpu_shader_create(fd);
- gpgpu_shader__prefetch_fault(shader, xe_canonical_va(fd, 0x1f000000));
+ gpgpu_shader__prefetch_fault(shader, xe_canonical_va(fd, PREFETCH_ADDR));
gpgpu_shader__eot(shader);
return shader;
@@ -126,73 +130,139 @@ static struct gpgpu_shader *get_prefetch_shader(int fd)
/**
* SUBTEST: prefetch-fault
- * Description: Validate L1/L2 cache prefetch fault.
+ * Description: Validate prefetch fault and hit-under-miss behavior
+ * Run type: FULL
+ *
+ * SUBTEST: prefetch-fault-svm
+ * Description: Validate prefetch fault and hit-under-miss behavior in SVM mode
* Run type: FULL
*/
-
-static void test_prefetch(int fd, struct drm_xe_engine_class_instance *hwe)
+static void test_prefetch_fault(int fd, struct drm_xe_engine_class_instance *hwe, bool svm)
{
- /* faulty address 0x1f000000 should be beyond bb_offset+bb_size. */
- const uint64_t bb_offset = 0x1b000000;
+ uint64_t bb_offset = BB_OFFSET;
+ /*
+ * For the hit-under-miss run, place the batch at PREFETCH_ADDR in
+ * non-SVM mode so the BO bind maps that page before the shader runs.
+ * In SVM mode PREFETCH_ADDR is reserved for the mmap, so use a
+ * separate offset that doesn't collide with it.
+ */
+ uint64_t bb_offset2 = svm ? BB_OFFSET_SVM : PREFETCH_ADDR;
const size_t bb_size = 4096;
- struct dim_t w_dim;
+ static const char *stat = "invalid_prefetch_pagefault_count";
+ struct dim_t w_dim = { .x = WALKER_X_DIM, .y = WALKER_Y_DIM };
struct gpgpu_shader *shader;
struct intel_bb *ibb;
struct intel_buf *buf;
- uint32_t *ptr;
uint32_t exec_queue_id, vm;
- int prefetch_pre, prefetch_pos;
- static const char *stat = "prefetch_pagefault_count";
-
- w_dim.x = WALKER_X_DIM;
- w_dim.y = WALKER_Y_DIM;
+ void *cpu_data = NULL;
+ int prefetch_pre, prefetch_post;
+ uint32_t *ptr;
buf = create_buf(fd, w_dim.x, w_dim.y, COLOR_C4);
- prefetch_pre = xe_gt_stats_get_count(fd, hwe->gt_id, stat);
-
vm = xe_vm_create(fd, DRM_XE_VM_CREATE_FLAG_LR_MODE |
DRM_XE_VM_CREATE_FLAG_FAULT_MODE, 0);
+ if (svm) {
+ /*
+ * Enable SVM: mirror the full VA space so GPU page faults are
+ * resolved via HMM against the CPU page tables.
+ */
+ struct xe_device *xe = xe_device_get(fd);
+ uint64_t vm_sync = 0;
+ struct drm_xe_sync sync[1] = {
+ { .type = DRM_XE_SYNC_TYPE_USER_FENCE, .flags = DRM_XE_SYNC_FLAG_SIGNAL,
+ .timeline_value = USER_FENCE_VALUE },
+ };
+
+ sync[0].addr = to_user_pointer(&vm_sync);
+ __xe_vm_bind_assert(fd, vm, 0, 0, 0, 0, 0x1ull << xe->va_bits,
+ DRM_XE_VM_BIND_OP_MAP,
+ DRM_XE_VM_BIND_FLAG_CPU_ADDR_MIRROR,
+ sync, 1, 0, 0);
+ xe_wait_ufence(fd, &vm_sync, USER_FENCE_VALUE, 0, NSEC_PER_SEC);
+ }
+
exec_queue_id = xe_exec_queue_create(fd, vm, hwe, 0);
- ibb = xe_bb_create_on_offset(fd, exec_queue_id, vm,
- bb_offset, bb_size);
+ prefetch_pre = xe_gt_stats_get_count(fd, hwe->gt_id, stat);
+
+ /* First run: PREFETCH_ADDR is unmapped, so each shader lane raises a prefetch fault. */
+ ibb = xe_bb_create_on_offset(fd, exec_queue_id, vm, bb_offset, bb_size);
intel_bb_set_lr_mode(ibb, true);
shader = get_prefetch_shader(fd);
-
gpgpu_shader_exec(ibb, buf, w_dim.x, w_dim.y, shader, NULL, 0, 0);
-
gpgpu_shader_destroy(shader);
+ intel_bb_sync(ibb);
+ intel_bb_destroy(ibb);
+ prefetch_post = xe_gt_stats_get_count(fd, hwe->gt_id, stat);
+ igt_assert_eq(prefetch_post, prefetch_pre + w_dim.x * w_dim.y);
+
+ /*
+ * Hit-under-miss: ensure the page at PREFETCH_ADDR is already mapped
+ * before the prefetch shader runs again. The fault is resolved
+ * successfully so the prefetch counter must not change.
+ *
+ * SVM: mmap at PREFETCH_ADDR creates a CPU page table entry.
+ * The kernel resolves the GPU pagefault via HMM.
+ * Non-SVM: placing the batch buffer at PREFETCH_ADDR causes the
+ * BO fault path to map the page.
+ */
+ if (svm) {
+ cpu_data = mmap((void *)PREFETCH_ADDR, PAGE_SIZE,
+ PROT_READ | PROT_WRITE,
+ MAP_PRIVATE | MAP_ANONYMOUS | MAP_FIXED,
+ -1, 0);
+ igt_assert(cpu_data == (void *)PREFETCH_ADDR);
+ /* Touch the page to populate the CPU PTE so HMM can resolve the GPU fault. */
+ memset(cpu_data, 0xAB, PAGE_SIZE);
+ prefetch_pre = xe_gt_stats_get_count(fd, hwe->gt_id, stat);
+ } else {
+ prefetch_pre = prefetch_post;
+ }
+ ibb = xe_bb_create_on_offset(fd, exec_queue_id, vm, bb_offset2, bb_size);
+ intel_bb_set_lr_mode(ibb, true);
+
+ shader = get_prefetch_shader(fd);
+ gpgpu_shader_exec(ibb, buf, w_dim.x, w_dim.y, shader, NULL, 0, 0);
+ gpgpu_shader_destroy(shader);
intel_bb_sync(ibb);
- ptr = xe_bo_mmap_ext(fd, buf->handle, buf->size, PROT_READ);
+ prefetch_post = xe_gt_stats_get_count(fd, hwe->gt_id, stat);
+ igt_assert_eq(prefetch_post, prefetch_pre);
+ /* Verify buffer contents */
+ ptr = xe_bo_mmap_ext(fd, buf->handle, buf->size, PROT_READ);
for (int j = 0; j < w_dim.y; j++)
for (int i = 0; i < w_dim.x; i++) {
igt_assert_f(ptr[j * w_dim.x + i] == COLOR_C4,
"Expected 0x%02x, found 0x%02x at (%d,%d)\n",
COLOR_C4, ptr[j * w_dim.x + i], i, j);
}
- /* Validate prefetch count. */
- prefetch_pos = xe_gt_stats_get_count(fd, hwe->gt_id, stat);
- igt_assert_eq(prefetch_pos, prefetch_pre + w_dim.x * w_dim.y);
-
munmap(ptr, buf->size);
+ /* Cleanup */
+ if (svm && cpu_data)
+ munmap(cpu_data, PAGE_SIZE);
+
intel_bb_destroy(ibb);
+ intel_buf_destroy(buf);
+ xe_exec_queue_destroy(fd, exec_queue_id);
+ xe_vm_destroy(fd, vm);
}
int igt_main()
{
struct drm_xe_engine_class_instance *hwe;
+ bool svm_supported;
int fd;
igt_fixture() {
fd = drm_open_driver(DRIVER_XE);
igt_require(intel_graphics_ver(intel_get_drm_devid(fd)) >= IP_VER(35, 0));
+ svm_supported = !xe_supports_faults(fd);
}
igt_subtest_with_dynamic("prefetch-fault") {
@@ -201,7 +271,20 @@ int igt_main()
hwe->engine_class == DRM_XE_ENGINE_CLASS_COMPUTE) {
igt_dynamic_f("%s%d", xe_engine_class_string(hwe->engine_class),
hwe->engine_instance)
- test_prefetch(fd, hwe);
+ test_prefetch_fault(fd, hwe, false);
+ }
+ }
+ }
+
+ igt_subtest_with_dynamic("prefetch-fault-svm") {
+ if (!svm_supported)
+ igt_skip("SVM not supported on this device, skipping.\n");
+ xe_for_each_engine(fd, hwe) {
+ if (hwe->engine_class == DRM_XE_ENGINE_CLASS_RENDER ||
+ hwe->engine_class == DRM_XE_ENGINE_CLASS_COMPUTE) {
+ igt_dynamic_f("%s%d", xe_engine_class_string(hwe->engine_class),
+ hwe->engine_instance)
+ test_prefetch_fault(fd, hwe, true);
}
}
}
--
2.43.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* ✓ Xe.CI.BAT: success for tests/intel/xe_prefetch_fault: Add SVM and hit-under-miss validation (rev5)
2026-03-23 9:25 [PATCH i-g-t v5] tests/intel/xe_prefetch_fault: Add SVM and hit-under-miss validation Varun Gupta
@ 2026-03-23 15:18 ` Patchwork
2026-03-23 16:13 ` ✓ i915.CI.BAT: " Patchwork
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2026-03-23 15:18 UTC (permalink / raw)
To: Varun Gupta; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2789 bytes --]
== Series Details ==
Series: tests/intel/xe_prefetch_fault: Add SVM and hit-under-miss validation (rev5)
URL : https://patchwork.freedesktop.org/series/163015/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8819_BAT -> XEIGTPW_14834_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (14 -> 14)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_14834_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1:
- bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#7483])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
#### Possible fixes ####
* igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1:
- bat-adlp-7: [DMESG-WARN][3] ([Intel XE#7483]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html
* igt@xe_waitfence@abstime:
- bat-dg2-oem2: [TIMEOUT][5] ([Intel XE#6506]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/bat-dg2-oem2/igt@xe_waitfence@abstime.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/bat-dg2-oem2/igt@xe_waitfence@abstime.html
* igt@xe_waitfence@reltime:
- bat-bmg-2: [FAIL][7] ([Intel XE#6520]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/bat-bmg-2/igt@xe_waitfence@reltime.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/bat-bmg-2/igt@xe_waitfence@reltime.html
- bat-dg2-oem2: [FAIL][9] ([Intel XE#6520]) -> [PASS][10]
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/bat-dg2-oem2/igt@xe_waitfence@reltime.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/bat-dg2-oem2/igt@xe_waitfence@reltime.html
[Intel XE#6506]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6506
[Intel XE#6520]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6520
[Intel XE#7483]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7483
Build changes
-------------
* IGT: IGT_8819 -> IGTPW_14834
IGTPW_14834: 14834
IGT_8819: 8819
xe-4762-5cb7d14d9bd2061386a0192a4649626a3e3a5ec3: 5cb7d14d9bd2061386a0192a4649626a3e3a5ec3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/index.html
[-- Attachment #2: Type: text/html, Size: 3583 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* ✓ i915.CI.BAT: success for tests/intel/xe_prefetch_fault: Add SVM and hit-under-miss validation (rev5)
2026-03-23 9:25 [PATCH i-g-t v5] tests/intel/xe_prefetch_fault: Add SVM and hit-under-miss validation Varun Gupta
2026-03-23 15:18 ` ✓ Xe.CI.BAT: success for tests/intel/xe_prefetch_fault: Add SVM and hit-under-miss validation (rev5) Patchwork
@ 2026-03-23 16:13 ` Patchwork
2026-03-23 21:16 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-03-23 23:41 ` ✓ i915.CI.Full: success " Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2026-03-23 16:13 UTC (permalink / raw)
To: Varun Gupta; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2508 bytes --]
== Series Details ==
Series: tests/intel/xe_prefetch_fault: Add SVM and hit-under-miss validation (rev5)
URL : https://patchwork.freedesktop.org/series/163015/
State : success
== Summary ==
CI Bug Log - changes from IGT_8819 -> IGTPW_14834
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/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_14834 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_8819/bat-dg2-8/igt@i915_selftest@live.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/bat-dg2-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/bat-arlh-3/igt@i915_selftest@live@workarounds.html
- bat-mtlp-9: [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@i915_selftest@live@workarounds:
- bat-arls-6: [DMESG-FAIL][7] ([i915#12061]) -> [PASS][8] +1 other test pass
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/bat-arls-6/igt@i915_selftest@live@workarounds.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/bat-arls-6/igt@i915_selftest@live@workarounds.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8819 -> IGTPW_14834
CI-20190529: 20190529
CI_DRM_18191: 5cb7d14d9bd2061386a0192a4649626a3e3a5ec3 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14834: 14834
IGT_8819: 8819
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/index.html
[-- Attachment #2: Type: text/html, Size: 3394 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* ✗ Xe.CI.FULL: failure for tests/intel/xe_prefetch_fault: Add SVM and hit-under-miss validation (rev5)
2026-03-23 9:25 [PATCH i-g-t v5] tests/intel/xe_prefetch_fault: Add SVM and hit-under-miss validation Varun Gupta
2026-03-23 15:18 ` ✓ Xe.CI.BAT: success for tests/intel/xe_prefetch_fault: Add SVM and hit-under-miss validation (rev5) Patchwork
2026-03-23 16:13 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-03-23 21:16 ` Patchwork
2026-03-23 23:41 ` ✓ i915.CI.Full: success " Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2026-03-23 21:16 UTC (permalink / raw)
To: Varun Gupta; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 47259 bytes --]
== Series Details ==
Series: tests/intel/xe_prefetch_fault: Add SVM and hit-under-miss validation (rev5)
URL : https://patchwork.freedesktop.org/series/163015/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8819_FULL -> XEIGTPW_14834_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_14834_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_14834_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_14834_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_exec_system_allocator@eu-fault-64k-once-device-host:
- shard-bmg: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-7/igt@xe_exec_system_allocator@eu-fault-64k-once-device-host.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-10/igt@xe_exec_system_allocator@eu-fault-64k-once-device-host.html
* igt@xe_prefetch_fault@prefetch-fault-svm (NEW):
- shard-bmg: NOTRUN -> [SKIP][3]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-4/igt@xe_prefetch_fault@prefetch-fault-svm.html
- shard-lnl: NOTRUN -> [SKIP][4]
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-lnl-1/igt@xe_prefetch_fault@prefetch-fault-svm.html
* igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout:
- shard-bmg: [PASS][5] -> [DMESG-WARN][6] +2 other tests dmesg-warn
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-3/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-3/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html
New tests
---------
New tests have been introduced between XEIGT_8819_FULL and XEIGTPW_14834_FULL:
### New IGT tests (1) ###
* igt@xe_prefetch_fault@prefetch-fault-svm:
- Statuses : 2 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in XEIGTPW_14834_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-bmg: [PASS][7] -> [ABORT][8] ([Intel XE#5545]) +1 other test abort
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-5/igt@kms_atomic_transition@plane-all-modeset-transition.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2327])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-6/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#1124]) +2 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-7/igt@kms_big_fb@y-tiled-8bpp-rotate-0.html
* igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2314] / [Intel XE#2894] / [Intel XE#7373])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-1/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#367] / [Intel XE#7354])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-9/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2887]) +5 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-1/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#3432]) +2 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-b-dp-2:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2652]) +11 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-b-dp-2.html
* igt@kms_chamelium_color@ctm-max:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2325] / [Intel XE#7358])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-5/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2252]) +3 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-6/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_content_protection@mei-interface:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#7642])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-5/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][19] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-7/igt@kms_content_protection@srm@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2320]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_legacy@cursor-vs-flip-varying-size:
- shard-bmg: [PASS][21] -> [DMESG-WARN][22] ([Intel XE#5354])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-4/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-6/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [PASS][23] -> [FAIL][24] ([Intel XE#7571])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-10/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2244])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: [PASS][26] -> [SKIP][27] ([Intel XE#2316]) +5 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_flip@2x-nonexisting-fb.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-5/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@flip-vs-suspend:
- shard-bmg: [PASS][28] -> [INCOMPLETE][29] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-9/igt@kms_flip@flip-vs-suspend.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-9/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#7179]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-2/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html
* igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2311]) +9 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#4141]) +5 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#7061] / [Intel XE#7356])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2313]) +14 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2350] / [Intel XE#7503])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-5/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2312]) +5 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#7283])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-2/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#1489]) +4 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-2/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr@fbc-pr-cursor-plane-onoff:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2234] / [Intel XE#2850]) +5 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-10/igt@kms_psr@fbc-pr-cursor-plane-onoff.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#1406] / [Intel XE#2414])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_sharpness_filter@invalid-filter-with-plane:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#6503]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-6/igt@kms_sharpness_filter@invalid-filter-with-plane.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [PASS][43] -> [FAIL][44] ([Intel XE#4459]) +1 other test fail
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@kms_vrr@negative-basic:
- shard-bmg: [PASS][45] -> [SKIP][46] ([Intel XE#1499])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-7/igt@kms_vrr@negative-basic.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-3/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
- shard-lnl: [PASS][47] -> [FAIL][48] ([Intel XE#2142]) +1 other test fail
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-lnl-5/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-lnl-3/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
* igt@xe_compute@ccs-mode-basic:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#6599])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-2/igt@xe_compute@ccs-mode-basic.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [PASS][50] -> [INCOMPLETE][51] ([Intel XE#6321])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-3/igt@xe_evict@evict-mixed-many-threads-small.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-2/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_evict@evict-small-multi-queue-cm:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#7140])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-5/igt@xe_evict@evict-small-multi-queue-cm.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2322] / [Intel XE#7372]) +2 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-10/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#7136]) +8 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-7/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr.html
* igt@xe_exec_multi_queue@two-queues-priority:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#6874]) +15 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-2/igt@xe_exec_multi_queue@two-queues-priority.html
* igt@xe_exec_sip_eudebug@breakpoint-writesip-nodebug:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#7636]) +6 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-6/igt@xe_exec_sip_eudebug@breakpoint-writesip-nodebug.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma:
- shard-lnl: [PASS][57] -> [FAIL][58] ([Intel XE#5625])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-lnl-6/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-lnl-7/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-single-vma.html
* igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#7138]) +5 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-4/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early:
- shard-bmg: [PASS][60] -> [ABORT][61] ([Intel XE#7578])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-10/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html
* igt@xe_multigpu_svm@mgpu-migration-basic:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#6964])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-7/igt@xe_multigpu_svm@mgpu-migration-basic.html
* igt@xe_pm@d3cold-i2c:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#5694] / [Intel XE#7370])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-2/igt@xe_pm@d3cold-i2c.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2284] / [Intel XE#7370]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-1/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pxp@pxp-stale-bo-exec-post-rpm:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#4733] / [Intel XE#7417]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-6/igt@xe_pxp@pxp-stale-bo-exec-post-rpm.html
* igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#944])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-1/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
* igt@xe_sriov_flr@flr-twice:
- shard-bmg: [PASS][67] -> [FAIL][68] ([Intel XE#6569])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@xe_sriov_flr@flr-twice.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-7/igt@xe_sriov_flr@flr-twice.html
#### Possible fixes ####
* igt@intel_hwmon@hwmon-write:
- shard-bmg: [FAIL][69] ([Intel XE#7445]) -> [PASS][70]
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-10/igt@intel_hwmon@hwmon-write.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-9/igt@intel_hwmon@hwmon-write.html
* igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p:
- shard-bmg: [SKIP][71] ([Intel XE#7621]) -> [PASS][72]
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-4/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-5/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-bmg: [SKIP][73] ([Intel XE#2314] / [Intel XE#2894] / [Intel XE#7373]) -> [PASS][74]
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-3/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-7/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
- shard-bmg: [SKIP][75] ([Intel XE#2291]) -> [PASS][76] +3 other tests pass
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-5/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-9/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-bmg: [SKIP][77] ([Intel XE#2291] / [Intel XE#7343]) -> [PASS][78]
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-10/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-bmg: [SKIP][79] ([Intel XE#4294]) -> [PASS][80]
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-5/igt@kms_dp_linktrain_fallback@dp-fallback.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-7/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-bmg: [SKIP][81] ([Intel XE#2316]) -> [PASS][82] +8 other tests pass
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-5/igt@kms_flip@2x-plain-flip-fb-recreate.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@flip-vs-expired-vblank@a-edp1:
- shard-lnl: [FAIL][83] ([Intel XE#301]) -> [PASS][84] +1 other test pass
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [SKIP][85] ([Intel XE#1503]) -> [PASS][86]
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-4/igt@kms_hdr@invalid-hdr.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-3/igt@kms_hdr@invalid-hdr.html
* igt@kms_plane_cursor@primary:
- shard-bmg: [FAIL][87] -> [PASS][88] +1 other test pass
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_plane_cursor@primary.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-10/igt@kms_plane_cursor@primary.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-bmg: [SKIP][89] ([Intel XE#4596]) -> [PASS][90]
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-x.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [FAIL][91] ([Intel XE#7340] / [Intel XE#7504]) -> [PASS][92]
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-lnl-4/igt@kms_pm_dc@dc5-dpms.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-lnl-3/igt@kms_pm_dc@dc5-dpms.html
* igt@xe_exec_system_allocator@once-mmap-mlock-nomemset:
- shard-bmg: [DMESG-FAIL][93] ([Intel XE#5545] / [Intel XE#6652]) -> [PASS][94]
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@xe_exec_system_allocator@once-mmap-mlock-nomemset.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-6/igt@xe_exec_system_allocator@once-mmap-mlock-nomemset.html
* igt@xe_exec_system_allocator@once-mmap-race-nomemset:
- shard-bmg: [SKIP][95] ([Intel XE#6557] / [Intel XE#6703]) -> [PASS][96] +1 other test pass
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@xe_exec_system_allocator@once-mmap-race-nomemset.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-2/igt@xe_exec_system_allocator@once-mmap-race-nomemset.html
* igt@xe_exec_system_allocator@threads-many-stride-free-nomemset:
- shard-bmg: [SKIP][97] ([Intel XE#6703]) -> [PASS][98] +100 other tests pass
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@xe_exec_system_allocator@threads-many-stride-free-nomemset.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-10/igt@xe_exec_system_allocator@threads-many-stride-free-nomemset.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_device_probe_early:
- shard-bmg: [ABORT][99] -> [PASS][100]
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-10/igt@xe_fault_injection@inject-fault-probe-function-xe_device_probe_early.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-10/igt@xe_fault_injection@inject-fault-probe-function-xe_device_probe_early.html
* igt@xe_module_load@many-reload:
- shard-bmg: [DMESG-WARN][101] -> [PASS][102]
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@xe_module_load@many-reload.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-1/igt@xe_module_load@many-reload.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-bmg: [FAIL][103] ([Intel XE#6569]) -> [PASS][104]
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-7/igt@xe_sriov_flr@flr-each-isolation.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-4/igt@xe_sriov_flr@flr-each-isolation.html
#### Warnings ####
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-bmg: [SKIP][105] ([Intel XE#6703]) -> [SKIP][106] ([Intel XE#1124]) +2 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
- shard-bmg: [SKIP][107] ([Intel XE#6703]) -> [SKIP][108] ([Intel XE#2314] / [Intel XE#2894] / [Intel XE#7373])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-2/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-bmg: [SKIP][109] ([Intel XE#6703]) -> [SKIP][110] ([Intel XE#2652])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs:
- shard-bmg: [SKIP][111] ([Intel XE#6703]) -> [SKIP][112] ([Intel XE#2887]) +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-4/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs.html
* igt@kms_chamelium_frames@dp-frame-dump:
- shard-bmg: [SKIP][113] ([Intel XE#6703]) -> [SKIP][114] ([Intel XE#2252]) +2 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_chamelium_frames@dp-frame-dump.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-1/igt@kms_chamelium_frames@dp-frame-dump.html
* igt@kms_content_protection@legacy:
- shard-bmg: [SKIP][115] ([Intel XE#7642]) -> [FAIL][116] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-3/igt@kms_content_protection@legacy.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-1/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-bmg: [FAIL][117] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) -> [SKIP][118] ([Intel XE#7642])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-7/igt@kms_content_protection@legacy-hdcp14.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-3/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_content_protection@srm:
- shard-bmg: [SKIP][119] ([Intel XE#6703]) -> [FAIL][120] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_content_protection@srm.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-7/igt@kms_content_protection@srm.html
* igt@kms_content_protection@uevent:
- shard-bmg: [FAIL][121] ([Intel XE#6707] / [Intel XE#7439]) -> [SKIP][122] ([Intel XE#7642])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-4/igt@kms_content_protection@uevent.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-5/igt@kms_content_protection@uevent.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][123] ([Intel XE#2311]) -> [SKIP][124] ([Intel XE#2312]) +7 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-render:
- shard-bmg: [SKIP][125] ([Intel XE#6703]) -> [SKIP][126] ([Intel XE#2311]) +2 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-render.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][127] ([Intel XE#6703]) -> [SKIP][128] ([Intel XE#4141])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][129] ([Intel XE#4141]) -> [SKIP][130] ([Intel XE#2312]) +3 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][131] ([Intel XE#2312]) -> [SKIP][132] ([Intel XE#4141]) +6 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt:
- shard-bmg: [SKIP][133] ([Intel XE#6703]) -> [SKIP][134] ([Intel XE#7061] / [Intel XE#7356])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][135] ([Intel XE#2312]) -> [SKIP][136] ([Intel XE#2311]) +12 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-wc.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][137] ([Intel XE#2312]) -> [SKIP][138] ([Intel XE#2313]) +13 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][139] ([Intel XE#2313]) -> [SKIP][140] ([Intel XE#2312]) +7 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
- shard-bmg: [SKIP][141] ([Intel XE#6703]) -> [SKIP][142] ([Intel XE#2313]) +2 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][143] ([Intel XE#6703]) -> [SKIP][144] ([Intel XE#2312]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][145] ([Intel XE#3544]) -> [SKIP][146] ([Intel XE#3374] / [Intel XE#3544])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping:
- shard-bmg: [SKIP][147] ([Intel XE#6703]) -> [SKIP][148] ([Intel XE#7283])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-7/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-bmg: [SKIP][149] ([Intel XE#6703]) -> [SKIP][150] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_pm_rpm@modeset-lpsp-stress.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-6/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-bmg: [SKIP][151] ([Intel XE#6703]) -> [SKIP][152] ([Intel XE#1489]) +1 other test skip
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-6/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr@pr-primary-render:
- shard-bmg: [SKIP][153] ([Intel XE#6703]) -> [SKIP][154] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_psr@pr-primary-render.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-7/igt@kms_psr@pr-primary-render.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-bmg: [SKIP][155] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) -> [SKIP][156] ([Intel XE#3904] / [Intel XE#7342]) +2 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-bmg: [SKIP][157] ([Intel XE#3904] / [Intel XE#7342]) -> [SKIP][158] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) +1 other test skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_rotation_crc@sprite-rotation-90.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-3/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [SKIP][159] ([Intel XE#2426] / [Intel XE#5848]) -> [FAIL][160] ([Intel XE#1729] / [Intel XE#7424])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-bmg: [SKIP][161] ([Intel XE#6703]) -> [SKIP][162] ([Intel XE#1499])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@kms_vrr@seamless-rr-switch-virtual.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-7/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@xe_create@multigpu-create-massive-size:
- shard-bmg: [SKIP][163] ([Intel XE#6703]) -> [SKIP][164] ([Intel XE#2504] / [Intel XE#7319] / [Intel XE#7350])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@xe_create@multigpu-create-massive-size.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-10/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_eudebug@basic-close:
- shard-bmg: [SKIP][165] ([Intel XE#6703]) -> [SKIP][166] ([Intel XE#7636])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@xe_eudebug@basic-close.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-9/igt@xe_eudebug@basic-close.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind:
- shard-bmg: [SKIP][167] ([Intel XE#6703]) -> [SKIP][168] ([Intel XE#2322] / [Intel XE#7372]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-9/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm:
- shard-bmg: [SKIP][169] ([Intel XE#6703]) -> [SKIP][170] ([Intel XE#7136])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-5/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm.html
* igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-close-fd:
- shard-bmg: [SKIP][171] ([Intel XE#6703]) -> [SKIP][172] ([Intel XE#6874]) +2 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-close-fd.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-1/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-close-fd.html
* igt@xe_exec_system_allocator@many-stride-new-prefetch:
- shard-bmg: [SKIP][173] ([Intel XE#6703]) -> [INCOMPLETE][174] ([Intel XE#7098])
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@xe_exec_system_allocator@many-stride-new-prefetch.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-2/igt@xe_exec_system_allocator@many-stride-new-prefetch.html
* igt@xe_exec_threads@threads-multi-queue-fd-basic:
- shard-bmg: [SKIP][175] ([Intel XE#6703]) -> [SKIP][176] ([Intel XE#7138])
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8819/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-fd-basic.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/shard-bmg-7/igt@xe_exec_threads@threads-multi-queue-fd-basic.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
[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#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#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#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
[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#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
[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#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#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#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[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#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
[Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[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#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
[Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
[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#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7098
[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#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7319]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7319
[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#7350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7350
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[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#7373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7373
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
[Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439
[Intel XE#7445]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7445
[Intel XE#7503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7503
[Intel XE#7504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7504
[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#7621]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7621
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8819 -> IGTPW_14834
IGTPW_14834: 14834
IGT_8819: 8819
xe-4762-5cb7d14d9bd2061386a0192a4649626a3e3a5ec3: 5cb7d14d9bd2061386a0192a4649626a3e3a5ec3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14834/index.html
[-- Attachment #2: Type: text/html, Size: 56166 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* ✓ i915.CI.Full: success for tests/intel/xe_prefetch_fault: Add SVM and hit-under-miss validation (rev5)
2026-03-23 9:25 [PATCH i-g-t v5] tests/intel/xe_prefetch_fault: Add SVM and hit-under-miss validation Varun Gupta
` (2 preceding siblings ...)
2026-03-23 21:16 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-03-23 23:41 ` Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2026-03-23 23:41 UTC (permalink / raw)
To: Varun Gupta; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 130148 bytes --]
== Series Details ==
Series: tests/intel/xe_prefetch_fault: Add SVM and hit-under-miss validation (rev5)
URL : https://patchwork.freedesktop.org/series/163015/
State : success
== Summary ==
CI Bug Log - changes from IGT_8819_full -> IGTPW_14834_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/index.html
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in IGTPW_14834_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-dg2: NOTRUN -> [SKIP][1] ([i915#8411])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-4/igt@api_intel_bb@blit-reloc-keep-cache.html
- shard-rkl: NOTRUN -> [SKIP][2] ([i915#8411])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-8/igt@api_intel_bb@blit-reloc-keep-cache.html
- shard-dg1: NOTRUN -> [SKIP][3] ([i915#8411])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-14/igt@api_intel_bb@blit-reloc-keep-cache.html
- shard-mtlp: NOTRUN -> [SKIP][4] ([i915#8411])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-3/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@api_intel_bb@crc32:
- shard-rkl: NOTRUN -> [SKIP][5] ([i915#6230])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-2/igt@api_intel_bb@crc32.html
- shard-tglu-1: NOTRUN -> [SKIP][6] ([i915#6230])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-1/igt@api_intel_bb@crc32.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-rkl: NOTRUN -> [SKIP][7] ([i915#9323]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-7/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@suspend-resume:
- shard-dg1: NOTRUN -> [SKIP][8] ([i915#9323])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-16/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][9] ([i915#12392] / [i915#13356])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-5/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_ctx_isolation@preservation-s3:
- shard-rkl: [PASS][10] -> [INCOMPLETE][11] ([i915#13356]) +1 other test incomplete
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-4/igt@gem_ctx_isolation@preservation-s3.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-6/igt@gem_ctx_isolation@preservation-s3.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-dg2: NOTRUN -> [SKIP][12] ([i915#8555])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-8/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_persistence@legacy-engines-persistence:
- shard-snb: NOTRUN -> [SKIP][13] ([i915#1099])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-snb6/igt@gem_ctx_persistence@legacy-engines-persistence.html
* igt@gem_ctx_sseu@engines:
- shard-rkl: NOTRUN -> [SKIP][14] ([i915#14544] / [i915#280])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-6/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-args:
- shard-tglu: NOTRUN -> [SKIP][15] ([i915#280])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-8/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_exec_balancer@bonded-dual:
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#4771])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-1/igt@gem_exec_balancer@bonded-dual.html
- shard-dg1: NOTRUN -> [SKIP][17] ([i915#4771])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-18/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-dg2: NOTRUN -> [SKIP][18] ([i915#4812])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-5/igt@gem_exec_balancer@bonded-false-hang.html
- shard-mtlp: NOTRUN -> [SKIP][19] ([i915#4812])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-8/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@parallel-bb-first:
- shard-tglu: NOTRUN -> [SKIP][20] ([i915#4525])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-6/igt@gem_exec_balancer@parallel-bb-first.html
* igt@gem_exec_big@single:
- shard-tglu-1: NOTRUN -> [FAIL][21] ([i915#15816])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-1/igt@gem_exec_big@single.html
* igt@gem_exec_capture@capture-invisible@lmem0:
- shard-dg2: NOTRUN -> [SKIP][22] ([i915#6334]) +2 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-3/igt@gem_exec_capture@capture-invisible@lmem0.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-glk: NOTRUN -> [SKIP][23] ([i915#6334]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-glk3/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_flush@basic-wb-rw-before-default:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#3539] / [i915#4852])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-7/igt@gem_exec_flush@basic-wb-rw-before-default.html
- shard-dg1: NOTRUN -> [SKIP][25] ([i915#3539] / [i915#4852])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-17/igt@gem_exec_flush@basic-wb-rw-before-default.html
* igt@gem_exec_reloc@basic-cpu-read-active:
- shard-rkl: NOTRUN -> [SKIP][26] ([i915#14544] / [i915#3281])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-read-active.html
* igt@gem_exec_reloc@basic-cpu-wc-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][27] ([i915#3281]) +4 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-3/igt@gem_exec_reloc@basic-cpu-wc-noreloc.html
* igt@gem_exec_reloc@basic-gtt-cpu:
- shard-rkl: NOTRUN -> [SKIP][28] ([i915#3281]) +5 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-cpu.html
* igt@gem_exec_reloc@basic-wc-cpu-noreloc:
- shard-dg1: NOTRUN -> [SKIP][29] ([i915#3281]) +6 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-19/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html
* igt@gem_exec_reloc@basic-wc-gtt:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#3281]) +11 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-3/igt@gem_exec_reloc@basic-wc-gtt.html
* igt@gem_exec_schedule@semaphore-power:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#4537] / [i915#4812])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-8/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#4860]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-1/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_fenced_exec_thrash@too-many-fences:
- shard-mtlp: NOTRUN -> [SKIP][33] ([i915#4860])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-4/igt@gem_fenced_exec_thrash@too-many-fences.html
- shard-dg1: NOTRUN -> [SKIP][34] ([i915#4860])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-17/igt@gem_fenced_exec_thrash@too-many-fences.html
* igt@gem_lmem_swapping@basic:
- shard-rkl: NOTRUN -> [SKIP][35] ([i915#4613])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-3/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@heavy-random:
- shard-glk: NOTRUN -> [SKIP][36] ([i915#4613]) +4 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-glk5/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-dg1: NOTRUN -> [SKIP][37] ([i915#12193])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-13/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][38] ([i915#4565])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-13/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html
* igt@gem_lmem_swapping@random:
- shard-tglu-1: NOTRUN -> [SKIP][39] ([i915#4613]) +2 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-1/igt@gem_lmem_swapping@random.html
* igt@gem_mmap@short-mmap:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#4083]) +4 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-7/igt@gem_mmap@short-mmap.html
* igt@gem_mmap_gtt@basic-write-cpu-read-gtt:
- shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4077]) +2 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-7/igt@gem_mmap_gtt@basic-write-cpu-read-gtt.html
* igt@gem_mmap_offset@clear-via-pagefault:
- shard-mtlp: [PASS][42] -> [TIMEOUT][43] ([i915#15478]) +1 other test timeout
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-mtlp-6/igt@gem_mmap_offset@clear-via-pagefault.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-4/igt@gem_mmap_offset@clear-via-pagefault.html
* igt@gem_mmap_wc@invalid-flags:
- shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4083]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-1/igt@gem_mmap_wc@invalid-flags.html
* igt@gem_mmap_wc@write-cpu-read-wc-unflushed:
- shard-dg1: NOTRUN -> [SKIP][45] ([i915#4083]) +2 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-16/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html
* igt@gem_partial_pwrite_pread@write-snoop:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#3282]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-7/igt@gem_partial_pwrite_pread@write-snoop.html
- shard-dg1: NOTRUN -> [SKIP][47] ([i915#3282])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-17/igt@gem_partial_pwrite_pread@write-snoop.html
- shard-mtlp: NOTRUN -> [SKIP][48] ([i915#3282])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-6/igt@gem_partial_pwrite_pread@write-snoop.html
* igt@gem_partial_pwrite_pread@writes-after-reads-display:
- shard-rkl: NOTRUN -> [SKIP][49] ([i915#3282]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-3/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
* igt@gem_pxp@hw-rejects-pxp-context:
- shard-tglu: NOTRUN -> [SKIP][50] ([i915#13398])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-10/igt@gem_pxp@hw-rejects-pxp-context.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#4270])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-7/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
- shard-snb: NOTRUN -> [SKIP][52] +88 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-snb6/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#8428]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-4/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html
* igt@gem_render_copy@y-tiled-to-vebox-linear:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#5190] / [i915#8428]) +2 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-7/igt@gem_render_copy@y-tiled-to-vebox-linear.html
* igt@gem_set_tiling_vs_gtt:
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#4079]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-17/igt@gem_set_tiling_vs_gtt.html
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4079])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-8/igt@gem_set_tiling_vs_gtt.html
* igt@gem_softpin@noreloc-s3:
- shard-rkl: [PASS][57] -> [INCOMPLETE][58] ([i915#13809])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-8/igt@gem_softpin@noreloc-s3.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-6/igt@gem_softpin@noreloc-s3.html
- shard-glk11: NOTRUN -> [INCOMPLETE][59] ([i915#13809])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-glk11/igt@gem_softpin@noreloc-s3.html
* igt@gem_tiled_pread_basic@basic:
- shard-rkl: NOTRUN -> [SKIP][60] ([i915#15656])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-7/igt@gem_tiled_pread_basic@basic.html
* igt@gem_tiled_pread_pwrite:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#4079]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-4/igt@gem_tiled_pread_pwrite.html
* igt@gem_userptr_blits@coherency-sync:
- shard-tglu: NOTRUN -> [SKIP][62] ([i915#3297]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-4/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#3297]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-8/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-tglu: NOTRUN -> [SKIP][64] ([i915#3297] / [i915#3323])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-9/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-tglu-1: NOTRUN -> [SKIP][65] ([i915#3297]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-1/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-dg1: NOTRUN -> [SKIP][66] ([i915#3297]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-18/igt@gem_userptr_blits@unsync-overlap.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-rkl: NOTRUN -> [SKIP][67] ([i915#3297]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-5/igt@gem_userptr_blits@unsync-unmap.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-mtlp: NOTRUN -> [SKIP][68] ([i915#3297])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-5/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gen7_exec_parse@bitmasks:
- shard-rkl: NOTRUN -> [SKIP][69] ([i915#14544])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-6/igt@gen7_exec_parse@bitmasks.html
* igt@gen9_exec_parse@bb-large:
- shard-tglu: NOTRUN -> [SKIP][70] ([i915#2527] / [i915#2856]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-5/igt@gen9_exec_parse@bb-large.html
* igt@gen9_exec_parse@bb-start-far:
- shard-tglu-1: NOTRUN -> [SKIP][71] ([i915#2527] / [i915#2856]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-1/igt@gen9_exec_parse@bb-start-far.html
* igt@gen9_exec_parse@bb-start-param:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#2856]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-1/igt@gen9_exec_parse@bb-start-param.html
- shard-rkl: NOTRUN -> [SKIP][73] ([i915#2527]) +2 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-8/igt@gen9_exec_parse@bb-start-param.html
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#2527])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-18/igt@gen9_exec_parse@bb-start-param.html
- shard-mtlp: NOTRUN -> [SKIP][75] ([i915#2856])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-1/igt@gen9_exec_parse@bb-start-param.html
* igt@i915_module_load@reload-no-display:
- shard-tglu: [PASS][76] -> [DMESG-WARN][77] ([i915#13029] / [i915#14545])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-tglu-5/igt@i915_module_load@reload-no-display.html
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-4/igt@i915_module_load@reload-no-display.html
* igt@i915_module_load@resize-bar:
- shard-dg2: [PASS][78] -> [DMESG-WARN][79] ([i915#14545])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-dg2-3/igt@i915_module_load@resize-bar.html
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-6/igt@i915_module_load@resize-bar.html
- shard-tglu: NOTRUN -> [SKIP][80] ([i915#6412])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-10/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-tglu: NOTRUN -> [SKIP][81] ([i915#8399])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-5/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-dg2: [PASS][82] -> [FAIL][83] ([i915#12964]) +1 other test fail
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-dg2-7/igt@i915_pm_rc6_residency@rc6-accuracy.html
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-6/igt@i915_pm_rc6_residency@rc6-accuracy.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-rkl: NOTRUN -> [SKIP][84] ([i915#14498])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-1/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rps@thresholds-idle-park:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#11681])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-3/igt@i915_pm_rps@thresholds-idle-park.html
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#11681])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-13/igt@i915_pm_rps@thresholds-idle-park.html
- shard-mtlp: NOTRUN -> [SKIP][87] ([i915#11681])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-3/igt@i915_pm_rps@thresholds-idle-park.html
* igt@i915_query@hwconfig_table:
- shard-tglu-1: NOTRUN -> [SKIP][88] ([i915#6245])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-1/igt@i915_query@hwconfig_table.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#6188])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-3/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-rkl: [PASS][90] -> [ABORT][91] ([i915#15131])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-3/igt@i915_suspend@basic-s3-without-i915.html
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-1/igt@i915_suspend@basic-s3-without-i915.html
- shard-dg1: [PASS][92] -> [DMESG-WARN][93] ([i915#4391] / [i915#4423])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-dg1-14/igt@i915_suspend@basic-s3-without-i915.html
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-17/igt@i915_suspend@basic-s3-without-i915.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-glk: [PASS][94] -> [INCOMPLETE][95] ([i915#4817])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-glk2/igt@i915_suspend@fence-restore-tiled2untiled.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-glk4/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@i915_suspend@fence-restore-untiled:
- shard-rkl: [PASS][96] -> [INCOMPLETE][97] ([i915#4817]) +1 other test incomplete
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-2/igt@i915_suspend@fence-restore-untiled.html
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-6/igt@i915_suspend@fence-restore-untiled.html
- shard-glk11: NOTRUN -> [INCOMPLETE][98] ([i915#4817])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-glk11/igt@i915_suspend@fence-restore-untiled.html
* igt@i915_suspend@forcewake:
- shard-glk10: NOTRUN -> [INCOMPLETE][99] ([i915#4817])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-glk10/igt@i915_suspend@forcewake.html
* igt@kms_addfb_basic@master-rmfb:
- shard-dg1: [PASS][100] -> [DMESG-WARN][101] ([i915#4423]) +1 other test dmesg-warn
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-dg1-18/igt@kms_addfb_basic@master-rmfb.html
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-18/igt@kms_addfb_basic@master-rmfb.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-rkl: [PASS][102] -> [INCOMPLETE][103] ([i915#12761]) +1 other test incomplete
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-7/igt@kms_async_flips@async-flip-suspend-resume.html
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-6/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][104] ([i915#12761] / [i915#14995])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-glk3/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-tglu-1: NOTRUN -> [SKIP][105] ([i915#9531])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-tglu: NOTRUN -> [SKIP][106] ([i915#1769] / [i915#3555])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-180:
- shard-tglu-1: NOTRUN -> [SKIP][107] ([i915#5286]) +2 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-1/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][108] ([i915#4538] / [i915#5286]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-19/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-rkl: NOTRUN -> [SKIP][109] ([i915#5286]) +4 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][110] ([i915#5286]) +3 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][111] ([i915#3638]) +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-5/igt@kms_big_fb@linear-32bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][112] ([i915#3638]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-12/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
- shard-rkl: NOTRUN -> [SKIP][113] ([i915#3828])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-7/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#5190])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-8/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#4538] / [i915#5190]) +7 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][116] ([i915#4538]) +2 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-12/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-c-hdmi-a-2:
- shard-glk10: NOTRUN -> [SKIP][117] +78 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-glk10/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#6095]) +31 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-3/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#12313])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-5/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][120] ([i915#12313] / [i915#14544])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][121] ([i915#6095]) +63 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-5/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#12313]) +1 other test skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-glk11: NOTRUN -> [SKIP][124] +56 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-glk11/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][125] ([i915#15582])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-glk6/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][126] ([i915#6095]) +14 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-b-edp-1.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-rkl: NOTRUN -> [SKIP][127] ([i915#14098] / [i915#6095]) +42 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#10307] / [i915#6095]) +101 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][129] ([i915#6095]) +182 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-16/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-4.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs:
- shard-rkl: NOTRUN -> [SKIP][130] ([i915#14098] / [i915#14544] / [i915#6095]) +1 other test skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][131] ([i915#14544] / [i915#6095]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][132] ([i915#6095]) +44 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-1/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][133] ([i915#12313])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-dg1: NOTRUN -> [SKIP][134] ([i915#12313]) +1 other test skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
- shard-tglu: NOTRUN -> [SKIP][135] ([i915#12313]) +1 other test skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-4/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][136] ([i915#12313])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-3/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc:
- shard-tglu: NOTRUN -> [SKIP][137] ([i915#6095]) +29 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-4/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_cdclk@mode-transition:
- shard-glk: NOTRUN -> [SKIP][138] +441 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-glk6/igt@kms_cdclk@mode-transition.html
- shard-rkl: NOTRUN -> [SKIP][139] ([i915#3742]) +1 other test skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-5/igt@kms_cdclk@mode-transition.html
* igt@kms_chamelium_color@degamma:
- shard-dg2: NOTRUN -> [SKIP][140] +8 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-6/igt@kms_chamelium_color@degamma.html
- shard-rkl: NOTRUN -> [SKIP][141] +16 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-5/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-tglu-1: NOTRUN -> [SKIP][142] ([i915#11151] / [i915#7828]) +4 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-1/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-tglu: NOTRUN -> [SKIP][143] ([i915#11151] / [i915#7828]) +5 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-7/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
- shard-mtlp: NOTRUN -> [SKIP][144] ([i915#11151] / [i915#7828]) +2 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-5/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#11151] / [i915#7828]) +3 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-5/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
- shard-rkl: NOTRUN -> [SKIP][146] ([i915#11151] / [i915#7828]) +5 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-3/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-dg1: NOTRUN -> [SKIP][147] ([i915#11151] / [i915#7828]) +4 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-13/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_content_protection@atomic-hdcp14:
- shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#15865])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-1/igt@kms_content_protection@atomic-hdcp14.html
* igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
- shard-rkl: NOTRUN -> [SKIP][149] ([i915#15330])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-tglu-1: NOTRUN -> [SKIP][150] ([i915#15330] / [i915#3116] / [i915#3299])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-1/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#15865]) +2 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-5/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_content_protection@suspend-resume:
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#15865])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-12/igt@kms_content_protection@suspend-resume.html
- shard-mtlp: NOTRUN -> [SKIP][153] ([i915#15865])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-5/igt@kms_content_protection@suspend-resume.html
* igt@kms_content_protection@type1:
- shard-tglu: NOTRUN -> [SKIP][154] ([i915#15865]) +1 other test skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-7/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent-hdcp14:
- shard-dg2: NOTRUN -> [SKIP][155] ([i915#15865]) +2 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-4/igt@kms_content_protection@uevent-hdcp14.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-tglu: NOTRUN -> [SKIP][156] ([i915#13049]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-tglu: NOTRUN -> [FAIL][157] ([i915#13566]) +1 other test fail
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-256x85.html
- shard-mtlp: NOTRUN -> [SKIP][158] ([i915#8814])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-7/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][159] ([i915#13566]) +1 other test fail
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-mtlp: NOTRUN -> [SKIP][160] ([i915#13049])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-tglu: NOTRUN -> [SKIP][161] ([i915#3555]) +4 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-rkl: NOTRUN -> [SKIP][162] ([i915#13049]) +1 other test skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-1/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-mtlp: NOTRUN -> [SKIP][163] ([i915#3555] / [i915#8814]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-1/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-rkl: NOTRUN -> [SKIP][164] ([i915#3555]) +3 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-2/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
- shard-tglu-1: NOTRUN -> [SKIP][165] ([i915#3555]) +3 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#13049]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-8/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
- shard-dg1: NOTRUN -> [SKIP][167] ([i915#13049]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-16/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-tglu: NOTRUN -> [SKIP][168] ([i915#4103]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#13046] / [i915#5354]) +4 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
- shard-mtlp: NOTRUN -> [SKIP][170] ([i915#9809]) +3 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-8/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: NOTRUN -> [FAIL][171] ([i915#15804])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-tglu-1: NOTRUN -> [SKIP][172] ([i915#9723])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg1: NOTRUN -> [SKIP][173] ([i915#9723])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-12/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
- shard-dg2: NOTRUN -> [SKIP][174] ([i915#3555]) +5 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-5/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-rkl: NOTRUN -> [SKIP][175] ([i915#13749])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-2/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#13707])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-7/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-rkl: NOTRUN -> [SKIP][177] ([i915#13707])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-4/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-dg1: NOTRUN -> [SKIP][178] ([i915#13707])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-17/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-tglu: NOTRUN -> [SKIP][179] ([i915#13707])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-8/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-mtlp: NOTRUN -> [SKIP][180] ([i915#13707])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][181] ([i915#9878])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-glk2/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-tglu: NOTRUN -> [SKIP][182] ([i915#2065] / [i915#4854])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-8/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-dg2: NOTRUN -> [SKIP][183] ([i915#1839])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-5/igt@kms_feature_discovery@display-2x.html
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#1839])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-4/igt@kms_feature_discovery@display-2x.html
- shard-tglu: NOTRUN -> [SKIP][185] ([i915#1839])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-10/igt@kms_feature_discovery@display-2x.html
- shard-mtlp: NOTRUN -> [SKIP][186] ([i915#1839])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-8/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-4x:
- shard-tglu-1: NOTRUN -> [SKIP][187] ([i915#1839])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-1/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-tglu: NOTRUN -> [SKIP][188] ([i915#9337])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-3/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr2:
- shard-tglu: NOTRUN -> [SKIP][189] ([i915#658])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-3/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][190] ([i915#3637] / [i915#9934]) +6 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-6/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
- shard-tglu: NOTRUN -> [SKIP][191] ([i915#9934])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-8/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][192] ([i915#8381])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-7/igt@kms_flip@2x-flip-vs-fences-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][193] ([i915#8381])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-17/igt@kms_flip@2x-flip-vs-fences-interruptible.html
- shard-mtlp: NOTRUN -> [SKIP][194] ([i915#8381])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-6/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2:
- shard-glk: NOTRUN -> [INCOMPLETE][195] ([i915#4839] / [i915#6113])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-glk1/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#9934]) +3 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-8/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][197] ([i915#3637] / [i915#9934]) +7 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-1/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-rkl: NOTRUN -> [SKIP][198] ([i915#9934]) +4 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-7/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][199] ([i915#9934])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-16/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
- shard-mtlp: NOTRUN -> [SKIP][200] ([i915#3637] / [i915#9934])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-6/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-glk: NOTRUN -> [INCOMPLETE][201] ([i915#12745] / [i915#4839] / [i915#6113]) +1 other test incomplete
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-glk1/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][202] ([i915#12745])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-glk1/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][203] ([i915#15643]) +1 other test skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
- shard-mtlp: NOTRUN -> [SKIP][204] ([i915#15643]) +2 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
- shard-dg2: NOTRUN -> [SKIP][205] ([i915#15643]) +1 other test skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
- shard-dg1: NOTRUN -> [SKIP][206] ([i915#15643])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][207] ([i915#15643] / [i915#5190]) +4 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-4/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#15643]) +5 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][209] ([i915#15643]) +1 other test skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_force_connector_basic@force-edid:
- shard-mtlp: [PASS][210] -> [SKIP][211] ([i915#15672])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-mtlp-7/igt@kms_force_connector_basic@force-edid.html
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-1/igt@kms_force_connector_basic@force-edid.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][212] ([i915#1825]) +26 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move:
- shard-tglu: NOTRUN -> [SKIP][213] +42 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html
- shard-mtlp: NOTRUN -> [SKIP][214] ([i915#1825]) +7 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][215] ([i915#10056])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-glk6/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][216] ([i915#14544] / [i915#15102]) +1 other test skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][217] ([i915#15102]) +1 other test skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-move:
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#14544] / [i915#1825]) +1 other test skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-tglu-1: NOTRUN -> [SKIP][219] ([i915#5439])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#10055])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
- shard-mtlp: NOTRUN -> [SKIP][221] ([i915#10055])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#15102]) +2 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][223] ([i915#15102]) +15 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][224] ([i915#15102])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#15104])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt:
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#14544] / [i915#15102] / [i915#3023])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#15102] / [i915#3458]) +7 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#5354]) +27 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html
- shard-tglu-1: NOTRUN -> [SKIP][229] +32 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#8708]) +8 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
- shard-dg1: NOTRUN -> [SKIP][231] ([i915#8708]) +6 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][232] ([i915#8708]) +1 other test skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-suspend:
- shard-rkl: NOTRUN -> [SKIP][233] ([i915#15102] / [i915#3023]) +14 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-suspend.html
- shard-tglu-1: NOTRUN -> [SKIP][234] ([i915#15102]) +9 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-suspend.html
- shard-dg1: NOTRUN -> [SKIP][235] ([i915#15102] / [i915#3458]) +6 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-suspend.html
* igt@kms_hdr@brightness-with-hdr:
- shard-tglu: NOTRUN -> [SKIP][236] ([i915#1187] / [i915#12713])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-2/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-hdr:
- shard-tglu-1: NOTRUN -> [SKIP][237] ([i915#3555] / [i915#8228])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-1/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@static-toggle-suspend:
- shard-tglu: NOTRUN -> [SKIP][238] ([i915#3555] / [i915#8228])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-7/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [ABORT][239] ([i915#15132])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-1/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-2.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][240] ([i915#15459])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-7/igt@kms_joiner@basic-force-big-joiner.html
- shard-tglu-1: NOTRUN -> [SKIP][241] ([i915#15459])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-1/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#15460])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-7/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][243] ([i915#15458])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-9/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes:
- shard-dg1: NOTRUN -> [SKIP][244] +22 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-18/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html
- shard-mtlp: NOTRUN -> [SKIP][245] +6 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-7/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#13705])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-8/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
- shard-mtlp: NOTRUN -> [SKIP][247] ([i915#13705])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-2/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier:
- shard-tglu: NOTRUN -> [SKIP][248] ([i915#15709])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-5/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping:
- shard-dg2: NOTRUN -> [SKIP][249] ([i915#15709]) +3 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-1/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html
- shard-dg1: NOTRUN -> [SKIP][250] ([i915#15709]) +1 other test skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-18/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-a-plane-7:
- shard-tglu: NOTRUN -> [SKIP][251] ([i915#15608]) +1 other test skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-8/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-a-plane-7.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier:
- shard-rkl: NOTRUN -> [SKIP][252] ([i915#15709]) +3 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-2/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
- shard-tglu-1: NOTRUN -> [SKIP][253] ([i915#15709]) +2 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][254] ([i915#13026]) +1 other test incomplete
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-glk3/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a:
- shard-rkl: NOTRUN -> [INCOMPLETE][255] ([i915#14412]) +1 other test incomplete
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
* igt@kms_plane_alpha_blend@alpha-basic:
- shard-glk: NOTRUN -> [FAIL][256] ([i915#12178])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/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][257] ([i915#7862]) +1 other test fail
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-glk8/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][258] ([i915#8821])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-5/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-tglu-1: NOTRUN -> [SKIP][259] ([i915#13958]) +1 other test skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: NOTRUN -> [SKIP][260] ([i915#6953] / [i915#9423])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-6/igt@kms_plane_scaling@intel-max-src-size.html
- shard-rkl: NOTRUN -> [SKIP][261] ([i915#6953])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-5/igt@kms_plane_scaling@intel-max-src-size.html
- shard-dg1: NOTRUN -> [SKIP][262] ([i915#6953])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-12/igt@kms_plane_scaling@intel-max-src-size.html
- shard-mtlp: NOTRUN -> [SKIP][263] ([i915#6953])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-5/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
- shard-tglu-1: NOTRUN -> [SKIP][264] ([i915#15329]) +8 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-tglu-1: NOTRUN -> [SKIP][265] ([i915#15329] / [i915#3555])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
- shard-mtlp: NOTRUN -> [SKIP][266] ([i915#15329] / [i915#3555] / [i915#6953])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c:
- shard-mtlp: NOTRUN -> [SKIP][267] ([i915#15329]) +3 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c.html
* igt@kms_pm_backlight@bad-brightness:
- shard-tglu-1: NOTRUN -> [SKIP][268] ([i915#9812])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-1/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@basic-brightness:
- shard-dg1: NOTRUN -> [SKIP][269] ([i915#5354])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-12/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-tglu: NOTRUN -> [SKIP][270] ([i915#9812])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-10/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-tglu: NOTRUN -> [SKIP][271] ([i915#3828])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-6/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-dpms:
- shard-rkl: NOTRUN -> [FAIL][272] ([i915#15752])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-7/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][273] ([i915#15073])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-7/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-dg1: [PASS][274] -> [SKIP][275] ([i915#15073])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-dg1-14/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-17/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@fences-dpms:
- shard-dg2: NOTRUN -> [SKIP][276] ([i915#4077]) +10 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-1/igt@kms_pm_rpm@fences-dpms.html
- shard-dg1: NOTRUN -> [SKIP][277] ([i915#4077]) +5 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-18/igt@kms_pm_rpm@fences-dpms.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-rkl: [PASS][278] -> [SKIP][279] ([i915#15073])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp.html
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-tglu-1: NOTRUN -> [SKIP][280] ([i915#15073])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-rkl: [PASS][281] -> [INCOMPLETE][282] ([i915#14419])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-3/igt@kms_pm_rpm@system-suspend-modeset.html
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-3/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][283] ([i915#11520] / [i915#14544])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf:
- shard-tglu: NOTRUN -> [SKIP][284] ([i915#11520]) +3 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-4/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][285] ([i915#11520]) +9 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-glk1/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
- shard-glk11: NOTRUN -> [SKIP][286] ([i915#11520]) +1 other test skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-glk11/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf:
- shard-mtlp: NOTRUN -> [SKIP][287] ([i915#12316])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-8/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb:
- shard-glk10: NOTRUN -> [SKIP][288] ([i915#11520]) +1 other test skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-glk10/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_sf@psr2-cursor-plane-update-sf:
- shard-snb: NOTRUN -> [SKIP][289] ([i915#11520]) +1 other test skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-snb6/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
- shard-tglu-1: NOTRUN -> [SKIP][290] ([i915#11520]) +5 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][291] ([i915#11520]) +5 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-5/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
- shard-rkl: NOTRUN -> [SKIP][292] ([i915#11520]) +6 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-5/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
- shard-dg1: NOTRUN -> [SKIP][293] ([i915#11520]) +3 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-16/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-tglu: NOTRUN -> [SKIP][294] ([i915#9683]) +1 other test skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-5/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2: NOTRUN -> [SKIP][295] ([i915#9683])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-5/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-rkl: NOTRUN -> [SKIP][296] ([i915#9683])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-8/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr2-no-drrs:
- shard-rkl: NOTRUN -> [SKIP][297] ([i915#1072] / [i915#14544] / [i915#9732]) +1 other test skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-6/igt@kms_psr@fbc-psr2-no-drrs.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-mtlp: NOTRUN -> [SKIP][298] ([i915#9688]) +6 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-4/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_psr@pr-dpms:
- shard-tglu: NOTRUN -> [SKIP][299] ([i915#9732]) +8 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-7/igt@kms_psr@pr-dpms.html
* igt@kms_psr@psr-cursor-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][300] ([i915#1072] / [i915#9732]) +14 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-8/igt@kms_psr@psr-cursor-mmap-cpu.html
* igt@kms_psr@psr-sprite-plane-onoff:
- shard-tglu-1: NOTRUN -> [SKIP][301] ([i915#9732]) +12 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-1/igt@kms_psr@psr-sprite-plane-onoff.html
- shard-dg1: NOTRUN -> [SKIP][302] ([i915#1072] / [i915#9732]) +10 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-16/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_psr@psr2-cursor-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][303] ([i915#1072] / [i915#9732]) +17 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-4/igt@kms_psr@psr2-cursor-mmap-gtt.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2: NOTRUN -> [SKIP][304] ([i915#12755] / [i915#15867]) +1 other test skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-1/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg2: NOTRUN -> [SKIP][305] ([i915#4235])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-5/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@multiplane-rotation:
- shard-glk: NOTRUN -> [INCOMPLETE][306] ([i915#15492])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-glk1/igt@kms_rotation_crc@multiplane-rotation.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-rkl: NOTRUN -> [SKIP][307] ([i915#14544] / [i915#5289])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][308] ([i915#12755] / [i915#15867] / [i915#5190])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
- shard-dg1: NOTRUN -> [SKIP][309] ([i915#5289])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-12/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-mtlp: NOTRUN -> [SKIP][310] ([i915#12755] / [i915#15867])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-6/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-dg1: NOTRUN -> [SKIP][311] ([i915#3555]) +7 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-19/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-mtlp: NOTRUN -> [SKIP][312] ([i915#3555] / [i915#8809] / [i915#8823])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-1/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][313] ([i915#12276]) +1 other test incomplete
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-glk5/igt@kms_vblank@ts-continuation-suspend.html
* igt@kms_vrr@flip-basic:
- shard-dg2: NOTRUN -> [SKIP][314] ([i915#15243] / [i915#3555]) +1 other test skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-6/igt@kms_vrr@flip-basic.html
- shard-rkl: NOTRUN -> [SKIP][315] ([i915#15243] / [i915#3555]) +1 other test skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-5/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@flip-basic-fastset:
- shard-dg2: NOTRUN -> [SKIP][316] ([i915#9906]) +1 other test skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-1/igt@kms_vrr@flip-basic-fastset.html
- shard-rkl: NOTRUN -> [SKIP][317] ([i915#9906]) +1 other test skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-2/igt@kms_vrr@flip-basic-fastset.html
- shard-tglu-1: NOTRUN -> [SKIP][318] ([i915#9906])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-1/igt@kms_vrr@flip-basic-fastset.html
- shard-dg1: NOTRUN -> [SKIP][319] ([i915#9906]) +1 other test skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-19/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@flip-suspend:
- shard-mtlp: NOTRUN -> [SKIP][320] ([i915#3555] / [i915#8808]) +1 other test skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-1/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@lobf:
- shard-dg2: NOTRUN -> [SKIP][321] ([i915#11920])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-4/igt@kms_vrr@lobf.html
- shard-rkl: NOTRUN -> [SKIP][322] ([i915#11920])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-3/igt@kms_vrr@lobf.html
- shard-dg1: NOTRUN -> [SKIP][323] ([i915#11920])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-19/igt@kms_vrr@lobf.html
- shard-tglu: NOTRUN -> [SKIP][324] ([i915#11920])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-2/igt@kms_vrr@lobf.html
- shard-mtlp: NOTRUN -> [SKIP][325] ([i915#11920])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-3/igt@kms_vrr@lobf.html
* igt@kms_vrr@negative-basic:
- shard-mtlp: [PASS][326] -> [FAIL][327] ([i915#15420]) +1 other test fail
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-mtlp-3/igt@kms_vrr@negative-basic.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-1/igt@kms_vrr@negative-basic.html
* igt@perf_pmu@module-unload:
- shard-glk: NOTRUN -> [ABORT][328] ([i915#15778])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-glk9/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6-all-gts:
- shard-dg2: NOTRUN -> [SKIP][329] ([i915#8516])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-8/igt@perf_pmu@rc6-all-gts.html
- shard-dg1: NOTRUN -> [SKIP][330] ([i915#8516])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-16/igt@perf_pmu@rc6-all-gts.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-tglu: NOTRUN -> [SKIP][331] ([i915#8516])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-2/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_vgem@basic-fence-flip:
- shard-dg2: NOTRUN -> [SKIP][332] ([i915#3708])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-3/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- shard-dg2: NOTRUN -> [SKIP][333] ([i915#3708] / [i915#4077])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-6/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@fence-flip-hang:
- shard-rkl: NOTRUN -> [SKIP][334] ([i915#3708])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-7/igt@prime_vgem@fence-flip-hang.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-dg2: NOTRUN -> [SKIP][335] ([i915#9917])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-1/igt@sriov_basic@enable-vfs-bind-unbind-each.html
#### Possible fixes ####
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: [INCOMPLETE][336] ([i915#12392] / [i915#13356]) -> [PASS][337]
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-dg2-7/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-5/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_ctx_isolation@preservation-s3:
- shard-dg2: [INCOMPLETE][338] ([i915#13356]) -> [PASS][339] +3 other tests pass
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-dg2-6/igt@gem_ctx_isolation@preservation-s3.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-3/igt@gem_ctx_isolation@preservation-s3.html
* igt@gem_exec_big@single:
- shard-mtlp: [DMESG-FAIL][340] ([i915#15478]) -> [PASS][341]
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-mtlp-6/igt@gem_exec_big@single.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-4/igt@gem_exec_big@single.html
* igt@gem_workarounds@suspend-resume-context:
- shard-rkl: [INCOMPLETE][342] ([i915#13356]) -> [PASS][343]
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-3/igt@gem_workarounds@suspend-resume-context.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-5/igt@gem_workarounds@suspend-resume-context.html
* igt@gem_workarounds@suspend-resume-fd:
- shard-glk: [INCOMPLETE][344] ([i915#13356] / [i915#14586]) -> [PASS][345]
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-glk3/igt@gem_workarounds@suspend-resume-fd.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-glk2/igt@gem_workarounds@suspend-resume-fd.html
* igt@i915_power@sanity:
- shard-mtlp: [SKIP][346] ([i915#7984]) -> [PASS][347]
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-mtlp-7/igt@i915_power@sanity.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-4/igt@i915_power@sanity.html
* igt@i915_selftest@live:
- shard-mtlp: [DMESG-FAIL][348] ([i915#12061] / [i915#15560]) -> [PASS][349]
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-mtlp-6/igt@i915_selftest@live.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-6/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- shard-mtlp: [DMESG-FAIL][350] ([i915#12061]) -> [PASS][351]
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-mtlp-6/igt@i915_selftest@live@workarounds.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-6/igt@i915_selftest@live@workarounds.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-rkl: [INCOMPLETE][352] ([i915#4817]) -> [PASS][353]
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-6/igt@i915_suspend@fence-restore-tiled2untiled.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-8/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-1:
- shard-glk: [INCOMPLETE][354] ([i915#12761]) -> [PASS][355]
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-glk1/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-1.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-glk3/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-1.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3:
- shard-dg2: [FAIL][356] ([i915#5956]) -> [PASS][357] +1 other test pass
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-mtlp: [FAIL][358] ([i915#15733] / [i915#5138]) -> [PASS][359]
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-mtlp-7/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-8/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: [INCOMPLETE][360] ([i915#15582]) -> [PASS][361]
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-glk8/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-glk6/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-rkl: [FAIL][362] ([i915#13566]) -> [PASS][363] +2 other tests pass
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-256x85.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-256x85.html
- shard-tglu: [FAIL][364] ([i915#13566]) -> [PASS][365] +3 other tests pass
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-tglu-10/igt@kms_cursor_crc@cursor-sliding-256x85.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-3/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1:
- shard-snb: [TIMEOUT][366] ([i915#14033]) -> [PASS][367] +1 other test pass
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-snb4/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-snb7/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html
* igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a3:
- shard-dg2: [FAIL][368] ([i915#10826]) -> [PASS][369] +1 other test pass
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-dg2-6/igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a3.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-5/igt@kms_flip@plain-flip-fb-recreate@a-hdmi-a3.html
* igt@kms_flip@plain-flip-fb-recreate@a-vga1:
- shard-snb: [FAIL][370] ([i915#14600]) -> [PASS][371] +1 other test pass
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-snb7/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-snb7/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html
* igt@kms_force_connector_basic@force-connector-state:
- shard-mtlp: [SKIP][372] ([i915#15672]) -> [PASS][373]
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-mtlp-1/igt@kms_force_connector_basic@force-connector-state.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-7/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: [SKIP][374] ([i915#14544] / [i915#15073]) -> [PASS][375]
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2: [SKIP][376] ([i915#15073]) -> [PASS][377]
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
- shard-rkl: [SKIP][378] ([i915#15073]) -> [PASS][379]
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
- shard-dg1: [SKIP][380] ([i915#15073]) -> [PASS][381]
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-dg1-16/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-dg1: [DMESG-WARN][382] ([i915#4423]) -> [PASS][383]
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-dg1-14/igt@kms_pm_rpm@system-suspend-modeset.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-14/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-rkl: [INCOMPLETE][384] ([i915#12276]) -> [PASS][385]
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-6/igt@kms_vblank@ts-continuation-suspend.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-5/igt@kms_vblank@ts-continuation-suspend.html
* igt@perf_pmu@render-node-busy-idle:
- shard-mtlp: [FAIL][386] ([i915#4349]) -> [PASS][387] +7 other tests pass
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-mtlp-2/igt@perf_pmu@render-node-busy-idle.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-mtlp-5/igt@perf_pmu@render-node-busy-idle.html
* igt@perf_pmu@render-node-busy-idle@vcs1:
- shard-dg2: [FAIL][388] ([i915#4349]) -> [PASS][389] +5 other tests pass
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-dg2-6/igt@perf_pmu@render-node-busy-idle@vcs1.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-3/igt@perf_pmu@render-node-busy-idle@vcs1.html
- shard-dg1: [FAIL][390] ([i915#4349]) -> [PASS][391] +3 other tests pass
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-dg1-19/igt@perf_pmu@render-node-busy-idle@vcs1.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-13/igt@perf_pmu@render-node-busy-idle@vcs1.html
#### Warnings ####
* igt@gem_ccs@ctrl-surf-copy:
- shard-rkl: [SKIP][392] ([i915#3555] / [i915#9323]) -> [SKIP][393] ([i915#14544] / [i915#3555] / [i915#9323])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-7/igt@gem_ccs@ctrl-surf-copy.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume:
- shard-rkl: [SKIP][394] ([i915#14544] / [i915#9323]) -> [SKIP][395] ([i915#9323])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-6/igt@gem_ccs@suspend-resume.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-5/igt@gem_ccs@suspend-resume.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-rkl: [SKIP][396] ([i915#6334]) -> [SKIP][397] ([i915#14544] / [i915#6334]) +1 other test skip
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-5/igt@gem_exec_capture@capture-invisible@smem0.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-6/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_reloc@basic-scanout:
- shard-rkl: [SKIP][398] ([i915#3281]) -> [SKIP][399] ([i915#14544] / [i915#3281])
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-4/igt@gem_exec_reloc@basic-scanout.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-6/igt@gem_exec_reloc@basic-scanout.html
* igt@gem_exec_reloc@basic-wc:
- shard-rkl: [SKIP][400] ([i915#14544] / [i915#3281]) -> [SKIP][401] ([i915#3281]) +2 other tests skip
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-6/igt@gem_exec_reloc@basic-wc.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-2/igt@gem_exec_reloc@basic-wc.html
* igt@gem_lmem_swapping@massive-random:
- shard-rkl: [SKIP][402] ([i915#4613]) -> [SKIP][403] ([i915#14544] / [i915#4613])
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-7/igt@gem_lmem_swapping@massive-random.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-6/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@verify:
- shard-rkl: [SKIP][404] ([i915#14544] / [i915#4613]) -> [SKIP][405] ([i915#4613])
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-6/igt@gem_lmem_swapping@verify.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-4/igt@gem_lmem_swapping@verify.html
* igt@gem_madvise@dontneed-before-pwrite:
- shard-rkl: [SKIP][406] ([i915#14544] / [i915#3282]) -> [SKIP][407] ([i915#3282]) +4 other tests skip
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-6/igt@gem_madvise@dontneed-before-pwrite.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-3/igt@gem_madvise@dontneed-before-pwrite.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-rkl: [SKIP][408] ([i915#8411]) -> [SKIP][409] ([i915#14544] / [i915#8411])
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-1/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-rkl: [SKIP][410] ([i915#3297] / [i915#3323]) -> [SKIP][411] ([i915#14544] / [i915#3297] / [i915#3323])
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-4/igt@gem_userptr_blits@dmabuf-sync.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-6/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-rkl: [SKIP][412] ([i915#14544] / [i915#3282] / [i915#3297]) -> [SKIP][413] ([i915#3282] / [i915#3297])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-6/igt@gem_userptr_blits@forbidden-operations.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-8/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-rkl: [SKIP][414] ([i915#14544] / [i915#3297]) -> [SKIP][415] ([i915#3297])
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-6/igt@gem_userptr_blits@unsync-overlap.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-8/igt@gem_userptr_blits@unsync-overlap.html
* igt@gen9_exec_parse@bb-start-far:
- shard-rkl: [SKIP][416] ([i915#14544] / [i915#2527]) -> [SKIP][417] ([i915#2527]) +1 other test skip
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-6/igt@gen9_exec_parse@bb-start-far.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-2/igt@gen9_exec_parse@bb-start-far.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-rkl: [SKIP][418] ([i915#2527]) -> [SKIP][419] ([i915#14544] / [i915#2527])
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-4/igt@gen9_exec_parse@cmd-crossing-page.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-6/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@intel_hwmon@hwmon-write:
- shard-rkl: [SKIP][420] ([i915#14544] / [i915#7707]) -> [SKIP][421] ([i915#7707])
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-6/igt@intel_hwmon@hwmon-write.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-4/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg1: [SKIP][422] ([i915#4215] / [i915#4423]) -> [SKIP][423] ([i915#4215])
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-dg1-17/igt@kms_addfb_basic@basic-y-tiled-legacy.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-19/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-rkl: [SKIP][424] ([i915#12454] / [i915#12712]) -> [SKIP][425] ([i915#12454] / [i915#12712] / [i915#14544])
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-3/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-0:
- shard-rkl: [SKIP][426] ([i915#5286]) -> [SKIP][427] ([i915#14544] / [i915#5286]) +3 other tests skip
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-5/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-rkl: [SKIP][428] ([i915#14544] / [i915#5286]) -> [SKIP][429] ([i915#5286])
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-4/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-rkl: [SKIP][430] ([i915#3638]) -> [SKIP][431] ([i915#14544] / [i915#3638])
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-2/igt@kms_big_fb@linear-16bpp-rotate-270.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-6/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_ccs@bad-rotation-90-yf-tiled-ccs:
- shard-rkl: [SKIP][432] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][433] ([i915#14098] / [i915#6095]) +5 other tests skip
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-6/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-7/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs.html
* igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][434] ([i915#14544] / [i915#6095]) -> [SKIP][435] ([i915#6095]) +3 other tests skip
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-6/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-b-hdmi-a-2.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-7/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][436] ([i915#12313]) -> [SKIP][437] ([i915#12313] / [i915#14544])
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-8/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][438] ([i915#6095]) -> [SKIP][439] ([i915#14544] / [i915#6095])
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][440] ([i915#14098] / [i915#6095]) -> [SKIP][441] ([i915#14098] / [i915#14544] / [i915#6095]) +1 other test skip
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_chamelium_edid@vga-edid-read:
- shard-rkl: [SKIP][442] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][443] ([i915#11151] / [i915#7828]) +2 other tests skip
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-6/igt@kms_chamelium_edid@vga-edid-read.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-5/igt@kms_chamelium_edid@vga-edid-read.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-rkl: [SKIP][444] ([i915#11151] / [i915#7828]) -> [SKIP][445] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-3/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-6/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_content_protection@atomic-dpms:
- shard-rkl: [SKIP][446] ([i915#15865]) -> [SKIP][447] ([i915#14544] / [i915#15865]) +1 other test skip
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-7/igt@kms_content_protection@atomic-dpms.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-6/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-type-0-suspend-resume:
- shard-rkl: [SKIP][448] ([i915#14544] / [i915#15330]) -> [SKIP][449] ([i915#15330])
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-2/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-rkl: [SKIP][450] ([i915#13049]) -> [SKIP][451] ([i915#13049] / [i915#14544])
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-512x170.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-dg1: [SKIP][452] ([i915#3555]) -> [SKIP][453] ([i915#3555] / [i915#4423])
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-dg1-19/igt@kms_cursor_crc@cursor-offscreen-max-size.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-17/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-rkl: [SKIP][454] ([i915#3555]) -> [SKIP][455] ([i915#14544] / [i915#3555])
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-32x32.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-rkl: [SKIP][456] ([i915#13049] / [i915#14544]) -> [SKIP][457] ([i915#13049])
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-rkl: [SKIP][458] ([i915#14544]) -> [SKIP][459] +3 other tests skip
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-5/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-rkl: [SKIP][460] ([i915#14544] / [i915#9723]) -> [SKIP][461] ([i915#9723])
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-rkl: [SKIP][462] ([i915#3555] / [i915#3840]) -> [SKIP][463] ([i915#14544] / [i915#3555] / [i915#3840])
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-1/igt@kms_dsc@dsc-with-bpc-formats.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-6/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_feature_discovery@psr1:
- shard-rkl: [SKIP][464] ([i915#658]) -> [SKIP][465] ([i915#14544] / [i915#658])
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-5/igt@kms_feature_discovery@psr1.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-6/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-dg1: [SKIP][466] ([i915#9934]) -> [SKIP][467] ([i915#4423] / [i915#9934])
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-dg1-19/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-16/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-rkl: [SKIP][468] ([i915#9934]) -> [SKIP][469] ([i915#14544] / [i915#9934])
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-4/igt@kms_flip@2x-nonexisting-fb.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-6/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-rkl: [SKIP][470] ([i915#14544] / [i915#9934]) -> [SKIP][471] ([i915#9934]) +1 other test skip
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-6/igt@kms_flip@2x-plain-flip-fb-recreate.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-5/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-rkl: [SKIP][472] ([i915#15643]) -> [SKIP][473] ([i915#14544] / [i915#15643])
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-rkl: [SKIP][474] ([i915#14544] / [i915#1825]) -> [SKIP][475] ([i915#1825]) +12 other tests skip
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render:
- shard-dg1: [SKIP][476] -> [SKIP][477] ([i915#4423]) +1 other test skip
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][478] ([i915#1825]) -> [SKIP][479] ([i915#14544] / [i915#1825]) +4 other tests skip
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt.html
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: [SKIP][480] ([i915#15102] / [i915#3458]) -> [SKIP][481] ([i915#10433] / [i915#15102] / [i915#3458]) +2 other tests skip
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt:
- shard-rkl: [SKIP][482] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][483] ([i915#15102] / [i915#3023]) +9 other tests skip
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-suspend:
- shard-dg2: [SKIP][484] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][485] ([i915#15102] / [i915#3458]) +1 other test skip
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu:
- shard-rkl: [SKIP][486] ([i915#14544] / [i915#15102]) -> [SKIP][487] ([i915#15102])
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu.html
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-rkl: [SKIP][488] ([i915#15102] / [i915#3023]) -> [SKIP][489] ([i915#14544] / [i915#15102] / [i915#3023]) +4 other tests skip
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_hdr@static-toggle-suspend:
- shard-rkl: [SKIP][490] ([i915#3555] / [i915#8228]) -> [ABORT][491] ([i915#15132])
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-4/igt@kms_hdr@static-toggle-suspend.html
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-1/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-rkl: [SKIP][492] ([i915#14544] / [i915#15458]) -> [SKIP][493] ([i915#15458])
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-6/igt@kms_joiner@basic-force-ultra-joiner.html
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-4/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-rkl: [SKIP][494] ([i915#15458]) -> [SKIP][495] ([i915#14544] / [i915#15458])
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-4/igt@kms_joiner@invalid-modeset-ultra-joiner.html
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
- shard-rkl: [SKIP][496] -> [SKIP][497] ([i915#14544]) +5 other tests skip
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-4/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-6/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
* igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping:
- shard-rkl: [SKIP][498] ([i915#15709]) -> [SKIP][499] ([i915#14544] / [i915#15709]) +1 other test skip
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-8/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier:
- shard-rkl: [SKIP][500] ([i915#14544] / [i915#15709]) -> [SKIP][501] ([i915#15709]) +1 other test skip
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-3/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-rkl: [SKIP][502] ([i915#13958] / [i915#14544]) -> [SKIP][503] ([i915#13958])
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-4.html
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-3/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-rkl: [SKIP][504] ([i915#14544] / [i915#15329] / [i915#3555]) -> [SKIP][505] ([i915#15329] / [i915#3555])
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-2/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: [SKIP][506] ([i915#14544] / [i915#15329]) -> [SKIP][507] ([i915#15329]) +2 other tests skip
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html
* igt@kms_pm_backlight@basic-brightness:
- shard-rkl: [SKIP][508] ([i915#14544] / [i915#5354]) -> [SKIP][509] ([i915#5354])
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-6/igt@kms_pm_backlight@basic-brightness.html
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-5/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: [SKIP][510] ([i915#15128]) -> [FAIL][511] ([i915#15752])
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-tglu-6/igt@kms_pm_dc@dc6-dpms.html
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-tglu-4/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-rkl: [SKIP][512] ([i915#9685]) -> [SKIP][513] ([i915#14544] / [i915#9685])
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-4/igt@kms_pm_dc@dc6-psr.html
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-6/igt@kms_pm_dc@dc6-psr.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
- shard-rkl: [SKIP][514] ([i915#11520]) -> [SKIP][515] ([i915#11520] / [i915#14544])
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-4/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-rkl: [SKIP][516] ([i915#11520] / [i915#14544]) -> [SKIP][517] ([i915#11520]) +1 other test skip
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-2/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-rkl: [SKIP][518] ([i915#9683]) -> [SKIP][519] ([i915#14544] / [i915#9683])
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-psr-cursor-plane-move:
- shard-rkl: [SKIP][520] ([i915#1072] / [i915#9732]) -> [SKIP][521] ([i915#1072] / [i915#14544] / [i915#9732]) +7 other tests skip
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-3/igt@kms_psr@fbc-psr-cursor-plane-move.html
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-6/igt@kms_psr@fbc-psr-cursor-plane-move.html
* igt@kms_psr@pr-cursor-mmap-gtt:
- shard-dg1: [SKIP][522] ([i915#1072] / [i915#9732]) -> [SKIP][523] ([i915#1072] / [i915#4423] / [i915#9732])
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-dg1-12/igt@kms_psr@pr-cursor-mmap-gtt.html
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-dg1-16/igt@kms_psr@pr-cursor-mmap-gtt.html
* igt@kms_psr@psr2-cursor-plane-move:
- shard-rkl: [SKIP][524] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][525] ([i915#1072] / [i915#9732]) +5 other tests skip
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-6/igt@kms_psr@psr2-cursor-plane-move.html
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-8/igt@kms_psr@psr2-cursor-plane-move.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-rkl: [SKIP][526] ([i915#14544] / [i915#5289]) -> [SKIP][527] ([i915#5289])
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: [SKIP][528] ([i915#2433]) -> [SKIP][529] ([i915#14544] / [i915#2433])
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8819/shard-rkl-5/igt@perf@unprivileged-single-ctx-counters.html
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/shard-rkl-6/igt@perf@unprivileged-single-ctx-counters.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#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826
[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#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#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#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
[i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
[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#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[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#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
[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#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14412
[i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
[i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
[i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586
[i915#14600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600
[i915#14995]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14995
[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#15128]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15128
[i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
[i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
[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#15420]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15420
[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#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492
[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#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656
[i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
[i915#15752]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15752
[i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
[i915#15804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15804
[i915#15816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15816
[i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
[i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065
[i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[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#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
[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#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[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#6188]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6188
[i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[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#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
[i915#8823]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8823
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878
[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_8819 -> IGTPW_14834
CI-20190529: 20190529
CI_DRM_18191: 5cb7d14d9bd2061386a0192a4649626a3e3a5ec3 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14834: 14834
IGT_8819: 8819
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14834/index.html
[-- Attachment #2: Type: text/html, Size: 174265 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2026-03-23 23:41 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-23 9:25 [PATCH i-g-t v5] tests/intel/xe_prefetch_fault: Add SVM and hit-under-miss validation Varun Gupta
2026-03-23 15:18 ` ✓ Xe.CI.BAT: success for tests/intel/xe_prefetch_fault: Add SVM and hit-under-miss validation (rev5) Patchwork
2026-03-23 16:13 ` ✓ i915.CI.BAT: " Patchwork
2026-03-23 21:16 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-03-23 23:41 ` ✓ i915.CI.Full: success " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox