* [PATCH i-g-t] tests/kms_setmode: Relax vblank timing tolerance from 1 scanline to 1%
@ 2026-04-16 2:53 Jason-JH Lin
2026-04-16 4:11 ` ✓ i915.CI.BAT: success for " Patchwork
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Jason-JH Lin @ 2026-04-16 2:53 UTC (permalink / raw)
To: igt-dev, Karthik B S, Swati Sharma, Kamil Konieczny,
Juha-Pekka Heikkila, Bhanuprakash Modem, Fei Shao
Cc: Jani, Jason-JH Lin, Paul-PL Chen, Nancy Lin, Singo Chang,
Gil Dekel, Yacoub, Project_Global_Chrome_Upstream_Group
The original check_timings() validation required vblank intervals to be
within 1 scanline (~15us for 1080p60) which is overly strict and causes
false failures due to userspace measurement overhead.
Changes:
- Keep original strict checks (1 scanline, 1.718 sigma) as warnings only
- Add relaxed validation with 1% relative tolerance for pass/fail
- Use 3 sigma threshold (99.7% confidence) instead of 1.718 sigma (90%)
Rationale:
Hardware specs (VESA/HDMI/DP) allow ±0.5% pixel clock tolerance, which
translates to ±0.5% frame time due to inverse relationship. However,
userspace measurement via read() syscall adds ~0.3-0.5% overhead from:
- Interrupt latency and scheduling delays (5-50 us)
- System call overhead (1-5 us)
- Variable delays depending on system load
Total tolerance: ±0.5% (hardware) + ~0.5% (software) = ±1.0%
This makes the test ~11x more tolerant while still detecting real timing
issues and aligning with industry hardware specifications.
Signed-off-by: Jason-JH Lin <jason-jh.lin@mediatek.com>
---
tests/kms_setmode.c | 48 ++++++++++++++++++++++++++++++++++++++++-----
1 file changed, 43 insertions(+), 5 deletions(-)
diff --git a/tests/kms_setmode.c b/tests/kms_setmode.c
index 1f2849bc26cf..30ab53fef47c 100644
--- a/tests/kms_setmode.c
+++ b/tests/kms_setmode.c
@@ -563,10 +563,9 @@ static bool check_timings(int crtc_idx, const drmModeModeInfo *kmode)
/* 99.7% samples within one scanline on each side of mean */
if (accuracy >= line_time(kmode)) {
- igt_info("vblank accuracy (%.3fus, %.1f%%) worse than a scanline (%.3fus)\n",
+ igt_warn("vblank accuracy (%.3fus, %.1f%%) worse than a scanline (%.3fus) - "
+ "strict check failed but continuing with relaxed validation\n",
accuracy, 100 * accuracy / mean, line_time(kmode));
-
- return false;
}
/* At least 90% of frame times fall within the one scanline on each
@@ -591,16 +590,55 @@ static bool check_timings(int crtc_idx, const drmModeModeInfo *kmode)
* https://en.wikipedia.org/wiki/Standard_deviation#Rules_for_normally_distributed_data
*/
if (fabs(mean - expected) >= max(line_time(kmode), 1.718 * stddev)) {
- igt_info("vblank interval differs from modeline! expected %.1fus, "
- "measured %1.fus +- %.3fus, difference %.1fus (%.1f sigma, %.1f scanlines)\n",
+ igt_warn("vblank interval differs from modeline! expected %.1fus, "
+ "measured %1.fus +- %.3fus, difference %.1fus (%.1f sigma, %.1f scanlines) - "
+ "strict check failed but continuing with relaxed validation\n",
expected, mean, stddev,
fabs(mean - expected),
fabs(mean - expected) / stddev,
fabs(mean - expected) / line_time(kmode));
+ }
+
+ /* Relaxed validation: 1% relative tolerance for accuracy and deviation
+ *
+ * Hardware specifications (VESA/HDMI/DP) allow ±0.5% pixel clock tolerance.
+ * Since frame_time = (htotal × vtotal) / pixel_clock, the relationship is
+ * inverse: ±0.5% pixel clock → ±0.5% frame time (in opposite direction).
+ *
+ * However, userspace measurement introduces additional overhead (~0.3-0.5%):
+ * - Interrupt latency and scheduling delays (5-50 μs)
+ * - System call overhead for read() (1-5 μs)
+ * - Variable delays depending on system load
+ *
+ * Total tolerance: ±0.5% (hardware) + ~0.5% (software) ≈ ±1.0%
+ *
+ * For stricter validation matching hardware spec only, use 0.005 (0.5%),
+ * but expect potential false failures due to measurement noise.
+ */
+ double tolerance_pct = 0.01; /* 1% tolerance */
+ double tolerance_us = expected * tolerance_pct;
+ double relative_accuracy = accuracy / expected;
+
+ /* Check 1: 99.7% samples within 1% of the mean */
+ if (accuracy >= tolerance_us) {
+ igt_info("FAIL: vblank accuracy (%.3fus, %.2f%%) exceeds 1%% tolerance (%.3fus)\n",
+ accuracy, 100 * relative_accuracy, tolerance_us);
+ return false;
+ }
+ /* Check 2: Mean within 1% of expected, or within 3 sigma (99.7% confidence) */
+ if (fabs(mean - expected) >= max(tolerance_us, 3.0 * stddev)) {
+ igt_info("FAIL: vblank interval differs from expected! expected %.1fus, "
+ "measured %.1fus +- %.3fus, difference %.1fus (%.1f sigma, %.2f%%), "
+ "exceeds 1%% tolerance or 3-sigma threshold\n",
+ expected, mean, stddev,
+ fabs(mean - expected),
+ fabs(mean - expected) / stddev,
+ 100 * fabs(mean - expected) / expected);
return false;
}
+ igt_info("Timing validation passed (within 1%% tolerance)\n");
return true;
}
--
2.43.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
* ✓ i915.CI.BAT: success for tests/kms_setmode: Relax vblank timing tolerance from 1 scanline to 1%
2026-04-16 2:53 [PATCH i-g-t] tests/kms_setmode: Relax vblank timing tolerance from 1 scanline to 1% Jason-JH Lin
@ 2026-04-16 4:11 ` Patchwork
2026-04-16 4:25 ` ✓ Xe.CI.BAT: " Patchwork
` (3 subsequent siblings)
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-04-16 4:11 UTC (permalink / raw)
To: Jason-JH Lin; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 8380 bytes --]
== Series Details ==
Series: tests/kms_setmode: Relax vblank timing tolerance from 1 scanline to 1%
URL : https://patchwork.freedesktop.org/series/164961/
State : success
== Summary ==
CI Bug Log - changes from IGT_8861 -> IGTPW_14990
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/index.html
Participating hosts (41 -> 40)
------------------------------
Additional (1): bat-adls-6
Missing (2): bat-dg2-13 fi-snb-2520m
New tests
---------
New tests have been introduced between IGT_8861 and IGTPW_14990:
### New IGT tests (5) ###
* igt@kms_pipe_crc_basic@hang-read-crc@pipe-d-dp-6:
- Statuses : 1 pass(s)
- Exec time: [1.65] s
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-6:
- Statuses : 1 pass(s)
- Exec time: [0.81] s
* igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-dp-6:
- Statuses : 1 pass(s)
- Exec time: [0.81] s
* igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-dp-6:
- Statuses : 1 pass(s)
- Exec time: [0.74] s
* igt@kms_pipe_crc_basic@read-crc@pipe-d-dp-6:
- Statuses : 1 pass(s)
- Exec time: [0.74] s
Known issues
------------
Here are the changes found in IGTPW_14990 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-adls-6: NOTRUN -> [SKIP][1] ([i915#4613]) +3 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/bat-adls-6/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_tiled_pread_basic@basic:
- bat-adls-6: NOTRUN -> [SKIP][2] ([i915#15656])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/bat-adls-6/igt@gem_tiled_pread_basic@basic.html
* igt@i915_selftest@live@mman:
- bat-atsm-1: [PASS][3] -> [DMESG-FAIL][4] ([i915#14204])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/bat-atsm-1/igt@i915_selftest@live@mman.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/bat-atsm-1/igt@i915_selftest@live@mman.html
* igt@i915_selftest@live@workarounds:
- bat-dg2-9: [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/bat-dg2-9/igt@i915_selftest@live@workarounds.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/bat-dg2-9/igt@i915_selftest@live@workarounds.html
* igt@intel_hwmon@hwmon-read:
- bat-adls-6: NOTRUN -> [SKIP][7] ([i915#7707]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/bat-adls-6/igt@intel_hwmon@hwmon-read.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-adls-6: NOTRUN -> [SKIP][8] ([i915#4103]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/bat-adls-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-adls-6: NOTRUN -> [SKIP][9] ([i915#3555] / [i915#3840])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/bat-adls-6/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-adls-6: NOTRUN -> [SKIP][10]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/bat-adls-6/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_pm_backlight@basic-brightness:
- bat-adls-6: NOTRUN -> [SKIP][11] ([i915#5354])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/bat-adls-6/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-primary-mmap-gtt:
- bat-adls-6: NOTRUN -> [SKIP][12] ([i915#1072] / [i915#9732]) +3 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/bat-adls-6/igt@kms_psr@psr-primary-mmap-gtt.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-adls-6: NOTRUN -> [SKIP][13] ([i915#3555])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/bat-adls-6/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-read:
- bat-adls-6: NOTRUN -> [SKIP][14] ([i915#3291]) +2 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/bat-adls-6/igt@prime_vgem@basic-fence-read.html
#### Possible fixes ####
* igt@i915_selftest@live@late_gt_pm:
- fi-cfl-8109u: [DMESG-WARN][15] ([i915#13735]) -> [PASS][16] +80 other tests pass
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html
* igt@i915_selftest@live@sanitycheck:
- fi-kbl-7567u: [DMESG-WARN][17] ([i915#13735]) -> [PASS][18] +79 other tests pass
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html
* igt@kms_busy@basic@flip:
- fi-kbl-7567u: [DMESG-WARN][19] ([i915#13735] / [i915#180]) -> [PASS][20]
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/fi-kbl-7567u/igt@kms_busy@basic@flip.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/fi-kbl-7567u/igt@kms_busy@basic@flip.html
* igt@kms_pipe_crc_basic@read-crc:
- fi-cfl-8109u: [DMESG-WARN][21] ([i915#13735] / [i915#15673]) -> [PASS][22] +49 other tests pass
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/fi-cfl-8109u/igt@kms_pipe_crc_basic@read-crc.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- fi-kbl-7567u: [DMESG-WARN][23] ([i915#13735] / [i915#15673] / [i915#180]) -> [PASS][24] +52 other tests pass
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html
#### Warnings ####
* igt@i915_selftest@live:
- bat-atsm-1: [DMESG-FAIL][25] ([i915#12061]) -> [DMESG-FAIL][26] ([i915#12061] / [i915#14204])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8861/bat-atsm-1/igt@i915_selftest@live.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/bat-atsm-1/igt@i915_selftest@live.html
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735
[i915#14204]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14204
[i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656
[i915#15673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15673
[i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8861 -> IGTPW_14990
* Linux: CI_DRM_18335 -> CI_DRM_18338
CI-20190529: 20190529
CI_DRM_18335: 45975e225ecbf4cdb6f1283f37f3589101f0a7ac @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_18338: 137513b61b4f187957d0c0f44c63c8549893f970 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14990: 9b4816e98a5e76a3e18b3eccb9f7f569befbb54d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8861: 63a08403d58b652dcab80da02d6078386da78c17 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/index.html
[-- Attachment #2: Type: text/html, Size: 10349 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ Xe.CI.BAT: success for tests/kms_setmode: Relax vblank timing tolerance from 1 scanline to 1%
2026-04-16 2:53 [PATCH i-g-t] tests/kms_setmode: Relax vblank timing tolerance from 1 scanline to 1% Jason-JH Lin
2026-04-16 4:11 ` ✓ i915.CI.BAT: success for " Patchwork
@ 2026-04-16 4:25 ` Patchwork
2026-04-16 5:56 ` [PATCH i-g-t] " B, Jeevan
` (2 subsequent siblings)
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-04-16 4:25 UTC (permalink / raw)
To: Jason-JH Lin; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 4843 bytes --]
== Series Details ==
Series: tests/kms_setmode: Relax vblank timing tolerance from 1 scanline to 1%
URL : https://patchwork.freedesktop.org/series/164961/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8861_BAT -> XEIGTPW_14990_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 12)
------------------------------
Additional (1): bat-bmg-2
Missing (1): bat-bmg-3
Known issues
------------
Here are the changes found in XEIGTPW_14990_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@nullptr:
- bat-bmg-2: NOTRUN -> [SKIP][1] ([Intel XE#2134]) +4 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/bat-bmg-2/igt@fbdev@nullptr.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-bmg-2: NOTRUN -> [SKIP][2] ([Intel XE#2233])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/bat-bmg-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
- bat-bmg-2: NOTRUN -> [SKIP][3] ([Intel XE#2489] / [Intel XE#3419]) +13 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/bat-bmg-2/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
* igt@kms_flip@basic-flip-vs-modeset:
- bat-bmg-2: NOTRUN -> [SKIP][4] ([Intel XE#2482]) +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/bat-bmg-2/igt@kms_flip@basic-flip-vs-modeset.html
* igt@kms_frontbuffer_tracking@basic:
- bat-bmg-2: NOTRUN -> [SKIP][5] ([Intel XE#2434] / [Intel XE#2548] / [Intel XE#6314])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/bat-bmg-2/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_psr@psr-sprite-plane-onoff:
- bat-bmg-2: NOTRUN -> [SKIP][6] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/bat-bmg-2/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- bat-bmg-2: NOTRUN -> [SKIP][7] ([Intel XE#2229])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_pat@pat-index-xehpc:
- bat-bmg-2: NOTRUN -> [SKIP][8] ([Intel XE#1420] / [Intel XE#7590])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/bat-bmg-2/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelp:
- bat-bmg-2: NOTRUN -> [SKIP][9] ([Intel XE#2245] / [Intel XE#7590])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/bat-bmg-2/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- bat-bmg-2: NOTRUN -> [SKIP][10] ([Intel XE#2236] / [Intel XE#7590])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/bat-bmg-2/igt@xe_pat@pat-index-xelpg.html
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2434]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2434
[Intel XE#2482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2482
[Intel XE#2489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2489
[Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#3419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3419
[Intel XE#6314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6314
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
Build changes
-------------
* IGT: IGT_8861 -> IGTPW_14990
* Linux: xe-4906-45975e225ecbf4cdb6f1283f37f3589101f0a7ac -> xe-4909-137513b61b4f187957d0c0f44c63c8549893f970
IGTPW_14990: 9b4816e98a5e76a3e18b3eccb9f7f569befbb54d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8861: 63a08403d58b652dcab80da02d6078386da78c17 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4906-45975e225ecbf4cdb6f1283f37f3589101f0a7ac: 45975e225ecbf4cdb6f1283f37f3589101f0a7ac
xe-4909-137513b61b4f187957d0c0f44c63c8549893f970: 137513b61b4f187957d0c0f44c63c8549893f970
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/index.html
[-- Attachment #2: Type: text/html, Size: 5750 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* RE: [PATCH i-g-t] tests/kms_setmode: Relax vblank timing tolerance from 1 scanline to 1%
2026-04-16 2:53 [PATCH i-g-t] tests/kms_setmode: Relax vblank timing tolerance from 1 scanline to 1% Jason-JH Lin
2026-04-16 4:11 ` ✓ i915.CI.BAT: success for " Patchwork
2026-04-16 4:25 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-04-16 5:56 ` B, Jeevan
2026-04-16 8:12 ` Jason-JH Lin (林睿祥)
2026-04-16 6:50 ` ✗ Xe.CI.FULL: failure for " Patchwork
2026-04-16 14:32 ` ✗ i915.CI.Full: " Patchwork
4 siblings, 1 reply; 7+ messages in thread
From: B, Jeevan @ 2026-04-16 5:56 UTC (permalink / raw)
To: Jason-JH Lin, igt-dev@lists.freedesktop.org, B S, Karthik,
Sharma, Swati2, Kamil Konieczny, Juha-Pekka Heikkila,
Bhanuprakash Modem, Fei Shao
Cc: Nikula, Jani, Paul-PL Chen, Nancy Lin, Singo Chang, Gil Dekel,
Yacoub, Project_Global_Chrome_Upstream_Group@mediatek.com
> -----Original Message-----
> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Jason-JH
> Lin
> Sent: Thursday, April 16, 2026 8:24 AM
> To: igt-dev@lists.freedesktop.org; B S, Karthik <karthik.b.s@intel.com>;
> Sharma, Swati2 <swati2.sharma@intel.com>; Kamil Konieczny
> <kamil.konieczny@linux.intel.com>; Juha-Pekka Heikkila
> <juhapekka.heikkila@gmail.com>; Bhanuprakash Modem
> <bhanuprakash.modem@gmail.com>; Fei Shao <fshao@chromium.org>
> Cc: Nikula, Jani <jani.nikula@intel.com>; Jason-JH Lin <jason-
> jh.lin@mediatek.com>; Paul-PL Chen <paul-pl.chen@mediatek.com>; Nancy
> Lin <nancy.lin@mediatek.com>; Singo Chang <singo.chang@mediatek.com>;
> Gil Dekel <gildekel@google.com>; Yacoub <markyacoub@chromium.org>;
> Project_Global_Chrome_Upstream_Group@mediatek.com
> Subject: [PATCH i-g-t] tests/kms_setmode: Relax vblank timing tolerance from
> 1 scanline to 1%
>
> The original check_timings() validation required vblank intervals to be within 1
> scanline (~15us for 1080p60) which is overly strict and causes false failures
> due to userspace measurement overhead.
>
> Changes:
> - Keep original strict checks (1 scanline, 1.718 sigma) as warnings only
> - Add relaxed validation with 1% relative tolerance for pass/fail
> - Use 3 sigma threshold (99.7% confidence) instead of 1.718 sigma (90%)
>
> Rationale:
> Hardware specs (VESA/HDMI/DP) allow ±0.5% pixel clock tolerance, which
> translates to ±0.5% frame time due to inverse relationship. However,
> userspace measurement via read() syscall adds ~0.3-0.5% overhead from:
> - Interrupt latency and scheduling delays (5-50 us)
> - System call overhead (1-5 us)
> - Variable delays depending on system load
>
> Total tolerance: ±0.5% (hardware) + ~0.5% (software) = ±1.0%
>
> This makes the test ~11x more tolerant while still detecting real timing issues
> and aligning with industry hardware specifications.
>
> Signed-off-by: Jason-JH Lin <jason-jh.lin@mediatek.com>
> ---
> tests/kms_setmode.c | 48
> ++++++++++++++++++++++++++++++++++++++++-----
> 1 file changed, 43 insertions(+), 5 deletions(-)
>
> diff --git a/tests/kms_setmode.c b/tests/kms_setmode.c index
> 1f2849bc26cf..30ab53fef47c 100644
> --- a/tests/kms_setmode.c
> +++ b/tests/kms_setmode.c
> @@ -563,10 +563,9 @@ static bool check_timings(int crtc_idx, const
> drmModeModeInfo *kmode)
>
> /* 99.7% samples within one scanline on each side of mean */
> if (accuracy >= line_time(kmode)) {
> - igt_info("vblank accuracy (%.3fus, %.1f%%) worse than a
> scanline (%.3fus)\n",
> + igt_warn("vblank accuracy (%.3fus, %.1f%%) worse than a
> scanline (%.3fus) - "
> + "strict check failed but continuing with relaxed
> validation\n",
> accuracy, 100 * accuracy / mean, line_time(kmode));
> -
> - return false;
> }
>
> /* At least 90% of frame times fall within the one scanline on each @@
> -591,16 +590,55 @@ static bool check_timings(int crtc_idx, const
> drmModeModeInfo *kmode)
> *
> https://en.wikipedia.org/wiki/Standard_deviation#Rules_for_normally_distrib
> uted_data
> */
> if (fabs(mean - expected) >= max(line_time(kmode), 1.718 * stddev)) {
> - igt_info("vblank interval differs from modeline! expected
> %.1fus, "
> - "measured %1.fus +- %.3fus, difference %.1fus (%.1f
> sigma, %.1f scanlines)\n",
> + igt_warn("vblank interval differs from modeline! expected
> %.1fus, "
> + "measured %1.fus +- %.3fus, difference %.1fus (%.1f
> sigma, %.1f scanlines) - "
> + "strict check failed but continuing with relaxed
> validation\n",
> expected, mean, stddev,
> fabs(mean - expected),
> fabs(mean - expected) / stddev,
> fabs(mean - expected) / line_time(kmode));
> + }
> +
imho, we can first try the strict checks, and if they fail, fall back to relaxed validation. Another approach could be as shown below.
bool strict_failed = false;
/* Strict checks */
if (accuracy >= line_time(kmode)) {
igt_warn(...);
strict_failed = true;
}
if (fabs(mean - expected) >= max(line_time(kmode), 1.718 * stddev)) {
igt_warn(...);
strict_failed = true;
}
/* Relaxed validation */
if (strict_failed)
igt_info("Passed relaxed validation (strict failed)\n");
else
igt_info("Passed strict validation\n");
return true;
> + /* Relaxed validation: 1% relative tolerance for accuracy and deviation
> + *
> + * Hardware specifications (VESA/HDMI/DP) allow ±0.5% pixel clock
> tolerance.
> + * Since frame_time = (htotal × vtotal) / pixel_clock, the relationship is
> + * inverse: ±0.5% pixel clock → ±0.5% frame time (in opposite
> direction).
> + *
> + * However, userspace measurement introduces additional overhead
> (~0.3-0.5%):
> + * - Interrupt latency and scheduling delays (5-50 μs)
> + * - System call overhead for read() (1-5 μs)
> + * - Variable delays depending on system load
> + *
> + * Total tolerance: ±0.5% (hardware) + ~0.5% (software) ≈ ±1.0%
> + *
> + * For stricter validation matching hardware spec only, use 0.005
> (0.5%),
> + * but expect potential false failures due to measurement noise.
> + */
> + double tolerance_pct = 0.01; /* 1% tolerance */
> + double tolerance_us = expected * tolerance_pct;
> + double relative_accuracy = accuracy / expected;
> +
> + /* Check 1: 99.7% samples within 1% of the mean */
> + if (accuracy >= tolerance_us) {
> + igt_info("FAIL: vblank accuracy (%.3fus, %.2f%%) exceeds
> 1%% tolerance (%.3fus)\n",
> + accuracy, 100 * relative_accuracy, tolerance_us);
> + return false;
> + }
>
> + /* Check 2: Mean within 1% of expected, or within 3 sigma (99.7%
> confidence) */
> + if (fabs(mean - expected) >= max(tolerance_us, 3.0 * stddev)) {
> + igt_info("FAIL: vblank interval differs from expected! expected
> %.1fus, "
> + "measured %.1fus +- %.3fus, difference %.1fus (%.1f
> sigma, %.2f%%), "
> + "exceeds 1%% tolerance or 3-sigma threshold\n",
> + expected, mean, stddev,
> + fabs(mean - expected),
> + fabs(mean - expected) / stddev,
> + 100 * fabs(mean - expected) / expected);
> return false;
> }
>
> + igt_info("Timing validation passed (within 1%% tolerance)\n");
> return true;
> }
>
> --
> 2.43.0
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ Xe.CI.FULL: failure for tests/kms_setmode: Relax vblank timing tolerance from 1 scanline to 1%
2026-04-16 2:53 [PATCH i-g-t] tests/kms_setmode: Relax vblank timing tolerance from 1 scanline to 1% Jason-JH Lin
` (2 preceding siblings ...)
2026-04-16 5:56 ` [PATCH i-g-t] " B, Jeevan
@ 2026-04-16 6:50 ` Patchwork
2026-04-16 14:32 ` ✗ i915.CI.Full: " Patchwork
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-04-16 6:50 UTC (permalink / raw)
To: Jason-JH Lin; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 55659 bytes --]
== Series Details ==
Series: tests/kms_setmode: Relax vblank timing tolerance from 1 scanline to 1%
URL : https://patchwork.freedesktop.org/series/164961/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8861_FULL -> XEIGTPW_14990_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_14990_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_14990_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_14990_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_sharpness_filter@filter-formats@pipe-a-edp-1-nv12:
- shard-lnl: [PASS][1] -> [DMESG-WARN][2] +1 other test dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-lnl-2/igt@kms_sharpness_filter@filter-formats@pipe-a-edp-1-nv12.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-2/igt@kms_sharpness_filter@filter-formats@pipe-a-edp-1-nv12.html
Known issues
------------
Here are the changes found in XEIGTPW_14990_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_3d@basic:
- shard-lnl: NOTRUN -> [SKIP][3] ([Intel XE#6011])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-8/igt@kms_3d@basic.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#2327]) +4 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-2/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#1407]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-6/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#610] / [Intel XE#7387])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180:
- shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#1124]) +5 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#1124]) +12 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-1/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#607] / [Intel XE#7361])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-2/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#7675] / [Intel XE#7679])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-7/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#7621]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-8/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#7679]) +2 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-9/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-3-displays-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#367] / [Intel XE#7354])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-8/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#367] / [Intel XE#7354]) +2 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-10/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-4-displays-3840x2160p:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#7676])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-5/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#2887]) +4 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#3432]) +2 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2887]) +20 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-5/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2724] / [Intel XE#7449]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-10/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#306] / [Intel XE#7358])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-5/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2325] / [Intel XE#7358])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-6/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_edid@dp-edid-read:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2252]) +9 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-3/igt@kms_chamelium_edid@dp-edid-read.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#373]) +3 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-5/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_content_protection@atomic:
- shard-bmg: NOTRUN -> [FAIL][24] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +5 other tests fail
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-6/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][25] ([Intel XE#3304] / [Intel XE#7374]) +1 other test fail
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-3/igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2390] / [Intel XE#6974])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-9/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@srm:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#7642]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-5/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#7642])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-7/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-onscreen-64x21:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2320]) +2 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-9/igt@kms_cursor_crc@cursor-onscreen-64x21.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#1424]) +2 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-3/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2321] / [Intel XE#7355]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-9/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#1508])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-8/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#4331] / [Intel XE#7227])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-2/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#4422] / [Intel XE#7442])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-6/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#4422] / [Intel XE#7442])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-9/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html
* igt@kms_feature_discovery@chamelium:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2372] / [Intel XE#7359])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-5/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-3x:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2373] / [Intel XE#7448])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-10/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#1138] / [Intel XE#7344])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-4/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2375])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-6/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#1421]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-1/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#7178] / [Intel XE#7349])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#1397] / [Intel XE#1745] / [Intel XE#7385]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#1397] / [Intel XE#7385]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#7178] / [Intel XE#7351])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#7178] / [Intel XE#7351]) +5 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#7179])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-1/igt@kms_flip_scaled_crc@flip-nv12-linear-to-nv12-linear-reflect-x.html
* igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2311]) +34 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-10/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#4141]) +21 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-render:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#7061] / [Intel XE#7356]) +5 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2352] / [Intel XE#7399])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#6312])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#656]) +19 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#7061] / [Intel XE#7356])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#6312] / [Intel XE#651]) +6 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2313]) +31 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [PASS][56] -> [SKIP][57] ([Intel XE#1503])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-bmg-5/igt@kms_hdr@invalid-hdr.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-9/igt@kms_hdr@invalid-hdr.html
* igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#1450] / [Intel XE#7394]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-7/igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1.html
* igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#1450] / [Intel XE#2568] / [Intel XE#7394]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-7/igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1.html
* igt@kms_panel_fitting@legacy:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2486])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-1/igt@kms_panel_fitting@legacy.html
* igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier@pipe-b-plane-5:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#7130]) +3 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-3/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#7283]) +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-2/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-yf-tiled-modifier:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#7283]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-1/igt@kms_plane@pixel-format-yf-tiled-modifier.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#4596] / [Intel XE#5854])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-6/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a:
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#2763] / [Intel XE#6886]) +5 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-4/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-9/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2499])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-1/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-7/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-1/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#2893] / [Intel XE#7304])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-8/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#4608] / [Intel XE#7304]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#4608]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@pipe-a-edp-1.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#1489]) +8 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-9/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr@fbc-pr-primary-page-flip:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#2234] / [Intel XE#2850]) +12 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-8/igt@kms_psr@fbc-pr-primary-page-flip.html
* igt@kms_psr@fbc-pr-primary-render:
- shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#1406]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-1/igt@kms_psr@fbc-pr-primary-render.html
* igt@kms_psr@fbc-psr2-primary-page-flip:
- shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#1406] / [Intel XE#7345])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-7/igt@kms_psr@fbc-psr2-primary-page-flip.html
* igt@kms_psr@fbc-psr2-primary-page-flip@edp-1:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1406] / [Intel XE#4609])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-7/igt@kms_psr@fbc-psr2-primary-page-flip@edp-1.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#1406] / [Intel XE#2414])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-10/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@bad-tiling:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#3904] / [Intel XE#7342]) +2 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-9/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2330] / [Intel XE#5813]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#1435])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-5/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_sharpness_filter@invalid-filter-with-plane:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#6503]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-2/igt@kms_sharpness_filter@invalid-filter-with-plane.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2426] / [Intel XE#5848]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@flip-basic:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#1499]) +3 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-9/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@lobf:
- shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2168] / [Intel XE#7444])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-10/igt@kms_vrr@lobf.html
* igt@kms_vrr@negative-basic:
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#1499])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-2/igt@kms_vrr@negative-basic.html
* igt@xe_ccs@vm-bind-fault-mode-decompress:
- shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#7644])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-8/igt@xe_ccs@vm-bind-fault-mode-decompress.html
* igt@xe_eudebug@basic-vm-bind:
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#7636]) +6 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-8/igt@xe_eudebug@basic-vm-bind.html
* igt@xe_eudebug_online@set-breakpoint-faultable:
- shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#7636]) +16 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-10/igt@xe_eudebug_online@set-breakpoint-faultable.html
* igt@xe_eudebug_sriov@deny-sriov:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#5793] / [Intel XE#7320] / [Intel XE#7464])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-8/igt@xe_eudebug_sriov@deny-sriov.html
* igt@xe_evict@evict-large-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#6540] / [Intel XE#688]) +4 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-3/igt@xe_evict@evict-large-multi-vm.html
* igt@xe_exec_balancer@twice-parallel-basic:
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#7482]) +8 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-7/igt@xe_exec_balancer@twice-parallel-basic.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2322] / [Intel XE#7372]) +10 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-7/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
* igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#1392]) +3 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-4/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate-race-imm:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#7136]) +14 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-1/igt@xe_exec_fault_mode@many-multi-queue-userptr-invalidate-race-imm.html
* igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#7136]) +5 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-1/igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate.html
* igt@xe_exec_multi_queue@many-execs-basic-smem:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#6874]) +34 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-6/igt@xe_exec_multi_queue@many-execs-basic-smem.html
* igt@xe_exec_multi_queue@max-queues-preempt-mode-fault-dyn-priority:
- shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#6874]) +13 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-1/igt@xe_exec_multi_queue@max-queues-preempt-mode-fault-dyn-priority.html
* igt@xe_exec_system_allocator@many-stride-new-prefetch:
- shard-bmg: NOTRUN -> [INCOMPLETE][101] ([Intel XE#7098])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-9/igt@xe_exec_system_allocator@many-stride-new-prefetch.html
* igt@xe_exec_threads@threads-multi-queue-cm-basic:
- shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#7138]) +3 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-2/igt@xe_exec_threads@threads-multi-queue-cm-basic.html
* igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#7138]) +6 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-1/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-rebind.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2229])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-8/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_multigpu_svm@mgpu-pagefault-basic:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#6964]) +1 other test skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-10/igt@xe_multigpu_svm@mgpu-pagefault-basic.html
* igt@xe_multigpu_svm@mgpu-pagefault-prefetch:
- shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#6964]) +2 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-1/igt@xe_multigpu_svm@mgpu-pagefault-prefetch.html
* igt@xe_non_msix@walker-interrupt-notification-non-msix:
- shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#7622])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-7/igt@xe_non_msix@walker-interrupt-notification-non-msix.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#2248] / [Intel XE#7325] / [Intel XE#7393])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-3/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_pat@pat-index-xelp:
- shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2245] / [Intel XE#7590])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-7/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-sw-hw-reset-compare:
- shard-bmg: NOTRUN -> [FAIL][110] ([Intel XE#7695])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-3/igt@xe_pat@pat-sw-hw-reset-compare.html
* igt@xe_peer2peer@write:
- shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#2427] / [Intel XE#6953] / [Intel XE#7326] / [Intel XE#7353])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-6/igt@xe_peer2peer@write.html
* igt@xe_pm@d3cold-i2c:
- shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#5694] / [Intel XE#7370])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-7/igt@xe_pm@d3cold-i2c.html
* igt@xe_pm@d3hot-mmap-vram:
- shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#1948])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-7/igt@xe_pm@d3hot-mmap-vram.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#2284] / [Intel XE#7370])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-9/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pm@s3-d3hot-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#584] / [Intel XE#7369])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-4/igt@xe_pm@s3-d3hot-basic-exec.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#579] / [Intel XE#7329] / [Intel XE#7517])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-7/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_pmu@all-fn-engine-activity-load:
- shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#4650] / [Intel XE#7347])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-1/igt@xe_pmu@all-fn-engine-activity-load.html
* igt@xe_prefetch_fault@prefetch-fault:
- shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#7599])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-10/igt@xe_prefetch_fault@prefetch-fault.html
* igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq:
- shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#4733] / [Intel XE#7417]) +3 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-3/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html
* igt@xe_query@multigpu-query-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#944]) +1 other test skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-5/igt@xe_query@multigpu-query-cs-cycles.html
* igt@xe_query@multigpu-query-uc-fw-version-huc:
- shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#944]) +2 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-1/igt@xe_query@multigpu-query-uc-fw-version-huc.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-bmg: [PASS][122] -> [FAIL][123] ([Intel XE#6569])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-bmg-5/igt@xe_sriov_flr@flr-each-isolation.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-9/igt@xe_sriov_flr@flr-each-isolation.html
* igt@xe_sriov_flr@flr-twice:
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#4273])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-5/igt@xe_sriov_flr@flr-twice.html
* igt@xe_sriov_vfio@bind-unbind-vfs:
- shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#7724])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-5/igt@xe_sriov_vfio@bind-unbind-vfs.html
#### Possible fixes ####
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-bmg: [INCOMPLETE][126] ([Intel XE#6819]) -> [PASS][127] +1 other test pass
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-9/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [INCOMPLETE][128] ([Intel XE#7084]) -> [PASS][129] +1 other test pass
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-10/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_flip@flip-vs-expired-vblank@b-edp1:
- shard-lnl: [FAIL][130] ([Intel XE#301]) -> [PASS][131] +1 other test pass
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [FAIL][132] ([Intel XE#7340]) -> [PASS][133]
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-lnl-2/igt@kms_pm_dc@dc6-psr.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-1/igt@kms_pm_dc@dc6-psr.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-lnl: [FAIL][134] ([Intel XE#6361]) -> [PASS][135] +2 other tests pass
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-lnl-8/igt@kms_setmode@basic@pipe-b-edp-1.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-2/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
- shard-lnl: [FAIL][136] ([Intel XE#2142]) -> [PASS][137] +1 other test pass
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-lnl-8/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-lnl-6/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
#### Warnings ####
* igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary:
- shard-bmg: [ABORT][138] -> [SKIP][139] ([Intel XE#4141])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][140] ([Intel XE#3544]) -> [SKIP][141] ([Intel XE#3374] / [Intel XE#3544])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-bmg-10/igt@kms_hdr@brightness-with-hdr.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-7/igt@kms_hdr@brightness-with-hdr.html
* igt@xe_module_load@load:
- shard-bmg: ([PASS][142], [PASS][143], [PASS][144], [SKIP][145], [PASS][146], [PASS][147], [DMESG-WARN][148], [DMESG-WARN][149], [PASS][150], [PASS][151], [DMESG-WARN][152], [DMESG-WARN][153], [PASS][154], [PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167]) ([Intel XE#2457] / [Intel XE#7405] / [Intel XE#7725]) -> ([PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [SKIP][182], [PASS][183], [PASS][184], [PASS][185], [PASS][186], [PASS][187], [PASS][188], [PASS][189], [PASS][190], [PASS][191], [PASS][192]) ([Intel XE#2457] / [Intel XE#7405])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-bmg-5/igt@xe_module_load@load.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-bmg-5/igt@xe_module_load@load.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-bmg-5/igt@xe_module_load@load.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-bmg-9/igt@xe_module_load@load.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-bmg-3/igt@xe_module_load@load.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-bmg-7/igt@xe_module_load@load.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-bmg-6/igt@xe_module_load@load.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-bmg-6/igt@xe_module_load@load.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-bmg-10/igt@xe_module_load@load.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-bmg-8/igt@xe_module_load@load.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-bmg-6/igt@xe_module_load@load.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-bmg-6/igt@xe_module_load@load.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-bmg-6/igt@xe_module_load@load.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-bmg-8/igt@xe_module_load@load.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-bmg-2/igt@xe_module_load@load.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-bmg-10/igt@xe_module_load@load.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-bmg-2/igt@xe_module_load@load.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-bmg-7/igt@xe_module_load@load.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-bmg-1/igt@xe_module_load@load.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-bmg-1/igt@xe_module_load@load.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-bmg-1/igt@xe_module_load@load.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-bmg-9/igt@xe_module_load@load.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-bmg-9/igt@xe_module_load@load.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-bmg-3/igt@xe_module_load@load.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-bmg-3/igt@xe_module_load@load.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8861/shard-bmg-9/igt@xe_module_load@load.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-2/igt@xe_module_load@load.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-8/igt@xe_module_load@load.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-8/igt@xe_module_load@load.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-8/igt@xe_module_load@load.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-10/igt@xe_module_load@load.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-2/igt@xe_module_load@load.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-5/igt@xe_module_load@load.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-5/igt@xe_module_load@load.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-10/igt@xe_module_load@load.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-10/igt@xe_module_load@load.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-1/igt@xe_module_load@load.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-1/igt@xe_module_load@load.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-1/igt@xe_module_load@load.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-3/igt@xe_module_load@load.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-1/igt@xe_module_load@load.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-3/igt@xe_module_load@load.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-6/igt@xe_module_load@load.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-6/igt@xe_module_load@load.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-6/igt@xe_module_load@load.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-7/igt@xe_module_load@load.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-7/igt@xe_module_load@load.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-7/igt@xe_module_load@load.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-9/igt@xe_module_load@load.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-9/igt@xe_module_load@load.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/shard-bmg-9/igt@xe_module_load@load.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948
[Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[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#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
[Intel XE#2568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#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#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
[Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#5793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5793
[Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#5854]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5854
[Intel XE#6011]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6011
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6819
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
[Intel XE#7098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7098
[Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
[Intel XE#7227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7227
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304
[Intel XE#7320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7320
[Intel XE#7325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7325
[Intel XE#7326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7326
[Intel XE#7329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7329
[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#7344]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7344
[Intel XE#7345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7345
[Intel XE#7347]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7347
[Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7353]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7353
[Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7359]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7359
[Intel XE#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361
[Intel XE#7369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7369
[Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
[Intel XE#7385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7385
[Intel XE#7387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7387
[Intel XE#7393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7393
[Intel XE#7394]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7394
[Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
[Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442
[Intel XE#7444]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7444
[Intel XE#7448]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7448
[Intel XE#7449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7449
[Intel XE#7464]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7464
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7517]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7517
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#7599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7599
[Intel XE#7621]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7621
[Intel XE#7622]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7622
[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#7644]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7644
[Intel XE#7675]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7675
[Intel XE#7676]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7676
[Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
[Intel XE#7695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7695
[Intel XE#7724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7724
[Intel XE#7725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7725
[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_8861 -> IGTPW_14990
* Linux: xe-4906-45975e225ecbf4cdb6f1283f37f3589101f0a7ac -> xe-4909-137513b61b4f187957d0c0f44c63c8549893f970
IGTPW_14990: 9b4816e98a5e76a3e18b3eccb9f7f569befbb54d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8861: 63a08403d58b652dcab80da02d6078386da78c17 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4906-45975e225ecbf4cdb6f1283f37f3589101f0a7ac: 45975e225ecbf4cdb6f1283f37f3589101f0a7ac
xe-4909-137513b61b4f187957d0c0f44c63c8549893f970: 137513b61b4f187957d0c0f44c63c8549893f970
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14990/index.html
[-- Attachment #2: Type: text/html, Size: 62944 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH i-g-t] tests/kms_setmode: Relax vblank timing tolerance from 1 scanline to 1%
2026-04-16 5:56 ` [PATCH i-g-t] " B, Jeevan
@ 2026-04-16 8:12 ` Jason-JH Lin (林睿祥)
0 siblings, 0 replies; 7+ messages in thread
From: Jason-JH Lin (林睿祥) @ 2026-04-16 8:12 UTC (permalink / raw)
To: karthik.b.s@intel.com, swati2.sharma@intel.com,
juhapekka.heikkila@gmail.com, jeevan.b@intel.com,
bhanuprakash.modem@gmail.com, igt-dev@lists.freedesktop.org,
kamil.konieczny@linux.intel.com, fshao@chromium.org
Cc: markyacoub@chromium.org, jani.nikula@intel.com,
Paul-pl Chen (陳柏霖),
Nancy Lin (林欣螢),
Project_Global_Chrome_Upstream_Group,
Singo Chang (張興國), gildekel@google.com
[snip]
> > if (fabs(mean - expected) >= max(line_time(kmode), 1.718 *
> > stddev)) {
> > - igt_info("vblank interval differs from modeline!
> > expected
> > %.1fus, "
> > - "measured %1.fus +- %.3fus, difference
> > %.1fus (%.1f
> > sigma, %.1f scanlines)\n",
> > + igt_warn("vblank interval differs from modeline!
> > expected
> > %.1fus, "
> > + "measured %1.fus +- %.3fus, difference
> > %.1fus (%.1f
> > sigma, %.1f scanlines) - "
> > + "strict check failed but continuing with
> > relaxed
> > validation\n",
> > expected, mean, stddev,
> > fabs(mean - expected),
> > fabs(mean - expected) / stddev,
> > fabs(mean - expected) /
> > line_time(kmode));
> > + }
> > +
> imho, we can first try the strict checks, and if they fail, fall back
> to relaxed validation. Another approach could be as shown below.
> bool strict_failed = false;
>
> /* Strict checks */
> if (accuracy >= line_time(kmode)) {
> igt_warn(...);
> strict_failed = true;
> }
>
> if (fabs(mean - expected) >= max(line_time(kmode), 1.718 * stddev)) {
> igt_warn(...);
> strict_failed = true;
> }
>
> /* Relaxed validation */
> if (strict_failed)
> igt_info("Passed relaxed validation (strict failed)\n");
> else
> igt_info("Passed strict validation\n");
>
> return true;
>
Thanks for the good idea!
I'll send V2 as your suggestion.
Regards,
Jason-JH Lin
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ i915.CI.Full: failure for tests/kms_setmode: Relax vblank timing tolerance from 1 scanline to 1%
2026-04-16 2:53 [PATCH i-g-t] tests/kms_setmode: Relax vblank timing tolerance from 1 scanline to 1% Jason-JH Lin
` (3 preceding siblings ...)
2026-04-16 6:50 ` ✗ Xe.CI.FULL: failure for " Patchwork
@ 2026-04-16 14:32 ` Patchwork
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-04-16 14:32 UTC (permalink / raw)
To: Jason-JH Lin (林睿祥); +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 145143 bytes --]
== Series Details ==
Series: tests/kms_setmode: Relax vblank timing tolerance from 1 scanline to 1%
URL : https://patchwork.freedesktop.org/series/164961/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_18338_full -> IGTPW_14990_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_14990_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_14990_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/index.html
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_14990_full:
### IGT changes ###
#### Possible regressions ####
* igt@prime_busy@hang:
- shard-tglu: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-tglu-8/igt@prime_busy@hang.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-7/igt@prime_busy@hang.html
#### Warnings ####
* igt@kms_setmode@basic:
- shard-snb: [FAIL][3] ([i915#15106]) -> [WARN][4] +6 other tests warn
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-snb1/igt@kms_setmode@basic.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-snb4/igt@kms_setmode@basic.html
Known issues
------------
Here are the changes found in IGTPW_14990_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@crc32:
- shard-rkl: NOTRUN -> [SKIP][5] ([i915#6230])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-4/igt@api_intel_bb@crc32.html
- shard-dg1: NOTRUN -> [SKIP][6] ([i915#6230])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-15/igt@api_intel_bb@crc32.html
- shard-tglu: NOTRUN -> [SKIP][7] ([i915#6230])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-7/igt@api_intel_bb@crc32.html
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-mtlp: NOTRUN -> [SKIP][8] ([i915#8411])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-4/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@device_reset@cold-reset-bound:
- shard-mtlp: NOTRUN -> [SKIP][9] ([i915#11078])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-1/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-tglu: NOTRUN -> [SKIP][10] ([i915#11078])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-4/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_buddy@drm_buddy:
- shard-tglu-1: NOTRUN -> [SKIP][11] ([i915#15678])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-1/igt@drm_buddy@drm_buddy.html
* igt@gem_basic@multigpu-create-close:
- shard-dg1: NOTRUN -> [SKIP][12] ([i915#7697])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-15/igt@gem_basic@multigpu-create-close.html
- shard-tglu: NOTRUN -> [SKIP][13] ([i915#7697])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-7/igt@gem_basic@multigpu-create-close.html
- shard-mtlp: NOTRUN -> [SKIP][14] ([i915#7697])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-5/igt@gem_basic@multigpu-create-close.html
- shard-dg2: NOTRUN -> [SKIP][15] ([i915#7697])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-3/igt@gem_basic@multigpu-create-close.html
* igt@gem_busy@semaphore:
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#3936])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-1/igt@gem_busy@semaphore.html
- shard-dg1: NOTRUN -> [SKIP][17] ([i915#3936])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-12/igt@gem_busy@semaphore.html
- shard-mtlp: NOTRUN -> [SKIP][18] ([i915#3936])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-7/igt@gem_busy@semaphore.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-mtlp: NOTRUN -> [SKIP][19] ([i915#3555] / [i915#9323])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-6/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][20] ([i915#9323])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-3/igt@gem_ccs@suspend-resume.html
* igt@gem_ctx_isolation@preservation-s3@rcs0:
- shard-glk11: NOTRUN -> [INCOMPLETE][21] ([i915#13356]) +1 other test incomplete
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-glk11/igt@gem_ctx_isolation@preservation-s3@rcs0.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-mtlp: NOTRUN -> [SKIP][22] ([i915#8555])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-7/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-dg2: NOTRUN -> [SKIP][23] ([i915#8555])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-4/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_ctx_persistence@legacy-engines-cleanup:
- shard-snb: NOTRUN -> [SKIP][24] ([i915#1099]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-snb7/igt@gem_ctx_persistence@legacy-engines-cleanup.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt:
- shard-dg2: NOTRUN -> [SKIP][25] ([i915#5882]) +7 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-1/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html
* igt@gem_eio@in-flight-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][26] ([i915#13390])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-glk6/igt@gem_eio@in-flight-suspend.html
* igt@gem_eio@kms:
- shard-rkl: [PASS][27] -> [DMESG-WARN][28] ([i915#13363])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-2/igt@gem_eio@kms.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-5/igt@gem_eio@kms.html
- shard-tglu: [PASS][29] -> [DMESG-WARN][30] ([i915#13363])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-tglu-7/igt@gem_eio@kms.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-5/igt@gem_eio@kms.html
* igt@gem_eio@unwedge-stress:
- shard-snb: NOTRUN -> [FAIL][31] ([i915#8898]) +1 other test fail
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-snb1/igt@gem_eio@unwedge-stress.html
* igt@gem_eio@unwedge-stress@blt:
- shard-mtlp: NOTRUN -> [SKIP][32] ([i915#15314])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-7/igt@gem_eio@unwedge-stress@blt.html
* igt@gem_exec_balancer@hog:
- shard-mtlp: NOTRUN -> [SKIP][33] ([i915#4812])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-8/igt@gem_exec_balancer@hog.html
* igt@gem_exec_balancer@parallel:
- shard-rkl: NOTRUN -> [SKIP][34] ([i915#4525]) +2 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-8/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_balancer@parallel-dmabuf-import-out-fence:
- shard-rkl: NOTRUN -> [SKIP][35] ([i915#14544] / [i915#4525])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-tglu: NOTRUN -> [SKIP][36] ([i915#4525]) +2 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-6/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_balancer@sliced:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#4812]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-8/igt@gem_exec_balancer@sliced.html
* igt@gem_exec_capture@capture-recoverable:
- shard-tglu: NOTRUN -> [SKIP][38] ([i915#6344])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-4/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_flush@basic-wb-pro-default:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#3539] / [i915#4852]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-8/igt@gem_exec_flush@basic-wb-pro-default.html
- shard-dg1: NOTRUN -> [SKIP][40] ([i915#3539] / [i915#4852]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-16/igt@gem_exec_flush@basic-wb-pro-default.html
* igt@gem_exec_reloc@basic-scanout:
- shard-rkl: NOTRUN -> [SKIP][41] ([i915#14544] / [i915#3281])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@gem_exec_reloc@basic-scanout.html
* igt@gem_exec_reloc@basic-wc-gtt-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#3281]) +6 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-8/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#3281]) +7 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-5/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_reloc@basic-write-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][44] ([i915#3281]) +6 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-4/igt@gem_exec_reloc@basic-write-read-noreloc.html
- shard-dg1: NOTRUN -> [SKIP][45] ([i915#3281]) +5 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-15/igt@gem_exec_reloc@basic-write-read-noreloc.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#4537] / [i915#4812]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-8/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_exec_schedule@reorder-wide:
- shard-dg1: NOTRUN -> [SKIP][47] ([i915#4812]) +2 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-19/igt@gem_exec_schedule@reorder-wide.html
- shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4537] / [i915#4812]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-4/igt@gem_exec_schedule@reorder-wide.html
* igt@gem_exec_suspend@basic-s0:
- shard-dg2: [PASS][49] -> [INCOMPLETE][50] ([i915#13356]) +1 other test incomplete
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-dg2-8/igt@gem_exec_suspend@basic-s0.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-10/igt@gem_exec_suspend@basic-s0.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#4860]) +3 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-8/igt@gem_fenced_exec_thrash@2-spare-fences.html
- shard-dg1: NOTRUN -> [SKIP][52] ([i915#4860]) +2 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-16/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_fenced_exec_thrash@no-spare-fences-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4860]) +2 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-7/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4613]) +4 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-7/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-tglu-1: NOTRUN -> [SKIP][55] ([i915#4613]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-1/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@random-engines:
- shard-rkl: NOTRUN -> [SKIP][56] ([i915#4613]) +2 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-5/igt@gem_lmem_swapping@random-engines.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-glk: NOTRUN -> [SKIP][57] ([i915#4613]) +7 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-glk3/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-dg1: NOTRUN -> [SKIP][58] ([i915#12193])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-15/igt@gem_lmem_swapping@verify-random-ccs.html
- shard-tglu: NOTRUN -> [SKIP][59] ([i915#4613]) +3 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-5/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_lmem_swapping@verify-random-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#4565])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-15/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html
* igt@gem_mmap@basic:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#4083]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-4/igt@gem_mmap@basic.html
* igt@gem_mmap_gtt@basic-write-read:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4077]) +7 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-5/igt@gem_mmap_gtt@basic-write-read.html
* igt@gem_mmap_gtt@fault-concurrent:
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#4077]) +6 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-13/igt@gem_mmap_gtt@fault-concurrent.html
* igt@gem_mmap_gtt@zero-extend:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#4077]) +8 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-1/igt@gem_mmap_gtt@zero-extend.html
* igt@gem_mmap_wc@close:
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#4083]) +3 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-15/igt@gem_mmap_wc@close.html
* igt@gem_mmap_wc@write-prefaulted:
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4083]) +2 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-8/igt@gem_mmap_wc@write-prefaulted.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][67] ([i915#3282]) +5 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-7/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#3282]) +4 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-19/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
- shard-mtlp: NOTRUN -> [SKIP][69] ([i915#3282]) +4 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-4/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pxp@display-protected-crc:
- shard-dg1: NOTRUN -> [SKIP][70] ([i915#4270]) +2 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-18/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-rkl: NOTRUN -> [SKIP][71] ([i915#13717])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-7/igt@gem_pxp@hw-rejects-pxp-buffer.html
- shard-tglu: NOTRUN -> [SKIP][72] ([i915#13398])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-6/igt@gem_pxp@hw-rejects-pxp-buffer.html
- shard-mtlp: NOTRUN -> [SKIP][73] ([i915#13398])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-1/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-dg2: NOTRUN -> [SKIP][74] ([i915#4270]) +2 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-4/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
- shard-rkl: [PASS][75] -> [ABORT][76] ([i915#15131])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-3/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-1/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
* igt@gem_readwrite@beyond-eob:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#3282]) +3 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-4/igt@gem_readwrite@beyond-eob.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][78] ([i915#8428]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-7/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html
* igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled-ccs:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#5190] / [i915#8428]) +3 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-3/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled-ccs.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#4885])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-6/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_softpin@noreloc-s3:
- shard-rkl: [PASS][81] -> [INCOMPLETE][82] ([i915#13809])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-8/igt@gem_softpin@noreloc-s3.html
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@gem_softpin@noreloc-s3.html
* igt@gem_userptr_blits@coherency-sync:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#3297]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-3/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-tglu: NOTRUN -> [SKIP][84] ([i915#3297] / [i915#3323])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-10/igt@gem_userptr_blits@dmabuf-sync.html
- shard-mtlp: NOTRUN -> [SKIP][85] ([i915#3297]) +3 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-3/igt@gem_userptr_blits@dmabuf-sync.html
- shard-rkl: NOTRUN -> [SKIP][86] ([i915#3297] / [i915#3323])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-4/igt@gem_userptr_blits@dmabuf-sync.html
- shard-dg1: NOTRUN -> [SKIP][87] ([i915#3297])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-14/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#3297] / [i915#4880]) +3 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-1/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
- shard-dg1: NOTRUN -> [SKIP][89] ([i915#3297] / [i915#4880]) +2 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-16/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-tglu-1: NOTRUN -> [SKIP][90] ([i915#3297])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-1/igt@gem_userptr_blits@readonly-unsync.html
* igt@gen9_exec_parse@allowed-all:
- shard-tglu-1: NOTRUN -> [SKIP][91] ([i915#2527] / [i915#2856]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-1/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@shadow-peek:
- shard-dg2: NOTRUN -> [SKIP][92] ([i915#2856]) +3 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-8/igt@gen9_exec_parse@shadow-peek.html
- shard-rkl: NOTRUN -> [SKIP][93] ([i915#2527]) +4 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-2/igt@gen9_exec_parse@shadow-peek.html
- shard-dg1: NOTRUN -> [SKIP][94] ([i915#2527]) +3 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-16/igt@gen9_exec_parse@shadow-peek.html
- shard-mtlp: NOTRUN -> [SKIP][95] ([i915#2856]) +4 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-5/igt@gen9_exec_parse@shadow-peek.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-tglu: NOTRUN -> [SKIP][96] ([i915#2527] / [i915#2856]) +4 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-4/igt@gen9_exec_parse@unaligned-jump.html
* igt@i915_drm_fdinfo@all-busy-idle-check-all:
- shard-dg1: NOTRUN -> [SKIP][97] ([i915#14123])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-14/igt@i915_drm_fdinfo@all-busy-idle-check-all.html
* igt@i915_drm_fdinfo@busy-check-all@vecs0:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#11527]) +7 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-6/igt@i915_drm_fdinfo@busy-check-all@vecs0.html
* igt@i915_drm_fdinfo@busy-idle-check-all@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][99] ([i915#11527]) +6 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-2/igt@i915_drm_fdinfo@busy-idle-check-all@rcs0.html
* igt@i915_drm_fdinfo@virtual-busy-hang:
- shard-mtlp: NOTRUN -> [SKIP][100] ([i915#14118])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-1/igt@i915_drm_fdinfo@virtual-busy-hang.html
* igt@i915_drm_fdinfo@virtual-busy-hang-all:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#14118]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-1/igt@i915_drm_fdinfo@virtual-busy-hang-all.html
* igt@i915_module_load@fault-injection@i915_driver_mmio_probe:
- shard-dg1: NOTRUN -> [INCOMPLETE][102] ([i915#15481])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-17/igt@i915_module_load@fault-injection@i915_driver_mmio_probe.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-rkl: NOTRUN -> [SKIP][103] ([i915#8399]) +1 other test skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-3/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-tglu-1: NOTRUN -> [SKIP][104] ([i915#14498])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rps@thresholds:
- shard-dg2: NOTRUN -> [SKIP][105] ([i915#11681]) +1 other test skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-4/igt@i915_pm_rps@thresholds.html
- shard-dg1: NOTRUN -> [SKIP][106] ([i915#11681])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-17/igt@i915_pm_rps@thresholds.html
- shard-mtlp: NOTRUN -> [SKIP][107] ([i915#11681])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-3/igt@i915_pm_rps@thresholds.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-mtlp: NOTRUN -> [SKIP][108] ([i915#6188])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-2/igt@i915_query@query-topology-coherent-slice-mask.html
- shard-dg2: NOTRUN -> [SKIP][109] ([i915#6188])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-4/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-glk11: NOTRUN -> [INCOMPLETE][110] ([i915#4817])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-glk11/igt@i915_suspend@basic-s3-without-i915.html
* igt@i915_suspend@forcewake:
- shard-glk: NOTRUN -> [INCOMPLETE][111] ([i915#4817]) +1 other test incomplete
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-glk5/igt@i915_suspend@forcewake.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#5190]) +3 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- shard-mtlp: NOTRUN -> [SKIP][113] ([i915#5190])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-tglu-1: NOTRUN -> [SKIP][114] ([i915#12454] / [i915#12712])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-dg2: NOTRUN -> [FAIL][115] ([i915#5956]) +1 other test fail
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
- shard-mtlp: NOTRUN -> [SKIP][116] ([i915#1769] / [i915#3555])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-180:
- shard-tglu-1: NOTRUN -> [SKIP][117] ([i915#5286]) +1 other test skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-1/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: NOTRUN -> [SKIP][118] ([i915#5286]) +4 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-2/igt@kms_big_fb@4-tiled-addfb.html
- shard-dg1: NOTRUN -> [SKIP][119] ([i915#5286]) +1 other test skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-16/igt@kms_big_fb@4-tiled-addfb.html
- shard-tglu: NOTRUN -> [SKIP][120] ([i915#5286]) +4 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-8/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#4538] / [i915#5286]) +1 other test skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-12/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-rkl: NOTRUN -> [SKIP][122] ([i915#14544] / [i915#5286])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][123] +15 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-2/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][124] ([i915#3638]) +5 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-5/igt@kms_big_fb@linear-8bpp-rotate-270.html
- shard-dg1: NOTRUN -> [SKIP][125] ([i915#3638]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-19/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
- shard-snb: NOTRUN -> [SKIP][126] +168 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-snb6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
- shard-mtlp: NOTRUN -> [SKIP][127] ([i915#3828]) +2 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-2/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
- shard-tglu-1: NOTRUN -> [SKIP][128] ([i915#3828])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-1/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#3828]) +2 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-1/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
- shard-rkl: NOTRUN -> [SKIP][130] ([i915#3828])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-4/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
- shard-dg1: NOTRUN -> [SKIP][131] ([i915#3828]) +2 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-15/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
- shard-tglu: NOTRUN -> [SKIP][132] ([i915#3828]) +2 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-7/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-mtlp: NOTRUN -> [SKIP][133] ([i915#6187])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-5/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
- shard-dg1: [PASS][134] -> [DMESG-WARN][135] ([i915#4423]) +1 other test dmesg-warn
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-dg1-15/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-13/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][136] ([i915#4538] / [i915#5190]) +4 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][137] ([i915#4538]) +2 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-16/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][138] ([i915#14098] / [i915#6095]) +55 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][139] ([i915#6095]) +87 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][140] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-4/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
- shard-glk: NOTRUN -> [SKIP][141] +528 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-glk4/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-3:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#10307] / [i915#6095]) +114 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-10/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-3.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][143] ([i915#6095]) +54 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-1/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-edp-1.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][144] ([i915#6095]) +79 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-10/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][145] ([i915#6095]) +9 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#6095]) +182 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-12/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][147] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#14544] / [i915#6095]) +3 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: [PASS][149] -> [INCOMPLETE][150] ([i915#15582])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-glk9/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-glk9/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#6095]) +43 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#12313])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-15/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
- shard-tglu: NOTRUN -> [SKIP][153] ([i915#12313]) +1 other test skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][154] ([i915#12313])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
- shard-dg2: NOTRUN -> [SKIP][155] ([i915#12313])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#12313])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][157] ([i915#12313]) +1 other test skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_cdclk@mode-transition:
- shard-tglu: NOTRUN -> [SKIP][158] ([i915#3742])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-3/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-mtlp: NOTRUN -> [SKIP][159] ([i915#13784])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-4/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-tglu: NOTRUN -> [SKIP][160] ([i915#11151] / [i915#7828]) +8 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-4/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@ctm-max:
- shard-dg2: NOTRUN -> [SKIP][161] +9 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-1/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#11151] / [i915#7828]) +5 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-4/igt@kms_chamelium_frames@hdmi-crc-fast.html
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#11151] / [i915#7828]) +6 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-7/igt@kms_chamelium_frames@hdmi-crc-fast.html
- shard-tglu-1: NOTRUN -> [SKIP][164] ([i915#11151] / [i915#7828]) +2 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-1/igt@kms_chamelium_frames@hdmi-crc-fast.html
- shard-dg1: NOTRUN -> [SKIP][165] ([i915#11151] / [i915#7828]) +3 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-14/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-mtlp: NOTRUN -> [SKIP][166] ([i915#11151] / [i915#7828]) +5 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-4/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_color@deep-color:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#12655] / [i915#3555])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-1/igt@kms_color@deep-color.html
- shard-rkl: NOTRUN -> [SKIP][168] ([i915#12655] / [i915#3555])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-4/igt@kms_color@deep-color.html
- shard-dg1: NOTRUN -> [SKIP][169] ([i915#12655] / [i915#3555])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-15/igt@kms_color@deep-color.html
- shard-tglu: NOTRUN -> [SKIP][170] ([i915#3555] / [i915#9979])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-7/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic-hdcp14:
- shard-tglu: NOTRUN -> [SKIP][171] ([i915#15865]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-4/igt@kms_content_protection@atomic-hdcp14.html
* igt@kms_content_protection@content-type-change:
- shard-rkl: NOTRUN -> [SKIP][172] ([i915#15865]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-4/igt@kms_content_protection@content-type-change.html
- shard-dg1: NOTRUN -> [SKIP][173] ([i915#15865]) +2 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-12/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
- shard-rkl: NOTRUN -> [SKIP][174] ([i915#15330])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-2/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
* igt@kms_content_protection@legacy:
- shard-dg2: NOTRUN -> [SKIP][175] ([i915#15865]) +3 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-5/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@uevent:
- shard-mtlp: NOTRUN -> [SKIP][176] ([i915#15865]) +2 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-2/igt@kms_content_protection@uevent.html
- shard-tglu-1: NOTRUN -> [SKIP][177] ([i915#15865])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-1/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-mtlp: NOTRUN -> [SKIP][178] ([i915#8814]) +2 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-rkl: NOTRUN -> [SKIP][179] ([i915#13049] / [i915#14544])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-tglu: NOTRUN -> [SKIP][180] ([i915#13049]) +1 other test skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][181] ([i915#13566]) +3 other tests fail
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-5/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-mtlp: NOTRUN -> [SKIP][182] ([i915#13049])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-1/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#3555]) +3 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#3555]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-1/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
- shard-rkl: NOTRUN -> [SKIP][185] ([i915#3555]) +2 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
- shard-dg1: NOTRUN -> [SKIP][186] ([i915#3555]) +1 other test skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-15/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
- shard-mtlp: NOTRUN -> [SKIP][187] ([i915#3555] / [i915#8814])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-7/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-tglu-1: NOTRUN -> [SKIP][188] ([i915#13049])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][189] -> [FAIL][190] ([i915#13566]) +1 other test fail
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-tglu-10/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-tglu: NOTRUN -> [FAIL][191] ([i915#13566]) +1 other test fail
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_crc@cursor-sliding-max-size:
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#14544] / [i915#3555])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-max-size.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][193] ([i915#4213])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][194] ([i915#4103])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-dg2: NOTRUN -> [SKIP][195] ([i915#13046] / [i915#5354]) +3 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][196] ([i915#9809]) +4 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-rkl: NOTRUN -> [SKIP][197] +22 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-4/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: NOTRUN -> [FAIL][198] ([i915#15804])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-tglu: NOTRUN -> [SKIP][199] ([i915#9067])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-5/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-rkl: NOTRUN -> [SKIP][200] ([i915#14544] / [i915#4103])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][201] ([i915#9833])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-rkl: NOTRUN -> [SKIP][202] ([i915#9723])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-3/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-dg1: NOTRUN -> [SKIP][203] ([i915#9723])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-15/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-tglu: NOTRUN -> [SKIP][204] ([i915#9723])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dp_aux_dev@basic:
- shard-dg2: NOTRUN -> [SKIP][205] ([i915#1257])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-5/igt@kms_dp_aux_dev@basic.html
- shard-rkl: NOTRUN -> [SKIP][206] ([i915#1257])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-8/igt@kms_dp_aux_dev@basic.html
- shard-dg1: NOTRUN -> [SKIP][207] ([i915#1257])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-12/igt@kms_dp_aux_dev@basic.html
- shard-tglu: NOTRUN -> [SKIP][208] ([i915#1257])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-10/igt@kms_dp_aux_dev@basic.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-mtlp: NOTRUN -> [SKIP][209] ([i915#13749]) +1 other test skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-4/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-rkl: NOTRUN -> [SKIP][210] ([i915#13748]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-8/igt@kms_dp_link_training@uhbr-sst.html
- shard-dg1: NOTRUN -> [SKIP][211] ([i915#13748]) +1 other test skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-17/igt@kms_dp_link_training@uhbr-sst.html
- shard-tglu: NOTRUN -> [SKIP][212] ([i915#13748]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-5/igt@kms_dp_link_training@uhbr-sst.html
- shard-dg2: NOTRUN -> [SKIP][213] ([i915#13748])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-4/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-tglu-1: NOTRUN -> [SKIP][214] ([i915#13707])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-1/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][215] ([i915#8812])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-15/igt@kms_draw_crc@draw-method-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#8812])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-2/igt@kms_draw_crc@draw-method-mmap-gtt.html
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#8812])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-5/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-tglu-1: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#3840])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-1/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#3555] / [i915#3840])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-7/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][220] ([i915#3469])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-1/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-2x:
- shard-rkl: NOTRUN -> [SKIP][221] ([i915#1839])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-4/igt@kms_feature_discovery@display-2x.html
- shard-tglu: NOTRUN -> [SKIP][222] ([i915#1839])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-6/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@dp-mst:
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#14544] / [i915#9337])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-dg2: NOTRUN -> [SKIP][224] ([i915#658]) +1 other test skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-10/igt@kms_feature_discovery@psr1.html
* igt@kms_feature_discovery@psr2:
- shard-dg1: NOTRUN -> [SKIP][225] ([i915#658])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-18/igt@kms_feature_discovery@psr2.html
- shard-tglu: NOTRUN -> [SKIP][226] ([i915#658])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-2/igt@kms_feature_discovery@psr2.html
- shard-rkl: NOTRUN -> [SKIP][227] ([i915#14544] / [i915#658])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@kms_feature_discovery@psr2.html
* igt@kms_fence_pin_leak:
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#4881])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-7/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-mtlp: NOTRUN -> [SKIP][229] ([i915#3637] / [i915#9934]) +4 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-4/igt@kms_flip@2x-flip-vs-suspend.html
- shard-glk: NOTRUN -> [INCOMPLETE][230] ([i915#12745] / [i915#4839] / [i915#6113]) +1 other test incomplete
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-glk1/igt@kms_flip@2x-flip-vs-suspend.html
- shard-rkl: NOTRUN -> [SKIP][231] ([i915#14544] / [i915#9934])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-glk: NOTRUN -> [INCOMPLETE][232] ([i915#12745] / [i915#4839])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-glk2/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2:
- shard-glk: NOTRUN -> [INCOMPLETE][233] ([i915#12745]) +1 other test incomplete
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-glk2/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-tglu: NOTRUN -> [SKIP][234] ([i915#3637] / [i915#9934]) +5 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-7/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][235] ([i915#9934]) +5 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-2/igt@kms_flip@2x-plain-flip.html
- shard-dg1: NOTRUN -> [SKIP][236] ([i915#9934]) +6 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-16/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][237] ([i915#3637] / [i915#9934]) +2 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-1/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-dg2: NOTRUN -> [SKIP][238] ([i915#9934]) +9 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-1/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][239] ([i915#12745] / [i915#6113])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-glk3/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][240] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][241] ([i915#15643]) +1 other test skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
- shard-dg1: NOTRUN -> [SKIP][242] ([i915#15643]) +1 other test skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
- shard-mtlp: NOTRUN -> [SKIP][243] ([i915#15643]) +1 other test skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-tglu: NOTRUN -> [SKIP][244] ([i915#15643]) +4 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][245] ([i915#15643]) +2 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#15643] / [i915#5190]) +1 other test skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
- shard-tglu-1: NOTRUN -> [SKIP][247] +24 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt:
- shard-mtlp: NOTRUN -> [SKIP][248] ([i915#1825]) +24 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][249] ([i915#8708]) +14 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#15102]) +1 other test skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt.html
- shard-dg1: NOTRUN -> [SKIP][251] ([i915#15102])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][252] ([i915#15102]) +4 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][253] ([i915#15104]) +2 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][254] ([i915#14544] / [i915#15102])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][255] ([i915#15102] / [i915#3458]) +10 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][256] ([i915#8708]) +10 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt:
- shard-dg2: NOTRUN -> [SKIP][257] ([i915#5354]) +21 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-rkl: NOTRUN -> [SKIP][258] ([i915#1825]) +29 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][259] ([i915#14544] / [i915#1825]) +4 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][260] ([i915#15102]) +10 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][261] ([i915#15104]) +1 other test skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
- shard-dg2: NOTRUN -> [SKIP][262] ([i915#15104]) +1 other test skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][263] ([i915#15102] / [i915#3023]) +21 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
- shard-dg1: NOTRUN -> [SKIP][264] ([i915#15102] / [i915#3458]) +7 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu:
- shard-glk10: NOTRUN -> [SKIP][265] +49 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-glk10/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][266] +63 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-modesetfrombusy:
- shard-rkl: NOTRUN -> [SKIP][267] ([i915#14544] / [i915#15102] / [i915#3023])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][268] ([i915#15102]) +25 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][269] ([i915#8708]) +6 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html
* igt@kms_hdmi_inject@inject-4k:
- shard-mtlp: [PASS][270] -> [SKIP][271] ([i915#15725])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-mtlp-8/igt@kms_hdmi_inject@inject-4k.html
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-1/igt@kms_hdmi_inject@inject-4k.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-rkl: [PASS][272] -> [SKIP][273] ([i915#3555] / [i915#8228]) +1 other test skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-6/igt@kms_hdr@invalid-metadata-sizes.html
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-4/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [INCOMPLETE][274] ([i915#15436])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-2.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][275] ([i915#15458])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-7/igt@kms_joiner@basic-force-ultra-joiner.html
- shard-rkl: NOTRUN -> [SKIP][276] ([i915#14544] / [i915#15458])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@kms_joiner@basic-force-ultra-joiner.html
- shard-dg1: NOTRUN -> [SKIP][277] ([i915#15458])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-18/igt@kms_joiner@basic-force-ultra-joiner.html
- shard-tglu: NOTRUN -> [SKIP][278] ([i915#15458])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-2/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][279] ([i915#15458])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-4/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][280] ([i915#15460])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-1/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-mtlp: NOTRUN -> [SKIP][281] ([i915#15458]) +1 other test skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-3/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-mtlp: NOTRUN -> [SKIP][282] ([i915#15815])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-dg2: NOTRUN -> [SKIP][283] ([i915#15815])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-rkl: NOTRUN -> [SKIP][284] ([i915#15815])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-dg1: NOTRUN -> [SKIP][285] ([i915#15815])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-16/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-tglu: NOTRUN -> [SKIP][286] ([i915#15815])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-10/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes:
- shard-dg1: NOTRUN -> [SKIP][287] +25 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-12/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html
* igt@kms_pipe_stress@stress-xrgb8888-4tiled:
- shard-rkl: NOTRUN -> [SKIP][288] ([i915#14544] / [i915#14712])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
* igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping:
- shard-tglu: NOTRUN -> [SKIP][289] ([i915#15709]) +5 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-9/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html
- shard-rkl: NOTRUN -> [SKIP][290] ([i915#14544] / [i915#15709])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier:
- shard-mtlp: NOTRUN -> [SKIP][291] ([i915#15709]) +4 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-8/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping:
- shard-tglu-1: NOTRUN -> [SKIP][292] ([i915#15709])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier:
- shard-dg2: NOTRUN -> [SKIP][293] ([i915#15709]) +4 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-3/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
- shard-rkl: NOTRUN -> [SKIP][294] ([i915#15709]) +1 other test skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-5/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
- shard-dg1: NOTRUN -> [SKIP][295] ([i915#15709]) +2 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-19/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-a-plane-5:
- shard-rkl: NOTRUN -> [SKIP][296] ([i915#15608]) +1 other test skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-8/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-a-plane-5.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-tglu: [PASS][297] -> [ABORT][298] ([i915#15840]) +1 other test abort
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-tglu-2/igt@kms_plane@plane-panning-bottom-right-suspend.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-6/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb:
- shard-glk11: NOTRUN -> [FAIL][299] ([i915#10647] / [i915#12169])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-glk11/igt@kms_plane_alpha_blend@alpha-opaque-fb.html
* igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1:
- shard-glk11: NOTRUN -> [FAIL][300] ([i915#10647]) +1 other test fail
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-glk11/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-glk: NOTRUN -> [FAIL][301] ([i915#10647] / [i915#12177])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-glk9/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
* igt@kms_plane_alpha_blend@constant-alpha-max:
- shard-glk: NOTRUN -> [FAIL][302] ([i915#10647] / [i915#12169])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-glk1/igt@kms_plane_alpha_blend@constant-alpha-max.html
* igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][303] ([i915#10647]) +3 other tests fail
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-glk1/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][304] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-4/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html
* igt@kms_plane_lowres@tiling-none@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][305] ([i915#11614] / [i915#3582]) +1 other test skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-4/igt@kms_plane_lowres@tiling-none@pipe-d-edp-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][306] ([i915#3555] / [i915#8821])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-7/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-tglu-1: NOTRUN -> [SKIP][307] ([i915#13958])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_plane_multiple@tiling-4:
- shard-rkl: NOTRUN -> [SKIP][308] ([i915#14259])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-5/igt@kms_plane_multiple@tiling-4.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-dg2: NOTRUN -> [SKIP][309] ([i915#13046] / [i915#5354] / [i915#9423])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-7/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: NOTRUN -> [SKIP][310] ([i915#6953] / [i915#9423])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-1/igt@kms_plane_scaling@intel-max-src-size.html
- shard-dg1: NOTRUN -> [SKIP][311] ([i915#6953])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-15/igt@kms_plane_scaling@intel-max-src-size.html
- shard-mtlp: NOTRUN -> [SKIP][312] ([i915#6953])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-8/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][313] ([i915#15329]) +4 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
- shard-mtlp: NOTRUN -> [SKIP][314] ([i915#15329]) +8 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a:
- shard-glk11: NOTRUN -> [SKIP][315] +41 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-glk11/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][316] ([i915#15329]) +7 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
- shard-tglu-1: NOTRUN -> [SKIP][317] ([i915#15329]) +4 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-1/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
- shard-dg1: NOTRUN -> [SKIP][318] ([i915#15329]) +9 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-14/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5:
- shard-mtlp: NOTRUN -> [SKIP][319] ([i915#15329] / [i915#3555] / [i915#6953])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
* igt@kms_pm_backlight@basic-brightness:
- shard-tglu-1: NOTRUN -> [SKIP][320] ([i915#9812])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-1/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][321] ([i915#5354])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-4/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2: NOTRUN -> [SKIP][322] ([i915#9685])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-7/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg1: NOTRUN -> [SKIP][323] ([i915#3361])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-19/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: [PASS][324] -> [SKIP][325] ([i915#9340])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-3/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg1: [PASS][326] -> [SKIP][327] ([i915#15073]) +2 other tests skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-dg1-15/igt@kms_pm_rpm@dpms-lpsp.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-13/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-rkl: [PASS][328] -> [SKIP][329] ([i915#15073])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-7/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-tglu-1: NOTRUN -> [SKIP][330] ([i915#15073])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-1/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2: NOTRUN -> [SKIP][331] ([i915#15073])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-3/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
- shard-dg1: NOTRUN -> [SKIP][332] ([i915#15073])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-13/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg2: [PASS][333] -> [SKIP][334] ([i915#15073]) +2 other tests skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-dg2-1/igt@kms_pm_rpm@modeset-non-lpsp.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_prime@d3hot:
- shard-tglu: NOTRUN -> [SKIP][335] ([i915#6524])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-6/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][336] ([i915#11520]) +6 other tests skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][337] ([i915#9808]) +2 other tests skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
- shard-dg1: NOTRUN -> [SKIP][338] ([i915#11520]) +4 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-14/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
- shard-glk10: NOTRUN -> [SKIP][339] ([i915#11520])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-glk10/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][340] ([i915#11520] / [i915#14544])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][341] ([i915#11520]) +8 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-7/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
- shard-tglu-1: NOTRUN -> [SKIP][342] ([i915#11520]) +2 other tests skip
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-1/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-snb: NOTRUN -> [SKIP][343] ([i915#11520]) +3 other tests skip
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-snb5/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
- shard-mtlp: NOTRUN -> [SKIP][344] ([i915#12316]) +3 other tests skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-7/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][345] ([i915#11520]) +16 other tests skip
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-glk9/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
- shard-tglu: NOTRUN -> [SKIP][346] ([i915#11520]) +6 other tests skip
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-4/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2: NOTRUN -> [SKIP][347] ([i915#9683])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-8/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-pr-sprite-plane-onoff:
- shard-rkl: NOTRUN -> [SKIP][348] ([i915#1072] / [i915#9732]) +22 other tests skip
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-7/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
* igt@kms_psr@fbc-pr-sprite-render:
- shard-tglu-1: NOTRUN -> [SKIP][349] ([i915#9732]) +7 other tests skip
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-1/igt@kms_psr@fbc-pr-sprite-render.html
* igt@kms_psr@fbc-psr2-cursor-plane-onoff:
- shard-mtlp: NOTRUN -> [SKIP][350] ([i915#9688]) +17 other tests skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-3/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html
* igt@kms_psr@psr-basic:
- shard-tglu: NOTRUN -> [SKIP][351] ([i915#9732]) +22 other tests skip
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-6/igt@kms_psr@psr-basic.html
* igt@kms_psr@psr-cursor-plane-onoff:
- shard-dg1: NOTRUN -> [SKIP][352] ([i915#1072] / [i915#9732]) +16 other tests skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-14/igt@kms_psr@psr-cursor-plane-onoff.html
* igt@kms_psr@psr-cursor-render:
- shard-dg2: NOTRUN -> [SKIP][353] ([i915#1072] / [i915#9732]) +19 other tests skip
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-8/igt@kms_psr@psr-cursor-render.html
* igt@kms_psr@psr-primary-mmap-gtt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][354] ([i915#4077] / [i915#9688]) +1 other test skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-1/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html
* igt@kms_psr@psr2-sprite-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][355] ([i915#1072] / [i915#14544] / [i915#9732]) +2 other tests skip
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@kms_psr@psr2-sprite-mmap-cpu.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-tglu: NOTRUN -> [SKIP][356] ([i915#9685])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-4/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-mtlp: NOTRUN -> [SKIP][357] ([i915#12755] / [i915#15867])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-2/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-mtlp: NOTRUN -> [SKIP][358] ([i915#4235])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-3/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
- shard-glk: NOTRUN -> [INCOMPLETE][359] ([i915#15500])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-glk5/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][360] ([i915#5289])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-8/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-mtlp: NOTRUN -> [SKIP][361] ([i915#5289]) +1 other test skip
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_selftest@drm_framebuffer:
- shard-tglu: NOTRUN -> [ABORT][362] ([i915#13179]) +1 other test abort
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-10/igt@kms_selftest@drm_framebuffer.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][363] ([i915#12276])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-glk5/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-glk10: NOTRUN -> [INCOMPLETE][364] ([i915#12276]) +1 other test incomplete
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-glk10/igt@kms_vblank@ts-continuation-suspend.html
* igt@kms_vrr@flip-basic-fastset:
- shard-dg2: NOTRUN -> [SKIP][365] ([i915#9906]) +1 other test skip
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-5/igt@kms_vrr@flip-basic-fastset.html
- shard-rkl: NOTRUN -> [SKIP][366] ([i915#9906])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-3/igt@kms_vrr@flip-basic-fastset.html
- shard-dg1: NOTRUN -> [SKIP][367] ([i915#9906])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-15/igt@kms_vrr@flip-basic-fastset.html
- shard-tglu: NOTRUN -> [SKIP][368] ([i915#9906])
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-5/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@flip-suspend:
- shard-tglu: NOTRUN -> [SKIP][369] ([i915#3555]) +5 other tests skip
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-10/igt@kms_vrr@flip-suspend.html
- shard-rkl: NOTRUN -> [SKIP][370] ([i915#15243] / [i915#3555])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-8/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@max-min:
- shard-tglu-1: NOTRUN -> [SKIP][371] ([i915#9906])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-1/igt@kms_vrr@max-min.html
* igt@kms_vrr@negative-basic:
- shard-mtlp: [PASS][372] -> [FAIL][373] ([i915#15420]) +1 other test fail
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-mtlp-8/igt@kms_vrr@negative-basic.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-4/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-mtlp: NOTRUN -> [SKIP][374] ([i915#8808] / [i915#9906]) +1 other test skip
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-8/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@perf@blocking:
- shard-mtlp: NOTRUN -> [FAIL][375] ([i915#10538]) +1 other test fail
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-1/igt@perf@blocking.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-dg2: NOTRUN -> [SKIP][376] ([i915#2436])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-6/igt@perf@gen8-unprivileged-single-ctx-counters.html
- shard-rkl: NOTRUN -> [SKIP][377] ([i915#2436])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-8/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@global-sseu-config-invalid:
- shard-mtlp: NOTRUN -> [SKIP][378] ([i915#7387])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-7/igt@perf@global-sseu-config-invalid.html
- shard-dg2: NOTRUN -> [SKIP][379] ([i915#7387])
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-5/igt@perf@global-sseu-config-invalid.html
* igt@perf@mi-rpc:
- shard-dg2: NOTRUN -> [SKIP][380] ([i915#2434])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-3/igt@perf@mi-rpc.html
- shard-rkl: NOTRUN -> [SKIP][381] ([i915#2434])
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-5/igt@perf@mi-rpc.html
- shard-dg1: NOTRUN -> [SKIP][382] ([i915#2434])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-13/igt@perf@mi-rpc.html
- shard-mtlp: NOTRUN -> [SKIP][383] ([i915#2434])
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-6/igt@perf@mi-rpc.html
* igt@perf_pmu@module-unload:
- shard-glk: NOTRUN -> [ABORT][384] ([i915#15778])
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-glk4/igt@perf_pmu@module-unload.html
* igt@perf_pmu@most-busy-idle-check-all:
- shard-dg2: [PASS][385] -> [FAIL][386] ([i915#15520]) +1 other test fail
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-dg2-1/igt@perf_pmu@most-busy-idle-check-all.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-3/igt@perf_pmu@most-busy-idle-check-all.html
- shard-dg1: [PASS][387] -> [FAIL][388] ([i915#15520]) +1 other test fail
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-dg1-19/igt@perf_pmu@most-busy-idle-check-all.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-13/igt@perf_pmu@most-busy-idle-check-all.html
- shard-mtlp: [PASS][389] -> [FAIL][390] ([i915#15520]) +1 other test fail
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-mtlp-3/igt@perf_pmu@most-busy-idle-check-all.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-6/igt@perf_pmu@most-busy-idle-check-all.html
* igt@perf_pmu@rc6-all-gts:
- shard-dg1: NOTRUN -> [SKIP][391] ([i915#8516])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-18/igt@perf_pmu@rc6-all-gts.html
* igt@prime_vgem@basic-read:
- shard-rkl: NOTRUN -> [SKIP][392] ([i915#3291] / [i915#3708])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-5/igt@prime_vgem@basic-read.html
* igt@prime_vgem@coherency-gtt:
- shard-rkl: NOTRUN -> [SKIP][393] ([i915#3708])
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-8/igt@prime_vgem@coherency-gtt.html
* igt@sriov_basic@bind-unbind-vf:
- shard-rkl: NOTRUN -> [SKIP][394] ([i915#9917])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-8/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@bind-unbind-vf@vf-4:
- shard-tglu: NOTRUN -> [FAIL][395] ([i915#12910]) +9 other tests fail
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-5/igt@sriov_basic@bind-unbind-vf@vf-4.html
#### Possible fixes ####
* igt@gem_exec_suspend@basic-s0:
- shard-rkl: [INCOMPLETE][396] ([i915#13356]) -> [PASS][397] +1 other test pass
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-6/igt@gem_exec_suspend@basic-s0.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-8/igt@gem_exec_suspend@basic-s0.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-tglu: [FAIL][398] ([i915#15762]) -> [PASS][399] +1 other test pass
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-tglu-4/igt@gem_exec_suspend@basic-s4-devices.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-2/igt@gem_exec_suspend@basic-s4-devices.html
- shard-mtlp: [FAIL][400] ([i915#15762]) -> [PASS][401] +1 other test pass
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-mtlp-2/igt@gem_exec_suspend@basic-s4-devices.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-8/igt@gem_exec_suspend@basic-s4-devices.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-dg2: [FAIL][402] -> [PASS][403] +1 other test pass
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-dg2-1/igt@gem_lmem_swapping@verify-ccs.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-7/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_workarounds@suspend-resume-context:
- shard-glk: [INCOMPLETE][404] ([i915#13356]) -> [PASS][405]
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-glk4/igt@gem_workarounds@suspend-resume-context.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-glk6/igt@gem_workarounds@suspend-resume-context.html
* igt@i915_selftest@live@workarounds:
- shard-dg2: [DMESG-FAIL][406] ([i915#12061]) -> [PASS][407] +1 other test pass
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-dg2-8/igt@i915_selftest@live@workarounds.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-7/igt@i915_selftest@live@workarounds.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-dg2: [DMESG-WARN][408] ([i915#14545]) -> [PASS][409]
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-dg2-4/igt@i915_suspend@basic-s3-without-i915.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-8/igt@i915_suspend@basic-s3-without-i915.html
- shard-dg1: [DMESG-WARN][410] ([i915#14545]) -> [PASS][411]
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-dg1-14/igt@i915_suspend@basic-s3-without-i915.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-18/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][412] ([i915#15662]) -> [PASS][413] +1 other test pass
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-tglu-10/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-7/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-2:
- shard-rkl: [FAIL][414] ([i915#13566]) -> [PASS][415] +1 other test pass
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-3/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-2.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-4/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-2.html
* igt@kms_cursor_crc@cursor-random-64x21:
- shard-tglu: [FAIL][416] ([i915#13566]) -> [PASS][417] +1 other test pass
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-tglu-4/igt@kms_cursor_crc@cursor-random-64x21.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-tglu-5/igt@kms_cursor_crc@cursor-random-64x21.html
* igt@kms_flip@blocking-wf_vblank:
- shard-mtlp: [FAIL][418] ([i915#14600]) -> [PASS][419] +1 other test pass
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-mtlp-4/igt@kms_flip@blocking-wf_vblank.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-4/igt@kms_flip@blocking-wf_vblank.html
* igt@kms_frontbuffer_tracking@fbc-tiling-linear:
- shard-dg2: [FAIL][420] ([i915#15389] / [i915#6880]) -> [PASS][421]
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html
* igt@kms_hdmi_inject@inject-audio:
- shard-mtlp: [SKIP][422] ([i915#15725]) -> [PASS][423]
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-mtlp-1/igt@kms_hdmi_inject@inject-audio.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-4/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a:
- shard-dg1: [DMESG-WARN][424] ([i915#4423]) -> [PASS][425] +3 other tests pass
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-dg1-17/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg1: [SKIP][426] ([i915#15073]) -> [PASS][427] +1 other test pass
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-dg1-15/igt@kms_pm_rpm@modeset-non-lpsp.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-17/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-dg2: [INCOMPLETE][428] ([i915#14419]) -> [PASS][429]
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-dg2-3/igt@kms_pm_rpm@system-suspend-idle.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-4/igt@kms_pm_rpm@system-suspend-idle.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-rkl: [INCOMPLETE][430] ([i915#14419]) -> [PASS][431]
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-6/igt@kms_pm_rpm@system-suspend-modeset.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-7/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-rkl: [INCOMPLETE][432] ([i915#12276]) -> [PASS][433] +1 other test pass
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-4/igt@kms_vblank@ts-continuation-dpms-suspend.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-4/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1:
- shard-glk: [INCOMPLETE][434] ([i915#12276]) -> [PASS][435]
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-glk6/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-glk5/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-rkl: [ABORT][436] ([i915#15132]) -> [PASS][437]
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-1/igt@kms_vblank@ts-continuation-suspend.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-5/igt@kms_vblank@ts-continuation-suspend.html
#### Warnings ####
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-rkl: [SKIP][438] ([i915#8411]) -> [SKIP][439] ([i915#14544] / [i915#8411])
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-3/igt@api_intel_bb@object-reloc-keep-cache.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@device_reset@cold-reset-bound:
- shard-rkl: [SKIP][440] ([i915#11078]) -> [SKIP][441] ([i915#11078] / [i915#14544])
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-3/igt@device_reset@cold-reset-bound.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@device_reset@cold-reset-bound.html
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-rkl: [SKIP][442] ([i915#14544] / [i915#3281]) -> [SKIP][443] ([i915#3281]) +5 other tests skip
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-6/igt@gem_bad_reloc@negative-reloc-lut.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-8/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-rkl: [SKIP][444] ([i915#14544] / [i915#6335]) -> [SKIP][445] ([i915#6335])
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-6/igt@gem_create@create-ext-cpu-access-sanity-check.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-5/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_sseu@mmap-args:
- shard-rkl: [SKIP][446] ([i915#280]) -> [SKIP][447] ([i915#14544] / [i915#280])
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-5/igt@gem_ctx_sseu@mmap-args.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-rkl: [SKIP][448] ([i915#14544] / [i915#6334]) -> [SKIP][449] ([i915#6334]) +1 other test skip
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-6/igt@gem_exec_capture@capture-invisible@smem0.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-3/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_reloc@basic-wc-cpu:
- shard-rkl: [SKIP][450] ([i915#3281]) -> [SKIP][451] ([i915#14544] / [i915#3281]) +3 other tests skip
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-2/igt@gem_exec_reloc@basic-wc-cpu.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@gem_exec_reloc@basic-wc-cpu.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: [SKIP][452] ([i915#14544] / [i915#4613] / [i915#7582]) -> [SKIP][453] ([i915#4613] / [i915#7582])
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-6/igt@gem_lmem_evict@dontneed-evict-race.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-4/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-rkl: [SKIP][454] ([i915#4613]) -> [SKIP][455] ([i915#14544] / [i915#4613]) +2 other tests skip
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-3/igt@gem_lmem_swapping@parallel-random-verify.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@random:
- shard-rkl: [SKIP][456] ([i915#14544] / [i915#4613]) -> [SKIP][457] ([i915#4613])
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-6/igt@gem_lmem_swapping@random.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-4/igt@gem_lmem_swapping@random.html
* igt@gem_partial_pwrite_pread@write-display:
- shard-rkl: [SKIP][458] ([i915#3282]) -> [SKIP][459] ([i915#14544] / [i915#3282]) +2 other tests skip
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-4/igt@gem_partial_pwrite_pread@write-display.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@gem_partial_pwrite_pread@write-display.html
* igt@gem_pread@snoop:
- shard-rkl: [SKIP][460] ([i915#14544] / [i915#3282]) -> [SKIP][461] ([i915#3282]) +3 other tests skip
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-6/igt@gem_pread@snoop.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-5/igt@gem_pread@snoop.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-rkl: [SKIP][462] ([i915#3282] / [i915#3297]) -> [SKIP][463] ([i915#14544] / [i915#3282] / [i915#3297])
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-4/igt@gem_userptr_blits@forbidden-operations.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-rkl: [SKIP][464] ([i915#14544] / [i915#3297]) -> [SKIP][465] ([i915#3297])
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-6/igt@gem_userptr_blits@readonly-pwrite-unsync.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-7/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gen9_exec_parse@bb-start-param:
- shard-rkl: [SKIP][466] ([i915#2527]) -> [SKIP][467] ([i915#14544] / [i915#2527]) +1 other test skip
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-2/igt@gen9_exec_parse@bb-start-param.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@gen9_exec_parse@bb-start-param.html
* igt@i915_module_load@fault-injection:
- shard-dg1: [ABORT][468] ([i915#11814]) -> [ABORT][469] ([i915#11814] / [i915#15481]) +1 other test abort
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-dg1-14/igt@i915_module_load@fault-injection.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-17/igt@i915_module_load@fault-injection.html
* igt@i915_pm_freq_api@freq-reset:
- shard-rkl: [SKIP][470] ([i915#14544] / [i915#8399]) -> [SKIP][471] ([i915#8399])
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-6/igt@i915_pm_freq_api@freq-reset.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-2/igt@i915_pm_freq_api@freq-reset.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-rkl: [SKIP][472] ([i915#1769] / [i915#3555]) -> [SKIP][473] ([i915#14544] / [i915#1769] / [i915#3555])
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: [SKIP][474] ([i915#14544] / [i915#5286]) -> [SKIP][475] ([i915#5286])
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-rkl: [SKIP][476] ([i915#5286]) -> [SKIP][477] ([i915#14544] / [i915#5286]) +2 other tests skip
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-rkl: [SKIP][478] ([i915#3638]) -> [SKIP][479] ([i915#14544] / [i915#3638])
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-8/igt@kms_big_fb@linear-8bpp-rotate-90.html
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
- shard-rkl: [SKIP][480] -> [SKIP][481] ([i915#14544]) +8 other tests skip
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-8/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
- shard-rkl: [SKIP][482] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][483] ([i915#14098] / [i915#6095]) +5 other tests skip
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-2/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][484] ([i915#6095]) -> [SKIP][485] ([i915#14544] / [i915#6095]) +3 other tests skip
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-3/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][486] ([i915#14544] / [i915#6095]) -> [SKIP][487] ([i915#6095]) +1 other test skip
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-3/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs:
- shard-rkl: [SKIP][488] ([i915#14098] / [i915#6095]) -> [SKIP][489] ([i915#14098] / [i915#14544] / [i915#6095]) +5 other tests skip
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-rkl: [SKIP][490] ([i915#3742]) -> [SKIP][491] ([i915#14544] / [i915#3742])
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-3/igt@kms_cdclk@mode-transition-all-outputs.html
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-rkl: [SKIP][492] ([i915#11151] / [i915#7828]) -> [SKIP][493] ([i915#11151] / [i915#14544] / [i915#7828]) +2 other tests skip
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-3/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-rkl: [SKIP][494] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][495] ([i915#11151] / [i915#7828]) +2 other tests skip
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-3/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_content_protection@mei-interface:
- shard-rkl: [SKIP][496] ([i915#15865]) -> [SKIP][497] ([i915#14544] / [i915#15865])
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-4/igt@kms_content_protection@mei-interface.html
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@kms_content_protection@mei-interface.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-rkl: [SKIP][498] ([i915#13049] / [i915#14544]) -> [SKIP][499] ([i915#13049])
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-512x170.html
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-3/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg2: [SKIP][500] ([i915#13049]) -> [SKIP][501] ([i915#13049] / [i915#3359])
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-dg2-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-10/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: [SKIP][502] ([i915#14544]) -> [SKIP][503] +4 other tests skip
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-rkl: [SKIP][504] ([i915#3555] / [i915#3840]) -> [SKIP][505] ([i915#14544] / [i915#3555] / [i915#3840])
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-7/igt@kms_dsc@dsc-with-output-formats.html
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-rkl: [SKIP][506] ([i915#9934]) -> [SKIP][507] ([i915#14544] / [i915#9934]) +3 other tests skip
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-7/igt@kms_flip@2x-blocking-wf_vblank.html
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-rkl: [SKIP][508] ([i915#14544] / [i915#9934]) -> [SKIP][509] ([i915#9934]) +2 other tests skip
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-2/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-rkl: [SKIP][510] ([i915#14544] / [i915#15643]) -> [SKIP][511] ([i915#15643])
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-rkl: [SKIP][512] ([i915#15643]) -> [SKIP][513] ([i915#14544] / [i915#15643])
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-mtlp: [SKIP][514] -> [SKIP][515] ([i915#15672])
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-mtlp-7/igt@kms_force_connector_basic@force-load-detect.html
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-mtlp-1/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite:
- shard-rkl: [SKIP][516] ([i915#15102] / [i915#3023]) -> [SKIP][517] ([i915#14544] / [i915#15102] / [i915#3023]) +6 other tests skip
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move:
- shard-dg2: [SKIP][518] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][519] ([i915#15102] / [i915#3458]) +4 other tests skip
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-rkl: [SKIP][520] ([i915#14544] / [i915#9766]) -> [SKIP][521] ([i915#9766])
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-8/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-pwrite:
- shard-rkl: [SKIP][522] ([i915#15102]) -> [SKIP][523] ([i915#14544] / [i915#15102])
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-pwrite.html
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render:
- shard-rkl: [SKIP][524] ([i915#14544] / [i915#15102]) -> [SKIP][525] ([i915#15102])
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render.html
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: [SKIP][526] ([i915#15102] / [i915#3458]) -> [SKIP][527] ([i915#10433] / [i915#15102] / [i915#3458]) +1 other test skip
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render:
- shard-rkl: [SKIP][528] ([i915#14544] / [i915#1825]) -> [SKIP][529] ([i915#1825]) +5 other tests skip
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render.html
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: [SKIP][530] ([i915#1825]) -> [SKIP][531] ([i915#14544] / [i915#1825]) +12 other tests skip
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-rkl: [SKIP][532] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][533] ([i915#15102] / [i915#3023]) +4 other tests skip
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-dg1: [SKIP][534] ([i915#3555] / [i915#4423] / [i915#8228]) -> [SKIP][535] ([i915#3555] / [i915#8228])
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-dg1-19/igt@kms_hdr@bpc-switch-suspend.html
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-19/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg1: [SKIP][536] ([i915#1187] / [i915#12713]) -> [SKIP][537] ([i915#12713])
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-14/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@static-toggle-suspend:
- shard-rkl: [SKIP][538] ([i915#3555] / [i915#8228]) -> [INCOMPLETE][539] ([i915#15436])
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-5/igt@kms_hdr@static-toggle-suspend.html
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping:
- shard-rkl: [SKIP][540] ([i915#15709]) -> [SKIP][541] ([i915#14544] / [i915#15709]) +1 other test skip
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-4/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html
* igt@kms_plane_lowres@tiling-yf:
- shard-rkl: [SKIP][542] ([i915#3555]) -> [SKIP][543] ([i915#14544] / [i915#3555]) +1 other test skip
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-7/igt@kms_plane_lowres@tiling-yf.html
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-rkl: [SKIP][544] ([i915#13958] / [i915#14544]) -> [SKIP][545] ([i915#13958])
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-y.html
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-4/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- shard-rkl: [SKIP][546] ([i915#15329]) -> [SKIP][547] ([i915#14544] / [i915#15329]) +3 other tests skip
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-3/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
* igt@kms_pm_backlight@fade:
- shard-rkl: [SKIP][548] ([i915#5354]) -> [SKIP][549] ([i915#14544] / [i915#5354])
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-3/igt@kms_pm_backlight@fade.html
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@kms_pm_backlight@fade.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg1: [SKIP][550] ([i915#5354]) -> [SKIP][551] ([i915#4423] / [i915#5354])
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-dg1-17/igt@kms_pm_backlight@fade-with-suspend.html
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-13/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc5-psr:
- shard-rkl: [SKIP][552] ([i915#9685]) -> [SKIP][553] ([i915#14544] / [i915#9685])
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-7/igt@kms_pm_dc@dc5-psr.html
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: [SKIP][554] ([i915#9340]) -> [SKIP][555] ([i915#3828])
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-4/igt@kms_pm_lpsp@kms-lpsp.html
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-5/igt@kms_pm_lpsp@kms-lpsp.html
- shard-dg1: [SKIP][556] ([i915#3828]) -> [SKIP][557] ([i915#9340])
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-dg1-14/igt@kms_pm_lpsp@kms-lpsp.html
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-19/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-rkl: [SKIP][558] ([i915#11520] / [i915#14544]) -> [SKIP][559] ([i915#11520]) +1 other test skip
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-2/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-rkl: [SKIP][560] ([i915#11520]) -> [SKIP][561] ([i915#11520] / [i915#14544]) +1 other test skip
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-2/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-rkl: [SKIP][562] ([i915#14544] / [i915#9683]) -> [SKIP][563] ([i915#9683])
[562]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html
[563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-4/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-rkl: [SKIP][564] ([i915#9683]) -> [SKIP][565] ([i915#14544] / [i915#9683])
[564]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-7/igt@kms_psr2_su@page_flip-xrgb8888.html
[565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-sprite-mmap-gtt:
- shard-rkl: [SKIP][566] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][567] ([i915#1072] / [i915#9732]) +5 other tests skip
[566]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-6/igt@kms_psr@fbc-psr-sprite-mmap-gtt.html
[567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-5/igt@kms_psr@fbc-psr-sprite-mmap-gtt.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-rkl: [SKIP][568] ([i915#1072] / [i915#9732]) -> [SKIP][569] ([i915#1072] / [i915#14544] / [i915#9732]) +7 other tests skip
[568]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-4/igt@kms_psr@fbc-psr2-primary-blt.html
[569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-rkl: [SKIP][570] ([i915#5289]) -> [SKIP][571] ([i915#14544] / [i915#5289])
[570]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
[571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-dg1: [SKIP][572] ([i915#3555] / [i915#4423]) -> [SKIP][573] ([i915#3555])
[572]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-dg1-19/igt@kms_scaling_modes@scaling-mode-full-aspect.html
[573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-dg1-13/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-rkl: [SKIP][574] ([i915#14544] / [i915#8623]) -> [SKIP][575] ([i915#8623])
[574]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-rkl: [SKIP][576] ([i915#9906]) -> [SKIP][577] ([i915#14544] / [i915#9906])
[576]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-3/igt@kms_vrr@seamless-rr-switch-vrr.html
[577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@prime_vgem@basic-fence-read:
- shard-rkl: [SKIP][578] ([i915#3291] / [i915#3708]) -> [SKIP][579] ([i915#14544] / [i915#3291] / [i915#3708])
[578]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18338/shard-rkl-5/igt@prime_vgem@basic-fence-read.html
[579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/shard-rkl-6/igt@prime_vgem@basic-fence-read.html
[i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226
[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#10538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527
[i915#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11814
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
[i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177
[i915#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#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655
[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#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13363]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363
[i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390
[i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13784
[i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
[i915#14123]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14123
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[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#14600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
[i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106
[i915#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#15314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15314
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389
[i915#15420]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15420
[i915#15436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15436
[i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460
[i915#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481
[i915#15500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15500
[i915#15520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15520
[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#15662]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15662
[i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672
[i915#15678]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15725]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15725
[i915#15762]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15762
[i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
[i915#15804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15804
[i915#15815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15815
[i915#15840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15840
[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#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
[i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#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#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582
[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#3936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[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#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881
[i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
[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#5882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882
[i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
[i915#6188]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6188
[i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
[i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
[i915#8898]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8898
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#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#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
[i915#9979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9979
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8861 -> IGTPW_14990
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_18338: 137513b61b4f187957d0c0f44c63c8549893f970 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14990: 9b4816e98a5e76a3e18b3eccb9f7f569befbb54d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8861: 63a08403d58b652dcab80da02d6078386da78c17 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14990/index.html
[-- Attachment #2: Type: text/html, Size: 193086 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2026-04-16 14:32 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-16 2:53 [PATCH i-g-t] tests/kms_setmode: Relax vblank timing tolerance from 1 scanline to 1% Jason-JH Lin
2026-04-16 4:11 ` ✓ i915.CI.BAT: success for " Patchwork
2026-04-16 4:25 ` ✓ Xe.CI.BAT: " Patchwork
2026-04-16 5:56 ` [PATCH i-g-t] " B, Jeevan
2026-04-16 8:12 ` Jason-JH Lin (林睿祥)
2026-04-16 6:50 ` ✗ Xe.CI.FULL: failure for " Patchwork
2026-04-16 14:32 ` ✗ i915.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox