* [igt-dev] [PATCH v2] tests/msm: Add submitoverhead benchmark
@ 2023-08-07 16:36 Rob Clark
2023-08-07 18:04 ` [igt-dev] ○ CI.xeBAT: info for tests/msm: Add submitoverhead benchmark (rev2) Patchwork
` (7 more replies)
0 siblings, 8 replies; 11+ messages in thread
From: Rob Clark @ 2023-08-07 16:36 UTC (permalink / raw)
To: igt-dev; +Cc: Rob Clark
From: Rob Clark <robdclark@chromium.org>
Something for profiling CPU overhead of submit ioctl. Not really a
functional test, but it is convenient to re-use the i-g-t infrastructure
for this.
v2: SPDX license, fix meson.build whitespace
Signed-off-by: Rob Clark <robdclark@chromium.org>
---
tests/meson.build | 3 +-
tests/msm/msm_submitoverhead.c | 86 ++++++++++++++++++++++++++++++++++
2 files changed, 88 insertions(+), 1 deletion(-)
create mode 100644 tests/msm/msm_submitoverhead.c
diff --git a/tests/meson.build b/tests/meson.build
index 944a0941f9fd..db427a1a4b6e 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -302,7 +302,8 @@ msm_progs = [
'msm_mapping',
'msm_recovery',
'msm_shrink',
- 'msm_submit'
+ 'msm_submit',
+ 'msm_submitoverhead',
]
chamelium_progs = [
diff --git a/tests/msm/msm_submitoverhead.c b/tests/msm/msm_submitoverhead.c
new file mode 100644
index 000000000000..7d92dda7c226
--- /dev/null
+++ b/tests/msm/msm_submitoverhead.c
@@ -0,0 +1,86 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2023 Google, Inc.
+ */
+
+#include "igt.h"
+#include "igt_msm.h"
+
+/*
+ * Not as much a test, as a kernel submit overhead benchmark. Generates lots
+ * of submit ioctls with various size #s of buffers attached for measuring
+ * and profiling kernel submit CPU overhead.
+ */
+
+#define MAX_BOS 1000
+
+igt_main
+{
+ struct msm_device *dev = NULL;
+ struct msm_pipe *pipe = NULL;
+ struct msm_bo *bos[MAX_BOS];
+ struct drm_msm_gem_submit_bo bos_table[MAX_BOS];
+ static const int sizes[] = {
+ 10, 100, 250, 500, 1000,
+ };
+
+ igt_fixture {
+ struct drm_msm_gem_submit req;
+
+ dev = igt_msm_dev_open();
+ pipe = igt_msm_pipe_open(dev, 0);
+ for (int i = 0; i < MAX_BOS; i++) {
+ bos[i] = igt_msm_bo_new(dev, 0x1000, MSM_BO_WC);
+ bos_table[i] = (struct drm_msm_gem_submit_bo) {
+ .handle = bos[i]->handle,
+ /*
+ * We don't bother testing BO_READ since
+ * mesa doesn't use that anymore
+ */
+ .flags = MSM_SUBMIT_BO_WRITE,
+ };
+ }
+
+ /*
+ * Prime the pump, so first submit doesn't take the overhead
+ * of allocating backing pages:
+ */
+ req = (struct drm_msm_gem_submit) {
+ .flags = pipe->pipe | MSM_SUBMIT_FENCE_FD_OUT,
+ .queueid = pipe->submitqueue_id,
+ .nr_bos = ARRAY_SIZE(bos_table),
+ .bos = VOID2U64(bos_table),
+ };
+ do_ioctl(dev->fd, DRM_IOCTL_MSM_GEM_SUBMIT, &req);
+ igt_wait_and_close(req.fence_fd);
+ }
+
+ for (int i = 0; i < ARRAY_SIZE(sizes); i++) {
+ for (int mode = 0; mode < 2; mode++) {
+ const char *modestr = mode ? "-no-implicit-sync" : "";
+ const uint32_t modeflags = mode ? MSM_SUBMIT_NO_IMPLICIT : 0;
+ igt_subtest_f("submitbench-%u-bos%s", sizes[i], modestr) {
+ struct drm_msm_gem_submit req = {
+ .flags = pipe->pipe | modeflags,
+ .queueid = pipe->submitqueue_id,
+ .nr_bos = sizes[i],
+ .bos = VOID2U64(bos_table),
+ };
+ unsigned iterations = 0;
+ igt_for_milliseconds(2000) {
+ do_ioctl(dev->fd, DRM_IOCTL_MSM_GEM_SUBMIT, &req);
+ iterations++;
+ }
+ igt_info("%u-bos: %u iterations\n", sizes[i], iterations);
+ }
+ }
+ }
+
+ igt_fixture {
+ for (int i = 0; i < MAX_BOS; i++) {
+ igt_msm_bo_free(bos[i]);
+ }
+ igt_msm_pipe_close(pipe);
+ igt_msm_dev_close(dev);
+ }
+}
--
2.41.0
^ permalink raw reply related [flat|nested] 11+ messages in thread* [igt-dev] ○ CI.xeBAT: info for tests/msm: Add submitoverhead benchmark (rev2) 2023-08-07 16:36 [igt-dev] [PATCH v2] tests/msm: Add submitoverhead benchmark Rob Clark @ 2023-08-07 18:04 ` Patchwork 2023-08-07 18:13 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork ` (6 subsequent siblings) 7 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2023-08-07 18:04 UTC (permalink / raw) To: Rob Clark; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 344 bytes --] == Series Details == Series: tests/msm: Add submitoverhead benchmark (rev2) URL : https://patchwork.freedesktop.org/series/121909/ State : info == Summary == Participating hosts: bat-pvc-2 bat-atsm-2 bat-dg2-oem2 bat-adlp-7 Missing hosts results[0]: Results: [IGTPW_9530](https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9530/index.html) [-- Attachment #2: Type: text/html, Size: 860 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/msm: Add submitoverhead benchmark (rev2) 2023-08-07 16:36 [igt-dev] [PATCH v2] tests/msm: Add submitoverhead benchmark Rob Clark 2023-08-07 18:04 ` [igt-dev] ○ CI.xeBAT: info for tests/msm: Add submitoverhead benchmark (rev2) Patchwork @ 2023-08-07 18:13 ` Patchwork 2023-08-07 22:59 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork ` (5 subsequent siblings) 7 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2023-08-07 18:13 UTC (permalink / raw) To: Rob Clark; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 25187 bytes --] == Series Details == Series: tests/msm: Add submitoverhead benchmark (rev2) URL : https://patchwork.freedesktop.org/series/121909/ State : success == Summary == CI Bug Log - changes from IGT_7419 -> IGTPW_9530 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/index.html Participating hosts (33 -> 42) ------------------------------ Additional (10): fi-rkl-11600 bat-adlp-9 fi-bsw-n3050 bat-adlm-1 fi-cfl-8700k bat-adln-1 fi-glk-j4005 fi-pnv-d510 fi-bsw-nick bat-mtlp-8 Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_9530 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-mtlp-8: NOTRUN -> [SKIP][1] ([i915#7456]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-mtlp-8/igt@debugfs_test@basic-hwmon.html - bat-adlp-9: NOTRUN -> [SKIP][2] ([i915#7456]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-adlp-9/igt@debugfs_test@basic-hwmon.html - fi-rkl-11600: NOTRUN -> [SKIP][3] ([i915#7456]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/fi-rkl-11600/igt@debugfs_test@basic-hwmon.html - bat-adln-1: NOTRUN -> [SKIP][4] ([i915#7456]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-adln-1/igt@debugfs_test@basic-hwmon.html - bat-adlm-1: NOTRUN -> [SKIP][5] ([i915#7456]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-adlm-1/igt@debugfs_test@basic-hwmon.html * igt@fbdev@eof: - bat-adlm-1: NOTRUN -> [SKIP][6] ([i915#2582]) +3 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-adlm-1/igt@fbdev@eof.html * igt@fbdev@info: - fi-bsw-nick: NOTRUN -> [SKIP][7] ([fdo#109271] / [i915#1849]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/fi-bsw-nick/igt@fbdev@info.html - bat-adlm-1: NOTRUN -> [SKIP][8] ([i915#1849] / [i915#2582]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-adlm-1/igt@fbdev@info.html * igt@gem_huc_copy@huc-copy: - fi-cfl-8700k: NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#2190]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/fi-cfl-8700k/igt@gem_huc_copy@huc-copy.html - fi-rkl-11600: NOTRUN -> [SKIP][10] ([i915#2190]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/fi-rkl-11600/igt@gem_huc_copy@huc-copy.html - fi-glk-j4005: NOTRUN -> [SKIP][11] ([fdo#109271] / [i915#2190]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/fi-glk-j4005/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-glk-j4005: NOTRUN -> [SKIP][12] ([fdo#109271] / [i915#4613]) +3 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/fi-glk-j4005/igt@gem_lmem_swapping@basic.html - fi-cfl-8700k: NOTRUN -> [SKIP][13] ([fdo#109271] / [i915#4613]) +3 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/fi-cfl-8700k/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@parallel-random-engines: - fi-bsw-nick: NOTRUN -> [SKIP][14] ([fdo#109271]) +52 similar issues [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/fi-bsw-nick/igt@gem_lmem_swapping@parallel-random-engines.html - bat-adlm-1: NOTRUN -> [SKIP][15] ([i915#4613]) +3 similar issues [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-adlm-1/igt@gem_lmem_swapping@parallel-random-engines.html - fi-rkl-11600: NOTRUN -> [SKIP][16] ([i915#4613]) +3 similar issues [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/fi-rkl-11600/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_lmem_swapping@random-engines: - fi-bsw-n3050: NOTRUN -> [SKIP][17] ([fdo#109271]) +27 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/fi-bsw-n3050/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@verify-random: - bat-mtlp-8: NOTRUN -> [SKIP][18] ([i915#4613]) +3 similar issues [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-mtlp-8/igt@gem_lmem_swapping@verify-random.html * igt@gem_mmap@basic: - bat-mtlp-8: NOTRUN -> [SKIP][19] ([i915#4083]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-mtlp-8/igt@gem_mmap@basic.html * igt@gem_mmap_gtt@basic: - bat-mtlp-8: NOTRUN -> [SKIP][20] ([i915#4077]) +3 similar issues [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-mtlp-8/igt@gem_mmap_gtt@basic.html * igt@gem_render_tiled_blits@basic: - bat-mtlp-8: NOTRUN -> [SKIP][21] ([i915#4079]) +1 similar issue [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-mtlp-8/igt@gem_render_tiled_blits@basic.html * igt@gem_tiled_pread_basic: - fi-rkl-11600: NOTRUN -> [SKIP][22] ([i915#3282]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/fi-rkl-11600/igt@gem_tiled_pread_basic.html - bat-adlp-9: NOTRUN -> [SKIP][23] ([i915#3282]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-adlp-9/igt@gem_tiled_pread_basic.html - bat-adln-1: NOTRUN -> [SKIP][24] ([i915#3282]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-adln-1/igt@gem_tiled_pread_basic.html - bat-adlm-1: NOTRUN -> [SKIP][25] ([i915#3282]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-adlm-1/igt@gem_tiled_pread_basic.html * igt@i915_pm_backlight@basic-brightness: - bat-adlm-1: NOTRUN -> [SKIP][26] ([i915#7561]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-adlm-1/igt@i915_pm_backlight@basic-brightness.html - bat-adlp-9: NOTRUN -> [SKIP][27] ([i915#3546] / [i915#7561]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-adlp-9/igt@i915_pm_backlight@basic-brightness.html - fi-rkl-11600: NOTRUN -> [SKIP][28] ([i915#7561]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/fi-rkl-11600/igt@i915_pm_backlight@basic-brightness.html * igt@i915_pm_rpm@basic-pci-d3-state: - bat-adlp-9: NOTRUN -> [FAIL][29] ([i915#7940]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-adlp-9/igt@i915_pm_rpm@basic-pci-d3-state.html - fi-cfl-8700k: NOTRUN -> [FAIL][30] ([i915#7940]) +1 similar issue [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/fi-cfl-8700k/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@i915_pm_rpm@basic-rte: - fi-tgl-1115g4: [PASS][31] -> [FAIL][32] ([i915#7940]) +1 similar issue [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/fi-tgl-1115g4/igt@i915_pm_rpm@basic-rte.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/fi-tgl-1115g4/igt@i915_pm_rpm@basic-rte.html - bat-adlp-9: NOTRUN -> [ABORT][33] ([i915#7977] / [i915#8668]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-adlp-9/igt@i915_pm_rpm@basic-rte.html * igt@i915_pm_rpm@module-reload: - fi-kbl-x1275: [PASS][34] -> [FAIL][35] ([i915#8843]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/fi-kbl-x1275/igt@i915_pm_rpm@module-reload.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/fi-kbl-x1275/igt@i915_pm_rpm@module-reload.html * igt@i915_pm_rps@basic-api: - bat-mtlp-8: NOTRUN -> [SKIP][36] ([i915#6621]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-mtlp-8/igt@i915_pm_rps@basic-api.html - bat-adlm-1: NOTRUN -> [SKIP][37] ([i915#6621]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-adlm-1/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live@migrate: - bat-mtlp-8: NOTRUN -> [DMESG-FAIL][38] ([i915#7699]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-mtlp-8/igt@i915_selftest@live@migrate.html * igt@i915_selftest@live@mman: - bat-rpls-2: [PASS][39] -> [TIMEOUT][40] ([i915#6794] / [i915#7392]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/bat-rpls-2/igt@i915_selftest@live@mman.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-rpls-2/igt@i915_selftest@live@mman.html * igt@i915_selftest@live@requests: - bat-mtlp-6: [PASS][41] -> [DMESG-FAIL][42] ([i915#8497]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/bat-mtlp-6/igt@i915_selftest@live@requests.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-mtlp-6/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@reset: - bat-rpls-1: [PASS][43] -> [ABORT][44] ([i915#4983] / [i915#7461] / [i915#7981] / [i915#8347] / [i915#8384]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/bat-rpls-1/igt@i915_selftest@live@reset.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-rpls-1/igt@i915_selftest@live@reset.html * igt@i915_selftest@live@slpc: - bat-mtlp-6: [PASS][45] -> [DMESG-WARN][46] ([i915#6367]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/bat-mtlp-6/igt@i915_selftest@live@slpc.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-mtlp-6/igt@i915_selftest@live@slpc.html - bat-mtlp-8: NOTRUN -> [DMESG-WARN][47] ([i915#6367]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-mtlp-8/igt@i915_selftest@live@slpc.html * igt@i915_suspend@basic-s2idle-without-i915: - bat-rpls-2: [PASS][48] -> [WARN][49] ([i915#8747]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/bat-rpls-2/igt@i915_suspend@basic-s2idle-without-i915.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-rpls-2/igt@i915_suspend@basic-s2idle-without-i915.html * igt@i915_suspend@basic-s3-without-i915: - fi-pnv-d510: NOTRUN -> [ABORT][50] ([i915#8844]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/fi-pnv-d510/igt@i915_suspend@basic-s3-without-i915.html - bat-mtlp-8: NOTRUN -> [SKIP][51] ([i915#6645]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-mtlp-8: NOTRUN -> [SKIP][52] ([i915#5190]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - bat-mtlp-8: NOTRUN -> [SKIP][53] ([i915#4212]) +8 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-mtlp-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_chamelium_edid@hdmi-edid-read: - bat-adlp-9: NOTRUN -> [SKIP][54] ([i915#7828]) +7 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-adlp-9/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_chamelium_frames@dp-crc-fast: - bat-adlm-1: NOTRUN -> [SKIP][55] ([i915#7828]) +8 similar issues [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-adlm-1/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_frames@hdmi-crc-fast: - bat-adln-1: NOTRUN -> [SKIP][56] ([i915#7828]) +7 similar issues [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-adln-1/igt@kms_chamelium_frames@hdmi-crc-fast.html - bat-mtlp-8: NOTRUN -> [SKIP][57] ([i915#7828]) +8 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-mtlp-8/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_hpd@dp-hpd-fast: - fi-rkl-11600: NOTRUN -> [SKIP][58] ([i915#7828]) +8 similar issues [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/fi-rkl-11600/igt@kms_chamelium_hpd@dp-hpd-fast.html * igt@kms_chamelium_hpd@hdmi-hpd-fast: - fi-cfl-8700k: NOTRUN -> [SKIP][59] ([fdo#109271]) +19 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/fi-cfl-8700k/igt@kms_chamelium_hpd@hdmi-hpd-fast.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - fi-glk-j4005: NOTRUN -> [SKIP][60] ([fdo#109271]) +18 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/fi-glk-j4005/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - bat-adlp-9: NOTRUN -> [SKIP][61] ([i915#4103]) +1 similar issue [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-adlp-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - bat-adln-1: NOTRUN -> [SKIP][62] ([i915#4213]) +1 similar issue [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-adln-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - fi-rkl-11600: NOTRUN -> [SKIP][63] ([i915#4103]) +1 similar issue [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/fi-rkl-11600/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - bat-mtlp-8: NOTRUN -> [SKIP][64] ([i915#4213]) +1 similar issue [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size: - bat-adlm-1: NOTRUN -> [SKIP][65] ([i915#1845]) +16 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-adlm-1/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html * igt@kms_flip@basic-plain-flip: - bat-adlm-1: NOTRUN -> [SKIP][66] ([i915#3637]) +3 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-adlm-1/igt@kms_flip@basic-plain-flip.html * igt@kms_force_connector_basic@force-load-detect: - bat-adln-1: NOTRUN -> [SKIP][67] ([fdo#109285]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-adln-1/igt@kms_force_connector_basic@force-load-detect.html - bat-adlm-1: NOTRUN -> [SKIP][68] ([fdo#109285]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-adlm-1/igt@kms_force_connector_basic@force-load-detect.html - fi-rkl-11600: NOTRUN -> [SKIP][69] ([fdo#109285] / [i915#4098]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/fi-rkl-11600/igt@kms_force_connector_basic@force-load-detect.html - bat-mtlp-8: NOTRUN -> [SKIP][70] ([fdo#109285]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-mtlp-8/igt@kms_force_connector_basic@force-load-detect.html - bat-adlp-9: NOTRUN -> [SKIP][71] ([fdo#109285]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-adlp-9/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - bat-mtlp-8: NOTRUN -> [SKIP][72] ([i915#5274]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@basic: - bat-adlm-1: NOTRUN -> [SKIP][73] ([i915#1849]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-adlm-1/igt@kms_frontbuffer_tracking@basic.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-dg2-11: NOTRUN -> [SKIP][74] ([i915#1845] / [i915#5354]) +2 similar issues [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-vga-1: - fi-ivb-3770: NOTRUN -> [DMESG-WARN][75] ([i915#8841]) +2 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/fi-ivb-3770/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-vga-1.html * igt@kms_psr@cursor_plane_move: - bat-adlm-1: NOTRUN -> [SKIP][76] ([i915#1072]) +3 similar issues [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-adlm-1/igt@kms_psr@cursor_plane_move.html * igt@kms_psr@primary_page_flip: - fi-pnv-d510: NOTRUN -> [SKIP][77] ([fdo#109271]) +38 similar issues [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/fi-pnv-d510/igt@kms_psr@primary_page_flip.html * igt@kms_psr@sprite_plane_onoff: - bat-adlp-9: NOTRUN -> [SKIP][78] ([i915#1072]) +3 similar issues [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-adlp-9/igt@kms_psr@sprite_plane_onoff.html - fi-rkl-11600: NOTRUN -> [SKIP][79] ([i915#1072]) +3 similar issues [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/fi-rkl-11600/igt@kms_psr@sprite_plane_onoff.html - bat-adln-1: NOTRUN -> [ABORT][80] ([i915#8442] / [i915#8668]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-adln-1/igt@kms_psr@sprite_plane_onoff.html * igt@kms_setmode@basic-clone-single-crtc: - bat-adlp-9: NOTRUN -> [SKIP][81] ([i915#3555]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-adlp-9/igt@kms_setmode@basic-clone-single-crtc.html - fi-rkl-11600: NOTRUN -> [SKIP][82] ([i915#3555] / [i915#4098]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/fi-rkl-11600/igt@kms_setmode@basic-clone-single-crtc.html - bat-mtlp-8: NOTRUN -> [SKIP][83] ([i915#8809]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-mtlp-8/igt@kms_setmode@basic-clone-single-crtc.html - bat-adlm-1: NOTRUN -> [SKIP][84] ([i915#3555]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-adlm-1/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - bat-adlm-1: NOTRUN -> [SKIP][85] ([i915#1845] / [i915#3708]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-adlm-1/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-mmap: - bat-mtlp-8: NOTRUN -> [SKIP][86] ([i915#3708] / [i915#4077]) +1 similar issue [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-mtlp-8/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-fence-read: - bat-mtlp-8: NOTRUN -> [SKIP][87] ([i915#3708]) +2 similar issues [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-mtlp-8/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-read: - fi-rkl-11600: NOTRUN -> [SKIP][88] ([fdo#109295] / [i915#3291] / [i915#3708]) +2 similar issues [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/fi-rkl-11600/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-write: - bat-adlm-1: NOTRUN -> [SKIP][89] ([i915#3708]) +2 similar issues [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-adlm-1/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@i915_pm_rpm@basic-pci-d3-state: - fi-skl-guc: [FAIL][90] ([i915#7940]) -> [PASS][91] [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/fi-skl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/fi-skl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@i915_selftest@live@gt_heartbeat: - fi-kbl-soraka: [DMESG-FAIL][92] ([i915#5334] / [i915#7872]) -> [PASS][93] [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@gt_mocs: - bat-mtlp-6: [DMESG-FAIL][94] ([i915#7059]) -> [PASS][95] [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html #### Warnings #### * igt@i915_module_load@load: - bat-adlp-11: [DMESG-WARN][96] ([i915#4423]) -> [ABORT][97] ([i915#4423]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/bat-adlp-11/igt@i915_module_load@load.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-adlp-11/igt@i915_module_load@load.html * igt@kms_psr@primary_page_flip: - bat-rplp-1: [SKIP][98] ([i915#1072]) -> [ABORT][99] ([i915#8860]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/bat-rplp-1/igt@kms_psr@primary_page_flip.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/bat-rplp-1/igt@kms_psr@primary_page_flip.html [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#6794]: https://gitlab.freedesktop.org/drm/intel/issues/6794 [i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059 [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392 [i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7872]: https://gitlab.freedesktop.org/drm/intel/issues/7872 [i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940 [i915#7977]: https://gitlab.freedesktop.org/drm/intel/issues/7977 [i915#7981]: https://gitlab.freedesktop.org/drm/intel/issues/7981 [i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347 [i915#8384]: https://gitlab.freedesktop.org/drm/intel/issues/8384 [i915#8442]: https://gitlab.freedesktop.org/drm/intel/issues/8442 [i915#8497]: https://gitlab.freedesktop.org/drm/intel/issues/8497 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8747]: https://gitlab.freedesktop.org/drm/intel/issues/8747 [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8843]: https://gitlab.freedesktop.org/drm/intel/issues/8843 [i915#8844]: https://gitlab.freedesktop.org/drm/intel/issues/8844 [i915#8860]: https://gitlab.freedesktop.org/drm/intel/issues/8860 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7419 -> IGTPW_9530 CI-20190529: 20190529 CI_DRM_13485: 0c8b167528bfd16d6c4e8fb5a0f11421b7e2f349 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9530: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/index.html IGT_7419: 7419 Testlist changes ---------------- +igt@msm_submitoverhead@submitbench-10-bos +igt@msm_submitoverhead@submitbench-10-bos-no-implicit-sync +igt@msm_submitoverhead@submitbench-100-bos +igt@msm_submitoverhead@submitbench-100-bos-no-implicit-sync +igt@msm_submitoverhead@submitbench-250-bos +igt@msm_submitoverhead@submitbench-250-bos-no-implicit-sync +igt@msm_submitoverhead@submitbench-500-bos +igt@msm_submitoverhead@submitbench-500-bos-no-implicit-sync +igt@msm_submitoverhead@submitbench-1000-bos +igt@msm_submitoverhead@submitbench-1000-bos-no-implicit-sync == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/index.html [-- Attachment #2: Type: text/html, Size: 31544 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/msm: Add submitoverhead benchmark (rev2) 2023-08-07 16:36 [igt-dev] [PATCH v2] tests/msm: Add submitoverhead benchmark Rob Clark 2023-08-07 18:04 ` [igt-dev] ○ CI.xeBAT: info for tests/msm: Add submitoverhead benchmark (rev2) Patchwork 2023-08-07 18:13 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork @ 2023-08-07 22:59 ` Patchwork 2023-08-10 19:31 ` Kamil Konieczny 2023-08-10 19:33 ` [igt-dev] [PATCH v2] tests/msm: Add submitoverhead benchmark Kamil Konieczny ` (4 subsequent siblings) 7 siblings, 1 reply; 11+ messages in thread From: Patchwork @ 2023-08-07 22:59 UTC (permalink / raw) To: Rob Clark; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 78758 bytes --] == Series Details == Series: tests/msm: Add submitoverhead benchmark (rev2) URL : https://patchwork.freedesktop.org/series/121909/ State : failure == Summary == CI Bug Log - changes from IGT_7419_full -> IGTPW_9530_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9530_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9530_full, please notify your bug team 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_9530/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9530_full: ### IGT changes ### #### Possible regressions #### * igt@kms_properties@plane-properties-atomic: - shard-dg2: [PASS][1] -> [TIMEOUT][2] +2 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-3/igt@kms_properties@plane-properties-atomic.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@kms_properties@plane-properties-atomic.html * igt@kms_rotation_crc@multiplane-rotation-cropping-top: - shard-rkl: [PASS][3] -> [ABORT][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-1/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html * igt@kms_vblank@invalid: - shard-dg2: NOTRUN -> [TIMEOUT][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@kms_vblank@invalid.html #### Warnings #### * igt@gem_exec_flush@basic-uc-prw-default: - shard-dg2: [SKIP][6] ([i915#3539]) -> [TIMEOUT][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-6/igt@gem_exec_flush@basic-uc-prw-default.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@gem_exec_flush@basic-uc-prw-default.html Known issues ------------ Here are the changes found in IGTPW_9530_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#8411]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-6/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@drm_fdinfo@busy-check-all@bcs0: - shard-dg1: NOTRUN -> [SKIP][9] ([i915#8414]) +4 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-19/igt@drm_fdinfo@busy-check-all@bcs0.html * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [PASS][10] -> [FAIL][11] ([i915#7742]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all@rcs0.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: - shard-rkl: NOTRUN -> [FAIL][12] ([i915#7742]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html * igt@drm_fdinfo@most-busy-idle-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#8414]) +9 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html * igt@gem_bad_reloc@negative-reloc-lut: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#3281]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_caching@writes: - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#4873]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@gem_caching@writes.html * igt@gem_ccs@block-copy-compressed: - shard-dg1: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#5325]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@gem_ccs@block-copy-compressed.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [PASS][17] -> [FAIL][18] ([i915#6268]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html - shard-tglu: [PASS][19] -> [FAIL][20] ([i915#6268]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-3/igt@gem_ctx_exec@basic-nohangcheck.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_freq@sysfs@gt0: - shard-dg2: [PASS][21] -> [FAIL][22] ([i915#6786]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-6/igt@gem_ctx_freq@sysfs@gt0.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@gem_ctx_freq@sysfs@gt0.html * igt@gem_ctx_persistence@engines-hostile@vcs0: - shard-mtlp: [PASS][23] -> [FAIL][24] ([i915#2410]) +3 similar issues [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-3/igt@gem_ctx_persistence@engines-hostile@vcs0.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@gem_ctx_persistence@engines-hostile@vcs0.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg1: NOTRUN -> [SKIP][25] ([i915#8555]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_sseu@mmap-args: - shard-dg1: NOTRUN -> [SKIP][26] ([i915#280]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-12/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@hibernate: - shard-dg1: [PASS][27] -> [ABORT][28] ([i915#4391] / [i915#7975] / [i915#8213]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg1-17/igt@gem_eio@hibernate.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-14/igt@gem_eio@hibernate.html * igt@gem_exec_fair@basic-none: - shard-dg1: NOTRUN -> [SKIP][29] ([i915#3539] / [i915#4852]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-14/igt@gem_exec_fair@basic-none.html * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-tglu: NOTRUN -> [FAIL][30] ([i915#2842]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglu: [PASS][31] -> [FAIL][32] ([i915#2842]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-4/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_flush@basic-wb-rw-before-default: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#3539] / [i915#4852]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@gem_exec_flush@basic-wb-rw-before-default.html * igt@gem_exec_reloc@basic-gtt-cpu: - shard-mtlp: NOTRUN -> [SKIP][34] ([i915#3281]) +1 similar issue [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-6/igt@gem_exec_reloc@basic-gtt-cpu.html * igt@gem_exec_reloc@basic-gtt-wc-active: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#3281]) +4 similar issues [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@gem_exec_reloc@basic-gtt-wc-active.html * igt@gem_exec_reloc@basic-write-read-noreloc: - shard-dg1: NOTRUN -> [SKIP][36] ([i915#3281]) +1 similar issue [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-12/igt@gem_exec_reloc@basic-write-read-noreloc.html * igt@gem_exec_schedule@preempt-queue-contexts: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#4812]) +1 similar issue [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-16/igt@gem_exec_schedule@preempt-queue-contexts.html * igt@gem_exec_schedule@semaphore-power: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#4537] / [i915#4812]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_whisper@basic-fds-forked-all: - shard-tglu: [PASS][39] -> [INCOMPLETE][40] ([i915#6755] / [i915#7392]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-4/igt@gem_exec_whisper@basic-fds-forked-all.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-3/igt@gem_exec_whisper@basic-fds-forked-all.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#4860]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-dg1: NOTRUN -> [SKIP][42] ([i915#4860]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-rkl: NOTRUN -> [SKIP][43] ([i915#4613]) +1 similar issue [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@gem_lmem_swapping@heavy-verify-random.html - shard-tglu: NOTRUN -> [SKIP][44] ([i915#4613]) +1 similar issue [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-8/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#8289]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@gem_media_fill@media-fill.html * igt@gem_mmap@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#4083]) +2 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-3/igt@gem_mmap@basic-small-bo.html * igt@gem_mmap_gtt@bad-object: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4077]) +3 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@gem_mmap_gtt@bad-object.html * igt@gem_mmap_gtt@coherency: - shard-rkl: NOTRUN -> [SKIP][48] ([fdo#111656]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@gem_mmap_gtt@coherency.html * igt@gem_mmap_gtt@fault-concurrent: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4077]) +3 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-3/igt@gem_mmap_gtt@fault-concurrent.html * igt@gem_mmap_gtt@fault-concurrent-y: - shard-snb: [PASS][50] -> [ABORT][51] ([i915#5161]) +1 similar issue [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-snb5/igt@gem_mmap_gtt@fault-concurrent-y.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-snb6/igt@gem_mmap_gtt@fault-concurrent-y.html * igt@gem_mmap_gtt@medium-copy-xy: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#4077]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@gem_mmap_gtt@medium-copy-xy.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4083]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-1/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#3282]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-8/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pxp@create-regular-context-2: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4270]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-6/igt@gem_pxp@create-regular-context-2.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-tglu: NOTRUN -> [SKIP][56] ([i915#4270]) +1 similar issue [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-3/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4270]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-16/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_readwrite@beyond-eob: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#3282]) +3 similar issues [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@gem_readwrite@beyond-eob.html - shard-rkl: NOTRUN -> [SKIP][59] ([i915#3282]) +2 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@gem_readwrite@beyond-eob.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#8428]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-8/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html * igt@gem_softpin@evict-snoop: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#4885]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-16/igt@gem_softpin@evict-snoop.html * igt@gem_userptr_blits@coherency-sync: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#3297]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-1/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-tglu: NOTRUN -> [SKIP][63] ([i915#3323]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-9/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#3297]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-16/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gen7_exec_parse@batch-without-end: - shard-dg2: NOTRUN -> [SKIP][65] ([fdo#109289]) +1 similar issue [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@gen7_exec_parse@batch-without-end.html - shard-rkl: NOTRUN -> [SKIP][66] ([fdo#109289]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@gen7_exec_parse@batch-without-end.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [PASS][67] -> [ABORT][68] ([i915#5566]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-apl1/igt@gen9_exec_parse@allowed-single.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-apl1/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@basic-rejected: - shard-tglu: NOTRUN -> [SKIP][69] ([i915#2527] / [i915#2856]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-6/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@batch-zero-length: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#2856]) +2 similar issues [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-4/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-start-param: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#2856]) +1 similar issue [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@gen9_exec_parse@bb-start-param.html * igt@i915_hangman@engine-engine-error@vcs0: - shard-mtlp: [PASS][72] -> [FAIL][73] ([i915#7069]) +1 similar issue [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-2/igt@i915_hangman@engine-engine-error@vcs0.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@i915_hangman@engine-engine-error@vcs0.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [PASS][74] -> [SKIP][75] ([fdo#109271]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-apl2/igt@i915_pm_dc@dc9-dpms.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-apl3/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: - shard-rkl: [PASS][76] -> [SKIP][77] ([i915#1937]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-7/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-4/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html * igt@i915_pm_rpm@basic-rte: - shard-tglu: [PASS][78] -> [FAIL][79] ([i915#7940]) +2 similar issues [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-3/igt@i915_pm_rpm@basic-rte.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-2/igt@i915_pm_rpm@basic-rte.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [PASS][80] -> [SKIP][81] ([i915#1397]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-6/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#1397]) +1 similar issue [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@i915_pm_rpm@system-suspend-devices: - shard-dg1: [PASS][83] -> [FAIL][84] ([i915#7940]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg1-17/igt@i915_pm_rpm@system-suspend-devices.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-14/igt@i915_pm_rpm@system-suspend-devices.html * igt@i915_pm_rpm@system-suspend-modeset: - shard-apl: [PASS][85] -> [ABORT][86] ([i915#180]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-apl4/igt@i915_pm_rpm@system-suspend-modeset.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-apl6/igt@i915_pm_rpm@system-suspend-modeset.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#6621]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-16/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@reset: - shard-mtlp: NOTRUN -> [FAIL][88] ([i915#8346]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-8/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds-idle-park@gt0: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#8925]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@i915_pm_rps@thresholds-idle-park@gt0.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#6188]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_selftest@live@slpc: - shard-mtlp: [PASS][91] -> [DMESG-WARN][92] ([i915#6367]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-2/igt@i915_selftest@live@slpc.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-8/igt@i915_selftest@live@slpc.html * igt@i915_suspend@fence-restore-untiled: - shard-tglu: [PASS][93] -> [ABORT][94] ([i915#5122]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-8/igt@i915_suspend@fence-restore-untiled.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-4/igt@i915_suspend@fence-restore-untiled.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-1: - shard-apl: [PASS][95] -> [FAIL][96] ([i915#2521]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-apl7/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-1.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-apl6/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-1.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1: - shard-mtlp: [PASS][97] -> [FAIL][98] ([i915#2521]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-6/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4-mc_ccs: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#8502] / [i915#8709]) +11 similar issues [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4-mc_ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc_ccs: - shard-dg1: NOTRUN -> [SKIP][100] ([i915#8502]) +7 similar issues [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc_ccs.html * igt@kms_async_flips@crc@pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][101] ([i915#8247]) +3 similar issues [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-12/igt@kms_async_flips@crc@pipe-b-hdmi-a-3.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#6228]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@kms_async_flips@invalid-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-rkl: NOTRUN -> [SKIP][103] ([i915#5286]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html - shard-tglu: NOTRUN -> [SKIP][104] ([fdo#111615] / [i915#5286]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][105] ([i915#4538] / [i915#5286]) +1 similar issue [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][106] ([fdo#111614]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-4/igt@kms_big_fb@linear-16bpp-rotate-90.html - shard-mtlp: NOTRUN -> [SKIP][107] ([fdo#111614]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-3/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][108] ([fdo#111614]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-3/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-mtlp: [PASS][109] -> [FAIL][110] ([i915#3743]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#5190]) +8 similar issues [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-mtlp: NOTRUN -> [SKIP][112] ([fdo#111615]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][113] ([i915#4538]) +1 similar issue [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-tglu: NOTRUN -> [SKIP][114] ([fdo#111615]) +1 similar issue [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#4538] / [i915#5190]) +3 similar issues [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html - shard-rkl: NOTRUN -> [SKIP][116] ([fdo#110723]) +1 similar issue [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#3689] / [i915#3886] / [i915#5354]) +6 similar issues [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc: - shard-tglu: NOTRUN -> [SKIP][118] ([i915#3689] / [i915#5354] / [i915#6095]) +1 similar issue [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#5354] / [i915#6095]) +1 similar issue [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-17/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs.html * igt@kms_ccs@pipe-a-missing-ccs-buffer-yf_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#3734] / [i915#5354] / [i915#6095]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@kms_ccs@pipe-a-missing-ccs-buffer-yf_tiled_ccs.html - shard-tglu: NOTRUN -> [SKIP][121] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) +1 similar issue [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-9/igt@kms_ccs@pipe-a-missing-ccs-buffer-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-missing-ccs-buffer-4_tiled_mtl_rc_ccs_cc: - shard-rkl: NOTRUN -> [SKIP][122] ([i915#5354] / [i915#6095]) +1 similar issue [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@kms_ccs@pipe-b-missing-ccs-buffer-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_ccs: - shard-mtlp: NOTRUN -> [SKIP][123] ([i915#6095]) +6 similar issues [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-6/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_ccs.html * igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc: - shard-rkl: NOTRUN -> [SKIP][124] ([i915#5354]) +5 similar issues [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-4/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-dg1: NOTRUN -> [SKIP][125] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-18/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_ccs: - shard-dg1: NOTRUN -> [SKIP][126] ([i915#3689] / [i915#5354] / [i915#6095]) +3 similar issues [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-17/igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_ccs.html * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs_cc: - shard-tglu: NOTRUN -> [SKIP][127] ([i915#5354] / [i915#6095]) +6 similar issues [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-4/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#3689] / [i915#5354]) +8 similar issues [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs.html * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#4087]) +3 similar issues [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html * igt@kms_chamelium_color@ctm-limited-range: - shard-dg2: NOTRUN -> [SKIP][130] ([fdo#111827]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-mtlp: NOTRUN -> [SKIP][131] ([i915#7828]) +1 similar issue [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-4/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@kms_chamelium_edid@hdmi-mode-timings: - shard-tglu: NOTRUN -> [SKIP][132] ([i915#7828]) +1 similar issue [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-6/igt@kms_chamelium_edid@hdmi-mode-timings.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#7828]) +4 similar issues [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_chamelium_hpd@dp-hpd-for-each-pipe: - shard-rkl: NOTRUN -> [SKIP][134] ([i915#7828]) +1 similar issue [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@hdmi-hpd-fast: - shard-dg1: NOTRUN -> [SKIP][135] ([i915#7828]) +1 similar issue [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-18/igt@kms_chamelium_hpd@hdmi-hpd-fast.html * igt@kms_content_protection@atomic@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][136] ([i915#7173]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_content_protection@atomic@pipe-a-dp-4.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#3299]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@legacy: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#7118]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@kms_content_protection@legacy.html - shard-rkl: NOTRUN -> [SKIP][139] ([i915#7118]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic: - shard-dg1: NOTRUN -> [SKIP][140] ([i915#7116]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@kms_content_protection@lic.html * igt@kms_content_protection@uevent@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][141] ([i915#1339]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_content_protection@uevent@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#3359]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg1: NOTRUN -> [SKIP][143] ([i915#3359]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-16/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic: - shard-tglu: NOTRUN -> [SKIP][144] ([fdo#109274]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-snb: NOTRUN -> [SKIP][145] ([fdo#109271] / [fdo#111767]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-snb4/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-dg2: NOTRUN -> [SKIP][146] ([fdo#109274] / [i915#5354]) +2 similar issues [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-3/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#3546]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][148] ([fdo#109274] / [fdo#111767] / [i915#5354]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [PASS][149] -> [FAIL][150] ([i915#2346]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg1: NOTRUN -> [SKIP][151] ([i915#4103] / [i915#4213]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-12/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#8588]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@kms_display_modes@mst-extended-mode-negative.html - shard-tglu: NOTRUN -> [SKIP][153] ([i915#8588]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#3555] / [i915#3840]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_flip@2x-flip-vs-modeset: - shard-rkl: NOTRUN -> [SKIP][155] ([fdo#111825]) +2 similar issues [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-dg2: NOTRUN -> [SKIP][156] ([fdo#109274]) +4 similar issues [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#3637]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-7/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-tglu: NOTRUN -> [SKIP][158] ([fdo#109274] / [i915#3637]) +1 similar issue [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#2672]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][160] ([i915#2587] / [i915#2672]) +3 similar issues [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#2672]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#2672]) +2 similar issues [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#2672] / [i915#3555]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-dg2: NOTRUN -> [SKIP][164] ([fdo#109285]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#5274]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff: - shard-dg2: [PASS][166] -> [FAIL][167] ([i915#6880]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite: - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#1825]) +2 similar issues [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][169] ([fdo#109280]) +12 similar issues [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][170] ([fdo#111825] / [i915#1825]) +6 similar issues [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#5354]) +21 similar issues [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-dg2: [PASS][172] -> [FAIL][173] ([fdo#103375]) +4 similar issues [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-suspend.html [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#5460]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#3458]) +7 similar issues [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff: - shard-dg1: NOTRUN -> [SKIP][176] ([fdo#111825]) +7 similar issues [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][177] ([i915#3458]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][178] ([fdo#110189]) +12 similar issues [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#8708]) +11 similar issues [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][180] ([i915#8708]) +1 similar issue [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][181] ([i915#3023]) +3 similar issues [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#3555] / [i915#8228]) +1 similar issue [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@kms_hdr@static-toggle-suspend.html * igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c: - shard-mtlp: NOTRUN -> [SKIP][183] ([fdo#109289]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-2/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-1: - shard-apl: NOTRUN -> [ABORT][184] ([i915#180]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-apl2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-1.html * igt@kms_plane@pixel-format@pipe-b-planes: - shard-mtlp: [PASS][185] -> [FAIL][186] ([i915#1623]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-1/igt@kms_plane@pixel-format@pipe-b-planes.html [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-7/igt@kms_plane@pixel-format@pipe-b-planes.html * igt@kms_plane_multiple@tiling-yf: - shard-dg1: NOTRUN -> [SKIP][187] ([i915#3555]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-12/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#6953]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-tglu: [PASS][189] -> [FAIL][190] ([i915#8292]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-2/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][191] ([i915#8292]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-14/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][192] ([i915#5176]) +11 similar issues [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#5176]) +11 similar issues [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-dp-4.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][194] ([i915#5176]) +27 similar issues [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-19/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][195] ([i915#5235]) +23 similar issues [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#5235]) +5 similar issues [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#5235]) +15 similar issues [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-hdmi-a-1: - shard-snb: NOTRUN -> [SKIP][198] ([fdo#109271]) +37 similar issues [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-snb1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-hdmi-a-1.html * igt@kms_prime@d3hot: - shard-dg1: NOTRUN -> [SKIP][199] ([i915#6524]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][200] ([fdo#111068] / [i915#658]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-18/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#658]) +2 similar issues [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-3/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-rkl: NOTRUN -> [SKIP][202] ([fdo#111068] / [i915#658]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@cursor_blt: - shard-rkl: NOTRUN -> [SKIP][203] ([i915#1072]) +1 similar issue [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@kms_psr@cursor_blt.html * igt@kms_psr@psr2_sprite_blt: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#1072]) +2 similar issues [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_psr@psr2_sprite_blt.html * igt@kms_psr@sprite_mmap_cpu: - shard-dg1: NOTRUN -> [SKIP][205] ([i915#1072]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-17/igt@kms_psr@sprite_mmap_cpu.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#5461] / [i915#658]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html - shard-rkl: NOTRUN -> [SKIP][207] ([i915#5461] / [i915#658]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-rotation-90: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#4235]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_scaling_modes@scaling-mode-none: - shard-tglu: NOTRUN -> [SKIP][209] ([i915#3555]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-7/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_setmode@basic-clone-single-crtc: - shard-dg2: NOTRUN -> [SKIP][210] ([i915#3555]) +2 similar issues [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][211] ([i915#8823]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-4/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend: - shard-dg2: NOTRUN -> [FAIL][212] ([fdo#103375]) +2 similar issues [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html * igt@kms_vblank@pipe-d-wait-busy: - shard-rkl: NOTRUN -> [SKIP][213] ([i915#4070] / [i915#533] / [i915#6768]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@kms_vblank@pipe-d-wait-busy.html * igt@kms_writeback@writeback-fb-id: - shard-dg1: NOTRUN -> [SKIP][214] ([i915#2437]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-pixel-formats: - shard-mtlp: NOTRUN -> [SKIP][215] ([i915#2437]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-4/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@global-sseu-config: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#7387]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@perf@global-sseu-config.html * igt@perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#2434]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@perf@mi-rpc.html - shard-tglu: NOTRUN -> [SKIP][218] ([fdo#109289]) +1 similar issue [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-2/igt@perf@mi-rpc.html - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#2434]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@perf@mi-rpc.html * igt@perf_pmu@busy-double-start@ccs1: - shard-dg2: [PASS][220] -> [FAIL][221] ([i915#4349]) +1 similar issue [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-2/igt@perf_pmu@busy-double-start@ccs1.html [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-3/igt@perf_pmu@busy-double-start@ccs1.html * igt@perf_pmu@busy-double-start@vcs1: - shard-dg1: [PASS][222] -> [FAIL][223] ([i915#4349]) +1 similar issue [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg1-18/igt@perf_pmu@busy-double-start@vcs1.html [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-14/igt@perf_pmu@busy-double-start@vcs1.html * igt@perf_pmu@event-wait@rcs0: - shard-dg2: NOTRUN -> [SKIP][224] ([fdo#112283]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@perf_pmu@event-wait@rcs0.html - shard-rkl: NOTRUN -> [SKIP][225] ([fdo#112283]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@perf_pmu@event-wait@rcs0.html - shard-tglu: NOTRUN -> [SKIP][226] ([fdo#112283]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-7/igt@perf_pmu@event-wait@rcs0.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-tglu: NOTRUN -> [SKIP][227] ([i915#8516]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-7/igt@perf_pmu@rc6@other-idle-gt0.html * igt@perf_pmu@render-node-busy-idle@ccs0: - shard-mtlp: [PASS][228] -> [FAIL][229] ([i915#4349]) +4 similar issues [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-7/igt@perf_pmu@render-node-busy-idle@ccs0.html [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-6/igt@perf_pmu@render-node-busy-idle@ccs0.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#3291] / [i915#3708]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@prime_vgem@basic-fence-read.html - shard-rkl: NOTRUN -> [SKIP][231] ([fdo#109295] / [i915#3291] / [i915#3708]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@fence-flip-hang: - shard-tglu: NOTRUN -> [SKIP][232] ([fdo#109295]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-9/igt@prime_vgem@fence-flip-hang.html * igt@prime_vgem@fence-read-hang: - shard-rkl: NOTRUN -> [SKIP][233] ([fdo#109295] / [i915#3708]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@prime_vgem@fence-read-hang.html * igt@runner@aborted: - shard-snb: NOTRUN -> ([FAIL][234], [FAIL][235]) ([i915#7812] / [i915#8848]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-snb7/igt@runner@aborted.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-snb7/igt@runner@aborted.html * igt@v3d/v3d_job_submission@array-job-submission: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#2575]) +6 similar issues [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@v3d/v3d_job_submission@array-job-submission.html - shard-rkl: NOTRUN -> [SKIP][237] ([fdo#109315]) +3 similar issues [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-4/igt@v3d/v3d_job_submission@array-job-submission.html - shard-tglu: NOTRUN -> [SKIP][238] ([fdo#109315] / [i915#2575]) +5 similar issues [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-9/igt@v3d/v3d_job_submission@array-job-submission.html * igt@v3d/v3d_perfmon@create-perfmon-0: - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#2575]) +2 similar issues [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-4/igt@v3d/v3d_perfmon@create-perfmon-0.html * igt@v3d/v3d_submit_cl@multi-and-single-sync: - shard-dg1: NOTRUN -> [SKIP][240] ([i915#2575]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@v3d/v3d_submit_cl@multi-and-single-sync.html * igt@vc4/vc4_lookup_fail@bad-color-write: - shard-dg1: NOTRUN -> [SKIP][241] ([i915#7711]) +2 similar issues [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-17/igt@vc4/vc4_lookup_fail@bad-color-write.html * igt@vc4/vc4_perfmon@get-values-invalid-pointer: - shard-tglu: NOTRUN -> [SKIP][242] ([i915#2575]) +1 similar issue [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@vc4/vc4_perfmon@get-values-invalid-pointer.html * igt@vc4/vc4_purgeable_bo@access-purged-bo-mem: - shard-rkl: NOTRUN -> [SKIP][243] ([i915#7711]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html * igt@vc4/vc4_wait_bo@used-bo-1ns: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#7711]) +4 similar issues [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@vc4/vc4_wait_bo@used-bo-1ns.html #### Possible fixes #### * igt@gem_exec_fair@basic-deadline: - shard-rkl: [FAIL][245] ([i915#2846]) -> [PASS][246] [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-7/igt@gem_exec_fair@basic-deadline.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-rkl: [FAIL][247] ([i915#2842]) -> [PASS][248] [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-6/igt@gem_exec_fair@basic-none-share@rcs0.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-4/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_schedule@preemptive-hang@vcs0: - shard-mtlp: [FAIL][249] ([i915#9051]) -> [PASS][250] [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-8/igt@gem_exec_schedule@preemptive-hang@vcs0.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-1/igt@gem_exec_schedule@preemptive-hang@vcs0.html * igt@i915_module_load@reload: - shard-snb: [ABORT][251] ([i915#4528] / [i915#8695]) -> [PASS][252] [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-snb7/igt@i915_module_load@reload.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-snb1/igt@i915_module_load@reload.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [DMESG-WARN][253] ([i915#7061] / [i915#8617]) -> [PASS][254] [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-6/igt@i915_module_load@reload-with-fault-injection.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pipe_stress@stress-xrgb8888-untiled: - shard-mtlp: [FAIL][255] ([i915#8691]) -> [PASS][256] [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-5/igt@i915_pipe_stress@stress-xrgb8888-untiled.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-3/igt@i915_pipe_stress@stress-xrgb8888-untiled.html * igt@i915_pm_dc@dc6-dpms: - shard-tglu: [FAIL][257] ([i915#3989] / [i915#454]) -> [PASS][258] [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-7/igt@i915_pm_dc@dc6-dpms.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-2/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_dc@dc9-dpms: - shard-tglu: [SKIP][259] ([i915#4281]) -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-5/igt@i915_pm_dc@dc9-dpms.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-10/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-mtlp: [SKIP][261] ([fdo#109289] / [i915#8403]) -> [PASS][262] [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-5/igt@i915_pm_rc6_residency@rc6-accuracy.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-1/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_pm_rpm@i2c: - shard-dg2: [FAIL][263] ([i915#8717]) -> [PASS][264] [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-2/igt@i915_pm_rpm@i2c.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@i915_pm_rpm@i2c.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [SKIP][265] ([i915#1397]) -> [PASS][266] +2 similar issues [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@i915_selftest@live@requests: - shard-mtlp: [DMESG-FAIL][267] ([i915#7269]) -> [PASS][268] [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-2/igt@i915_selftest@live@requests.html [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-8/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@workarounds: - shard-mtlp: [DMESG-FAIL][269] ([i915#6763]) -> [PASS][270] [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-2/igt@i915_selftest@live@workarounds.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-8/igt@i915_selftest@live@workarounds.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-mtlp: [FAIL][271] ([i915#3743]) -> [PASS][272] +1 similar issue [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [FAIL][273] ([i915#2346]) -> [PASS][274] [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-dg2: [FAIL][275] ([i915#4767]) -> [PASS][276] [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-2/igt@kms_fbcon_fbt@fbc-suspend.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a2: - shard-glk: [FAIL][277] ([i915#2122]) -> [PASS][278] [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-glk6/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a2.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-glk4/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a2.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt: - shard-dg2: [FAIL][279] ([i915#6880]) -> [PASS][280] +1 similar issue [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html #### Warnings #### * igt@gem_exec_await@wide-contexts: - shard-dg2: [FAIL][281] ([i915#5892]) -> [TIMEOUT][282] ([i915#5892]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-1/igt@gem_exec_await@wide-contexts.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@gem_exec_await@wide-contexts.html * igt@gem_exec_whisper@basic-contexts-forked-all: - shard-mtlp: [ABORT][283] ([i915#7392] / [i915#8131]) -> [TIMEOUT][284] ([i915#7392] / [i915#8628]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-2/igt@gem_exec_whisper@basic-contexts-forked-all.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-3/igt@gem_exec_whisper@basic-contexts-forked-all.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-mtlp: [SKIP][285] ([fdo#109289] / [i915#8403]) -> [SKIP][286] ([fdo#109289]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-3/igt@i915_pm_rc6_residency@media-rc6-accuracy.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-4/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][287] ([i915#7118]) -> [SKIP][288] ([i915#7118] / [i915#7162]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-3/igt@kms_content_protection@type1.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_content_protection@type1.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-mtlp: [DMESG-FAIL][289] ([i915#2017] / [i915#5954]) -> [FAIL][290] ([i915#2346]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-snb: [DMESG-WARN][291] ([i915#5090] / [i915#8841]) -> [DMESG-WARN][292] ([i915#8841]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-snb5/igt@kms_fbcon_fbt@fbc-suspend.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-snb2/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: [SKIP][293] ([fdo#110189] / [i915#3955]) -> [SKIP][294] ([i915#3955]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: [SKIP][295] ([fdo#109285]) -> [SKIP][296] ([fdo#109285] / [i915#4098]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-6/igt@kms_force_connector_basic@force-load-detect.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_psr@primary_mmap_gtt: - shard-dg1: [SKIP][297] ([i915#1072] / [i915#4078]) -> [SKIP][298] ([i915#1072]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg1-16/igt@kms_psr@primary_mmap_gtt.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-14/igt@kms_psr@primary_mmap_gtt.html * igt@kms_psr@sprite_plane_onoff: - shard-dg1: [SKIP][299] ([i915#1072]) -> [SKIP][300] ([i915#1072] / [i915#4078]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg1-14/igt@kms_psr@sprite_plane_onoff.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-16/igt@kms_psr@sprite_plane_onoff.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [CRASH][301] ([i915#7331]) -> [INCOMPLETE][302] ([i915#5493]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-2/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1339]: https://gitlab.freedesktop.org/drm/intel/issues/1339 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1623]: https://gitlab.freedesktop.org/drm/intel/issues/1623 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#5090]: https://gitlab.freedesktop.org/drm/intel/issues/5090 [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122 [i915#5161]: https://gitlab.freedesktop.org/drm/intel/issues/5161 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5892]: https://gitlab.freedesktop.org/drm/intel/issues/5892 [i915#5954]: https://gitlab.freedesktop.org/drm/intel/issues/5954 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188 [i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6755]: https://gitlab.freedesktop.org/drm/intel/issues/6755 [i915#6763]: https://gitlab.freedesktop.org/drm/intel/issues/6763 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6786]: https://gitlab.freedesktop.org/drm/intel/issues/6786 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7061]: https://gitlab.freedesktop.org/drm/intel/issues/7061 [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7269]: https://gitlab.freedesktop.org/drm/intel/issues/7269 [i915#7331]: https://gitlab.freedesktop.org/drm/intel/issues/7331 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7812]: https://gitlab.freedesktop.org/drm/intel/issues/7812 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8131]: https://gitlab.freedesktop.org/drm/intel/issues/8131 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8346]: https://gitlab.freedesktop.org/drm/intel/issues/8346 [i915#8403]: https://gitlab.freedesktop.org/drm/intel/issues/8403 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588 [i915#8617]: https://gitlab.freedesktop.org/drm/intel/issues/8617 [i915#8628]: https://gitlab.freedesktop.org/drm/intel/issues/8628 [i915#8691]: https://gitlab.freedesktop.org/drm/intel/issues/8691 [i915#8695]: https://gitlab.freedesktop.org/drm/intel/issues/8695 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8717]: https://gitlab.freedesktop.org/drm/intel/issues/8717 [i915#8823]: https://gitlab.freedesktop.org/drm/intel/issues/8823 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8848]: https://gitlab.freedesktop.org/drm/intel/issues/8848 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9051]: https://gitlab.freedesktop.org/drm/intel/issues/9051 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7419 -> IGTPW_9530 CI-20190529: 20190529 CI_DRM_13485: 0c8b167528bfd16d6c4e8fb5a0f11421b7e2f349 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9530: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/index.html IGT_7419: 7419 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/index.html [-- Attachment #2: Type: text/html, Size: 95240 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/msm: Add submitoverhead benchmark (rev2) 2023-08-07 22:59 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-08-10 19:31 ` Kamil Konieczny 2023-08-11 9:39 ` Yedireswarapu, SaiX Nandan 0 siblings, 1 reply; 11+ messages in thread From: Kamil Konieczny @ 2023-08-10 19:31 UTC (permalink / raw) To: igt-dev; +Cc: SaiX Nandan Yedireswarapu, RavitejaX Veesam, SanjuX Marikkar Hi Sai, below is unrelated to new msm test, Regards, Kamil On 2023-08-07 at 22:59:39 -0000, Patchwork wrote: > == Series Details == > > Series: tests/msm: Add submitoverhead benchmark (rev2) > URL : https://patchwork.freedesktop.org/series/121909/ > State : failure > > == Summary == > > CI Bug Log - changes from IGT_7419_full -> IGTPW_9530_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_9530_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_9530_full, please notify your bug team 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_9530/index.html > > Participating hosts (9 -> 9) > ------------------------------ > > No changes in participating hosts > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_9530_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@kms_properties@plane-properties-atomic: > - shard-dg2: [PASS][1] -> [TIMEOUT][2] +2 similar issues > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-3/igt@kms_properties@plane-properties-atomic.html > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@kms_properties@plane-properties-atomic.html > > * igt@kms_rotation_crc@multiplane-rotation-cropping-top: > - shard-rkl: [PASS][3] -> [ABORT][4] > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-1/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html > > * igt@kms_vblank@invalid: > - shard-dg2: NOTRUN -> [TIMEOUT][5] > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@kms_vblank@invalid.html > > > #### Warnings #### > > * igt@gem_exec_flush@basic-uc-prw-default: > - shard-dg2: [SKIP][6] ([i915#3539]) -> [TIMEOUT][7] > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-6/igt@gem_exec_flush@basic-uc-prw-default.html > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@gem_exec_flush@basic-uc-prw-default.html > > > Known issues > ------------ > > Here are the changes found in IGTPW_9530_full that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt@api_intel_bb@blit-reloc-keep-cache: > - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#8411]) > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-6/igt@api_intel_bb@blit-reloc-keep-cache.html > > * igt@drm_fdinfo@busy-check-all@bcs0: > - shard-dg1: NOTRUN -> [SKIP][9] ([i915#8414]) +4 similar issues > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-19/igt@drm_fdinfo@busy-check-all@bcs0.html > > * igt@drm_fdinfo@most-busy-check-all@rcs0: > - shard-rkl: [PASS][10] -> [FAIL][11] ([i915#7742]) > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all@rcs0.html > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html > > * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: > - shard-rkl: NOTRUN -> [FAIL][12] ([i915#7742]) > [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html > > * igt@drm_fdinfo@most-busy-idle-check-all@vecs1: > - shard-dg2: NOTRUN -> [SKIP][13] ([i915#8414]) +9 similar issues > [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html > > * igt@gem_bad_reloc@negative-reloc-lut: > - shard-rkl: NOTRUN -> [SKIP][14] ([i915#3281]) > [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@gem_bad_reloc@negative-reloc-lut.html > > * igt@gem_caching@writes: > - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#4873]) > [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@gem_caching@writes.html > > * igt@gem_ccs@block-copy-compressed: > - shard-dg1: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#5325]) > [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@gem_ccs@block-copy-compressed.html > > * igt@gem_ctx_exec@basic-nohangcheck: > - shard-rkl: [PASS][17] -> [FAIL][18] ([i915#6268]) > [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html > [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html > - shard-tglu: [PASS][19] -> [FAIL][20] ([i915#6268]) > [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-3/igt@gem_ctx_exec@basic-nohangcheck.html > [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@gem_ctx_exec@basic-nohangcheck.html > > * igt@gem_ctx_freq@sysfs@gt0: > - shard-dg2: [PASS][21] -> [FAIL][22] ([i915#6786]) > [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-6/igt@gem_ctx_freq@sysfs@gt0.html > [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@gem_ctx_freq@sysfs@gt0.html > > * igt@gem_ctx_persistence@engines-hostile@vcs0: > - shard-mtlp: [PASS][23] -> [FAIL][24] ([i915#2410]) +3 similar issues > [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-3/igt@gem_ctx_persistence@engines-hostile@vcs0.html > [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@gem_ctx_persistence@engines-hostile@vcs0.html > > * igt@gem_ctx_persistence@heartbeat-stop: > - shard-dg1: NOTRUN -> [SKIP][25] ([i915#8555]) > [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@gem_ctx_persistence@heartbeat-stop.html > > * igt@gem_ctx_sseu@mmap-args: > - shard-dg1: NOTRUN -> [SKIP][26] ([i915#280]) > [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-12/igt@gem_ctx_sseu@mmap-args.html > > * igt@gem_eio@hibernate: > - shard-dg1: [PASS][27] -> [ABORT][28] ([i915#4391] / [i915#7975] / [i915#8213]) > [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg1-17/igt@gem_eio@hibernate.html > [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-14/igt@gem_eio@hibernate.html > > * igt@gem_exec_fair@basic-none: > - shard-dg1: NOTRUN -> [SKIP][29] ([i915#3539] / [i915#4852]) > [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-14/igt@gem_exec_fair@basic-none.html > > * igt@gem_exec_fair@basic-none-vip@rcs0: > - shard-tglu: NOTRUN -> [FAIL][30] ([i915#2842]) > [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@gem_exec_fair@basic-none-vip@rcs0.html > > * igt@gem_exec_fair@basic-pace-share@rcs0: > - shard-tglu: [PASS][31] -> [FAIL][32] ([i915#2842]) > [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html > [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-4/igt@gem_exec_fair@basic-pace-share@rcs0.html > > * igt@gem_exec_flush@basic-wb-rw-before-default: > - shard-dg2: NOTRUN -> [SKIP][33] ([i915#3539] / [i915#4852]) > [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@gem_exec_flush@basic-wb-rw-before-default.html > > * igt@gem_exec_reloc@basic-gtt-cpu: > - shard-mtlp: NOTRUN -> [SKIP][34] ([i915#3281]) +1 similar issue > [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-6/igt@gem_exec_reloc@basic-gtt-cpu.html > > * igt@gem_exec_reloc@basic-gtt-wc-active: > - shard-dg2: NOTRUN -> [SKIP][35] ([i915#3281]) +4 similar issues > [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@gem_exec_reloc@basic-gtt-wc-active.html > > * igt@gem_exec_reloc@basic-write-read-noreloc: > - shard-dg1: NOTRUN -> [SKIP][36] ([i915#3281]) +1 similar issue > [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-12/igt@gem_exec_reloc@basic-write-read-noreloc.html > > * igt@gem_exec_schedule@preempt-queue-contexts: > - shard-dg1: NOTRUN -> [SKIP][37] ([i915#4812]) +1 similar issue > [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-16/igt@gem_exec_schedule@preempt-queue-contexts.html > > * igt@gem_exec_schedule@semaphore-power: > - shard-dg2: NOTRUN -> [SKIP][38] ([i915#4537] / [i915#4812]) > [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@gem_exec_schedule@semaphore-power.html > > * igt@gem_exec_whisper@basic-fds-forked-all: > - shard-tglu: [PASS][39] -> [INCOMPLETE][40] ([i915#6755] / [i915#7392]) > [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-4/igt@gem_exec_whisper@basic-fds-forked-all.html > [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-3/igt@gem_exec_whisper@basic-fds-forked-all.html > > * igt@gem_fence_thrash@bo-write-verify-y: > - shard-dg2: NOTRUN -> [SKIP][41] ([i915#4860]) > [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@gem_fence_thrash@bo-write-verify-y.html > > * igt@gem_fenced_exec_thrash@no-spare-fences: > - shard-dg1: NOTRUN -> [SKIP][42] ([i915#4860]) > [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@gem_fenced_exec_thrash@no-spare-fences.html > > * igt@gem_lmem_swapping@heavy-verify-random: > - shard-rkl: NOTRUN -> [SKIP][43] ([i915#4613]) +1 similar issue > [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@gem_lmem_swapping@heavy-verify-random.html > - shard-tglu: NOTRUN -> [SKIP][44] ([i915#4613]) +1 similar issue > [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-8/igt@gem_lmem_swapping@heavy-verify-random.html > > * igt@gem_media_fill@media-fill: > - shard-dg2: NOTRUN -> [SKIP][45] ([i915#8289]) > [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@gem_media_fill@media-fill.html > > * igt@gem_mmap@basic-small-bo: > - shard-dg2: NOTRUN -> [SKIP][46] ([i915#4083]) +2 similar issues > [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-3/igt@gem_mmap@basic-small-bo.html > > * igt@gem_mmap_gtt@bad-object: > - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4077]) +3 similar issues > [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@gem_mmap_gtt@bad-object.html > > * igt@gem_mmap_gtt@coherency: > - shard-rkl: NOTRUN -> [SKIP][48] ([fdo#111656]) > [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@gem_mmap_gtt@coherency.html > > * igt@gem_mmap_gtt@fault-concurrent: > - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4077]) +3 similar issues > [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-3/igt@gem_mmap_gtt@fault-concurrent.html > > * igt@gem_mmap_gtt@fault-concurrent-y: > - shard-snb: [PASS][50] -> [ABORT][51] ([i915#5161]) +1 similar issue > [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-snb5/igt@gem_mmap_gtt@fault-concurrent-y.html > [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-snb6/igt@gem_mmap_gtt@fault-concurrent-y.html > > * igt@gem_mmap_gtt@medium-copy-xy: > - shard-dg1: NOTRUN -> [SKIP][52] ([i915#4077]) > [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@gem_mmap_gtt@medium-copy-xy.html > > * igt@gem_mmap_wc@write-wc-read-gtt: > - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4083]) > [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-1/igt@gem_mmap_wc@write-wc-read-gtt.html > > * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: > - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#3282]) > [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-8/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html > > * igt@gem_pxp@create-regular-context-2: > - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4270]) > [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-6/igt@gem_pxp@create-regular-context-2.html > > * igt@gem_pxp@reject-modify-context-protection-off-2: > - shard-tglu: NOTRUN -> [SKIP][56] ([i915#4270]) +1 similar issue > [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-3/igt@gem_pxp@reject-modify-context-protection-off-2.html > > * igt@gem_pxp@verify-pxp-stale-ctx-execution: > - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4270]) > [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-16/igt@gem_pxp@verify-pxp-stale-ctx-execution.html > > * igt@gem_readwrite@beyond-eob: > - shard-dg2: NOTRUN -> [SKIP][58] ([i915#3282]) +3 similar issues > [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@gem_readwrite@beyond-eob.html > - shard-rkl: NOTRUN -> [SKIP][59] ([i915#3282]) +2 similar issues > [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@gem_readwrite@beyond-eob.html > > * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled: > - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#8428]) > [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-8/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html > > * igt@gem_softpin@evict-snoop: > - shard-dg1: NOTRUN -> [SKIP][61] ([i915#4885]) > [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-16/igt@gem_softpin@evict-snoop.html > > * igt@gem_userptr_blits@coherency-sync: > - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#3297]) > [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-1/igt@gem_userptr_blits@coherency-sync.html > > * igt@gem_userptr_blits@dmabuf-sync: > - shard-tglu: NOTRUN -> [SKIP][63] ([i915#3323]) > [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-9/igt@gem_userptr_blits@dmabuf-sync.html > > * igt@gem_userptr_blits@dmabuf-unsync: > - shard-dg1: NOTRUN -> [SKIP][64] ([i915#3297]) > [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-16/igt@gem_userptr_blits@dmabuf-unsync.html > > * igt@gen7_exec_parse@batch-without-end: > - shard-dg2: NOTRUN -> [SKIP][65] ([fdo#109289]) +1 similar issue > [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@gen7_exec_parse@batch-without-end.html > - shard-rkl: NOTRUN -> [SKIP][66] ([fdo#109289]) > [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@gen7_exec_parse@batch-without-end.html > > * igt@gen9_exec_parse@allowed-single: > - shard-apl: [PASS][67] -> [ABORT][68] ([i915#5566]) > [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-apl1/igt@gen9_exec_parse@allowed-single.html > [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-apl1/igt@gen9_exec_parse@allowed-single.html > > * igt@gen9_exec_parse@basic-rejected: > - shard-tglu: NOTRUN -> [SKIP][69] ([i915#2527] / [i915#2856]) > [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-6/igt@gen9_exec_parse@basic-rejected.html > > * igt@gen9_exec_parse@batch-zero-length: > - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#2856]) +2 similar issues > [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-4/igt@gen9_exec_parse@batch-zero-length.html > > * igt@gen9_exec_parse@bb-start-param: > - shard-dg2: NOTRUN -> [SKIP][71] ([i915#2856]) +1 similar issue > [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@gen9_exec_parse@bb-start-param.html > > * igt@i915_hangman@engine-engine-error@vcs0: > - shard-mtlp: [PASS][72] -> [FAIL][73] ([i915#7069]) +1 similar issue > [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-2/igt@i915_hangman@engine-engine-error@vcs0.html > [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@i915_hangman@engine-engine-error@vcs0.html > > * igt@i915_pm_dc@dc9-dpms: > - shard-apl: [PASS][74] -> [SKIP][75] ([fdo#109271]) > [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-apl2/igt@i915_pm_dc@dc9-dpms.html > [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-apl3/igt@i915_pm_dc@dc9-dpms.html > > * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: > - shard-rkl: [PASS][76] -> [SKIP][77] ([i915#1937]) > [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-7/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html > [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-4/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html > > * igt@i915_pm_rpm@basic-rte: > - shard-tglu: [PASS][78] -> [FAIL][79] ([i915#7940]) +2 similar issues > [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-3/igt@i915_pm_rpm@basic-rte.html > [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-2/igt@i915_pm_rpm@basic-rte.html > > * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: > - shard-rkl: [PASS][80] -> [SKIP][81] ([i915#1397]) > [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-6/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html > [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html > > * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: > - shard-dg2: NOTRUN -> [SKIP][82] ([i915#1397]) +1 similar issue > [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html > > * igt@i915_pm_rpm@system-suspend-devices: > - shard-dg1: [PASS][83] -> [FAIL][84] ([i915#7940]) > [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg1-17/igt@i915_pm_rpm@system-suspend-devices.html > [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-14/igt@i915_pm_rpm@system-suspend-devices.html > > * igt@i915_pm_rpm@system-suspend-modeset: > - shard-apl: [PASS][85] -> [ABORT][86] ([i915#180]) > [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-apl4/igt@i915_pm_rpm@system-suspend-modeset.html > [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-apl6/igt@i915_pm_rpm@system-suspend-modeset.html > > * igt@i915_pm_rps@min-max-config-loaded: > - shard-dg1: NOTRUN -> [SKIP][87] ([i915#6621]) > [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-16/igt@i915_pm_rps@min-max-config-loaded.html > > * igt@i915_pm_rps@reset: > - shard-mtlp: NOTRUN -> [FAIL][88] ([i915#8346]) > [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-8/igt@i915_pm_rps@reset.html > > * igt@i915_pm_rps@thresholds-idle-park@gt0: > - shard-dg2: NOTRUN -> [SKIP][89] ([i915#8925]) > [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@i915_pm_rps@thresholds-idle-park@gt0.html > > * igt@i915_query@query-topology-coherent-slice-mask: > - shard-dg2: NOTRUN -> [SKIP][90] ([i915#6188]) > [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@i915_query@query-topology-coherent-slice-mask.html > > * igt@i915_selftest@live@slpc: > - shard-mtlp: [PASS][91] -> [DMESG-WARN][92] ([i915#6367]) > [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-2/igt@i915_selftest@live@slpc.html > [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-8/igt@i915_selftest@live@slpc.html > > * igt@i915_suspend@fence-restore-untiled: > - shard-tglu: [PASS][93] -> [ABORT][94] ([i915#5122]) > [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-8/igt@i915_suspend@fence-restore-untiled.html > [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-4/igt@i915_suspend@fence-restore-untiled.html > > * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-1: > - shard-apl: [PASS][95] -> [FAIL][96] ([i915#2521]) > [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-apl7/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-1.html > [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-apl6/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-1.html > > * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1: > - shard-mtlp: [PASS][97] -> [FAIL][98] ([i915#2521]) > [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-6/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html > [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html > > * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4-mc_ccs: > - shard-dg2: NOTRUN -> [SKIP][99] ([i915#8502] / [i915#8709]) +11 similar issues > [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4-mc_ccs.html > > * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc_ccs: > - shard-dg1: NOTRUN -> [SKIP][100] ([i915#8502]) +7 similar issues > [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc_ccs.html > > * igt@kms_async_flips@crc@pipe-b-hdmi-a-3: > - shard-dg1: NOTRUN -> [FAIL][101] ([i915#8247]) +3 similar issues > [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-12/igt@kms_async_flips@crc@pipe-b-hdmi-a-3.html > > * igt@kms_async_flips@invalid-async-flip: > - shard-dg2: NOTRUN -> [SKIP][102] ([i915#6228]) > [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@kms_async_flips@invalid-async-flip.html > > * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip: > - shard-rkl: NOTRUN -> [SKIP][103] ([i915#5286]) > [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html > - shard-tglu: NOTRUN -> [SKIP][104] ([fdo#111615] / [i915#5286]) > [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html > > * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: > - shard-dg1: NOTRUN -> [SKIP][105] ([i915#4538] / [i915#5286]) +1 similar issue > [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html > > * igt@kms_big_fb@linear-16bpp-rotate-90: > - shard-tglu: NOTRUN -> [SKIP][106] ([fdo#111614]) > [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-4/igt@kms_big_fb@linear-16bpp-rotate-90.html > - shard-mtlp: NOTRUN -> [SKIP][107] ([fdo#111614]) > [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-3/igt@kms_big_fb@linear-16bpp-rotate-90.html > > * igt@kms_big_fb@x-tiled-64bpp-rotate-270: > - shard-dg2: NOTRUN -> [SKIP][108] ([fdo#111614]) > [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-3/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html > > * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: > - shard-mtlp: [PASS][109] -> [FAIL][110] ([i915#3743]) > [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html > [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html > > * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip: > - shard-dg2: NOTRUN -> [SKIP][111] ([i915#5190]) +8 similar issues > [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html > > * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: > - shard-mtlp: NOTRUN -> [SKIP][112] ([fdo#111615]) > [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html > > * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: > - shard-dg1: NOTRUN -> [SKIP][113] ([i915#4538]) +1 similar issue > [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html > > * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: > - shard-tglu: NOTRUN -> [SKIP][114] ([fdo#111615]) +1 similar issue > [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html > > * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: > - shard-dg2: NOTRUN -> [SKIP][115] ([i915#4538] / [i915#5190]) +3 similar issues > [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html > - shard-rkl: NOTRUN -> [SKIP][116] ([fdo#110723]) +1 similar issue > [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html > > * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs: > - shard-dg2: NOTRUN -> [SKIP][117] ([i915#3689] / [i915#3886] / [i915#5354]) +6 similar issues > [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html > > * igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc: > - shard-tglu: NOTRUN -> [SKIP][118] ([i915#3689] / [i915#5354] / [i915#6095]) +1 similar issue > [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html > > * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs: > - shard-dg1: NOTRUN -> [SKIP][119] ([i915#5354] / [i915#6095]) +1 similar issue > [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-17/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs.html > > * igt@kms_ccs@pipe-a-missing-ccs-buffer-yf_tiled_ccs: > - shard-rkl: NOTRUN -> [SKIP][120] ([i915#3734] / [i915#5354] / [i915#6095]) > [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@kms_ccs@pipe-a-missing-ccs-buffer-yf_tiled_ccs.html > - shard-tglu: NOTRUN -> [SKIP][121] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) +1 similar issue > [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-9/igt@kms_ccs@pipe-a-missing-ccs-buffer-yf_tiled_ccs.html > > * igt@kms_ccs@pipe-b-missing-ccs-buffer-4_tiled_mtl_rc_ccs_cc: > - shard-rkl: NOTRUN -> [SKIP][122] ([i915#5354] / [i915#6095]) +1 similar issue > [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@kms_ccs@pipe-b-missing-ccs-buffer-4_tiled_mtl_rc_ccs_cc.html > > * igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_ccs: > - shard-mtlp: NOTRUN -> [SKIP][123] ([i915#6095]) +6 similar issues > [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-6/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_ccs.html > > * igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc: > - shard-rkl: NOTRUN -> [SKIP][124] ([i915#5354]) +5 similar issues > [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-4/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html > > * igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs: > - shard-dg1: NOTRUN -> [SKIP][125] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) > [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-18/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs.html > > * igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_ccs: > - shard-dg1: NOTRUN -> [SKIP][126] ([i915#3689] / [i915#5354] / [i915#6095]) +3 similar issues > [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-17/igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_ccs.html > > * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs_cc: > - shard-tglu: NOTRUN -> [SKIP][127] ([i915#5354] / [i915#6095]) +6 similar issues > [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-4/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs_cc.html > > * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs: > - shard-dg2: NOTRUN -> [SKIP][128] ([i915#3689] / [i915#5354]) +8 similar issues > [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs.html > > * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1: > - shard-dg2: NOTRUN -> [SKIP][129] ([i915#4087]) +3 similar issues > [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html > > * igt@kms_chamelium_color@ctm-limited-range: > - shard-dg2: NOTRUN -> [SKIP][130] ([fdo#111827]) > [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@kms_chamelium_color@ctm-limited-range.html > > * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: > - shard-mtlp: NOTRUN -> [SKIP][131] ([i915#7828]) +1 similar issue > [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-4/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html > > * igt@kms_chamelium_edid@hdmi-mode-timings: > - shard-tglu: NOTRUN -> [SKIP][132] ([i915#7828]) +1 similar issue > [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-6/igt@kms_chamelium_edid@hdmi-mode-timings.html > > * igt@kms_chamelium_hpd@common-hpd-after-suspend: > - shard-dg2: NOTRUN -> [SKIP][133] ([i915#7828]) +4 similar issues > [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@kms_chamelium_hpd@common-hpd-after-suspend.html > > * igt@kms_chamelium_hpd@dp-hpd-for-each-pipe: > - shard-rkl: NOTRUN -> [SKIP][134] ([i915#7828]) +1 similar issue > [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html > > * igt@kms_chamelium_hpd@hdmi-hpd-fast: > - shard-dg1: NOTRUN -> [SKIP][135] ([i915#7828]) +1 similar issue > [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-18/igt@kms_chamelium_hpd@hdmi-hpd-fast.html > > * igt@kms_content_protection@atomic@pipe-a-dp-4: > - shard-dg2: NOTRUN -> [TIMEOUT][136] ([i915#7173]) > [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_content_protection@atomic@pipe-a-dp-4.html > > * igt@kms_content_protection@dp-mst-type-0: > - shard-dg2: NOTRUN -> [SKIP][137] ([i915#3299]) > [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@kms_content_protection@dp-mst-type-0.html > > * igt@kms_content_protection@legacy: > - shard-dg2: NOTRUN -> [SKIP][138] ([i915#7118]) > [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@kms_content_protection@legacy.html > - shard-rkl: NOTRUN -> [SKIP][139] ([i915#7118]) > [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@kms_content_protection@legacy.html > > * igt@kms_content_protection@lic: > - shard-dg1: NOTRUN -> [SKIP][140] ([i915#7116]) > [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@kms_content_protection@lic.html > > * igt@kms_content_protection@uevent@pipe-a-dp-4: > - shard-dg2: NOTRUN -> [FAIL][141] ([i915#1339]) > [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_content_protection@uevent@pipe-a-dp-4.html > > * igt@kms_cursor_crc@cursor-offscreen-512x512: > - shard-dg2: NOTRUN -> [SKIP][142] ([i915#3359]) > [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@kms_cursor_crc@cursor-offscreen-512x512.html > > * igt@kms_cursor_crc@cursor-rapid-movement-512x170: > - shard-dg1: NOTRUN -> [SKIP][143] ([i915#3359]) > [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-16/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html > > * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic: > - shard-tglu: NOTRUN -> [SKIP][144] ([fdo#109274]) > [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html > > * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: > - shard-snb: NOTRUN -> [SKIP][145] ([fdo#109271] / [fdo#111767]) > [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-snb4/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html > > * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: > - shard-dg2: NOTRUN -> [SKIP][146] ([fdo#109274] / [i915#5354]) +2 similar issues > [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-3/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html > > * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: > - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#3546]) > [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html > > * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: > - shard-dg2: NOTRUN -> [SKIP][148] ([fdo#109274] / [fdo#111767] / [i915#5354]) > [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html > > * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: > - shard-glk: [PASS][149] -> [FAIL][150] ([i915#2346]) > [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html > [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html > > * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: > - shard-dg1: NOTRUN -> [SKIP][151] ([i915#4103] / [i915#4213]) > [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-12/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html > > * igt@kms_display_modes@mst-extended-mode-negative: > - shard-rkl: NOTRUN -> [SKIP][152] ([i915#8588]) > [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@kms_display_modes@mst-extended-mode-negative.html > - shard-tglu: NOTRUN -> [SKIP][153] ([i915#8588]) > [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@kms_display_modes@mst-extended-mode-negative.html > > * igt@kms_dsc@dsc-with-output-formats: > - shard-dg2: NOTRUN -> [SKIP][154] ([i915#3555] / [i915#3840]) > [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@kms_dsc@dsc-with-output-formats.html > > * igt@kms_flip@2x-flip-vs-modeset: > - shard-rkl: NOTRUN -> [SKIP][155] ([fdo#111825]) +2 similar issues > [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@kms_flip@2x-flip-vs-modeset.html > > * igt@kms_flip@2x-flip-vs-panning-vs-hang: > - shard-dg2: NOTRUN -> [SKIP][156] ([fdo#109274]) +4 similar issues > [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_flip@2x-flip-vs-panning-vs-hang.html > > * igt@kms_flip@2x-modeset-vs-vblank-race: > - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#3637]) > [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-7/igt@kms_flip@2x-modeset-vs-vblank-race.html > > * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: > - shard-tglu: NOTRUN -> [SKIP][158] ([fdo#109274] / [i915#3637]) +1 similar issue > [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html > > * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode: > - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#2672]) > [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode.html > > * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode: > - shard-tglu: NOTRUN -> [SKIP][160] ([i915#2587] / [i915#2672]) +3 similar issues > [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html > > * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: > - shard-rkl: NOTRUN -> [SKIP][161] ([i915#2672]) > [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html > > * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode: > - shard-dg2: NOTRUN -> [SKIP][162] ([i915#2672]) +2 similar issues > [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html > > * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: > - shard-dg2: NOTRUN -> [SKIP][163] ([i915#2672] / [i915#3555]) > [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html > > * igt@kms_force_connector_basic@force-load-detect: > - shard-dg2: NOTRUN -> [SKIP][164] ([fdo#109285]) > [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@kms_force_connector_basic@force-load-detect.html > > * igt@kms_force_connector_basic@prune-stale-modes: > - shard-dg2: NOTRUN -> [SKIP][165] ([i915#5274]) > [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@kms_force_connector_basic@prune-stale-modes.html > > * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff: > - shard-dg2: [PASS][166] -> [FAIL][167] ([i915#6880]) > [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html > [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html > > * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite: > - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#1825]) +2 similar issues > [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite.html > > * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: > - shard-tglu: NOTRUN -> [SKIP][169] ([fdo#109280]) +12 similar issues > [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html > > * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: > - shard-rkl: NOTRUN -> [SKIP][170] ([fdo#111825] / [i915#1825]) +6 similar issues > [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html > > * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: > - shard-dg2: NOTRUN -> [SKIP][171] ([i915#5354]) +21 similar issues > [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html > > * igt@kms_frontbuffer_tracking@fbc-suspend: > - shard-dg2: [PASS][172] -> [FAIL][173] ([fdo#103375]) +4 similar issues > [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-suspend.html > [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-suspend.html > > * igt@kms_frontbuffer_tracking@fbc-tiling-y: > - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#5460]) > [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-tiling-y.html > > * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite: > - shard-dg2: NOTRUN -> [SKIP][175] ([i915#3458]) +7 similar issues > [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite.html > > * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff: > - shard-dg1: NOTRUN -> [SKIP][176] ([fdo#111825]) +7 similar issues > [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html > > * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-pwrite: > - shard-dg1: NOTRUN -> [SKIP][177] ([i915#3458]) > [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-pwrite.html > > * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt: > - shard-tglu: NOTRUN -> [SKIP][178] ([fdo#110189]) +12 similar issues > [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt.html > > * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt: > - shard-dg2: NOTRUN -> [SKIP][179] ([i915#8708]) +11 similar issues > [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html > > * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: > - shard-dg1: NOTRUN -> [SKIP][180] ([i915#8708]) +1 similar issue > [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html > > * igt@kms_frontbuffer_tracking@psr-suspend: > - shard-rkl: NOTRUN -> [SKIP][181] ([i915#3023]) +3 similar issues > [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-suspend.html > > * igt@kms_hdr@static-toggle-suspend: > - shard-dg2: NOTRUN -> [SKIP][182] ([i915#3555] / [i915#8228]) +1 similar issue > [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@kms_hdr@static-toggle-suspend.html > > * igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c: > - shard-mtlp: NOTRUN -> [SKIP][183] ([fdo#109289]) > [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-2/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html > > * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-1: > - shard-apl: NOTRUN -> [ABORT][184] ([i915#180]) > [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-apl2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-1.html > > * igt@kms_plane@pixel-format@pipe-b-planes: > - shard-mtlp: [PASS][185] -> [FAIL][186] ([i915#1623]) > [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-1/igt@kms_plane@pixel-format@pipe-b-planes.html > [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-7/igt@kms_plane@pixel-format@pipe-b-planes.html > > * igt@kms_plane_multiple@tiling-yf: > - shard-dg1: NOTRUN -> [SKIP][187] ([i915#3555]) > [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-12/igt@kms_plane_multiple@tiling-yf.html > > * igt@kms_plane_scaling@intel-max-src-size: > - shard-dg2: NOTRUN -> [SKIP][188] ([i915#6953]) > [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@kms_plane_scaling@intel-max-src-size.html > > * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: > - shard-tglu: [PASS][189] -> [FAIL][190] ([i915#8292]) > [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-2/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html > [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html > > * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: > - shard-dg1: NOTRUN -> [FAIL][191] ([i915#8292]) > [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-14/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html > > * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-2: > - shard-rkl: NOTRUN -> [SKIP][192] ([i915#5176]) +11 similar issues > [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-2.html > > * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-dp-4: > - shard-dg2: NOTRUN -> [SKIP][193] ([i915#5176]) +11 similar issues > [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-dp-4.html > > * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-1: > - shard-dg1: NOTRUN -> [SKIP][194] ([i915#5176]) +27 similar issues > [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-19/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-1.html > > * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1: > - shard-dg1: NOTRUN -> [SKIP][195] ([i915#5235]) +23 similar issues > [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1.html > > * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-1: > - shard-rkl: NOTRUN -> [SKIP][196] ([i915#5235]) +5 similar issues > [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-1.html > > * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3: > - shard-dg2: NOTRUN -> [SKIP][197] ([i915#5235]) +15 similar issues > [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html > > * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-hdmi-a-1: > - shard-snb: NOTRUN -> [SKIP][198] ([fdo#109271]) +37 similar issues > [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-snb1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-hdmi-a-1.html > > * igt@kms_prime@d3hot: > - shard-dg1: NOTRUN -> [SKIP][199] ([i915#6524]) > [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@kms_prime@d3hot.html > > * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: > - shard-dg1: NOTRUN -> [SKIP][200] ([fdo#111068] / [i915#658]) > [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-18/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html > > * igt@kms_psr2_su@frontbuffer-xrgb8888: > - shard-dg2: NOTRUN -> [SKIP][201] ([i915#658]) +2 similar issues > [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-3/igt@kms_psr2_su@frontbuffer-xrgb8888.html > - shard-rkl: NOTRUN -> [SKIP][202] ([fdo#111068] / [i915#658]) > [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html > > * igt@kms_psr@cursor_blt: > - shard-rkl: NOTRUN -> [SKIP][203] ([i915#1072]) +1 similar issue > [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@kms_psr@cursor_blt.html > > * igt@kms_psr@psr2_sprite_blt: > - shard-dg2: NOTRUN -> [SKIP][204] ([i915#1072]) +2 similar issues > [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_psr@psr2_sprite_blt.html > > * igt@kms_psr@sprite_mmap_cpu: > - shard-dg1: NOTRUN -> [SKIP][205] ([i915#1072]) > [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-17/igt@kms_psr@sprite_mmap_cpu.html > > * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: > - shard-dg2: NOTRUN -> [SKIP][206] ([i915#5461] / [i915#658]) > [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html > - shard-rkl: NOTRUN -> [SKIP][207] ([i915#5461] / [i915#658]) > [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html > > * igt@kms_rotation_crc@primary-rotation-90: > - shard-dg2: NOTRUN -> [SKIP][208] ([i915#4235]) > [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@kms_rotation_crc@primary-rotation-90.html > > * igt@kms_scaling_modes@scaling-mode-none: > - shard-tglu: NOTRUN -> [SKIP][209] ([i915#3555]) > [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-7/igt@kms_scaling_modes@scaling-mode-none.html > > * igt@kms_setmode@basic-clone-single-crtc: > - shard-dg2: NOTRUN -> [SKIP][210] ([i915#3555]) +2 similar issues > [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@kms_setmode@basic-clone-single-crtc.html > > * igt@kms_setmode@invalid-clone-exclusive-crtc: > - shard-mtlp: NOTRUN -> [SKIP][211] ([i915#8823]) > [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-4/igt@kms_setmode@invalid-clone-exclusive-crtc.html > > * igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend: > - shard-dg2: NOTRUN -> [FAIL][212] ([fdo#103375]) +2 similar issues > [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html > > * igt@kms_vblank@pipe-d-wait-busy: > - shard-rkl: NOTRUN -> [SKIP][213] ([i915#4070] / [i915#533] / [i915#6768]) > [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@kms_vblank@pipe-d-wait-busy.html > > * igt@kms_writeback@writeback-fb-id: > - shard-dg1: NOTRUN -> [SKIP][214] ([i915#2437]) > [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@kms_writeback@writeback-fb-id.html > > * igt@kms_writeback@writeback-pixel-formats: > - shard-mtlp: NOTRUN -> [SKIP][215] ([i915#2437]) > [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-4/igt@kms_writeback@writeback-pixel-formats.html > > * igt@perf@global-sseu-config: > - shard-dg2: NOTRUN -> [SKIP][216] ([i915#7387]) > [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@perf@global-sseu-config.html > > * igt@perf@mi-rpc: > - shard-dg2: NOTRUN -> [SKIP][217] ([i915#2434]) > [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@perf@mi-rpc.html > - shard-tglu: NOTRUN -> [SKIP][218] ([fdo#109289]) +1 similar issue > [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-2/igt@perf@mi-rpc.html > - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#2434]) > [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@perf@mi-rpc.html > > * igt@perf_pmu@busy-double-start@ccs1: > - shard-dg2: [PASS][220] -> [FAIL][221] ([i915#4349]) +1 similar issue > [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-2/igt@perf_pmu@busy-double-start@ccs1.html > [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-3/igt@perf_pmu@busy-double-start@ccs1.html > > * igt@perf_pmu@busy-double-start@vcs1: > - shard-dg1: [PASS][222] -> [FAIL][223] ([i915#4349]) +1 similar issue > [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg1-18/igt@perf_pmu@busy-double-start@vcs1.html > [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-14/igt@perf_pmu@busy-double-start@vcs1.html > > * igt@perf_pmu@event-wait@rcs0: > - shard-dg2: NOTRUN -> [SKIP][224] ([fdo#112283]) > [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@perf_pmu@event-wait@rcs0.html > - shard-rkl: NOTRUN -> [SKIP][225] ([fdo#112283]) > [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@perf_pmu@event-wait@rcs0.html > - shard-tglu: NOTRUN -> [SKIP][226] ([fdo#112283]) > [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-7/igt@perf_pmu@event-wait@rcs0.html > > * igt@perf_pmu@rc6@other-idle-gt0: > - shard-tglu: NOTRUN -> [SKIP][227] ([i915#8516]) > [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-7/igt@perf_pmu@rc6@other-idle-gt0.html > > * igt@perf_pmu@render-node-busy-idle@ccs0: > - shard-mtlp: [PASS][228] -> [FAIL][229] ([i915#4349]) +4 similar issues > [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-7/igt@perf_pmu@render-node-busy-idle@ccs0.html > [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-6/igt@perf_pmu@render-node-busy-idle@ccs0.html > > * igt@prime_vgem@basic-fence-read: > - shard-dg2: NOTRUN -> [SKIP][230] ([i915#3291] / [i915#3708]) > [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@prime_vgem@basic-fence-read.html > - shard-rkl: NOTRUN -> [SKIP][231] ([fdo#109295] / [i915#3291] / [i915#3708]) > [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@prime_vgem@basic-fence-read.html > > * igt@prime_vgem@fence-flip-hang: > - shard-tglu: NOTRUN -> [SKIP][232] ([fdo#109295]) > [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-9/igt@prime_vgem@fence-flip-hang.html > > * igt@prime_vgem@fence-read-hang: > - shard-rkl: NOTRUN -> [SKIP][233] ([fdo#109295] / [i915#3708]) > [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@prime_vgem@fence-read-hang.html > > * igt@runner@aborted: > - shard-snb: NOTRUN -> ([FAIL][234], [FAIL][235]) ([i915#7812] / [i915#8848]) > [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-snb7/igt@runner@aborted.html > [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-snb7/igt@runner@aborted.html > > * igt@v3d/v3d_job_submission@array-job-submission: > - shard-dg2: NOTRUN -> [SKIP][236] ([i915#2575]) +6 similar issues > [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@v3d/v3d_job_submission@array-job-submission.html > - shard-rkl: NOTRUN -> [SKIP][237] ([fdo#109315]) +3 similar issues > [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-4/igt@v3d/v3d_job_submission@array-job-submission.html > - shard-tglu: NOTRUN -> [SKIP][238] ([fdo#109315] / [i915#2575]) +5 similar issues > [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-9/igt@v3d/v3d_job_submission@array-job-submission.html > > * igt@v3d/v3d_perfmon@create-perfmon-0: > - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#2575]) +2 similar issues > [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-4/igt@v3d/v3d_perfmon@create-perfmon-0.html > > * igt@v3d/v3d_submit_cl@multi-and-single-sync: > - shard-dg1: NOTRUN -> [SKIP][240] ([i915#2575]) > [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@v3d/v3d_submit_cl@multi-and-single-sync.html > > * igt@vc4/vc4_lookup_fail@bad-color-write: > - shard-dg1: NOTRUN -> [SKIP][241] ([i915#7711]) +2 similar issues > [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-17/igt@vc4/vc4_lookup_fail@bad-color-write.html > > * igt@vc4/vc4_perfmon@get-values-invalid-pointer: > - shard-tglu: NOTRUN -> [SKIP][242] ([i915#2575]) +1 similar issue > [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@vc4/vc4_perfmon@get-values-invalid-pointer.html > > * igt@vc4/vc4_purgeable_bo@access-purged-bo-mem: > - shard-rkl: NOTRUN -> [SKIP][243] ([i915#7711]) > [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html > > * igt@vc4/vc4_wait_bo@used-bo-1ns: > - shard-dg2: NOTRUN -> [SKIP][244] ([i915#7711]) +4 similar issues > [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@vc4/vc4_wait_bo@used-bo-1ns.html > > > #### Possible fixes #### > > * igt@gem_exec_fair@basic-deadline: > - shard-rkl: [FAIL][245] ([i915#2846]) -> [PASS][246] > [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-7/igt@gem_exec_fair@basic-deadline.html > [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@gem_exec_fair@basic-deadline.html > > * igt@gem_exec_fair@basic-none-share@rcs0: > - shard-rkl: [FAIL][247] ([i915#2842]) -> [PASS][248] > [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-6/igt@gem_exec_fair@basic-none-share@rcs0.html > [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-4/igt@gem_exec_fair@basic-none-share@rcs0.html > > * igt@gem_exec_schedule@preemptive-hang@vcs0: > - shard-mtlp: [FAIL][249] ([i915#9051]) -> [PASS][250] > [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-8/igt@gem_exec_schedule@preemptive-hang@vcs0.html > [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-1/igt@gem_exec_schedule@preemptive-hang@vcs0.html > > * igt@i915_module_load@reload: > - shard-snb: [ABORT][251] ([i915#4528] / [i915#8695]) -> [PASS][252] > [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-snb7/igt@i915_module_load@reload.html > [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-snb1/igt@i915_module_load@reload.html > > * igt@i915_module_load@reload-with-fault-injection: > - shard-dg2: [DMESG-WARN][253] ([i915#7061] / [i915#8617]) -> [PASS][254] > [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-6/igt@i915_module_load@reload-with-fault-injection.html > [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html > > * igt@i915_pipe_stress@stress-xrgb8888-untiled: > - shard-mtlp: [FAIL][255] ([i915#8691]) -> [PASS][256] > [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-5/igt@i915_pipe_stress@stress-xrgb8888-untiled.html > [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-3/igt@i915_pipe_stress@stress-xrgb8888-untiled.html > > * igt@i915_pm_dc@dc6-dpms: > - shard-tglu: [FAIL][257] ([i915#3989] / [i915#454]) -> [PASS][258] > [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-7/igt@i915_pm_dc@dc6-dpms.html > [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-2/igt@i915_pm_dc@dc6-dpms.html > > * igt@i915_pm_dc@dc9-dpms: > - shard-tglu: [SKIP][259] ([i915#4281]) -> [PASS][260] > [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-5/igt@i915_pm_dc@dc9-dpms.html > [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-10/igt@i915_pm_dc@dc9-dpms.html > > * igt@i915_pm_rc6_residency@rc6-accuracy: > - shard-mtlp: [SKIP][261] ([fdo#109289] / [i915#8403]) -> [PASS][262] > [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-5/igt@i915_pm_rc6_residency@rc6-accuracy.html > [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-1/igt@i915_pm_rc6_residency@rc6-accuracy.html > > * igt@i915_pm_rpm@i2c: > - shard-dg2: [FAIL][263] ([i915#8717]) -> [PASS][264] > [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-2/igt@i915_pm_rpm@i2c.html > [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@i915_pm_rpm@i2c.html > > * igt@i915_pm_rpm@modeset-non-lpsp-stress: > - shard-rkl: [SKIP][265] ([i915#1397]) -> [PASS][266] +2 similar issues > [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html > [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@i915_pm_rpm@modeset-non-lpsp-stress.html > > * igt@i915_selftest@live@requests: > - shard-mtlp: [DMESG-FAIL][267] ([i915#7269]) -> [PASS][268] > [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-2/igt@i915_selftest@live@requests.html > [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-8/igt@i915_selftest@live@requests.html > > * igt@i915_selftest@live@workarounds: > - shard-mtlp: [DMESG-FAIL][269] ([i915#6763]) -> [PASS][270] > [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-2/igt@i915_selftest@live@workarounds.html > [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-8/igt@i915_selftest@live@workarounds.html > > * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: > - shard-mtlp: [FAIL][271] ([i915#3743]) -> [PASS][272] +1 similar issue > [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html > [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html > > * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: > - shard-glk: [FAIL][273] ([i915#2346]) -> [PASS][274] > [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html > [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html > > * igt@kms_fbcon_fbt@fbc-suspend: > - shard-dg2: [FAIL][275] ([i915#4767]) -> [PASS][276] > [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-2/igt@kms_fbcon_fbt@fbc-suspend.html > [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@kms_fbcon_fbt@fbc-suspend.html > > * igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a2: > - shard-glk: [FAIL][277] ([i915#2122]) -> [PASS][278] > [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-glk6/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a2.html > [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-glk4/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a2.html > > * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt: > - shard-dg2: [FAIL][279] ([i915#6880]) -> [PASS][280] +1 similar issue > [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html > [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html > > > #### Warnings #### > > * igt@gem_exec_await@wide-contexts: > - shard-dg2: [FAIL][281] ([i915#5892]) -> [TIMEOUT][282] ([i915#5892]) > [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-1/igt@gem_exec_await@wide-contexts.html > [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@gem_exec_await@wide-contexts.html > > * igt@gem_exec_whisper@basic-contexts-forked-all: > - shard-mtlp: [ABORT][283] ([i915#7392] / [i915#8131]) -> [TIMEOUT][284] ([i915#7392] / [i915#8628]) > [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-2/igt@gem_exec_whisper@basic-contexts-forked-all.html > [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-3/igt@gem_exec_whisper@basic-contexts-forked-all.html > > * igt@i915_pm_rc6_residency@media-rc6-accuracy: > - shard-mtlp: [SKIP][285] ([fdo#109289] / [i915#8403]) -> [SKIP][286] ([fdo#109289]) > [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-3/igt@i915_pm_rc6_residency@media-rc6-accuracy.html > [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-4/igt@i915_pm_rc6_residency@media-rc6-accuracy.html > > * igt@kms_content_protection@type1: > - shard-dg2: [SKIP][287] ([i915#7118]) -> [SKIP][288] ([i915#7118] / [i915#7162]) > [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-3/igt@kms_content_protection@type1.html > [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_content_protection@type1.html > > * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: > - shard-mtlp: [DMESG-FAIL][289] ([i915#2017] / [i915#5954]) -> [FAIL][290] ([i915#2346]) > [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html > [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html > > * igt@kms_fbcon_fbt@fbc-suspend: > - shard-snb: [DMESG-WARN][291] ([i915#5090] / [i915#8841]) -> [DMESG-WARN][292] ([i915#8841]) > [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-snb5/igt@kms_fbcon_fbt@fbc-suspend.html > [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-snb2/igt@kms_fbcon_fbt@fbc-suspend.html > > * igt@kms_fbcon_fbt@psr-suspend: > - shard-rkl: [SKIP][293] ([fdo#110189] / [i915#3955]) -> [SKIP][294] ([i915#3955]) > [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html > [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html > > * igt@kms_force_connector_basic@force-load-detect: > - shard-rkl: [SKIP][295] ([fdo#109285]) -> [SKIP][296] ([fdo#109285] / [i915#4098]) > [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-6/igt@kms_force_connector_basic@force-load-detect.html > [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@kms_force_connector_basic@force-load-detect.html > > * igt@kms_psr@primary_mmap_gtt: > - shard-dg1: [SKIP][297] ([i915#1072] / [i915#4078]) -> [SKIP][298] ([i915#1072]) > [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg1-16/igt@kms_psr@primary_mmap_gtt.html > [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-14/igt@kms_psr@primary_mmap_gtt.html > > * igt@kms_psr@sprite_plane_onoff: > - shard-dg1: [SKIP][299] ([i915#1072]) -> [SKIP][300] ([i915#1072] / [i915#4078]) > [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg1-14/igt@kms_psr@sprite_plane_onoff.html > [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-16/igt@kms_psr@sprite_plane_onoff.html > > * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: > - shard-dg2: [CRASH][301] ([i915#7331]) -> [INCOMPLETE][302] ([i915#5493]) > [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-2/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html > [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html > > > [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 > [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 > [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 > [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 > [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 > [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 > [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 > [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 > [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 > [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 > [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 > [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 > [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 > [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 > [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 > [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 > [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 > [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 > [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 > [i915#1339]: https://gitlab.freedesktop.org/drm/intel/issues/1339 > [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 > [i915#1623]: https://gitlab.freedesktop.org/drm/intel/issues/1623 > [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 > [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 > [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 > [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 > [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 > [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 > [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 > [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 > [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 > [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 > [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 > [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 > [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 > [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 > [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 > [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 > [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 > [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 > [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 > [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 > [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 > [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 > [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 > [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 > [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 > [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 > [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 > [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 > [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 > [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 > [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 > [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 > [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 > [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 > [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 > [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 > [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 > [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 > [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 > [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 > [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 > [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 > [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 > [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 > [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 > [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 > [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 > [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 > [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 > [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 > [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 > [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 > [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 > [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 > [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 > [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 > [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 > [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 > [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 > [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 > [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 > [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 > [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 > [i915#5090]: https://gitlab.freedesktop.org/drm/intel/issues/5090 > [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122 > [i915#5161]: https://gitlab.freedesktop.org/drm/intel/issues/5161 > [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 > [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 > [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 > [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 > [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 > [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 > [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 > [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 > [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460 > [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 > [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 > [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 > [i915#5892]: https://gitlab.freedesktop.org/drm/intel/issues/5892 > [i915#5954]: https://gitlab.freedesktop.org/drm/intel/issues/5954 > [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 > [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188 > [i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228 > [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 > [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 > [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 > [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 > [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 > [i915#6755]: https://gitlab.freedesktop.org/drm/intel/issues/6755 > [i915#6763]: https://gitlab.freedesktop.org/drm/intel/issues/6763 > [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 > [i915#6786]: https://gitlab.freedesktop.org/drm/intel/issues/6786 > [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 > [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 > [i915#7061]: https://gitlab.freedesktop.org/drm/intel/issues/7061 > [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 > [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 > [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 > [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162 > [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 > [i915#7269]: https://gitlab.freedesktop.org/drm/intel/issues/7269 > [i915#7331]: https://gitlab.freedesktop.org/drm/intel/issues/7331 > [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 > [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392 > [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 > [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 > [i915#7812]: https://gitlab.freedesktop.org/drm/intel/issues/7812 > [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 > [i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940 > [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 > [i915#8131]: https://gitlab.freedesktop.org/drm/intel/issues/8131 > [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 > [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 > [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 > [i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289 > [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 > [i915#8346]: https://gitlab.freedesktop.org/drm/intel/issues/8346 > [i915#8403]: https://gitlab.freedesktop.org/drm/intel/issues/8403 > [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 > [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 > [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 > [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 > [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 > [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 > [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588 > [i915#8617]: https://gitlab.freedesktop.org/drm/intel/issues/8617 > [i915#8628]: https://gitlab.freedesktop.org/drm/intel/issues/8628 > [i915#8691]: https://gitlab.freedesktop.org/drm/intel/issues/8691 > [i915#8695]: https://gitlab.freedesktop.org/drm/intel/issues/8695 > [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 > [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 > [i915#8717]: https://gitlab.freedesktop.org/drm/intel/issues/8717 > [i915#8823]: https://gitlab.freedesktop.org/drm/intel/issues/8823 > [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 > [i915#8848]: https://gitlab.freedesktop.org/drm/intel/issues/8848 > [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 > [i915#9051]: https://gitlab.freedesktop.org/drm/intel/issues/9051 > > > Build changes > ------------- > > * CI: CI-20190529 -> None > * IGT: IGT_7419 -> IGTPW_9530 > > CI-20190529: 20190529 > CI_DRM_13485: 0c8b167528bfd16d6c4e8fb5a0f11421b7e2f349 @ git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_9530: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/index.html > IGT_7419: 7419 > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/index.html ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/msm: Add submitoverhead benchmark (rev2) 2023-08-10 19:31 ` Kamil Konieczny @ 2023-08-11 9:39 ` Yedireswarapu, SaiX Nandan 0 siblings, 0 replies; 11+ messages in thread From: Yedireswarapu, SaiX Nandan @ 2023-08-11 9:39 UTC (permalink / raw) To: Kamil Konieczny, igt-dev@lists.freedesktop.org Cc: Marikkar, SanjuX, Veesam, RavitejaX Hi, Issue re-reported, https://patchwork.freedesktop.org/series/121909/ Thanks, Y Sai Nandan -----Original Message----- From: Kamil Konieczny <kamil.konieczny@linux.intel.com> Sent: Friday, August 11, 2023 1:02 AM To: igt-dev@lists.freedesktop.org Cc: Rob Clark <robdclark@gmail.com>; Yedireswarapu, SaiX Nandan <saix.nandan.yedireswarapu@intel.com>; Veesam, RavitejaX <ravitejax.veesam@intel.com>; Marikkar, SanjuX <sanjux.marikkar@intel.com> Subject: Re: [igt-dev] ✗ Fi.CI.IGT: failure for tests/msm: Add submitoverhead benchmark (rev2) Hi Sai, below is unrelated to new msm test, Regards, Kamil On 2023-08-07 at 22:59:39 -0000, Patchwork wrote: > == Series Details == > > Series: tests/msm: Add submitoverhead benchmark (rev2) > URL : https://patchwork.freedesktop.org/series/121909/ > State : failure > > == Summary == > > CI Bug Log - changes from IGT_7419_full -> IGTPW_9530_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_9530_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_9530_full, please notify your bug team 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_9530/index.html > > Participating hosts (9 -> 9) > ------------------------------ > > No changes in participating hosts > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_9530_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@kms_properties@plane-properties-atomic: > - shard-dg2: [PASS][1] -> [TIMEOUT][2] +2 similar issues > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-3/igt@kms_properties@plane-properties-atomic.html > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@kms_properties@plane-properties-atomic.html > > * igt@kms_rotation_crc@multiplane-rotation-cropping-top: > - shard-rkl: [PASS][3] -> [ABORT][4] > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-1/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html > > * igt@kms_vblank@invalid: > - shard-dg2: NOTRUN -> [TIMEOUT][5] > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@kms_vblank@invalid.html > > > #### Warnings #### > > * igt@gem_exec_flush@basic-uc-prw-default: > - shard-dg2: [SKIP][6] ([i915#3539]) -> [TIMEOUT][7] > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-6/igt@gem_exec_flush@basic-uc-prw-default.html > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@gem_exec_flush@basic-uc-prw-default.html > > > Known issues > ------------ > > Here are the changes found in IGTPW_9530_full that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt@api_intel_bb@blit-reloc-keep-cache: > - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#8411]) > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-6/igt@api_intel_bb@blit-reloc-keep-cache.html > > * igt@drm_fdinfo@busy-check-all@bcs0: > - shard-dg1: NOTRUN -> [SKIP][9] ([i915#8414]) +4 similar issues > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-19/igt@drm_fdinfo@busy-check-all@bcs0.html > > * igt@drm_fdinfo@most-busy-check-all@rcs0: > - shard-rkl: [PASS][10] -> [FAIL][11] ([i915#7742]) > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all@rcs0.html > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html > > * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: > - shard-rkl: NOTRUN -> [FAIL][12] ([i915#7742]) > [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html > > * igt@drm_fdinfo@most-busy-idle-check-all@vecs1: > - shard-dg2: NOTRUN -> [SKIP][13] ([i915#8414]) +9 similar issues > [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html > > * igt@gem_bad_reloc@negative-reloc-lut: > - shard-rkl: NOTRUN -> [SKIP][14] ([i915#3281]) > [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@gem_bad_reloc@negative-reloc-lut.html > > * igt@gem_caching@writes: > - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#4873]) > [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@gem_caching@writes.html > > * igt@gem_ccs@block-copy-compressed: > - shard-dg1: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#5325]) > [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@gem_ccs@block-copy-compressed.html > > * igt@gem_ctx_exec@basic-nohangcheck: > - shard-rkl: [PASS][17] -> [FAIL][18] ([i915#6268]) > [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html > [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html > - shard-tglu: [PASS][19] -> [FAIL][20] ([i915#6268]) > [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-3/igt@gem_ctx_exec@basic-nohangcheck.html > [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@gem_ctx_exec@basic-nohangcheck.html > > * igt@gem_ctx_freq@sysfs@gt0: > - shard-dg2: [PASS][21] -> [FAIL][22] ([i915#6786]) > [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-6/igt@gem_ctx_freq@sysfs@gt0.html > [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@gem_ctx_freq@sysfs@gt0.html > > * igt@gem_ctx_persistence@engines-hostile@vcs0: > - shard-mtlp: [PASS][23] -> [FAIL][24] ([i915#2410]) +3 similar issues > [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-3/igt@gem_ctx_persistence@engines-hostile@vcs0.html > [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@gem_ctx_persistence@engines-hostile@vcs0.html > > * igt@gem_ctx_persistence@heartbeat-stop: > - shard-dg1: NOTRUN -> [SKIP][25] ([i915#8555]) > [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@gem_ctx_persistence@heartbeat-stop.html > > * igt@gem_ctx_sseu@mmap-args: > - shard-dg1: NOTRUN -> [SKIP][26] ([i915#280]) > [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-12/igt@gem_ctx_sseu@mmap-args.html > > * igt@gem_eio@hibernate: > - shard-dg1: [PASS][27] -> [ABORT][28] ([i915#4391] / [i915#7975] / [i915#8213]) > [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg1-17/igt@gem_eio@hibernate.html > [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-14/igt@gem_eio@hibernate.html > > * igt@gem_exec_fair@basic-none: > - shard-dg1: NOTRUN -> [SKIP][29] ([i915#3539] / [i915#4852]) > [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-14/igt@gem_exec_fair@basic-none.html > > * igt@gem_exec_fair@basic-none-vip@rcs0: > - shard-tglu: NOTRUN -> [FAIL][30] ([i915#2842]) > [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@gem_exec_fair@basic-none-vip@rcs0.html > > * igt@gem_exec_fair@basic-pace-share@rcs0: > - shard-tglu: [PASS][31] -> [FAIL][32] ([i915#2842]) > [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html > [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-4/igt@gem_exec_fair@basic-pace-share@rcs0.html > > * igt@gem_exec_flush@basic-wb-rw-before-default: > - shard-dg2: NOTRUN -> [SKIP][33] ([i915#3539] / [i915#4852]) > [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@gem_exec_flush@basic-wb-rw-before-default.html > > * igt@gem_exec_reloc@basic-gtt-cpu: > - shard-mtlp: NOTRUN -> [SKIP][34] ([i915#3281]) +1 similar issue > [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-6/igt@gem_exec_reloc@basic-gtt-cpu.html > > * igt@gem_exec_reloc@basic-gtt-wc-active: > - shard-dg2: NOTRUN -> [SKIP][35] ([i915#3281]) +4 similar issues > [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@gem_exec_reloc@basic-gtt-wc-active.html > > * igt@gem_exec_reloc@basic-write-read-noreloc: > - shard-dg1: NOTRUN -> [SKIP][36] ([i915#3281]) +1 similar issue > [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-12/igt@gem_exec_reloc@basic-write-read-noreloc.html > > * igt@gem_exec_schedule@preempt-queue-contexts: > - shard-dg1: NOTRUN -> [SKIP][37] ([i915#4812]) +1 similar issue > [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-16/igt@gem_exec_schedule@preempt-queue-contexts.html > > * igt@gem_exec_schedule@semaphore-power: > - shard-dg2: NOTRUN -> [SKIP][38] ([i915#4537] / [i915#4812]) > [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@gem_exec_schedule@semaphore-power.html > > * igt@gem_exec_whisper@basic-fds-forked-all: > - shard-tglu: [PASS][39] -> [INCOMPLETE][40] ([i915#6755] / [i915#7392]) > [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-4/igt@gem_exec_whisper@basic-fds-forked-all.html > [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-3/igt@gem_exec_whisper@basic-fds-forked-all.html > > * igt@gem_fence_thrash@bo-write-verify-y: > - shard-dg2: NOTRUN -> [SKIP][41] ([i915#4860]) > [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@gem_fence_thrash@bo-write-verify-y.html > > * igt@gem_fenced_exec_thrash@no-spare-fences: > - shard-dg1: NOTRUN -> [SKIP][42] ([i915#4860]) > [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@gem_fenced_exec_thrash@no-spare-fences.html > > * igt@gem_lmem_swapping@heavy-verify-random: > - shard-rkl: NOTRUN -> [SKIP][43] ([i915#4613]) +1 similar issue > [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@gem_lmem_swapping@heavy-verify-random.html > - shard-tglu: NOTRUN -> [SKIP][44] ([i915#4613]) +1 similar issue > [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-8/igt@gem_lmem_swapping@heavy-verify-random.html > > * igt@gem_media_fill@media-fill: > - shard-dg2: NOTRUN -> [SKIP][45] ([i915#8289]) > [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@gem_media_fill@media-fill.html > > * igt@gem_mmap@basic-small-bo: > - shard-dg2: NOTRUN -> [SKIP][46] ([i915#4083]) +2 similar issues > [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-3/igt@gem_mmap@basic-small-bo.html > > * igt@gem_mmap_gtt@bad-object: > - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4077]) +3 similar issues > [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@gem_mmap_gtt@bad-object.html > > * igt@gem_mmap_gtt@coherency: > - shard-rkl: NOTRUN -> [SKIP][48] ([fdo#111656]) > [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@gem_mmap_gtt@coherency.html > > * igt@gem_mmap_gtt@fault-concurrent: > - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4077]) +3 similar issues > [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-3/igt@gem_mmap_gtt@fault-concurrent.html > > * igt@gem_mmap_gtt@fault-concurrent-y: > - shard-snb: [PASS][50] -> [ABORT][51] ([i915#5161]) +1 similar issue > [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-snb5/igt@gem_mmap_gtt@fault-concurrent-y.html > [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-snb6/igt@gem_mmap_gtt@fault-concurrent-y.html > > * igt@gem_mmap_gtt@medium-copy-xy: > - shard-dg1: NOTRUN -> [SKIP][52] ([i915#4077]) > [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@gem_mmap_gtt@medium-copy-xy.html > > * igt@gem_mmap_wc@write-wc-read-gtt: > - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4083]) > [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-1/igt@gem_mmap_wc@write-wc-read-gtt.html > > * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: > - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#3282]) > [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-8/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html > > * igt@gem_pxp@create-regular-context-2: > - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4270]) > [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-6/igt@gem_pxp@create-regular-context-2.html > > * igt@gem_pxp@reject-modify-context-protection-off-2: > - shard-tglu: NOTRUN -> [SKIP][56] ([i915#4270]) +1 similar issue > [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-3/igt@gem_pxp@reject-modify-context-protection-off-2.html > > * igt@gem_pxp@verify-pxp-stale-ctx-execution: > - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4270]) > [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-16/igt@gem_pxp@verify-pxp-stale-ctx-execution.html > > * igt@gem_readwrite@beyond-eob: > - shard-dg2: NOTRUN -> [SKIP][58] ([i915#3282]) +3 similar issues > [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@gem_readwrite@beyond-eob.html > - shard-rkl: NOTRUN -> [SKIP][59] ([i915#3282]) +2 similar issues > [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@gem_readwrite@beyond-eob.html > > * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled: > - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#8428]) > [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-8/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html > > * igt@gem_softpin@evict-snoop: > - shard-dg1: NOTRUN -> [SKIP][61] ([i915#4885]) > [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-16/igt@gem_softpin@evict-snoop.html > > * igt@gem_userptr_blits@coherency-sync: > - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#3297]) > [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-1/igt@gem_userptr_blits@coherency-sync.html > > * igt@gem_userptr_blits@dmabuf-sync: > - shard-tglu: NOTRUN -> [SKIP][63] ([i915#3323]) > [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-9/igt@gem_userptr_blits@dmabuf-sync.html > > * igt@gem_userptr_blits@dmabuf-unsync: > - shard-dg1: NOTRUN -> [SKIP][64] ([i915#3297]) > [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-16/igt@gem_userptr_blits@dmabuf-unsync.html > > * igt@gen7_exec_parse@batch-without-end: > - shard-dg2: NOTRUN -> [SKIP][65] ([fdo#109289]) +1 similar issue > [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@gen7_exec_parse@batch-without-end.html > - shard-rkl: NOTRUN -> [SKIP][66] ([fdo#109289]) > [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@gen7_exec_parse@batch-without-end.html > > * igt@gen9_exec_parse@allowed-single: > - shard-apl: [PASS][67] -> [ABORT][68] ([i915#5566]) > [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-apl1/igt@gen9_exec_parse@allowed-single.html > [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-apl1/igt@gen9_exec_parse@allowed-single.html > > * igt@gen9_exec_parse@basic-rejected: > - shard-tglu: NOTRUN -> [SKIP][69] ([i915#2527] / [i915#2856]) > [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-6/igt@gen9_exec_parse@basic-rejected.html > > * igt@gen9_exec_parse@batch-zero-length: > - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#2856]) +2 similar issues > [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-4/igt@gen9_exec_parse@batch-zero-length.html > > * igt@gen9_exec_parse@bb-start-param: > - shard-dg2: NOTRUN -> [SKIP][71] ([i915#2856]) +1 similar issue > [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@gen9_exec_parse@bb-start-param.html > > * igt@i915_hangman@engine-engine-error@vcs0: > - shard-mtlp: [PASS][72] -> [FAIL][73] ([i915#7069]) +1 similar issue > [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-2/igt@i915_hangman@engine-engine-error@vcs0.html > [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@i915_hangman@engine-engine-error@vcs0.html > > * igt@i915_pm_dc@dc9-dpms: > - shard-apl: [PASS][74] -> [SKIP][75] ([fdo#109271]) > [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-apl2/igt@i915_pm_dc@dc9-dpms.html > [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-apl3/igt@i915_pm_dc@dc9-dpms.html > > * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: > - shard-rkl: [PASS][76] -> [SKIP][77] ([i915#1937]) > [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-7/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html > [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-4/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html > > * igt@i915_pm_rpm@basic-rte: > - shard-tglu: [PASS][78] -> [FAIL][79] ([i915#7940]) +2 similar issues > [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-3/igt@i915_pm_rpm@basic-rte.html > [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-2/igt@i915_pm_rpm@basic-rte.html > > * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: > - shard-rkl: [PASS][80] -> [SKIP][81] ([i915#1397]) > [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-6/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html > [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html > > * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: > - shard-dg2: NOTRUN -> [SKIP][82] ([i915#1397]) +1 similar issue > [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html > > * igt@i915_pm_rpm@system-suspend-devices: > - shard-dg1: [PASS][83] -> [FAIL][84] ([i915#7940]) > [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg1-17/igt@i915_pm_rpm@system-suspend-devices.html > [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-14/igt@i915_pm_rpm@system-suspend-devices.html > > * igt@i915_pm_rpm@system-suspend-modeset: > - shard-apl: [PASS][85] -> [ABORT][86] ([i915#180]) > [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-apl4/igt@i915_pm_rpm@system-suspend-modeset.html > [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-apl6/igt@i915_pm_rpm@system-suspend-modeset.html > > * igt@i915_pm_rps@min-max-config-loaded: > - shard-dg1: NOTRUN -> [SKIP][87] ([i915#6621]) > [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-16/igt@i915_pm_rps@min-max-config-loaded.html > > * igt@i915_pm_rps@reset: > - shard-mtlp: NOTRUN -> [FAIL][88] ([i915#8346]) > [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-8/igt@i915_pm_rps@reset.html > > * igt@i915_pm_rps@thresholds-idle-park@gt0: > - shard-dg2: NOTRUN -> [SKIP][89] ([i915#8925]) > [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@i915_pm_rps@thresholds-idle-park@gt0.html > > * igt@i915_query@query-topology-coherent-slice-mask: > - shard-dg2: NOTRUN -> [SKIP][90] ([i915#6188]) > [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@i915_query@query-topology-coherent-slice-mask.html > > * igt@i915_selftest@live@slpc: > - shard-mtlp: [PASS][91] -> [DMESG-WARN][92] ([i915#6367]) > [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-2/igt@i915_selftest@live@slpc.html > [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-8/igt@i915_selftest@live@slpc.html > > * igt@i915_suspend@fence-restore-untiled: > - shard-tglu: [PASS][93] -> [ABORT][94] ([i915#5122]) > [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-8/igt@i915_suspend@fence-restore-untiled.html > [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-4/igt@i915_suspend@fence-restore-untiled.html > > * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-1: > - shard-apl: [PASS][95] -> [FAIL][96] ([i915#2521]) > [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-apl7/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-1.html > [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-apl6/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-1.html > > * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1: > - shard-mtlp: [PASS][97] -> [FAIL][98] ([i915#2521]) > [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-6/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html > [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html > > * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4-mc_ccs: > - shard-dg2: NOTRUN -> [SKIP][99] ([i915#8502] / [i915#8709]) +11 similar issues > [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4-mc_ccs.html > > * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc_ccs: > - shard-dg1: NOTRUN -> [SKIP][100] ([i915#8502]) +7 similar issues > [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc_ccs.html > > * igt@kms_async_flips@crc@pipe-b-hdmi-a-3: > - shard-dg1: NOTRUN -> [FAIL][101] ([i915#8247]) +3 similar issues > [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-12/igt@kms_async_flips@crc@pipe-b-hdmi-a-3.html > > * igt@kms_async_flips@invalid-async-flip: > - shard-dg2: NOTRUN -> [SKIP][102] ([i915#6228]) > [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@kms_async_flips@invalid-async-flip.html > > * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip: > - shard-rkl: NOTRUN -> [SKIP][103] ([i915#5286]) > [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html > - shard-tglu: NOTRUN -> [SKIP][104] ([fdo#111615] / [i915#5286]) > [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html > > * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: > - shard-dg1: NOTRUN -> [SKIP][105] ([i915#4538] / [i915#5286]) +1 similar issue > [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html > > * igt@kms_big_fb@linear-16bpp-rotate-90: > - shard-tglu: NOTRUN -> [SKIP][106] ([fdo#111614]) > [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-4/igt@kms_big_fb@linear-16bpp-rotate-90.html > - shard-mtlp: NOTRUN -> [SKIP][107] ([fdo#111614]) > [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-3/igt@kms_big_fb@linear-16bpp-rotate-90.html > > * igt@kms_big_fb@x-tiled-64bpp-rotate-270: > - shard-dg2: NOTRUN -> [SKIP][108] ([fdo#111614]) > [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-3/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html > > * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: > - shard-mtlp: [PASS][109] -> [FAIL][110] ([i915#3743]) > [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html > [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html > > * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip: > - shard-dg2: NOTRUN -> [SKIP][111] ([i915#5190]) +8 similar issues > [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html > > * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: > - shard-mtlp: NOTRUN -> [SKIP][112] ([fdo#111615]) > [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html > > * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: > - shard-dg1: NOTRUN -> [SKIP][113] ([i915#4538]) +1 similar issue > [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html > > * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: > - shard-tglu: NOTRUN -> [SKIP][114] ([fdo#111615]) +1 similar issue > [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html > > * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: > - shard-dg2: NOTRUN -> [SKIP][115] ([i915#4538] / [i915#5190]) +3 similar issues > [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html > - shard-rkl: NOTRUN -> [SKIP][116] ([fdo#110723]) +1 similar issue > [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html > > * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs: > - shard-dg2: NOTRUN -> [SKIP][117] ([i915#3689] / [i915#3886] / [i915#5354]) +6 similar issues > [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html > > * igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc: > - shard-tglu: NOTRUN -> [SKIP][118] ([i915#3689] / [i915#5354] / [i915#6095]) +1 similar issue > [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html > > * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs: > - shard-dg1: NOTRUN -> [SKIP][119] ([i915#5354] / [i915#6095]) +1 similar issue > [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-17/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs.html > > * igt@kms_ccs@pipe-a-missing-ccs-buffer-yf_tiled_ccs: > - shard-rkl: NOTRUN -> [SKIP][120] ([i915#3734] / [i915#5354] / [i915#6095]) > [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@kms_ccs@pipe-a-missing-ccs-buffer-yf_tiled_ccs.html > - shard-tglu: NOTRUN -> [SKIP][121] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) +1 similar issue > [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-9/igt@kms_ccs@pipe-a-missing-ccs-buffer-yf_tiled_ccs.html > > * igt@kms_ccs@pipe-b-missing-ccs-buffer-4_tiled_mtl_rc_ccs_cc: > - shard-rkl: NOTRUN -> [SKIP][122] ([i915#5354] / [i915#6095]) +1 similar issue > [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@kms_ccs@pipe-b-missing-ccs-buffer-4_tiled_mtl_rc_ccs_cc.html > > * igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_ccs: > - shard-mtlp: NOTRUN -> [SKIP][123] ([i915#6095]) +6 similar issues > [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-6/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_ccs.html > > * igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc: > - shard-rkl: NOTRUN -> [SKIP][124] ([i915#5354]) +5 similar issues > [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-4/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html > > * igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs: > - shard-dg1: NOTRUN -> [SKIP][125] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) > [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-18/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs.html > > * igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_ccs: > - shard-dg1: NOTRUN -> [SKIP][126] ([i915#3689] / [i915#5354] / [i915#6095]) +3 similar issues > [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-17/igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_ccs.html > > * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs_cc: > - shard-tglu: NOTRUN -> [SKIP][127] ([i915#5354] / [i915#6095]) +6 similar issues > [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-4/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs_cc.html > > * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs: > - shard-dg2: NOTRUN -> [SKIP][128] ([i915#3689] / [i915#5354]) +8 similar issues > [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs.html > > * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1: > - shard-dg2: NOTRUN -> [SKIP][129] ([i915#4087]) +3 similar issues > [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html > > * igt@kms_chamelium_color@ctm-limited-range: > - shard-dg2: NOTRUN -> [SKIP][130] ([fdo#111827]) > [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@kms_chamelium_color@ctm-limited-range.html > > * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: > - shard-mtlp: NOTRUN -> [SKIP][131] ([i915#7828]) +1 similar issue > [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-4/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html > > * igt@kms_chamelium_edid@hdmi-mode-timings: > - shard-tglu: NOTRUN -> [SKIP][132] ([i915#7828]) +1 similar issue > [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-6/igt@kms_chamelium_edid@hdmi-mode-timings.html > > * igt@kms_chamelium_hpd@common-hpd-after-suspend: > - shard-dg2: NOTRUN -> [SKIP][133] ([i915#7828]) +4 similar issues > [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@kms_chamelium_hpd@common-hpd-after-suspend.html > > * igt@kms_chamelium_hpd@dp-hpd-for-each-pipe: > - shard-rkl: NOTRUN -> [SKIP][134] ([i915#7828]) +1 similar issue > [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html > > * igt@kms_chamelium_hpd@hdmi-hpd-fast: > - shard-dg1: NOTRUN -> [SKIP][135] ([i915#7828]) +1 similar issue > [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-18/igt@kms_chamelium_hpd@hdmi-hpd-fast.html > > * igt@kms_content_protection@atomic@pipe-a-dp-4: > - shard-dg2: NOTRUN -> [TIMEOUT][136] ([i915#7173]) > [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_content_protection@atomic@pipe-a-dp-4.html > > * igt@kms_content_protection@dp-mst-type-0: > - shard-dg2: NOTRUN -> [SKIP][137] ([i915#3299]) > [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@kms_content_protection@dp-mst-type-0.html > > * igt@kms_content_protection@legacy: > - shard-dg2: NOTRUN -> [SKIP][138] ([i915#7118]) > [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@kms_content_protection@legacy.html > - shard-rkl: NOTRUN -> [SKIP][139] ([i915#7118]) > [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@kms_content_protection@legacy.html > > * igt@kms_content_protection@lic: > - shard-dg1: NOTRUN -> [SKIP][140] ([i915#7116]) > [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@kms_content_protection@lic.html > > * igt@kms_content_protection@uevent@pipe-a-dp-4: > - shard-dg2: NOTRUN -> [FAIL][141] ([i915#1339]) > [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_content_protection@uevent@pipe-a-dp-4.html > > * igt@kms_cursor_crc@cursor-offscreen-512x512: > - shard-dg2: NOTRUN -> [SKIP][142] ([i915#3359]) > [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@kms_cursor_crc@cursor-offscreen-512x512.html > > * igt@kms_cursor_crc@cursor-rapid-movement-512x170: > - shard-dg1: NOTRUN -> [SKIP][143] ([i915#3359]) > [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-16/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html > > * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic: > - shard-tglu: NOTRUN -> [SKIP][144] ([fdo#109274]) > [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html > > * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: > - shard-snb: NOTRUN -> [SKIP][145] ([fdo#109271] / [fdo#111767]) > [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-snb4/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html > > * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: > - shard-dg2: NOTRUN -> [SKIP][146] ([fdo#109274] / [i915#5354]) +2 similar issues > [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-3/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html > > * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: > - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#3546]) > [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html > > * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: > - shard-dg2: NOTRUN -> [SKIP][148] ([fdo#109274] / [fdo#111767] / [i915#5354]) > [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html > > * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: > - shard-glk: [PASS][149] -> [FAIL][150] ([i915#2346]) > [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html > [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html > > * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: > - shard-dg1: NOTRUN -> [SKIP][151] ([i915#4103] / [i915#4213]) > [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-12/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html > > * igt@kms_display_modes@mst-extended-mode-negative: > - shard-rkl: NOTRUN -> [SKIP][152] ([i915#8588]) > [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@kms_display_modes@mst-extended-mode-negative.html > - shard-tglu: NOTRUN -> [SKIP][153] ([i915#8588]) > [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@kms_display_modes@mst-extended-mode-negative.html > > * igt@kms_dsc@dsc-with-output-formats: > - shard-dg2: NOTRUN -> [SKIP][154] ([i915#3555] / [i915#3840]) > [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@kms_dsc@dsc-with-output-formats.html > > * igt@kms_flip@2x-flip-vs-modeset: > - shard-rkl: NOTRUN -> [SKIP][155] ([fdo#111825]) +2 similar issues > [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@kms_flip@2x-flip-vs-modeset.html > > * igt@kms_flip@2x-flip-vs-panning-vs-hang: > - shard-dg2: NOTRUN -> [SKIP][156] ([fdo#109274]) +4 similar issues > [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_flip@2x-flip-vs-panning-vs-hang.html > > * igt@kms_flip@2x-modeset-vs-vblank-race: > - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#3637]) > [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-7/igt@kms_flip@2x-modeset-vs-vblank-race.html > > * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: > - shard-tglu: NOTRUN -> [SKIP][158] ([fdo#109274] / [i915#3637]) +1 similar issue > [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html > > * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode: > - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#2672]) > [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode.html > > * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode: > - shard-tglu: NOTRUN -> [SKIP][160] ([i915#2587] / [i915#2672]) +3 similar issues > [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html > > * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: > - shard-rkl: NOTRUN -> [SKIP][161] ([i915#2672]) > [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html > > * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode: > - shard-dg2: NOTRUN -> [SKIP][162] ([i915#2672]) +2 similar issues > [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html > > * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: > - shard-dg2: NOTRUN -> [SKIP][163] ([i915#2672] / [i915#3555]) > [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html > > * igt@kms_force_connector_basic@force-load-detect: > - shard-dg2: NOTRUN -> [SKIP][164] ([fdo#109285]) > [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@kms_force_connector_basic@force-load-detect.html > > * igt@kms_force_connector_basic@prune-stale-modes: > - shard-dg2: NOTRUN -> [SKIP][165] ([i915#5274]) > [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@kms_force_connector_basic@prune-stale-modes.html > > * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff: > - shard-dg2: [PASS][166] -> [FAIL][167] ([i915#6880]) > [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html > [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html > > * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite: > - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#1825]) +2 similar issues > [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite.html > > * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: > - shard-tglu: NOTRUN -> [SKIP][169] ([fdo#109280]) +12 similar issues > [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html > > * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: > - shard-rkl: NOTRUN -> [SKIP][170] ([fdo#111825] / [i915#1825]) +6 similar issues > [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html > > * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: > - shard-dg2: NOTRUN -> [SKIP][171] ([i915#5354]) +21 similar issues > [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html > > * igt@kms_frontbuffer_tracking@fbc-suspend: > - shard-dg2: [PASS][172] -> [FAIL][173] ([fdo#103375]) +4 similar issues > [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-suspend.html > [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-suspend.html > > * igt@kms_frontbuffer_tracking@fbc-tiling-y: > - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#5460]) > [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-tiling-y.html > > * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite: > - shard-dg2: NOTRUN -> [SKIP][175] ([i915#3458]) +7 similar issues > [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite.html > > * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff: > - shard-dg1: NOTRUN -> [SKIP][176] ([fdo#111825]) +7 similar issues > [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html > > * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-pwrite: > - shard-dg1: NOTRUN -> [SKIP][177] ([i915#3458]) > [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-pwrite.html > > * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt: > - shard-tglu: NOTRUN -> [SKIP][178] ([fdo#110189]) +12 similar issues > [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt.html > > * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt: > - shard-dg2: NOTRUN -> [SKIP][179] ([i915#8708]) +11 similar issues > [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html > > * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: > - shard-dg1: NOTRUN -> [SKIP][180] ([i915#8708]) +1 similar issue > [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html > > * igt@kms_frontbuffer_tracking@psr-suspend: > - shard-rkl: NOTRUN -> [SKIP][181] ([i915#3023]) +3 similar issues > [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-suspend.html > > * igt@kms_hdr@static-toggle-suspend: > - shard-dg2: NOTRUN -> [SKIP][182] ([i915#3555] / [i915#8228]) +1 similar issue > [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@kms_hdr@static-toggle-suspend.html > > * igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c: > - shard-mtlp: NOTRUN -> [SKIP][183] ([fdo#109289]) > [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-2/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html > > * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-1: > - shard-apl: NOTRUN -> [ABORT][184] ([i915#180]) > [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-apl2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-1.html > > * igt@kms_plane@pixel-format@pipe-b-planes: > - shard-mtlp: [PASS][185] -> [FAIL][186] ([i915#1623]) > [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-1/igt@kms_plane@pixel-format@pipe-b-planes.html > [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-7/igt@kms_plane@pixel-format@pipe-b-planes.html > > * igt@kms_plane_multiple@tiling-yf: > - shard-dg1: NOTRUN -> [SKIP][187] ([i915#3555]) > [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-12/igt@kms_plane_multiple@tiling-yf.html > > * igt@kms_plane_scaling@intel-max-src-size: > - shard-dg2: NOTRUN -> [SKIP][188] ([i915#6953]) > [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@kms_plane_scaling@intel-max-src-size.html > > * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: > - shard-tglu: [PASS][189] -> [FAIL][190] ([i915#8292]) > [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-2/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html > [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html > > * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: > - shard-dg1: NOTRUN -> [FAIL][191] ([i915#8292]) > [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-14/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html > > * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-2: > - shard-rkl: NOTRUN -> [SKIP][192] ([i915#5176]) +11 similar issues > [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-2.html > > * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-dp-4: > - shard-dg2: NOTRUN -> [SKIP][193] ([i915#5176]) +11 similar issues > [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-dp-4.html > > * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-1: > - shard-dg1: NOTRUN -> [SKIP][194] ([i915#5176]) +27 similar issues > [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-19/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-1.html > > * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1: > - shard-dg1: NOTRUN -> [SKIP][195] ([i915#5235]) +23 similar issues > [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1.html > > * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-1: > - shard-rkl: NOTRUN -> [SKIP][196] ([i915#5235]) +5 similar issues > [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-1.html > > * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3: > - shard-dg2: NOTRUN -> [SKIP][197] ([i915#5235]) +15 similar issues > [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html > > * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-hdmi-a-1: > - shard-snb: NOTRUN -> [SKIP][198] ([fdo#109271]) +37 similar issues > [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-snb1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-hdmi-a-1.html > > * igt@kms_prime@d3hot: > - shard-dg1: NOTRUN -> [SKIP][199] ([i915#6524]) > [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@kms_prime@d3hot.html > > * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: > - shard-dg1: NOTRUN -> [SKIP][200] ([fdo#111068] / [i915#658]) > [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-18/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html > > * igt@kms_psr2_su@frontbuffer-xrgb8888: > - shard-dg2: NOTRUN -> [SKIP][201] ([i915#658]) +2 similar issues > [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-3/igt@kms_psr2_su@frontbuffer-xrgb8888.html > - shard-rkl: NOTRUN -> [SKIP][202] ([fdo#111068] / [i915#658]) > [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html > > * igt@kms_psr@cursor_blt: > - shard-rkl: NOTRUN -> [SKIP][203] ([i915#1072]) +1 similar issue > [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@kms_psr@cursor_blt.html > > * igt@kms_psr@psr2_sprite_blt: > - shard-dg2: NOTRUN -> [SKIP][204] ([i915#1072]) +2 similar issues > [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_psr@psr2_sprite_blt.html > > * igt@kms_psr@sprite_mmap_cpu: > - shard-dg1: NOTRUN -> [SKIP][205] ([i915#1072]) > [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-17/igt@kms_psr@sprite_mmap_cpu.html > > * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: > - shard-dg2: NOTRUN -> [SKIP][206] ([i915#5461] / [i915#658]) > [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html > - shard-rkl: NOTRUN -> [SKIP][207] ([i915#5461] / [i915#658]) > [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html > > * igt@kms_rotation_crc@primary-rotation-90: > - shard-dg2: NOTRUN -> [SKIP][208] ([i915#4235]) > [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@kms_rotation_crc@primary-rotation-90.html > > * igt@kms_scaling_modes@scaling-mode-none: > - shard-tglu: NOTRUN -> [SKIP][209] ([i915#3555]) > [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-7/igt@kms_scaling_modes@scaling-mode-none.html > > * igt@kms_setmode@basic-clone-single-crtc: > - shard-dg2: NOTRUN -> [SKIP][210] ([i915#3555]) +2 similar issues > [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@kms_setmode@basic-clone-single-crtc.html > > * igt@kms_setmode@invalid-clone-exclusive-crtc: > - shard-mtlp: NOTRUN -> [SKIP][211] ([i915#8823]) > [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-4/igt@kms_setmode@invalid-clone-exclusive-crtc.html > > * igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend: > - shard-dg2: NOTRUN -> [FAIL][212] ([fdo#103375]) +2 similar issues > [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html > > * igt@kms_vblank@pipe-d-wait-busy: > - shard-rkl: NOTRUN -> [SKIP][213] ([i915#4070] / [i915#533] / [i915#6768]) > [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@kms_vblank@pipe-d-wait-busy.html > > * igt@kms_writeback@writeback-fb-id: > - shard-dg1: NOTRUN -> [SKIP][214] ([i915#2437]) > [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@kms_writeback@writeback-fb-id.html > > * igt@kms_writeback@writeback-pixel-formats: > - shard-mtlp: NOTRUN -> [SKIP][215] ([i915#2437]) > [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-4/igt@kms_writeback@writeback-pixel-formats.html > > * igt@perf@global-sseu-config: > - shard-dg2: NOTRUN -> [SKIP][216] ([i915#7387]) > [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@perf@global-sseu-config.html > > * igt@perf@mi-rpc: > - shard-dg2: NOTRUN -> [SKIP][217] ([i915#2434]) > [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@perf@mi-rpc.html > - shard-tglu: NOTRUN -> [SKIP][218] ([fdo#109289]) +1 similar issue > [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-2/igt@perf@mi-rpc.html > - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#2434]) > [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@perf@mi-rpc.html > > * igt@perf_pmu@busy-double-start@ccs1: > - shard-dg2: [PASS][220] -> [FAIL][221] ([i915#4349]) +1 similar issue > [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-2/igt@perf_pmu@busy-double-start@ccs1.html > [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-3/igt@perf_pmu@busy-double-start@ccs1.html > > * igt@perf_pmu@busy-double-start@vcs1: > - shard-dg1: [PASS][222] -> [FAIL][223] ([i915#4349]) +1 similar issue > [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg1-18/igt@perf_pmu@busy-double-start@vcs1.html > [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-14/igt@perf_pmu@busy-double-start@vcs1.html > > * igt@perf_pmu@event-wait@rcs0: > - shard-dg2: NOTRUN -> [SKIP][224] ([fdo#112283]) > [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@perf_pmu@event-wait@rcs0.html > - shard-rkl: NOTRUN -> [SKIP][225] ([fdo#112283]) > [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@perf_pmu@event-wait@rcs0.html > - shard-tglu: NOTRUN -> [SKIP][226] ([fdo#112283]) > [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-7/igt@perf_pmu@event-wait@rcs0.html > > * igt@perf_pmu@rc6@other-idle-gt0: > - shard-tglu: NOTRUN -> [SKIP][227] ([i915#8516]) > [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-7/igt@perf_pmu@rc6@other-idle-gt0.html > > * igt@perf_pmu@render-node-busy-idle@ccs0: > - shard-mtlp: [PASS][228] -> [FAIL][229] ([i915#4349]) +4 similar issues > [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-7/igt@perf_pmu@render-node-busy-idle@ccs0.html > [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-6/igt@perf_pmu@render-node-busy-idle@ccs0.html > > * igt@prime_vgem@basic-fence-read: > - shard-dg2: NOTRUN -> [SKIP][230] ([i915#3291] / [i915#3708]) > [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@prime_vgem@basic-fence-read.html > - shard-rkl: NOTRUN -> [SKIP][231] ([fdo#109295] / [i915#3291] / [i915#3708]) > [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@prime_vgem@basic-fence-read.html > > * igt@prime_vgem@fence-flip-hang: > - shard-tglu: NOTRUN -> [SKIP][232] ([fdo#109295]) > [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-9/igt@prime_vgem@fence-flip-hang.html > > * igt@prime_vgem@fence-read-hang: > - shard-rkl: NOTRUN -> [SKIP][233] ([fdo#109295] / [i915#3708]) > [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@prime_vgem@fence-read-hang.html > > * igt@runner@aborted: > - shard-snb: NOTRUN -> ([FAIL][234], [FAIL][235]) ([i915#7812] / [i915#8848]) > [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-snb7/igt@runner@aborted.html > [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-snb7/igt@runner@aborted.html > > * igt@v3d/v3d_job_submission@array-job-submission: > - shard-dg2: NOTRUN -> [SKIP][236] ([i915#2575]) +6 similar issues > [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@v3d/v3d_job_submission@array-job-submission.html > - shard-rkl: NOTRUN -> [SKIP][237] ([fdo#109315]) +3 similar issues > [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-4/igt@v3d/v3d_job_submission@array-job-submission.html > - shard-tglu: NOTRUN -> [SKIP][238] ([fdo#109315] / [i915#2575]) +5 similar issues > [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-9/igt@v3d/v3d_job_submission@array-job-submission.html > > * igt@v3d/v3d_perfmon@create-perfmon-0: > - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#2575]) +2 similar issues > [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-4/igt@v3d/v3d_perfmon@create-perfmon-0.html > > * igt@v3d/v3d_submit_cl@multi-and-single-sync: > - shard-dg1: NOTRUN -> [SKIP][240] ([i915#2575]) > [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@v3d/v3d_submit_cl@multi-and-single-sync.html > > * igt@vc4/vc4_lookup_fail@bad-color-write: > - shard-dg1: NOTRUN -> [SKIP][241] ([i915#7711]) +2 similar issues > [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-17/igt@vc4/vc4_lookup_fail@bad-color-write.html > > * igt@vc4/vc4_perfmon@get-values-invalid-pointer: > - shard-tglu: NOTRUN -> [SKIP][242] ([i915#2575]) +1 similar issue > [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@vc4/vc4_perfmon@get-values-invalid-pointer.html > > * igt@vc4/vc4_purgeable_bo@access-purged-bo-mem: > - shard-rkl: NOTRUN -> [SKIP][243] ([i915#7711]) > [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html > > * igt@vc4/vc4_wait_bo@used-bo-1ns: > - shard-dg2: NOTRUN -> [SKIP][244] ([i915#7711]) +4 similar issues > [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@vc4/vc4_wait_bo@used-bo-1ns.html > > > #### Possible fixes #### > > * igt@gem_exec_fair@basic-deadline: > - shard-rkl: [FAIL][245] ([i915#2846]) -> [PASS][246] > [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-7/igt@gem_exec_fair@basic-deadline.html > [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@gem_exec_fair@basic-deadline.html > > * igt@gem_exec_fair@basic-none-share@rcs0: > - shard-rkl: [FAIL][247] ([i915#2842]) -> [PASS][248] > [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-6/igt@gem_exec_fair@basic-none-share@rcs0.html > [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-4/igt@gem_exec_fair@basic-none-share@rcs0.html > > * igt@gem_exec_schedule@preemptive-hang@vcs0: > - shard-mtlp: [FAIL][249] ([i915#9051]) -> [PASS][250] > [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-8/igt@gem_exec_schedule@preemptive-hang@vcs0.html > [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-1/igt@gem_exec_schedule@preemptive-hang@vcs0.html > > * igt@i915_module_load@reload: > - shard-snb: [ABORT][251] ([i915#4528] / [i915#8695]) -> [PASS][252] > [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-snb7/igt@i915_module_load@reload.html > [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-snb1/igt@i915_module_load@reload.html > > * igt@i915_module_load@reload-with-fault-injection: > - shard-dg2: [DMESG-WARN][253] ([i915#7061] / [i915#8617]) -> [PASS][254] > [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-6/igt@i915_module_load@reload-with-fault-injection.html > [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html > > * igt@i915_pipe_stress@stress-xrgb8888-untiled: > - shard-mtlp: [FAIL][255] ([i915#8691]) -> [PASS][256] > [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-5/igt@i915_pipe_stress@stress-xrgb8888-untiled.html > [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-3/igt@i915_pipe_stress@stress-xrgb8888-untiled.html > > * igt@i915_pm_dc@dc6-dpms: > - shard-tglu: [FAIL][257] ([i915#3989] / [i915#454]) -> [PASS][258] > [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-7/igt@i915_pm_dc@dc6-dpms.html > [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-2/igt@i915_pm_dc@dc6-dpms.html > > * igt@i915_pm_dc@dc9-dpms: > - shard-tglu: [SKIP][259] ([i915#4281]) -> [PASS][260] > [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-5/igt@i915_pm_dc@dc9-dpms.html > [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-10/igt@i915_pm_dc@dc9-dpms.html > > * igt@i915_pm_rc6_residency@rc6-accuracy: > - shard-mtlp: [SKIP][261] ([fdo#109289] / [i915#8403]) -> [PASS][262] > [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-5/igt@i915_pm_rc6_residency@rc6-accuracy.html > [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-1/igt@i915_pm_rc6_residency@rc6-accuracy.html > > * igt@i915_pm_rpm@i2c: > - shard-dg2: [FAIL][263] ([i915#8717]) -> [PASS][264] > [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-2/igt@i915_pm_rpm@i2c.html > [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@i915_pm_rpm@i2c.html > > * igt@i915_pm_rpm@modeset-non-lpsp-stress: > - shard-rkl: [SKIP][265] ([i915#1397]) -> [PASS][266] +2 similar issues > [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html > [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@i915_pm_rpm@modeset-non-lpsp-stress.html > > * igt@i915_selftest@live@requests: > - shard-mtlp: [DMESG-FAIL][267] ([i915#7269]) -> [PASS][268] > [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-2/igt@i915_selftest@live@requests.html > [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-8/igt@i915_selftest@live@requests.html > > * igt@i915_selftest@live@workarounds: > - shard-mtlp: [DMESG-FAIL][269] ([i915#6763]) -> [PASS][270] > [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-2/igt@i915_selftest@live@workarounds.html > [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-8/igt@i915_selftest@live@workarounds.html > > * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: > - shard-mtlp: [FAIL][271] ([i915#3743]) -> [PASS][272] +1 similar issue > [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html > [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html > > * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: > - shard-glk: [FAIL][273] ([i915#2346]) -> [PASS][274] > [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html > [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html > > * igt@kms_fbcon_fbt@fbc-suspend: > - shard-dg2: [FAIL][275] ([i915#4767]) -> [PASS][276] > [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-2/igt@kms_fbcon_fbt@fbc-suspend.html > [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@kms_fbcon_fbt@fbc-suspend.html > > * igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a2: > - shard-glk: [FAIL][277] ([i915#2122]) -> [PASS][278] > [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-glk6/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a2.html > [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-glk4/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a2.html > > * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt: > - shard-dg2: [FAIL][279] ([i915#6880]) -> [PASS][280] +1 similar issue > [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html > [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html > > > #### Warnings #### > > * igt@gem_exec_await@wide-contexts: > - shard-dg2: [FAIL][281] ([i915#5892]) -> [TIMEOUT][282] ([i915#5892]) > [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-1/igt@gem_exec_await@wide-contexts.html > [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@gem_exec_await@wide-contexts.html > > * igt@gem_exec_whisper@basic-contexts-forked-all: > - shard-mtlp: [ABORT][283] ([i915#7392] / [i915#8131]) -> [TIMEOUT][284] ([i915#7392] / [i915#8628]) > [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-2/igt@gem_exec_whisper@basic-contexts-forked-all.html > [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-3/igt@gem_exec_whisper@basic-contexts-forked-all.html > > * igt@i915_pm_rc6_residency@media-rc6-accuracy: > - shard-mtlp: [SKIP][285] ([fdo#109289] / [i915#8403]) -> [SKIP][286] ([fdo#109289]) > [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-3/igt@i915_pm_rc6_residency@media-rc6-accuracy.html > [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-4/igt@i915_pm_rc6_residency@media-rc6-accuracy.html > > * igt@kms_content_protection@type1: > - shard-dg2: [SKIP][287] ([i915#7118]) -> [SKIP][288] ([i915#7118] / [i915#7162]) > [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-3/igt@kms_content_protection@type1.html > [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_content_protection@type1.html > > * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: > - shard-mtlp: [DMESG-FAIL][289] ([i915#2017] / [i915#5954]) -> [FAIL][290] ([i915#2346]) > [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html > [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html > > * igt@kms_fbcon_fbt@fbc-suspend: > - shard-snb: [DMESG-WARN][291] ([i915#5090] / [i915#8841]) -> [DMESG-WARN][292] ([i915#8841]) > [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-snb5/igt@kms_fbcon_fbt@fbc-suspend.html > [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-snb2/igt@kms_fbcon_fbt@fbc-suspend.html > > * igt@kms_fbcon_fbt@psr-suspend: > - shard-rkl: [SKIP][293] ([fdo#110189] / [i915#3955]) -> [SKIP][294] ([i915#3955]) > [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html > [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html > > * igt@kms_force_connector_basic@force-load-detect: > - shard-rkl: [SKIP][295] ([fdo#109285]) -> [SKIP][296] ([fdo#109285] / [i915#4098]) > [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-6/igt@kms_force_connector_basic@force-load-detect.html > [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@kms_force_connector_basic@force-load-detect.html > > * igt@kms_psr@primary_mmap_gtt: > - shard-dg1: [SKIP][297] ([i915#1072] / [i915#4078]) -> [SKIP][298] ([i915#1072]) > [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg1-16/igt@kms_psr@primary_mmap_gtt.html > [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-14/igt@kms_psr@primary_mmap_gtt.html > > * igt@kms_psr@sprite_plane_onoff: > - shard-dg1: [SKIP][299] ([i915#1072]) -> [SKIP][300] ([i915#1072] / [i915#4078]) > [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg1-14/igt@kms_psr@sprite_plane_onoff.html > [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-16/igt@kms_psr@sprite_plane_onoff.html > > * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: > - shard-dg2: [CRASH][301] ([i915#7331]) -> [INCOMPLETE][302] ([i915#5493]) > [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-2/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html > [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html > > > [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 > [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 > [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 > [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 > [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 > [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 > [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 > [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 > [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 > [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 > [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 > [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 > [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 > [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 > [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 > [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 > [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 > [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 > [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 > [i915#1339]: https://gitlab.freedesktop.org/drm/intel/issues/1339 > [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 > [i915#1623]: https://gitlab.freedesktop.org/drm/intel/issues/1623 > [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 > [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 > [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 > [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 > [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 > [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 > [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 > [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 > [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 > [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 > [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 > [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 > [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 > [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 > [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 > [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 > [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 > [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 > [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 > [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 > [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 > [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 > [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 > [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 > [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 > [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 > [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 > [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 > [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 > [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 > [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 > [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 > [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 > [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 > [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 > [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 > [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 > [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 > [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 > [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 > [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 > [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 > [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 > [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 > [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 > [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 > [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 > [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 > [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 > [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 > [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 > [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 > [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 > [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 > [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 > [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 > [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 > [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 > [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 > [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 > [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 > [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 > [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 > [i915#5090]: https://gitlab.freedesktop.org/drm/intel/issues/5090 > [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122 > [i915#5161]: https://gitlab.freedesktop.org/drm/intel/issues/5161 > [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 > [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 > [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 > [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 > [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 > [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 > [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 > [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 > [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460 > [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 > [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 > [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 > [i915#5892]: https://gitlab.freedesktop.org/drm/intel/issues/5892 > [i915#5954]: https://gitlab.freedesktop.org/drm/intel/issues/5954 > [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 > [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188 > [i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228 > [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 > [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 > [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 > [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 > [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 > [i915#6755]: https://gitlab.freedesktop.org/drm/intel/issues/6755 > [i915#6763]: https://gitlab.freedesktop.org/drm/intel/issues/6763 > [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 > [i915#6786]: https://gitlab.freedesktop.org/drm/intel/issues/6786 > [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 > [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 > [i915#7061]: https://gitlab.freedesktop.org/drm/intel/issues/7061 > [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 > [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 > [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 > [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162 > [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 > [i915#7269]: https://gitlab.freedesktop.org/drm/intel/issues/7269 > [i915#7331]: https://gitlab.freedesktop.org/drm/intel/issues/7331 > [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 > [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392 > [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 > [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 > [i915#7812]: https://gitlab.freedesktop.org/drm/intel/issues/7812 > [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 > [i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940 > [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 > [i915#8131]: https://gitlab.freedesktop.org/drm/intel/issues/8131 > [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 > [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 > [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 > [i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289 > [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 > [i915#8346]: https://gitlab.freedesktop.org/drm/intel/issues/8346 > [i915#8403]: https://gitlab.freedesktop.org/drm/intel/issues/8403 > [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 > [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 > [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 > [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 > [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 > [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 > [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588 > [i915#8617]: https://gitlab.freedesktop.org/drm/intel/issues/8617 > [i915#8628]: https://gitlab.freedesktop.org/drm/intel/issues/8628 > [i915#8691]: https://gitlab.freedesktop.org/drm/intel/issues/8691 > [i915#8695]: https://gitlab.freedesktop.org/drm/intel/issues/8695 > [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 > [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 > [i915#8717]: https://gitlab.freedesktop.org/drm/intel/issues/8717 > [i915#8823]: https://gitlab.freedesktop.org/drm/intel/issues/8823 > [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 > [i915#8848]: https://gitlab.freedesktop.org/drm/intel/issues/8848 > [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 > [i915#9051]: https://gitlab.freedesktop.org/drm/intel/issues/9051 > > > Build changes > ------------- > > * CI: CI-20190529 -> None > * IGT: IGT_7419 -> IGTPW_9530 > > CI-20190529: 20190529 > CI_DRM_13485: 0c8b167528bfd16d6c4e8fb5a0f11421b7e2f349 @ git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_9530: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/index.html > IGT_7419: 7419 > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/index.html ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [igt-dev] [PATCH v2] tests/msm: Add submitoverhead benchmark 2023-08-07 16:36 [igt-dev] [PATCH v2] tests/msm: Add submitoverhead benchmark Rob Clark ` (2 preceding siblings ...) 2023-08-07 22:59 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-08-10 19:33 ` Kamil Konieczny 2023-08-11 6:50 ` [igt-dev] ✗ Fi.CI.IGT: failure for tests/msm: Add submitoverhead benchmark (rev2) Patchwork ` (3 subsequent siblings) 7 siblings, 0 replies; 11+ messages in thread From: Kamil Konieczny @ 2023-08-10 19:33 UTC (permalink / raw) To: igt-dev; +Cc: Rob Clark Hi Rob, On 2023-08-07 at 09:36:57 -0700, Rob Clark wrote: > From: Rob Clark <robdclark@chromium.org> > > Something for profiling CPU overhead of submit ioctl. Not really a > functional test, but it is convenient to re-use the i-g-t infrastructure > for this. > > v2: SPDX license, fix meson.build whitespace > > Signed-off-by: Rob Clark <robdclark@chromium.org> Acked-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > --- > tests/meson.build | 3 +- > tests/msm/msm_submitoverhead.c | 86 ++++++++++++++++++++++++++++++++++ > 2 files changed, 88 insertions(+), 1 deletion(-) > create mode 100644 tests/msm/msm_submitoverhead.c > > diff --git a/tests/meson.build b/tests/meson.build > index 944a0941f9fd..db427a1a4b6e 100644 > --- a/tests/meson.build > +++ b/tests/meson.build > @@ -302,7 +302,8 @@ msm_progs = [ > 'msm_mapping', > 'msm_recovery', > 'msm_shrink', > - 'msm_submit' > + 'msm_submit', > + 'msm_submitoverhead', > ] > > chamelium_progs = [ > diff --git a/tests/msm/msm_submitoverhead.c b/tests/msm/msm_submitoverhead.c > new file mode 100644 > index 000000000000..7d92dda7c226 > --- /dev/null > +++ b/tests/msm/msm_submitoverhead.c > @@ -0,0 +1,86 @@ > +// SPDX-License-Identifier: MIT > +/* > + * Copyright © 2023 Google, Inc. > + */ > + > +#include "igt.h" > +#include "igt_msm.h" > + > +/* > + * Not as much a test, as a kernel submit overhead benchmark. Generates lots > + * of submit ioctls with various size #s of buffers attached for measuring > + * and profiling kernel submit CPU overhead. > + */ > + > +#define MAX_BOS 1000 > + > +igt_main > +{ > + struct msm_device *dev = NULL; > + struct msm_pipe *pipe = NULL; > + struct msm_bo *bos[MAX_BOS]; > + struct drm_msm_gem_submit_bo bos_table[MAX_BOS]; > + static const int sizes[] = { > + 10, 100, 250, 500, 1000, > + }; > + > + igt_fixture { > + struct drm_msm_gem_submit req; > + > + dev = igt_msm_dev_open(); > + pipe = igt_msm_pipe_open(dev, 0); > + for (int i = 0; i < MAX_BOS; i++) { > + bos[i] = igt_msm_bo_new(dev, 0x1000, MSM_BO_WC); > + bos_table[i] = (struct drm_msm_gem_submit_bo) { > + .handle = bos[i]->handle, > + /* > + * We don't bother testing BO_READ since > + * mesa doesn't use that anymore > + */ > + .flags = MSM_SUBMIT_BO_WRITE, > + }; > + } > + > + /* > + * Prime the pump, so first submit doesn't take the overhead > + * of allocating backing pages: > + */ > + req = (struct drm_msm_gem_submit) { > + .flags = pipe->pipe | MSM_SUBMIT_FENCE_FD_OUT, > + .queueid = pipe->submitqueue_id, > + .nr_bos = ARRAY_SIZE(bos_table), > + .bos = VOID2U64(bos_table), > + }; > + do_ioctl(dev->fd, DRM_IOCTL_MSM_GEM_SUBMIT, &req); > + igt_wait_and_close(req.fence_fd); > + } > + > + for (int i = 0; i < ARRAY_SIZE(sizes); i++) { > + for (int mode = 0; mode < 2; mode++) { > + const char *modestr = mode ? "-no-implicit-sync" : ""; > + const uint32_t modeflags = mode ? MSM_SUBMIT_NO_IMPLICIT : 0; > + igt_subtest_f("submitbench-%u-bos%s", sizes[i], modestr) { > + struct drm_msm_gem_submit req = { > + .flags = pipe->pipe | modeflags, > + .queueid = pipe->submitqueue_id, > + .nr_bos = sizes[i], > + .bos = VOID2U64(bos_table), > + }; > + unsigned iterations = 0; > + igt_for_milliseconds(2000) { > + do_ioctl(dev->fd, DRM_IOCTL_MSM_GEM_SUBMIT, &req); > + iterations++; > + } > + igt_info("%u-bos: %u iterations\n", sizes[i], iterations); > + } > + } > + } > + > + igt_fixture { > + for (int i = 0; i < MAX_BOS; i++) { > + igt_msm_bo_free(bos[i]); > + } > + igt_msm_pipe_close(pipe); > + igt_msm_dev_close(dev); > + } > +} > -- > 2.41.0 > ^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/msm: Add submitoverhead benchmark (rev2) 2023-08-07 16:36 [igt-dev] [PATCH v2] tests/msm: Add submitoverhead benchmark Rob Clark ` (3 preceding siblings ...) 2023-08-10 19:33 ` [igt-dev] [PATCH v2] tests/msm: Add submitoverhead benchmark Kamil Konieczny @ 2023-08-11 6:50 ` Patchwork 2023-08-11 7:24 ` Patchwork ` (2 subsequent siblings) 7 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2023-08-11 6:50 UTC (permalink / raw) To: Rob Clark; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 79387 bytes --] == Series Details == Series: tests/msm: Add submitoverhead benchmark (rev2) URL : https://patchwork.freedesktop.org/series/121909/ State : failure == Summary == CI Bug Log - changes from IGT_7419_full -> IGTPW_9530_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9530_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9530_full, please notify your bug team 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_9530/index.html Participating hosts (9 -> 11) ------------------------------ Additional (2): shard-rkl0 shard-tglu0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9530_full: ### IGT changes ### #### Possible regressions #### * igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-legacy: - shard-dg2: [PASS][1] -> [TIMEOUT][2] +1 similar issue [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-8/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-legacy.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-legacy.html #### Warnings #### * igt@gem_exec_flush@basic-uc-prw-default: - shard-dg2: [SKIP][3] ([i915#3539]) -> [TIMEOUT][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-6/igt@gem_exec_flush@basic-uc-prw-default.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@gem_exec_flush@basic-uc-prw-default.html Known issues ------------ Here are the changes found in IGTPW_9530_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-mtlp: NOTRUN -> [SKIP][5] ([i915#8411]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-6/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@drm_fdinfo@busy-check-all@bcs0: - shard-dg1: NOTRUN -> [SKIP][6] ([i915#8414]) +4 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-19/igt@drm_fdinfo@busy-check-all@bcs0.html * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [PASS][7] -> [FAIL][8] ([i915#7742]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all@rcs0.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: - shard-rkl: NOTRUN -> [FAIL][9] ([i915#7742]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html * igt@drm_fdinfo@most-busy-idle-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#8414]) +9 similar issues [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html * igt@gem_bad_reloc@negative-reloc-lut: - shard-rkl: NOTRUN -> [SKIP][11] ([i915#3281]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_caching@writes: - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#4873]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@gem_caching@writes.html * igt@gem_ccs@block-copy-compressed: - shard-dg1: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#5325]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@gem_ccs@block-copy-compressed.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [PASS][14] -> [FAIL][15] ([i915#6268]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html - shard-tglu: [PASS][16] -> [FAIL][17] ([i915#6268]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-3/igt@gem_ctx_exec@basic-nohangcheck.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_freq@sysfs@gt0: - shard-dg2: [PASS][18] -> [FAIL][19] ([i915#6786]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-6/igt@gem_ctx_freq@sysfs@gt0.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@gem_ctx_freq@sysfs@gt0.html * igt@gem_ctx_persistence@engines-hostile@vcs0: - shard-mtlp: [PASS][20] -> [FAIL][21] ([i915#2410]) +3 similar issues [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-3/igt@gem_ctx_persistence@engines-hostile@vcs0.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@gem_ctx_persistence@engines-hostile@vcs0.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg1: NOTRUN -> [SKIP][22] ([i915#8555]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_sseu@mmap-args: - shard-dg1: NOTRUN -> [SKIP][23] ([i915#280]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-12/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@hibernate: - shard-dg1: [PASS][24] -> [ABORT][25] ([i915#4391] / [i915#7975] / [i915#8213]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg1-17/igt@gem_eio@hibernate.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-14/igt@gem_eio@hibernate.html * igt@gem_exec_fair@basic-none: - shard-dg1: NOTRUN -> [SKIP][26] ([i915#3539] / [i915#4852]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-14/igt@gem_exec_fair@basic-none.html * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-tglu: NOTRUN -> [FAIL][27] ([i915#2842]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglu: [PASS][28] -> [FAIL][29] ([i915#2842]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-4/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_flush@basic-wb-rw-before-default: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#3539] / [i915#4852]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@gem_exec_flush@basic-wb-rw-before-default.html * igt@gem_exec_reloc@basic-gtt-cpu: - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#3281]) +1 similar issue [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-6/igt@gem_exec_reloc@basic-gtt-cpu.html * igt@gem_exec_reloc@basic-gtt-wc-active: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#3281]) +4 similar issues [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@gem_exec_reloc@basic-gtt-wc-active.html * igt@gem_exec_reloc@basic-write-read-noreloc: - shard-dg1: NOTRUN -> [SKIP][33] ([i915#3281]) +1 similar issue [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-12/igt@gem_exec_reloc@basic-write-read-noreloc.html * igt@gem_exec_schedule@preempt-queue-contexts: - shard-dg1: NOTRUN -> [SKIP][34] ([i915#4812]) +1 similar issue [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-16/igt@gem_exec_schedule@preempt-queue-contexts.html * igt@gem_exec_schedule@semaphore-power: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#4537] / [i915#4812]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_whisper@basic-fds-forked-all: - shard-tglu: [PASS][36] -> [INCOMPLETE][37] ([i915#6755] / [i915#7392]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-4/igt@gem_exec_whisper@basic-fds-forked-all.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-3/igt@gem_exec_whisper@basic-fds-forked-all.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#4860]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#4860]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-rkl: NOTRUN -> [SKIP][40] ([i915#4613]) +1 similar issue [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@gem_lmem_swapping@heavy-verify-random.html - shard-tglu: NOTRUN -> [SKIP][41] ([i915#4613]) +1 similar issue [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-8/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#8289]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@gem_media_fill@media-fill.html * igt@gem_mmap@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#4083]) +2 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-3/igt@gem_mmap@basic-small-bo.html * igt@gem_mmap_gtt@bad-object: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#4077]) +3 similar issues [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@gem_mmap_gtt@bad-object.html * igt@gem_mmap_gtt@coherency: - shard-rkl: NOTRUN -> [SKIP][45] ([fdo#111656]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@gem_mmap_gtt@coherency.html * igt@gem_mmap_gtt@fault-concurrent: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4077]) +3 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-3/igt@gem_mmap_gtt@fault-concurrent.html * igt@gem_mmap_gtt@fault-concurrent-y: - shard-snb: [PASS][47] -> [ABORT][48] ([i915#5161]) +1 similar issue [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-snb5/igt@gem_mmap_gtt@fault-concurrent-y.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-snb6/igt@gem_mmap_gtt@fault-concurrent-y.html * igt@gem_mmap_gtt@medium-copy-xy: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#4077]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@gem_mmap_gtt@medium-copy-xy.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4083]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-1/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#3282]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-8/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pxp@create-regular-context-2: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4270]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-6/igt@gem_pxp@create-regular-context-2.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-tglu: NOTRUN -> [SKIP][53] ([i915#4270]) +1 similar issue [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-3/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#4270]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-16/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_readwrite@beyond-eob: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#3282]) +3 similar issues [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@gem_readwrite@beyond-eob.html - shard-rkl: NOTRUN -> [SKIP][56] ([i915#3282]) +2 similar issues [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@gem_readwrite@beyond-eob.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#8428]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-8/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html * igt@gem_softpin@evict-snoop: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#4885]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-16/igt@gem_softpin@evict-snoop.html * igt@gem_userptr_blits@coherency-sync: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#3297]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-1/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-tglu: NOTRUN -> [SKIP][60] ([i915#3323]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-9/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#3297]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-16/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gen7_exec_parse@batch-without-end: - shard-dg2: NOTRUN -> [SKIP][62] ([fdo#109289]) +1 similar issue [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@gen7_exec_parse@batch-without-end.html - shard-rkl: NOTRUN -> [SKIP][63] ([fdo#109289]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@gen7_exec_parse@batch-without-end.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [PASS][64] -> [ABORT][65] ([i915#5566]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-apl1/igt@gen9_exec_parse@allowed-single.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-apl1/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@basic-rejected: - shard-tglu: NOTRUN -> [SKIP][66] ([i915#2527] / [i915#2856]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-6/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@batch-zero-length: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#2856]) +2 similar issues [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-4/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-start-param: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#2856]) +1 similar issue [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@gen9_exec_parse@bb-start-param.html * igt@i915_hangman@engine-engine-error@vcs0: - shard-mtlp: [PASS][69] -> [FAIL][70] ([i915#7069]) +1 similar issue [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-2/igt@i915_hangman@engine-engine-error@vcs0.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@i915_hangman@engine-engine-error@vcs0.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [PASS][71] -> [SKIP][72] ([fdo#109271]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-apl2/igt@i915_pm_dc@dc9-dpms.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-apl3/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: - shard-rkl: [PASS][73] -> [SKIP][74] ([i915#1937]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-7/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-4/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html * igt@i915_pm_rpm@basic-rte: - shard-tglu: [PASS][75] -> [FAIL][76] ([i915#7940]) +2 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-3/igt@i915_pm_rpm@basic-rte.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-2/igt@i915_pm_rpm@basic-rte.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [PASS][77] -> [SKIP][78] ([i915#1397]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-6/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#1397]) +1 similar issue [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@i915_pm_rpm@system-suspend-devices: - shard-dg1: [PASS][80] -> [FAIL][81] ([i915#7940]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg1-17/igt@i915_pm_rpm@system-suspend-devices.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-14/igt@i915_pm_rpm@system-suspend-devices.html * igt@i915_pm_rpm@system-suspend-modeset: - shard-apl: [PASS][82] -> [ABORT][83] ([i915#180]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-apl4/igt@i915_pm_rpm@system-suspend-modeset.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-apl6/igt@i915_pm_rpm@system-suspend-modeset.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg1: NOTRUN -> [SKIP][84] ([i915#6621]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-16/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@reset: - shard-mtlp: NOTRUN -> [FAIL][85] ([i915#8346]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-8/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds-idle-park@gt0: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#8925]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@i915_pm_rps@thresholds-idle-park@gt0.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#6188]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_selftest@live@slpc: - shard-mtlp: [PASS][88] -> [DMESG-WARN][89] ([i915#6367]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-2/igt@i915_selftest@live@slpc.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-8/igt@i915_selftest@live@slpc.html * igt@i915_suspend@fence-restore-untiled: - shard-tglu: [PASS][90] -> [ABORT][91] ([i915#5122]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-8/igt@i915_suspend@fence-restore-untiled.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-4/igt@i915_suspend@fence-restore-untiled.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-1: - shard-apl: [PASS][92] -> [FAIL][93] ([i915#2521]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-apl7/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-1.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-apl6/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-1.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1: - shard-mtlp: [PASS][94] -> [FAIL][95] ([i915#2521]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-6/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4-mc_ccs: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#8502] / [i915#8709]) +11 similar issues [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4-mc_ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc_ccs: - shard-dg1: NOTRUN -> [SKIP][97] ([i915#8502]) +7 similar issues [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc_ccs.html * igt@kms_async_flips@crc@pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][98] ([i915#8247]) +3 similar issues [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-12/igt@kms_async_flips@crc@pipe-b-hdmi-a-3.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#6228]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@kms_async_flips@invalid-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#5286]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html - shard-tglu: NOTRUN -> [SKIP][101] ([fdo#111615] / [i915#5286]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][102] ([i915#4538] / [i915#5286]) +1 similar issue [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][103] ([fdo#111614]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-4/igt@kms_big_fb@linear-16bpp-rotate-90.html - shard-mtlp: NOTRUN -> [SKIP][104] ([fdo#111614]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-3/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][105] ([fdo#111614]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-3/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-mtlp: [PASS][106] -> [FAIL][107] ([i915#3743]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#5190]) +8 similar issues [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-mtlp: NOTRUN -> [SKIP][109] ([fdo#111615]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#4538]) +1 similar issue [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-tglu: NOTRUN -> [SKIP][111] ([fdo#111615]) +1 similar issue [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#4538] / [i915#5190]) +3 similar issues [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html - shard-rkl: NOTRUN -> [SKIP][113] ([fdo#110723]) +1 similar issue [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#3689] / [i915#3886] / [i915#5354]) +6 similar issues [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc: - shard-tglu: NOTRUN -> [SKIP][115] ([i915#3689] / [i915#5354] / [i915#6095]) +1 similar issue [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs: - shard-dg1: NOTRUN -> [SKIP][116] ([i915#5354] / [i915#6095]) +1 similar issue [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-17/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs.html * igt@kms_ccs@pipe-a-missing-ccs-buffer-yf_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#3734] / [i915#5354] / [i915#6095]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@kms_ccs@pipe-a-missing-ccs-buffer-yf_tiled_ccs.html - shard-tglu: NOTRUN -> [SKIP][118] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) +1 similar issue [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-9/igt@kms_ccs@pipe-a-missing-ccs-buffer-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-missing-ccs-buffer-4_tiled_mtl_rc_ccs_cc: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#5354] / [i915#6095]) +1 similar issue [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@kms_ccs@pipe-b-missing-ccs-buffer-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_ccs: - shard-mtlp: NOTRUN -> [SKIP][120] ([i915#6095]) +6 similar issues [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-6/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_ccs.html * igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#5354]) +5 similar issues [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-4/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-18/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_ccs: - shard-dg1: NOTRUN -> [SKIP][123] ([i915#3689] / [i915#5354] / [i915#6095]) +3 similar issues [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-17/igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_ccs.html * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs_cc: - shard-tglu: NOTRUN -> [SKIP][124] ([i915#5354] / [i915#6095]) +6 similar issues [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-4/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#3689] / [i915#5354]) +8 similar issues [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs.html * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#4087]) +3 similar issues [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html * igt@kms_chamelium_color@ctm-limited-range: - shard-dg2: NOTRUN -> [SKIP][127] ([fdo#111827]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-mtlp: NOTRUN -> [SKIP][128] ([i915#7828]) +1 similar issue [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-4/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@kms_chamelium_edid@hdmi-mode-timings: - shard-tglu: NOTRUN -> [SKIP][129] ([i915#7828]) +1 similar issue [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-6/igt@kms_chamelium_edid@hdmi-mode-timings.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#7828]) +4 similar issues [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_chamelium_hpd@dp-hpd-for-each-pipe: - shard-rkl: NOTRUN -> [SKIP][131] ([i915#7828]) +1 similar issue [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@hdmi-hpd-fast: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#7828]) +1 similar issue [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-18/igt@kms_chamelium_hpd@hdmi-hpd-fast.html * igt@kms_content_protection@atomic@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][133] ([i915#7173]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_content_protection@atomic@pipe-a-dp-4.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#3299]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@legacy: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#7118]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@kms_content_protection@legacy.html - shard-rkl: NOTRUN -> [SKIP][136] ([i915#7118]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic: - shard-dg1: NOTRUN -> [SKIP][137] ([i915#7116]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@kms_content_protection@lic.html * igt@kms_content_protection@uevent@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][138] ([i915#1339]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_content_protection@uevent@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#3359]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg1: NOTRUN -> [SKIP][140] ([i915#3359]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-16/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic: - shard-tglu: NOTRUN -> [SKIP][141] ([fdo#109274]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-snb: NOTRUN -> [SKIP][142] ([fdo#109271] / [fdo#111767]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-snb4/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-dg2: NOTRUN -> [SKIP][143] ([fdo#109274] / [i915#5354]) +2 similar issues [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-3/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][144] ([i915#3546]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][145] ([fdo#109274] / [fdo#111767] / [i915#5354]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [PASS][146] -> [FAIL][147] ([i915#2346]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg1: NOTRUN -> [SKIP][148] ([i915#4103] / [i915#4213]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-12/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#8588]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@kms_display_modes@mst-extended-mode-negative.html - shard-tglu: NOTRUN -> [SKIP][150] ([i915#8588]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#3555] / [i915#3840]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_flip@2x-flip-vs-modeset: - shard-rkl: NOTRUN -> [SKIP][152] ([fdo#111825]) +2 similar issues [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-dg2: NOTRUN -> [SKIP][153] ([fdo#109274]) +4 similar issues [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-mtlp: NOTRUN -> [SKIP][154] ([i915#3637]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-7/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-tglu: NOTRUN -> [SKIP][155] ([fdo#109274] / [i915#3637]) +1 similar issue [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#2672]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][157] ([i915#2587] / [i915#2672]) +3 similar issues [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#2672]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#2672]) +2 similar issues [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#2672] / [i915#3555]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-dg2: NOTRUN -> [SKIP][161] ([fdo#109285]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#5274]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff: - shard-dg2: [PASS][163] -> [FAIL][164] ([i915#6880]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite: - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#1825]) +2 similar issues [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][166] ([fdo#109280]) +12 similar issues [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][167] ([fdo#111825] / [i915#1825]) +6 similar issues [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#5354]) +21 similar issues [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-dg2: [PASS][169] -> [FAIL][170] ([fdo#103375]) +4 similar issues [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-suspend.html [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#5460]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#3458]) +7 similar issues [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff: - shard-dg1: NOTRUN -> [SKIP][173] ([fdo#111825]) +7 similar issues [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][174] ([i915#3458]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][175] ([fdo#110189]) +12 similar issues [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#8708]) +11 similar issues [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][177] ([i915#8708]) +1 similar issue [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][178] ([i915#3023]) +3 similar issues [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#3555] / [i915#8228]) +1 similar issue [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@kms_hdr@static-toggle-suspend.html * igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c: - shard-mtlp: NOTRUN -> [SKIP][180] ([fdo#109289]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-2/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-1: - shard-apl: NOTRUN -> [ABORT][181] ([i915#180]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-apl2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-1.html * igt@kms_plane@pixel-format@pipe-b-planes: - shard-mtlp: [PASS][182] -> [FAIL][183] ([i915#1623]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-1/igt@kms_plane@pixel-format@pipe-b-planes.html [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-7/igt@kms_plane@pixel-format@pipe-b-planes.html * igt@kms_plane_multiple@tiling-yf: - shard-dg1: NOTRUN -> [SKIP][184] ([i915#3555]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-12/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#6953]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-tglu: [PASS][186] -> [FAIL][187] ([i915#8292]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-2/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][188] ([i915#8292]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-14/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][189] ([i915#5176]) +11 similar issues [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#5176]) +11 similar issues [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-dp-4.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][191] ([i915#5176]) +27 similar issues [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-19/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][192] ([i915#5235]) +23 similar issues [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#5235]) +5 similar issues [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#5235]) +15 similar issues [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-hdmi-a-1: - shard-snb: NOTRUN -> [SKIP][195] ([fdo#109271]) +37 similar issues [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-snb1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-hdmi-a-1.html * igt@kms_prime@d3hot: - shard-dg1: NOTRUN -> [SKIP][196] ([i915#6524]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@kms_prime@d3hot.html * igt@kms_properties@plane-properties-atomic: - shard-dg2: [PASS][197] -> [TIMEOUT][198] ([i915#9106]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-3/igt@kms_properties@plane-properties-atomic.html [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@kms_properties@plane-properties-atomic.html * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][199] ([fdo#111068] / [i915#658]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-18/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#658]) +2 similar issues [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-3/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-rkl: NOTRUN -> [SKIP][201] ([fdo#111068] / [i915#658]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@cursor_blt: - shard-rkl: NOTRUN -> [SKIP][202] ([i915#1072]) +1 similar issue [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@kms_psr@cursor_blt.html * igt@kms_psr@psr2_sprite_blt: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#1072]) +2 similar issues [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_psr@psr2_sprite_blt.html * igt@kms_psr@sprite_mmap_cpu: - shard-dg1: NOTRUN -> [SKIP][204] ([i915#1072]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-17/igt@kms_psr@sprite_mmap_cpu.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#5461] / [i915#658]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html - shard-rkl: NOTRUN -> [SKIP][206] ([i915#5461] / [i915#658]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@multiplane-rotation-cropping-top: - shard-rkl: [PASS][207] -> [ABORT][208] ([i915#8875]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-1/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html * igt@kms_rotation_crc@primary-rotation-90: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#4235]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_scaling_modes@scaling-mode-none: - shard-tglu: NOTRUN -> [SKIP][210] ([i915#3555]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-7/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_setmode@basic-clone-single-crtc: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#3555]) +2 similar issues [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#8823]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-4/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_vblank@invalid: - shard-dg2: NOTRUN -> [TIMEOUT][213] ([i915#9107]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@kms_vblank@invalid.html * igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend: - shard-dg2: NOTRUN -> [FAIL][214] ([fdo#103375]) +2 similar issues [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html * igt@kms_vblank@pipe-d-wait-busy: - shard-rkl: NOTRUN -> [SKIP][215] ([i915#4070] / [i915#533] / [i915#6768]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@kms_vblank@pipe-d-wait-busy.html * igt@kms_writeback@writeback-fb-id: - shard-dg1: NOTRUN -> [SKIP][216] ([i915#2437]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-pixel-formats: - shard-mtlp: NOTRUN -> [SKIP][217] ([i915#2437]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-4/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@global-sseu-config: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#7387]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@perf@global-sseu-config.html * igt@perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#2434]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@perf@mi-rpc.html - shard-tglu: NOTRUN -> [SKIP][220] ([fdo#109289]) +1 similar issue [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-2/igt@perf@mi-rpc.html - shard-mtlp: NOTRUN -> [SKIP][221] ([i915#2434]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@perf@mi-rpc.html * igt@perf_pmu@busy-double-start@ccs1: - shard-dg2: [PASS][222] -> [FAIL][223] ([i915#4349]) +1 similar issue [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-2/igt@perf_pmu@busy-double-start@ccs1.html [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-3/igt@perf_pmu@busy-double-start@ccs1.html * igt@perf_pmu@busy-double-start@vcs1: - shard-dg1: [PASS][224] -> [FAIL][225] ([i915#4349]) +1 similar issue [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg1-18/igt@perf_pmu@busy-double-start@vcs1.html [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-14/igt@perf_pmu@busy-double-start@vcs1.html * igt@perf_pmu@event-wait@rcs0: - shard-dg2: NOTRUN -> [SKIP][226] ([fdo#112283]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@perf_pmu@event-wait@rcs0.html - shard-rkl: NOTRUN -> [SKIP][227] ([fdo#112283]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@perf_pmu@event-wait@rcs0.html - shard-tglu: NOTRUN -> [SKIP][228] ([fdo#112283]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-7/igt@perf_pmu@event-wait@rcs0.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-tglu: NOTRUN -> [SKIP][229] ([i915#8516]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-7/igt@perf_pmu@rc6@other-idle-gt0.html * igt@perf_pmu@render-node-busy-idle@ccs0: - shard-mtlp: [PASS][230] -> [FAIL][231] ([i915#4349]) +4 similar issues [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-7/igt@perf_pmu@render-node-busy-idle@ccs0.html [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-6/igt@perf_pmu@render-node-busy-idle@ccs0.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#3291] / [i915#3708]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@prime_vgem@basic-fence-read.html - shard-rkl: NOTRUN -> [SKIP][233] ([fdo#109295] / [i915#3291] / [i915#3708]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@fence-flip-hang: - shard-tglu: NOTRUN -> [SKIP][234] ([fdo#109295]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-9/igt@prime_vgem@fence-flip-hang.html * igt@prime_vgem@fence-read-hang: - shard-rkl: NOTRUN -> [SKIP][235] ([fdo#109295] / [i915#3708]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@prime_vgem@fence-read-hang.html * igt@runner@aborted: - shard-snb: NOTRUN -> ([FAIL][236], [FAIL][237]) ([i915#7812] / [i915#8848]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-snb7/igt@runner@aborted.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-snb7/igt@runner@aborted.html * igt@v3d/v3d_job_submission@array-job-submission: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#2575]) +6 similar issues [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@v3d/v3d_job_submission@array-job-submission.html - shard-rkl: NOTRUN -> [SKIP][239] ([fdo#109315]) +3 similar issues [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-4/igt@v3d/v3d_job_submission@array-job-submission.html - shard-tglu: NOTRUN -> [SKIP][240] ([fdo#109315] / [i915#2575]) +5 similar issues [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-9/igt@v3d/v3d_job_submission@array-job-submission.html * igt@v3d/v3d_perfmon@create-perfmon-0: - shard-mtlp: NOTRUN -> [SKIP][241] ([i915#2575]) +2 similar issues [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-4/igt@v3d/v3d_perfmon@create-perfmon-0.html * igt@v3d/v3d_submit_cl@multi-and-single-sync: - shard-dg1: NOTRUN -> [SKIP][242] ([i915#2575]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@v3d/v3d_submit_cl@multi-and-single-sync.html * igt@vc4/vc4_lookup_fail@bad-color-write: - shard-dg1: NOTRUN -> [SKIP][243] ([i915#7711]) +2 similar issues [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-17/igt@vc4/vc4_lookup_fail@bad-color-write.html * igt@vc4/vc4_perfmon@get-values-invalid-pointer: - shard-tglu: NOTRUN -> [SKIP][244] ([i915#2575]) +1 similar issue [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@vc4/vc4_perfmon@get-values-invalid-pointer.html * igt@vc4/vc4_purgeable_bo@access-purged-bo-mem: - shard-rkl: NOTRUN -> [SKIP][245] ([i915#7711]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html * igt@vc4/vc4_wait_bo@used-bo-1ns: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#7711]) +4 similar issues [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@vc4/vc4_wait_bo@used-bo-1ns.html #### Possible fixes #### * igt@gem_exec_fair@basic-deadline: - shard-rkl: [FAIL][247] ([i915#2846]) -> [PASS][248] [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-7/igt@gem_exec_fair@basic-deadline.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-rkl: [FAIL][249] ([i915#2842]) -> [PASS][250] [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-6/igt@gem_exec_fair@basic-none-share@rcs0.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-4/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_schedule@preemptive-hang@vcs0: - shard-mtlp: [FAIL][251] ([i915#9051]) -> [PASS][252] [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-8/igt@gem_exec_schedule@preemptive-hang@vcs0.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-1/igt@gem_exec_schedule@preemptive-hang@vcs0.html * igt@i915_module_load@reload: - shard-snb: [ABORT][253] ([i915#4528] / [i915#8695]) -> [PASS][254] [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-snb7/igt@i915_module_load@reload.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-snb1/igt@i915_module_load@reload.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [DMESG-WARN][255] ([i915#7061] / [i915#8617]) -> [PASS][256] [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-6/igt@i915_module_load@reload-with-fault-injection.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pipe_stress@stress-xrgb8888-untiled: - shard-mtlp: [FAIL][257] ([i915#8691]) -> [PASS][258] [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-5/igt@i915_pipe_stress@stress-xrgb8888-untiled.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-3/igt@i915_pipe_stress@stress-xrgb8888-untiled.html * igt@i915_pm_dc@dc6-dpms: - shard-tglu: [FAIL][259] ([i915#3989] / [i915#454]) -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-7/igt@i915_pm_dc@dc6-dpms.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-2/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_dc@dc9-dpms: - shard-tglu: [SKIP][261] ([i915#4281]) -> [PASS][262] [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-5/igt@i915_pm_dc@dc9-dpms.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-10/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-mtlp: [SKIP][263] ([fdo#109289] / [i915#8403]) -> [PASS][264] [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-5/igt@i915_pm_rc6_residency@rc6-accuracy.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-1/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_pm_rpm@i2c: - shard-dg2: [FAIL][265] ([i915#8717]) -> [PASS][266] [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-2/igt@i915_pm_rpm@i2c.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@i915_pm_rpm@i2c.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [SKIP][267] ([i915#1397]) -> [PASS][268] +2 similar issues [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@i915_selftest@live@requests: - shard-mtlp: [DMESG-FAIL][269] ([i915#7269]) -> [PASS][270] [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-2/igt@i915_selftest@live@requests.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-8/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@workarounds: - shard-mtlp: [DMESG-FAIL][271] ([i915#6763]) -> [PASS][272] [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-2/igt@i915_selftest@live@workarounds.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-8/igt@i915_selftest@live@workarounds.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-mtlp: [FAIL][273] ([i915#3743]) -> [PASS][274] +1 similar issue [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [FAIL][275] ([i915#2346]) -> [PASS][276] [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-dg2: [FAIL][277] ([i915#4767]) -> [PASS][278] [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-2/igt@kms_fbcon_fbt@fbc-suspend.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a2: - shard-glk: [FAIL][279] ([i915#2122]) -> [PASS][280] [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-glk6/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a2.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-glk4/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a2.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt: - shard-dg2: [FAIL][281] ([i915#6880]) -> [PASS][282] +1 similar issue [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html #### Warnings #### * igt@gem_exec_await@wide-contexts: - shard-dg2: [FAIL][283] ([i915#5892]) -> [TIMEOUT][284] ([i915#5892]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-1/igt@gem_exec_await@wide-contexts.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@gem_exec_await@wide-contexts.html * igt@gem_exec_whisper@basic-contexts-forked-all: - shard-mtlp: [ABORT][285] ([i915#7392] / [i915#8131]) -> [TIMEOUT][286] ([i915#7392] / [i915#8628]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-2/igt@gem_exec_whisper@basic-contexts-forked-all.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-3/igt@gem_exec_whisper@basic-contexts-forked-all.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-mtlp: [SKIP][287] ([fdo#109289] / [i915#8403]) -> [SKIP][288] ([fdo#109289]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-3/igt@i915_pm_rc6_residency@media-rc6-accuracy.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-4/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][289] ([i915#7118]) -> [SKIP][290] ([i915#7118] / [i915#7162]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-3/igt@kms_content_protection@type1.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_content_protection@type1.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-mtlp: [DMESG-FAIL][291] ([i915#2017] / [i915#5954]) -> [FAIL][292] ([i915#2346]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-snb: [DMESG-WARN][293] ([i915#5090] / [i915#8841]) -> [DMESG-WARN][294] ([i915#8841]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-snb5/igt@kms_fbcon_fbt@fbc-suspend.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-snb2/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: [SKIP][295] ([fdo#110189] / [i915#3955]) -> [SKIP][296] ([i915#3955]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: [SKIP][297] ([fdo#109285]) -> [SKIP][298] ([fdo#109285] / [i915#4098]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-6/igt@kms_force_connector_basic@force-load-detect.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_psr@primary_mmap_gtt: - shard-dg1: [SKIP][299] ([i915#1072] / [i915#4078]) -> [SKIP][300] ([i915#1072]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg1-16/igt@kms_psr@primary_mmap_gtt.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-14/igt@kms_psr@primary_mmap_gtt.html * igt@kms_psr@sprite_plane_onoff: - shard-dg1: [SKIP][301] ([i915#1072]) -> [SKIP][302] ([i915#1072] / [i915#4078]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg1-14/igt@kms_psr@sprite_plane_onoff.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-16/igt@kms_psr@sprite_plane_onoff.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [CRASH][303] ([i915#7331]) -> [INCOMPLETE][304] ([i915#5493]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-2/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1339]: https://gitlab.freedesktop.org/drm/intel/issues/1339 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1623]: https://gitlab.freedesktop.org/drm/intel/issues/1623 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#5090]: https://gitlab.freedesktop.org/drm/intel/issues/5090 [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122 [i915#5161]: https://gitlab.freedesktop.org/drm/intel/issues/5161 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5892]: https://gitlab.freedesktop.org/drm/intel/issues/5892 [i915#5954]: https://gitlab.freedesktop.org/drm/intel/issues/5954 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188 [i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6755]: https://gitlab.freedesktop.org/drm/intel/issues/6755 [i915#6763]: https://gitlab.freedesktop.org/drm/intel/issues/6763 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6786]: https://gitlab.freedesktop.org/drm/intel/issues/6786 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7061]: https://gitlab.freedesktop.org/drm/intel/issues/7061 [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7269]: https://gitlab.freedesktop.org/drm/intel/issues/7269 [i915#7331]: https://gitlab.freedesktop.org/drm/intel/issues/7331 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7812]: https://gitlab.freedesktop.org/drm/intel/issues/7812 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8131]: https://gitlab.freedesktop.org/drm/intel/issues/8131 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8346]: https://gitlab.freedesktop.org/drm/intel/issues/8346 [i915#8403]: https://gitlab.freedesktop.org/drm/intel/issues/8403 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588 [i915#8617]: https://gitlab.freedesktop.org/drm/intel/issues/8617 [i915#8628]: https://gitlab.freedesktop.org/drm/intel/issues/8628 [i915#8691]: https://gitlab.freedesktop.org/drm/intel/issues/8691 [i915#8695]: https://gitlab.freedesktop.org/drm/intel/issues/8695 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8717]: https://gitlab.freedesktop.org/drm/intel/issues/8717 [i915#8823]: https://gitlab.freedesktop.org/drm/intel/issues/8823 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8848]: https://gitlab.freedesktop.org/drm/intel/issues/8848 [i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9051]: https://gitlab.freedesktop.org/drm/intel/issues/9051 [i915#9106]: https://gitlab.freedesktop.org/drm/intel/issues/9106 [i915#9107]: https://gitlab.freedesktop.org/drm/intel/issues/9107 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7419 -> IGTPW_9530 CI-20190529: 20190529 CI_DRM_13485: 0c8b167528bfd16d6c4e8fb5a0f11421b7e2f349 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9530: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/index.html IGT_7419: 7419 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/index.html [-- Attachment #2: Type: text/html, Size: 95875 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/msm: Add submitoverhead benchmark (rev2) 2023-08-07 16:36 [igt-dev] [PATCH v2] tests/msm: Add submitoverhead benchmark Rob Clark ` (4 preceding siblings ...) 2023-08-11 6:50 ` [igt-dev] ✗ Fi.CI.IGT: failure for tests/msm: Add submitoverhead benchmark (rev2) Patchwork @ 2023-08-11 7:24 ` Patchwork 2023-08-11 9:31 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 2023-08-11 15:44 ` [igt-dev] [PATCH v2] tests/msm: Add submitoverhead benchmark Kamil Konieczny 7 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2023-08-11 7:24 UTC (permalink / raw) To: Rob Clark; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 79805 bytes --] == Series Details == Series: tests/msm: Add submitoverhead benchmark (rev2) URL : https://patchwork.freedesktop.org/series/121909/ State : failure == Summary == CI Bug Log - changes from IGT_7419_full -> IGTPW_9530_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9530_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9530_full, please notify your bug team 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_9530/index.html Participating hosts (9 -> 11) ------------------------------ Additional (2): shard-rkl0 shard-tglu0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9530_full: ### IGT changes ### #### Possible regressions #### * igt@i915_pipe_stress@stress-xrgb8888-untiled: - shard-dg2: [PASS][1] -> [TIMEOUT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-1/igt@i915_pipe_stress@stress-xrgb8888-untiled.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@i915_pipe_stress@stress-xrgb8888-untiled.html #### Warnings #### * igt@gem_exec_flush@basic-uc-prw-default: - shard-dg2: [SKIP][3] ([i915#3539]) -> [TIMEOUT][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-6/igt@gem_exec_flush@basic-uc-prw-default.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@gem_exec_flush@basic-uc-prw-default.html Known issues ------------ Here are the changes found in IGTPW_9530_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-mtlp: NOTRUN -> [SKIP][5] ([i915#8411]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-6/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@drm_fdinfo@busy-check-all@bcs0: - shard-dg1: NOTRUN -> [SKIP][6] ([i915#8414]) +4 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-19/igt@drm_fdinfo@busy-check-all@bcs0.html * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [PASS][7] -> [FAIL][8] ([i915#7742]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all@rcs0.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: - shard-rkl: NOTRUN -> [FAIL][9] ([i915#7742]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html * igt@drm_fdinfo@most-busy-idle-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#8414]) +9 similar issues [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html * igt@gem_bad_reloc@negative-reloc-lut: - shard-rkl: NOTRUN -> [SKIP][11] ([i915#3281]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_caching@writes: - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#4873]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@gem_caching@writes.html * igt@gem_ccs@block-copy-compressed: - shard-dg1: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#5325]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@gem_ccs@block-copy-compressed.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [PASS][14] -> [FAIL][15] ([i915#6268]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html - shard-tglu: [PASS][16] -> [FAIL][17] ([i915#6268]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-3/igt@gem_ctx_exec@basic-nohangcheck.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_freq@sysfs@gt0: - shard-dg2: [PASS][18] -> [FAIL][19] ([i915#6786]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-6/igt@gem_ctx_freq@sysfs@gt0.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@gem_ctx_freq@sysfs@gt0.html * igt@gem_ctx_persistence@engines-hostile@vcs0: - shard-mtlp: [PASS][20] -> [FAIL][21] ([i915#2410]) +3 similar issues [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-3/igt@gem_ctx_persistence@engines-hostile@vcs0.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@gem_ctx_persistence@engines-hostile@vcs0.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg1: NOTRUN -> [SKIP][22] ([i915#8555]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_sseu@mmap-args: - shard-dg1: NOTRUN -> [SKIP][23] ([i915#280]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-12/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@hibernate: - shard-dg1: [PASS][24] -> [ABORT][25] ([i915#4391] / [i915#7975] / [i915#8213]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg1-17/igt@gem_eio@hibernate.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-14/igt@gem_eio@hibernate.html * igt@gem_exec_fair@basic-none: - shard-dg1: NOTRUN -> [SKIP][26] ([i915#3539] / [i915#4852]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-14/igt@gem_exec_fair@basic-none.html * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-tglu: NOTRUN -> [FAIL][27] ([i915#2842]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglu: [PASS][28] -> [FAIL][29] ([i915#2842]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-4/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_flush@basic-wb-rw-before-default: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#3539] / [i915#4852]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@gem_exec_flush@basic-wb-rw-before-default.html * igt@gem_exec_reloc@basic-gtt-cpu: - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#3281]) +1 similar issue [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-6/igt@gem_exec_reloc@basic-gtt-cpu.html * igt@gem_exec_reloc@basic-gtt-wc-active: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#3281]) +4 similar issues [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@gem_exec_reloc@basic-gtt-wc-active.html * igt@gem_exec_reloc@basic-write-read-noreloc: - shard-dg1: NOTRUN -> [SKIP][33] ([i915#3281]) +1 similar issue [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-12/igt@gem_exec_reloc@basic-write-read-noreloc.html * igt@gem_exec_schedule@preempt-queue-contexts: - shard-dg1: NOTRUN -> [SKIP][34] ([i915#4812]) +1 similar issue [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-16/igt@gem_exec_schedule@preempt-queue-contexts.html * igt@gem_exec_schedule@semaphore-power: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#4537] / [i915#4812]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_whisper@basic-fds-forked-all: - shard-tglu: [PASS][36] -> [INCOMPLETE][37] ([i915#6755] / [i915#7392]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-4/igt@gem_exec_whisper@basic-fds-forked-all.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-3/igt@gem_exec_whisper@basic-fds-forked-all.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#4860]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#4860]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-rkl: NOTRUN -> [SKIP][40] ([i915#4613]) +1 similar issue [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@gem_lmem_swapping@heavy-verify-random.html - shard-tglu: NOTRUN -> [SKIP][41] ([i915#4613]) +1 similar issue [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-8/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#8289]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@gem_media_fill@media-fill.html * igt@gem_mmap@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#4083]) +2 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-3/igt@gem_mmap@basic-small-bo.html * igt@gem_mmap_gtt@bad-object: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#4077]) +3 similar issues [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@gem_mmap_gtt@bad-object.html * igt@gem_mmap_gtt@coherency: - shard-rkl: NOTRUN -> [SKIP][45] ([fdo#111656]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@gem_mmap_gtt@coherency.html * igt@gem_mmap_gtt@fault-concurrent: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4077]) +3 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-3/igt@gem_mmap_gtt@fault-concurrent.html * igt@gem_mmap_gtt@fault-concurrent-y: - shard-snb: [PASS][47] -> [ABORT][48] ([i915#5161]) +1 similar issue [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-snb5/igt@gem_mmap_gtt@fault-concurrent-y.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-snb6/igt@gem_mmap_gtt@fault-concurrent-y.html * igt@gem_mmap_gtt@medium-copy-xy: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#4077]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@gem_mmap_gtt@medium-copy-xy.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4083]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-1/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#3282]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-8/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pxp@create-regular-context-2: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4270]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-6/igt@gem_pxp@create-regular-context-2.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-tglu: NOTRUN -> [SKIP][53] ([i915#4270]) +1 similar issue [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-3/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#4270]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-16/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_readwrite@beyond-eob: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#3282]) +3 similar issues [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@gem_readwrite@beyond-eob.html - shard-rkl: NOTRUN -> [SKIP][56] ([i915#3282]) +2 similar issues [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@gem_readwrite@beyond-eob.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#8428]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-8/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html * igt@gem_softpin@evict-snoop: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#4885]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-16/igt@gem_softpin@evict-snoop.html * igt@gem_userptr_blits@coherency-sync: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#3297]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-1/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-tglu: NOTRUN -> [SKIP][60] ([i915#3323]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-9/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#3297]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-16/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gen7_exec_parse@batch-without-end: - shard-dg2: NOTRUN -> [SKIP][62] ([fdo#109289]) +1 similar issue [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@gen7_exec_parse@batch-without-end.html - shard-rkl: NOTRUN -> [SKIP][63] ([fdo#109289]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@gen7_exec_parse@batch-without-end.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [PASS][64] -> [ABORT][65] ([i915#5566]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-apl1/igt@gen9_exec_parse@allowed-single.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-apl1/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@basic-rejected: - shard-tglu: NOTRUN -> [SKIP][66] ([i915#2527] / [i915#2856]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-6/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@batch-zero-length: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#2856]) +2 similar issues [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-4/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-start-param: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#2856]) +1 similar issue [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@gen9_exec_parse@bb-start-param.html * igt@i915_hangman@engine-engine-error@vcs0: - shard-mtlp: [PASS][69] -> [FAIL][70] ([i915#7069]) +1 similar issue [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-2/igt@i915_hangman@engine-engine-error@vcs0.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@i915_hangman@engine-engine-error@vcs0.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [PASS][71] -> [SKIP][72] ([fdo#109271]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-apl2/igt@i915_pm_dc@dc9-dpms.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-apl3/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: - shard-rkl: [PASS][73] -> [SKIP][74] ([i915#1937]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-7/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-4/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html * igt@i915_pm_rpm@basic-rte: - shard-tglu: [PASS][75] -> [FAIL][76] ([i915#7940]) +2 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-3/igt@i915_pm_rpm@basic-rte.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-2/igt@i915_pm_rpm@basic-rte.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [PASS][77] -> [SKIP][78] ([i915#1397]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-6/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#1397]) +1 similar issue [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@i915_pm_rpm@system-suspend-devices: - shard-dg1: [PASS][80] -> [FAIL][81] ([i915#7940]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg1-17/igt@i915_pm_rpm@system-suspend-devices.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-14/igt@i915_pm_rpm@system-suspend-devices.html * igt@i915_pm_rpm@system-suspend-modeset: - shard-apl: [PASS][82] -> [ABORT][83] ([i915#180]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-apl4/igt@i915_pm_rpm@system-suspend-modeset.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-apl6/igt@i915_pm_rpm@system-suspend-modeset.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg1: NOTRUN -> [SKIP][84] ([i915#6621]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-16/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@reset: - shard-mtlp: NOTRUN -> [FAIL][85] ([i915#8346]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-8/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds-idle-park@gt0: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#8925]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@i915_pm_rps@thresholds-idle-park@gt0.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#6188]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_selftest@live@slpc: - shard-mtlp: [PASS][88] -> [DMESG-WARN][89] ([i915#6367]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-2/igt@i915_selftest@live@slpc.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-8/igt@i915_selftest@live@slpc.html * igt@i915_suspend@fence-restore-untiled: - shard-tglu: [PASS][90] -> [ABORT][91] ([i915#5122]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-8/igt@i915_suspend@fence-restore-untiled.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-4/igt@i915_suspend@fence-restore-untiled.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-1: - shard-apl: [PASS][92] -> [FAIL][93] ([i915#2521]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-apl7/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-1.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-apl6/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-1.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1: - shard-mtlp: [PASS][94] -> [FAIL][95] ([i915#2521]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-6/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4-mc_ccs: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#8502] / [i915#8709]) +11 similar issues [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4-mc_ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc_ccs: - shard-dg1: NOTRUN -> [SKIP][97] ([i915#8502]) +7 similar issues [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc_ccs.html * igt@kms_async_flips@crc@pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][98] ([i915#8247]) +3 similar issues [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-12/igt@kms_async_flips@crc@pipe-b-hdmi-a-3.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#6228]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@kms_async_flips@invalid-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#5286]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html - shard-tglu: NOTRUN -> [SKIP][101] ([fdo#111615] / [i915#5286]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][102] ([i915#4538] / [i915#5286]) +1 similar issue [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][103] ([fdo#111614]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-4/igt@kms_big_fb@linear-16bpp-rotate-90.html - shard-mtlp: NOTRUN -> [SKIP][104] ([fdo#111614]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-3/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][105] ([fdo#111614]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-3/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-mtlp: [PASS][106] -> [FAIL][107] ([i915#3743]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#5190]) +8 similar issues [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-mtlp: NOTRUN -> [SKIP][109] ([fdo#111615]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#4538]) +1 similar issue [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-tglu: NOTRUN -> [SKIP][111] ([fdo#111615]) +1 similar issue [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#4538] / [i915#5190]) +3 similar issues [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html - shard-rkl: NOTRUN -> [SKIP][113] ([fdo#110723]) +1 similar issue [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#3689] / [i915#3886] / [i915#5354]) +6 similar issues [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc: - shard-tglu: NOTRUN -> [SKIP][115] ([i915#3689] / [i915#5354] / [i915#6095]) +1 similar issue [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs: - shard-dg1: NOTRUN -> [SKIP][116] ([i915#5354] / [i915#6095]) +1 similar issue [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-17/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs.html * igt@kms_ccs@pipe-a-missing-ccs-buffer-yf_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#3734] / [i915#5354] / [i915#6095]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@kms_ccs@pipe-a-missing-ccs-buffer-yf_tiled_ccs.html - shard-tglu: NOTRUN -> [SKIP][118] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) +1 similar issue [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-9/igt@kms_ccs@pipe-a-missing-ccs-buffer-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-missing-ccs-buffer-4_tiled_mtl_rc_ccs_cc: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#5354] / [i915#6095]) +1 similar issue [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@kms_ccs@pipe-b-missing-ccs-buffer-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_ccs: - shard-mtlp: NOTRUN -> [SKIP][120] ([i915#6095]) +6 similar issues [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-6/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_ccs.html * igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#5354]) +5 similar issues [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-4/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-18/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_ccs: - shard-dg1: NOTRUN -> [SKIP][123] ([i915#3689] / [i915#5354] / [i915#6095]) +3 similar issues [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-17/igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_ccs.html * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs_cc: - shard-tglu: NOTRUN -> [SKIP][124] ([i915#5354] / [i915#6095]) +6 similar issues [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-4/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#3689] / [i915#5354]) +8 similar issues [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs.html * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#4087]) +3 similar issues [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html * igt@kms_chamelium_color@ctm-limited-range: - shard-dg2: NOTRUN -> [SKIP][127] ([fdo#111827]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-mtlp: NOTRUN -> [SKIP][128] ([i915#7828]) +1 similar issue [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-4/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@kms_chamelium_edid@hdmi-mode-timings: - shard-tglu: NOTRUN -> [SKIP][129] ([i915#7828]) +1 similar issue [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-6/igt@kms_chamelium_edid@hdmi-mode-timings.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#7828]) +4 similar issues [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_chamelium_hpd@dp-hpd-for-each-pipe: - shard-rkl: NOTRUN -> [SKIP][131] ([i915#7828]) +1 similar issue [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@hdmi-hpd-fast: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#7828]) +1 similar issue [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-18/igt@kms_chamelium_hpd@hdmi-hpd-fast.html * igt@kms_content_protection@atomic@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][133] ([i915#7173]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_content_protection@atomic@pipe-a-dp-4.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#3299]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@legacy: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#7118]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@kms_content_protection@legacy.html - shard-rkl: NOTRUN -> [SKIP][136] ([i915#7118]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic: - shard-dg1: NOTRUN -> [SKIP][137] ([i915#7116]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@kms_content_protection@lic.html * igt@kms_content_protection@uevent@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][138] ([i915#1339]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_content_protection@uevent@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#3359]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg1: NOTRUN -> [SKIP][140] ([i915#3359]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-16/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic: - shard-tglu: NOTRUN -> [SKIP][141] ([fdo#109274]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-snb: NOTRUN -> [SKIP][142] ([fdo#109271] / [fdo#111767]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-snb4/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-dg2: NOTRUN -> [SKIP][143] ([fdo#109274] / [i915#5354]) +2 similar issues [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-3/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][144] ([i915#3546]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][145] ([fdo#109274] / [fdo#111767] / [i915#5354]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [PASS][146] -> [FAIL][147] ([i915#2346]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-legacy: - shard-dg2: [PASS][148] -> [TIMEOUT][149] ([i915#9111]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-8/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-legacy.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-legacy.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#4103] / [i915#4213]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-12/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#8588]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@kms_display_modes@mst-extended-mode-negative.html - shard-tglu: NOTRUN -> [SKIP][152] ([i915#8588]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#3555] / [i915#3840]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_flip@2x-flip-vs-modeset: - shard-rkl: NOTRUN -> [SKIP][154] ([fdo#111825]) +2 similar issues [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-dg2: NOTRUN -> [SKIP][155] ([fdo#109274]) +4 similar issues [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#3637]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-7/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-tglu: NOTRUN -> [SKIP][157] ([fdo#109274] / [i915#3637]) +1 similar issue [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#2672]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][159] ([i915#2587] / [i915#2672]) +3 similar issues [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#2672]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#2672]) +2 similar issues [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#2672] / [i915#3555]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-dg2: NOTRUN -> [SKIP][163] ([fdo#109285]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#5274]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff: - shard-dg2: [PASS][165] -> [FAIL][166] ([i915#6880]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite: - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#1825]) +2 similar issues [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][168] ([fdo#109280]) +12 similar issues [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][169] ([fdo#111825] / [i915#1825]) +6 similar issues [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#5354]) +21 similar issues [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-dg2: [PASS][171] -> [FAIL][172] ([fdo#103375]) +4 similar issues [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-suspend.html [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#5460]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#3458]) +7 similar issues [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff: - shard-dg1: NOTRUN -> [SKIP][175] ([fdo#111825]) +7 similar issues [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][176] ([i915#3458]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][177] ([fdo#110189]) +12 similar issues [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#8708]) +11 similar issues [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][179] ([i915#8708]) +1 similar issue [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][180] ([i915#3023]) +3 similar issues [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#3555] / [i915#8228]) +1 similar issue [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@kms_hdr@static-toggle-suspend.html * igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c: - shard-mtlp: NOTRUN -> [SKIP][182] ([fdo#109289]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-2/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-1: - shard-apl: NOTRUN -> [ABORT][183] ([i915#180]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-apl2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-1.html * igt@kms_plane@pixel-format@pipe-b-planes: - shard-mtlp: [PASS][184] -> [FAIL][185] ([i915#1623]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-1/igt@kms_plane@pixel-format@pipe-b-planes.html [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-7/igt@kms_plane@pixel-format@pipe-b-planes.html * igt@kms_plane_multiple@tiling-yf: - shard-dg1: NOTRUN -> [SKIP][186] ([i915#3555]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-12/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#6953]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-tglu: [PASS][188] -> [FAIL][189] ([i915#8292]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-2/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][190] ([i915#8292]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-14/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][191] ([i915#5176]) +11 similar issues [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#5176]) +11 similar issues [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-dp-4.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][193] ([i915#5176]) +27 similar issues [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-19/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][194] ([i915#5235]) +23 similar issues [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][195] ([i915#5235]) +5 similar issues [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#5235]) +15 similar issues [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-hdmi-a-1: - shard-snb: NOTRUN -> [SKIP][197] ([fdo#109271]) +37 similar issues [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-snb1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-hdmi-a-1.html * igt@kms_prime@d3hot: - shard-dg1: NOTRUN -> [SKIP][198] ([i915#6524]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@kms_prime@d3hot.html * igt@kms_properties@plane-properties-atomic: - shard-dg2: [PASS][199] -> [TIMEOUT][200] ([i915#9106]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-3/igt@kms_properties@plane-properties-atomic.html [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@kms_properties@plane-properties-atomic.html * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][201] ([fdo#111068] / [i915#658]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-18/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#658]) +2 similar issues [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-3/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-rkl: NOTRUN -> [SKIP][203] ([fdo#111068] / [i915#658]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@cursor_blt: - shard-rkl: NOTRUN -> [SKIP][204] ([i915#1072]) +1 similar issue [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@kms_psr@cursor_blt.html * igt@kms_psr@psr2_sprite_blt: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#1072]) +2 similar issues [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_psr@psr2_sprite_blt.html * igt@kms_psr@sprite_mmap_cpu: - shard-dg1: NOTRUN -> [SKIP][206] ([i915#1072]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-17/igt@kms_psr@sprite_mmap_cpu.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#5461] / [i915#658]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html - shard-rkl: NOTRUN -> [SKIP][208] ([i915#5461] / [i915#658]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@multiplane-rotation-cropping-top: - shard-rkl: [PASS][209] -> [ABORT][210] ([i915#8875]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-1/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html * igt@kms_rotation_crc@primary-rotation-90: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#4235]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_scaling_modes@scaling-mode-none: - shard-tglu: NOTRUN -> [SKIP][212] ([i915#3555]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-7/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_setmode@basic-clone-single-crtc: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#3555]) +2 similar issues [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][214] ([i915#8823]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-4/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_vblank@invalid: - shard-dg2: NOTRUN -> [TIMEOUT][215] ([i915#9107]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@kms_vblank@invalid.html * igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend: - shard-dg2: NOTRUN -> [FAIL][216] ([fdo#103375]) +2 similar issues [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html * igt@kms_vblank@pipe-d-wait-busy: - shard-rkl: NOTRUN -> [SKIP][217] ([i915#4070] / [i915#533] / [i915#6768]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@kms_vblank@pipe-d-wait-busy.html * igt@kms_writeback@writeback-fb-id: - shard-dg1: NOTRUN -> [SKIP][218] ([i915#2437]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-pixel-formats: - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#2437]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-4/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@global-sseu-config: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#7387]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@perf@global-sseu-config.html * igt@perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#2434]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@perf@mi-rpc.html - shard-tglu: NOTRUN -> [SKIP][222] ([fdo#109289]) +1 similar issue [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-2/igt@perf@mi-rpc.html - shard-mtlp: NOTRUN -> [SKIP][223] ([i915#2434]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@perf@mi-rpc.html * igt@perf_pmu@busy-double-start@ccs1: - shard-dg2: [PASS][224] -> [FAIL][225] ([i915#4349]) +1 similar issue [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-2/igt@perf_pmu@busy-double-start@ccs1.html [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-3/igt@perf_pmu@busy-double-start@ccs1.html * igt@perf_pmu@busy-double-start@vcs1: - shard-dg1: [PASS][226] -> [FAIL][227] ([i915#4349]) +1 similar issue [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg1-18/igt@perf_pmu@busy-double-start@vcs1.html [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-14/igt@perf_pmu@busy-double-start@vcs1.html * igt@perf_pmu@event-wait@rcs0: - shard-dg2: NOTRUN -> [SKIP][228] ([fdo#112283]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@perf_pmu@event-wait@rcs0.html - shard-rkl: NOTRUN -> [SKIP][229] ([fdo#112283]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@perf_pmu@event-wait@rcs0.html - shard-tglu: NOTRUN -> [SKIP][230] ([fdo#112283]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-7/igt@perf_pmu@event-wait@rcs0.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-tglu: NOTRUN -> [SKIP][231] ([i915#8516]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-7/igt@perf_pmu@rc6@other-idle-gt0.html * igt@perf_pmu@render-node-busy-idle@ccs0: - shard-mtlp: [PASS][232] -> [FAIL][233] ([i915#4349]) +4 similar issues [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-7/igt@perf_pmu@render-node-busy-idle@ccs0.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-6/igt@perf_pmu@render-node-busy-idle@ccs0.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#3291] / [i915#3708]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@prime_vgem@basic-fence-read.html - shard-rkl: NOTRUN -> [SKIP][235] ([fdo#109295] / [i915#3291] / [i915#3708]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@fence-flip-hang: - shard-tglu: NOTRUN -> [SKIP][236] ([fdo#109295]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-9/igt@prime_vgem@fence-flip-hang.html * igt@prime_vgem@fence-read-hang: - shard-rkl: NOTRUN -> [SKIP][237] ([fdo#109295] / [i915#3708]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@prime_vgem@fence-read-hang.html * igt@runner@aborted: - shard-snb: NOTRUN -> ([FAIL][238], [FAIL][239]) ([i915#7812] / [i915#8848]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-snb7/igt@runner@aborted.html [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-snb7/igt@runner@aborted.html * igt@v3d/v3d_job_submission@array-job-submission: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#2575]) +6 similar issues [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@v3d/v3d_job_submission@array-job-submission.html - shard-rkl: NOTRUN -> [SKIP][241] ([fdo#109315]) +3 similar issues [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-4/igt@v3d/v3d_job_submission@array-job-submission.html - shard-tglu: NOTRUN -> [SKIP][242] ([fdo#109315] / [i915#2575]) +5 similar issues [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-9/igt@v3d/v3d_job_submission@array-job-submission.html * igt@v3d/v3d_perfmon@create-perfmon-0: - shard-mtlp: NOTRUN -> [SKIP][243] ([i915#2575]) +2 similar issues [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-4/igt@v3d/v3d_perfmon@create-perfmon-0.html * igt@v3d/v3d_submit_cl@multi-and-single-sync: - shard-dg1: NOTRUN -> [SKIP][244] ([i915#2575]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@v3d/v3d_submit_cl@multi-and-single-sync.html * igt@vc4/vc4_lookup_fail@bad-color-write: - shard-dg1: NOTRUN -> [SKIP][245] ([i915#7711]) +2 similar issues [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-17/igt@vc4/vc4_lookup_fail@bad-color-write.html * igt@vc4/vc4_perfmon@get-values-invalid-pointer: - shard-tglu: NOTRUN -> [SKIP][246] ([i915#2575]) +1 similar issue [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@vc4/vc4_perfmon@get-values-invalid-pointer.html * igt@vc4/vc4_purgeable_bo@access-purged-bo-mem: - shard-rkl: NOTRUN -> [SKIP][247] ([i915#7711]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html * igt@vc4/vc4_wait_bo@used-bo-1ns: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#7711]) +4 similar issues [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@vc4/vc4_wait_bo@used-bo-1ns.html #### Possible fixes #### * igt@gem_exec_fair@basic-deadline: - shard-rkl: [FAIL][249] ([i915#2846]) -> [PASS][250] [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-7/igt@gem_exec_fair@basic-deadline.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-rkl: [FAIL][251] ([i915#2842]) -> [PASS][252] [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-6/igt@gem_exec_fair@basic-none-share@rcs0.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-4/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_schedule@preemptive-hang@vcs0: - shard-mtlp: [FAIL][253] ([i915#9051]) -> [PASS][254] [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-8/igt@gem_exec_schedule@preemptive-hang@vcs0.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-1/igt@gem_exec_schedule@preemptive-hang@vcs0.html * igt@i915_module_load@reload: - shard-snb: [ABORT][255] ([i915#4528] / [i915#8695]) -> [PASS][256] [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-snb7/igt@i915_module_load@reload.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-snb1/igt@i915_module_load@reload.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [DMESG-WARN][257] ([i915#7061] / [i915#8617]) -> [PASS][258] [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-6/igt@i915_module_load@reload-with-fault-injection.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pipe_stress@stress-xrgb8888-untiled: - shard-mtlp: [FAIL][259] ([i915#8691]) -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-5/igt@i915_pipe_stress@stress-xrgb8888-untiled.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-3/igt@i915_pipe_stress@stress-xrgb8888-untiled.html * igt@i915_pm_dc@dc6-dpms: - shard-tglu: [FAIL][261] ([i915#3989] / [i915#454]) -> [PASS][262] [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-7/igt@i915_pm_dc@dc6-dpms.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-2/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_dc@dc9-dpms: - shard-tglu: [SKIP][263] ([i915#4281]) -> [PASS][264] [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-5/igt@i915_pm_dc@dc9-dpms.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-10/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-mtlp: [SKIP][265] ([fdo#109289] / [i915#8403]) -> [PASS][266] [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-5/igt@i915_pm_rc6_residency@rc6-accuracy.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-1/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_pm_rpm@i2c: - shard-dg2: [FAIL][267] ([i915#8717]) -> [PASS][268] [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-2/igt@i915_pm_rpm@i2c.html [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@i915_pm_rpm@i2c.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [SKIP][269] ([i915#1397]) -> [PASS][270] +2 similar issues [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@i915_selftest@live@requests: - shard-mtlp: [DMESG-FAIL][271] ([i915#7269]) -> [PASS][272] [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-2/igt@i915_selftest@live@requests.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-8/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@workarounds: - shard-mtlp: [DMESG-FAIL][273] ([i915#6763]) -> [PASS][274] [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-2/igt@i915_selftest@live@workarounds.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-8/igt@i915_selftest@live@workarounds.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-mtlp: [FAIL][275] ([i915#3743]) -> [PASS][276] +1 similar issue [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [FAIL][277] ([i915#2346]) -> [PASS][278] [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-dg2: [FAIL][279] ([i915#4767]) -> [PASS][280] [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-2/igt@kms_fbcon_fbt@fbc-suspend.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a2: - shard-glk: [FAIL][281] ([i915#2122]) -> [PASS][282] [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-glk6/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a2.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-glk4/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a2.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt: - shard-dg2: [FAIL][283] ([i915#6880]) -> [PASS][284] +1 similar issue [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html #### Warnings #### * igt@gem_exec_await@wide-contexts: - shard-dg2: [FAIL][285] ([i915#5892]) -> [TIMEOUT][286] ([i915#5892]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-1/igt@gem_exec_await@wide-contexts.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@gem_exec_await@wide-contexts.html * igt@gem_exec_whisper@basic-contexts-forked-all: - shard-mtlp: [ABORT][287] ([i915#7392] / [i915#8131]) -> [TIMEOUT][288] ([i915#7392] / [i915#8628]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-2/igt@gem_exec_whisper@basic-contexts-forked-all.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-3/igt@gem_exec_whisper@basic-contexts-forked-all.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-mtlp: [SKIP][289] ([fdo#109289] / [i915#8403]) -> [SKIP][290] ([fdo#109289]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-3/igt@i915_pm_rc6_residency@media-rc6-accuracy.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-4/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][291] ([i915#7118]) -> [SKIP][292] ([i915#7118] / [i915#7162]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-3/igt@kms_content_protection@type1.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_content_protection@type1.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-mtlp: [DMESG-FAIL][293] ([i915#2017] / [i915#5954]) -> [FAIL][294] ([i915#2346]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-snb: [DMESG-WARN][295] ([i915#5090] / [i915#8841]) -> [DMESG-WARN][296] ([i915#8841]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-snb5/igt@kms_fbcon_fbt@fbc-suspend.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-snb2/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: [SKIP][297] ([fdo#110189] / [i915#3955]) -> [SKIP][298] ([i915#3955]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: [SKIP][299] ([fdo#109285]) -> [SKIP][300] ([fdo#109285] / [i915#4098]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-6/igt@kms_force_connector_basic@force-load-detect.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_psr@primary_mmap_gtt: - shard-dg1: [SKIP][301] ([i915#1072] / [i915#4078]) -> [SKIP][302] ([i915#1072]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg1-16/igt@kms_psr@primary_mmap_gtt.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-14/igt@kms_psr@primary_mmap_gtt.html * igt@kms_psr@sprite_plane_onoff: - shard-dg1: [SKIP][303] ([i915#1072]) -> [SKIP][304] ([i915#1072] / [i915#4078]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg1-14/igt@kms_psr@sprite_plane_onoff.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-16/igt@kms_psr@sprite_plane_onoff.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [CRASH][305] ([i915#7331]) -> [INCOMPLETE][306] ([i915#5493]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-2/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1339]: https://gitlab.freedesktop.org/drm/intel/issues/1339 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1623]: https://gitlab.freedesktop.org/drm/intel/issues/1623 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#5090]: https://gitlab.freedesktop.org/drm/intel/issues/5090 [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122 [i915#5161]: https://gitlab.freedesktop.org/drm/intel/issues/5161 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5892]: https://gitlab.freedesktop.org/drm/intel/issues/5892 [i915#5954]: https://gitlab.freedesktop.org/drm/intel/issues/5954 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188 [i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6755]: https://gitlab.freedesktop.org/drm/intel/issues/6755 [i915#6763]: https://gitlab.freedesktop.org/drm/intel/issues/6763 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6786]: https://gitlab.freedesktop.org/drm/intel/issues/6786 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7061]: https://gitlab.freedesktop.org/drm/intel/issues/7061 [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7269]: https://gitlab.freedesktop.org/drm/intel/issues/7269 [i915#7331]: https://gitlab.freedesktop.org/drm/intel/issues/7331 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7812]: https://gitlab.freedesktop.org/drm/intel/issues/7812 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8131]: https://gitlab.freedesktop.org/drm/intel/issues/8131 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8346]: https://gitlab.freedesktop.org/drm/intel/issues/8346 [i915#8403]: https://gitlab.freedesktop.org/drm/intel/issues/8403 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588 [i915#8617]: https://gitlab.freedesktop.org/drm/intel/issues/8617 [i915#8628]: https://gitlab.freedesktop.org/drm/intel/issues/8628 [i915#8691]: https://gitlab.freedesktop.org/drm/intel/issues/8691 [i915#8695]: https://gitlab.freedesktop.org/drm/intel/issues/8695 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8717]: https://gitlab.freedesktop.org/drm/intel/issues/8717 [i915#8823]: https://gitlab.freedesktop.org/drm/intel/issues/8823 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8848]: https://gitlab.freedesktop.org/drm/intel/issues/8848 [i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9051]: https://gitlab.freedesktop.org/drm/intel/issues/9051 [i915#9106]: https://gitlab.freedesktop.org/drm/intel/issues/9106 [i915#9107]: https://gitlab.freedesktop.org/drm/intel/issues/9107 [i915#9111]: https://gitlab.freedesktop.org/drm/intel/issues/9111 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7419 -> IGTPW_9530 CI-20190529: 20190529 CI_DRM_13485: 0c8b167528bfd16d6c4e8fb5a0f11421b7e2f349 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9530: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/index.html IGT_7419: 7419 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/index.html [-- Attachment #2: Type: text/html, Size: 96314 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for tests/msm: Add submitoverhead benchmark (rev2) 2023-08-07 16:36 [igt-dev] [PATCH v2] tests/msm: Add submitoverhead benchmark Rob Clark ` (5 preceding siblings ...) 2023-08-11 7:24 ` Patchwork @ 2023-08-11 9:31 ` Patchwork 2023-08-11 15:44 ` [igt-dev] [PATCH v2] tests/msm: Add submitoverhead benchmark Kamil Konieczny 7 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2023-08-11 9:31 UTC (permalink / raw) To: Rob Clark; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 79839 bytes --] == Series Details == Series: tests/msm: Add submitoverhead benchmark (rev2) URL : https://patchwork.freedesktop.org/series/121909/ State : success == Summary == CI Bug Log - changes from IGT_7419_full -> IGTPW_9530_full ==================================================== Summary ------- **WARNING** Minor unknown changes coming with IGTPW_9530_full need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9530_full, please notify your bug team 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_9530/index.html Participating hosts (9 -> 11) ------------------------------ Additional (2): shard-rkl0 shard-tglu0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9530_full: ### IGT changes ### #### Warnings #### * igt@gem_exec_flush@basic-uc-prw-default: - shard-dg2: [SKIP][1] ([i915#3539]) -> [TIMEOUT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-6/igt@gem_exec_flush@basic-uc-prw-default.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@gem_exec_flush@basic-uc-prw-default.html Known issues ------------ Here are the changes found in IGTPW_9530_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-mtlp: NOTRUN -> [SKIP][3] ([i915#8411]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-6/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@drm_fdinfo@busy-check-all@bcs0: - shard-dg1: NOTRUN -> [SKIP][4] ([i915#8414]) +4 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-19/igt@drm_fdinfo@busy-check-all@bcs0.html * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [PASS][5] -> [FAIL][6] ([i915#7742]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all@rcs0.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: - shard-rkl: NOTRUN -> [FAIL][7] ([i915#7742]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html * igt@drm_fdinfo@most-busy-idle-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][8] ([i915#8414]) +9 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html * igt@gem_bad_reloc@negative-reloc-lut: - shard-rkl: NOTRUN -> [SKIP][9] ([i915#3281]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_caching@writes: - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#4873]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@gem_caching@writes.html * igt@gem_ccs@block-copy-compressed: - shard-dg1: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#5325]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@gem_ccs@block-copy-compressed.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [PASS][12] -> [FAIL][13] ([i915#6268]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html - shard-tglu: [PASS][14] -> [FAIL][15] ([i915#6268]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-3/igt@gem_ctx_exec@basic-nohangcheck.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_freq@sysfs@gt0: - shard-dg2: [PASS][16] -> [FAIL][17] ([i915#6786]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-6/igt@gem_ctx_freq@sysfs@gt0.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@gem_ctx_freq@sysfs@gt0.html * igt@gem_ctx_persistence@engines-hostile@vcs0: - shard-mtlp: [PASS][18] -> [FAIL][19] ([i915#2410]) +3 similar issues [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-3/igt@gem_ctx_persistence@engines-hostile@vcs0.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@gem_ctx_persistence@engines-hostile@vcs0.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg1: NOTRUN -> [SKIP][20] ([i915#8555]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_sseu@mmap-args: - shard-dg1: NOTRUN -> [SKIP][21] ([i915#280]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-12/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@hibernate: - shard-dg1: [PASS][22] -> [ABORT][23] ([i915#4391] / [i915#7975] / [i915#8213]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg1-17/igt@gem_eio@hibernate.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-14/igt@gem_eio@hibernate.html * igt@gem_exec_fair@basic-none: - shard-dg1: NOTRUN -> [SKIP][24] ([i915#3539] / [i915#4852]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-14/igt@gem_exec_fair@basic-none.html * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-tglu: NOTRUN -> [FAIL][25] ([i915#2842]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglu: [PASS][26] -> [FAIL][27] ([i915#2842]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-4/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_flush@basic-wb-rw-before-default: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#3539] / [i915#4852]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@gem_exec_flush@basic-wb-rw-before-default.html * igt@gem_exec_reloc@basic-gtt-cpu: - shard-mtlp: NOTRUN -> [SKIP][29] ([i915#3281]) +1 similar issue [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-6/igt@gem_exec_reloc@basic-gtt-cpu.html * igt@gem_exec_reloc@basic-gtt-wc-active: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#3281]) +4 similar issues [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@gem_exec_reloc@basic-gtt-wc-active.html * igt@gem_exec_reloc@basic-write-read-noreloc: - shard-dg1: NOTRUN -> [SKIP][31] ([i915#3281]) +1 similar issue [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-12/igt@gem_exec_reloc@basic-write-read-noreloc.html * igt@gem_exec_schedule@preempt-queue-contexts: - shard-dg1: NOTRUN -> [SKIP][32] ([i915#4812]) +1 similar issue [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-16/igt@gem_exec_schedule@preempt-queue-contexts.html * igt@gem_exec_schedule@semaphore-power: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#4537] / [i915#4812]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_whisper@basic-fds-forked-all: - shard-tglu: [PASS][34] -> [INCOMPLETE][35] ([i915#6755] / [i915#7392]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-4/igt@gem_exec_whisper@basic-fds-forked-all.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-3/igt@gem_exec_whisper@basic-fds-forked-all.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#4860]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#4860]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-rkl: NOTRUN -> [SKIP][38] ([i915#4613]) +1 similar issue [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@gem_lmem_swapping@heavy-verify-random.html - shard-tglu: NOTRUN -> [SKIP][39] ([i915#4613]) +1 similar issue [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-8/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#8289]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@gem_media_fill@media-fill.html * igt@gem_mmap@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#4083]) +2 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-3/igt@gem_mmap@basic-small-bo.html * igt@gem_mmap_gtt@bad-object: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#4077]) +3 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@gem_mmap_gtt@bad-object.html * igt@gem_mmap_gtt@coherency: - shard-rkl: NOTRUN -> [SKIP][43] ([fdo#111656]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@gem_mmap_gtt@coherency.html * igt@gem_mmap_gtt@fault-concurrent: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4077]) +3 similar issues [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-3/igt@gem_mmap_gtt@fault-concurrent.html * igt@gem_mmap_gtt@fault-concurrent-y: - shard-snb: [PASS][45] -> [ABORT][46] ([i915#5161]) +1 similar issue [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-snb5/igt@gem_mmap_gtt@fault-concurrent-y.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-snb6/igt@gem_mmap_gtt@fault-concurrent-y.html * igt@gem_mmap_gtt@medium-copy-xy: - shard-dg1: NOTRUN -> [SKIP][47] ([i915#4077]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@gem_mmap_gtt@medium-copy-xy.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4083]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-1/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#3282]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-8/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pxp@create-regular-context-2: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4270]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-6/igt@gem_pxp@create-regular-context-2.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-tglu: NOTRUN -> [SKIP][51] ([i915#4270]) +1 similar issue [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-3/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#4270]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-16/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_readwrite@beyond-eob: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#3282]) +3 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@gem_readwrite@beyond-eob.html - shard-rkl: NOTRUN -> [SKIP][54] ([i915#3282]) +2 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@gem_readwrite@beyond-eob.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#8428]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-8/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html * igt@gem_softpin@evict-snoop: - shard-dg1: NOTRUN -> [SKIP][56] ([i915#4885]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-16/igt@gem_softpin@evict-snoop.html * igt@gem_userptr_blits@coherency-sync: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#3297]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-1/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-tglu: NOTRUN -> [SKIP][58] ([i915#3323]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-9/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#3297]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-16/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gen7_exec_parse@batch-without-end: - shard-dg2: NOTRUN -> [SKIP][60] ([fdo#109289]) +1 similar issue [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@gen7_exec_parse@batch-without-end.html - shard-rkl: NOTRUN -> [SKIP][61] ([fdo#109289]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@gen7_exec_parse@batch-without-end.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [PASS][62] -> [ABORT][63] ([i915#5566]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-apl1/igt@gen9_exec_parse@allowed-single.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-apl1/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@basic-rejected: - shard-tglu: NOTRUN -> [SKIP][64] ([i915#2527] / [i915#2856]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-6/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@batch-zero-length: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#2856]) +2 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-4/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-start-param: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#2856]) +1 similar issue [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@gen9_exec_parse@bb-start-param.html * igt@i915_hangman@engine-engine-error@vcs0: - shard-mtlp: [PASS][67] -> [FAIL][68] ([i915#7069]) +1 similar issue [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-2/igt@i915_hangman@engine-engine-error@vcs0.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@i915_hangman@engine-engine-error@vcs0.html * igt@i915_pipe_stress@stress-xrgb8888-untiled: - shard-dg2: [PASS][69] -> [TIMEOUT][70] ([i915#9113]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-1/igt@i915_pipe_stress@stress-xrgb8888-untiled.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@i915_pipe_stress@stress-xrgb8888-untiled.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [PASS][71] -> [SKIP][72] ([fdo#109271]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-apl2/igt@i915_pm_dc@dc9-dpms.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-apl3/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: - shard-rkl: [PASS][73] -> [SKIP][74] ([i915#1937]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-7/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-4/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html * igt@i915_pm_rpm@basic-rte: - shard-tglu: [PASS][75] -> [FAIL][76] ([i915#7940]) +2 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-3/igt@i915_pm_rpm@basic-rte.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-2/igt@i915_pm_rpm@basic-rte.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [PASS][77] -> [SKIP][78] ([i915#1397]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-6/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#1397]) +1 similar issue [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@i915_pm_rpm@system-suspend-devices: - shard-dg1: [PASS][80] -> [FAIL][81] ([i915#7940]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg1-17/igt@i915_pm_rpm@system-suspend-devices.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-14/igt@i915_pm_rpm@system-suspend-devices.html * igt@i915_pm_rpm@system-suspend-modeset: - shard-apl: [PASS][82] -> [ABORT][83] ([i915#180]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-apl4/igt@i915_pm_rpm@system-suspend-modeset.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-apl6/igt@i915_pm_rpm@system-suspend-modeset.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg1: NOTRUN -> [SKIP][84] ([i915#6621]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-16/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@reset: - shard-mtlp: NOTRUN -> [FAIL][85] ([i915#8346]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-8/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds-idle-park@gt0: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#8925]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@i915_pm_rps@thresholds-idle-park@gt0.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#6188]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_selftest@live@slpc: - shard-mtlp: [PASS][88] -> [DMESG-WARN][89] ([i915#6367]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-2/igt@i915_selftest@live@slpc.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-8/igt@i915_selftest@live@slpc.html * igt@i915_suspend@fence-restore-untiled: - shard-tglu: [PASS][90] -> [ABORT][91] ([i915#5122]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-8/igt@i915_suspend@fence-restore-untiled.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-4/igt@i915_suspend@fence-restore-untiled.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-1: - shard-apl: [PASS][92] -> [FAIL][93] ([i915#2521]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-apl7/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-1.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-apl6/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-1.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1: - shard-mtlp: [PASS][94] -> [FAIL][95] ([i915#2521]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-6/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4-mc_ccs: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#8502] / [i915#8709]) +11 similar issues [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4-mc_ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc_ccs: - shard-dg1: NOTRUN -> [SKIP][97] ([i915#8502]) +7 similar issues [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc_ccs.html * igt@kms_async_flips@crc@pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][98] ([i915#8247]) +3 similar issues [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-12/igt@kms_async_flips@crc@pipe-b-hdmi-a-3.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#6228]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@kms_async_flips@invalid-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#5286]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html - shard-tglu: NOTRUN -> [SKIP][101] ([fdo#111615] / [i915#5286]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][102] ([i915#4538] / [i915#5286]) +1 similar issue [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][103] ([fdo#111614]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-4/igt@kms_big_fb@linear-16bpp-rotate-90.html - shard-mtlp: NOTRUN -> [SKIP][104] ([fdo#111614]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-3/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][105] ([fdo#111614]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-3/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-mtlp: [PASS][106] -> [FAIL][107] ([i915#3743]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#5190]) +8 similar issues [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-mtlp: NOTRUN -> [SKIP][109] ([fdo#111615]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#4538]) +1 similar issue [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-tglu: NOTRUN -> [SKIP][111] ([fdo#111615]) +1 similar issue [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#4538] / [i915#5190]) +3 similar issues [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html - shard-rkl: NOTRUN -> [SKIP][113] ([fdo#110723]) +1 similar issue [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#3689] / [i915#3886] / [i915#5354]) +6 similar issues [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc: - shard-tglu: NOTRUN -> [SKIP][115] ([i915#3689] / [i915#5354] / [i915#6095]) +1 similar issue [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs: - shard-dg1: NOTRUN -> [SKIP][116] ([i915#5354] / [i915#6095]) +1 similar issue [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-17/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs.html * igt@kms_ccs@pipe-a-missing-ccs-buffer-yf_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#3734] / [i915#5354] / [i915#6095]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@kms_ccs@pipe-a-missing-ccs-buffer-yf_tiled_ccs.html - shard-tglu: NOTRUN -> [SKIP][118] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) +1 similar issue [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-9/igt@kms_ccs@pipe-a-missing-ccs-buffer-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-missing-ccs-buffer-4_tiled_mtl_rc_ccs_cc: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#5354] / [i915#6095]) +1 similar issue [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@kms_ccs@pipe-b-missing-ccs-buffer-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_ccs: - shard-mtlp: NOTRUN -> [SKIP][120] ([i915#6095]) +6 similar issues [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-6/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_ccs.html * igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#5354]) +5 similar issues [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-4/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-18/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_ccs: - shard-dg1: NOTRUN -> [SKIP][123] ([i915#3689] / [i915#5354] / [i915#6095]) +3 similar issues [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-17/igt@kms_ccs@pipe-d-ccs-on-another-bo-y_tiled_ccs.html * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs_cc: - shard-tglu: NOTRUN -> [SKIP][124] ([i915#5354] / [i915#6095]) +6 similar issues [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-4/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#3689] / [i915#5354]) +8 similar issues [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-y_tiled_ccs.html * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#4087]) +3 similar issues [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html * igt@kms_chamelium_color@ctm-limited-range: - shard-dg2: NOTRUN -> [SKIP][127] ([fdo#111827]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-mtlp: NOTRUN -> [SKIP][128] ([i915#7828]) +1 similar issue [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-4/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@kms_chamelium_edid@hdmi-mode-timings: - shard-tglu: NOTRUN -> [SKIP][129] ([i915#7828]) +1 similar issue [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-6/igt@kms_chamelium_edid@hdmi-mode-timings.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#7828]) +4 similar issues [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_chamelium_hpd@dp-hpd-for-each-pipe: - shard-rkl: NOTRUN -> [SKIP][131] ([i915#7828]) +1 similar issue [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@hdmi-hpd-fast: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#7828]) +1 similar issue [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-18/igt@kms_chamelium_hpd@hdmi-hpd-fast.html * igt@kms_content_protection@atomic@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][133] ([i915#7173]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_content_protection@atomic@pipe-a-dp-4.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#3299]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@legacy: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#7118]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@kms_content_protection@legacy.html - shard-rkl: NOTRUN -> [SKIP][136] ([i915#7118]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic: - shard-dg1: NOTRUN -> [SKIP][137] ([i915#7116]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@kms_content_protection@lic.html * igt@kms_content_protection@uevent@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][138] ([i915#1339]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_content_protection@uevent@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#3359]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg1: NOTRUN -> [SKIP][140] ([i915#3359]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-16/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic: - shard-tglu: NOTRUN -> [SKIP][141] ([fdo#109274]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-snb: NOTRUN -> [SKIP][142] ([fdo#109271] / [fdo#111767]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-snb4/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-dg2: NOTRUN -> [SKIP][143] ([fdo#109274] / [i915#5354]) +2 similar issues [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-3/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][144] ([i915#3546]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][145] ([fdo#109274] / [fdo#111767] / [i915#5354]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [PASS][146] -> [FAIL][147] ([i915#2346]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-legacy: - shard-dg2: [PASS][148] -> [TIMEOUT][149] ([i915#9111]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-8/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-legacy.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-legacy.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#4103] / [i915#4213]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-12/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#8588]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@kms_display_modes@mst-extended-mode-negative.html - shard-tglu: NOTRUN -> [SKIP][152] ([i915#8588]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#3555] / [i915#3840]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_flip@2x-flip-vs-modeset: - shard-rkl: NOTRUN -> [SKIP][154] ([fdo#111825]) +2 similar issues [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-dg2: NOTRUN -> [SKIP][155] ([fdo#109274]) +4 similar issues [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#3637]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-7/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-tglu: NOTRUN -> [SKIP][157] ([fdo#109274] / [i915#3637]) +1 similar issue [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#2672]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][159] ([i915#2587] / [i915#2672]) +3 similar issues [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#2672]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#2672]) +2 similar issues [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#2672] / [i915#3555]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-dg2: NOTRUN -> [SKIP][163] ([fdo#109285]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#5274]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff: - shard-dg2: [PASS][165] -> [FAIL][166] ([i915#6880]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite: - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#1825]) +2 similar issues [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][168] ([fdo#109280]) +12 similar issues [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][169] ([fdo#111825] / [i915#1825]) +6 similar issues [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#5354]) +21 similar issues [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-dg2: [PASS][171] -> [FAIL][172] ([fdo#103375]) +4 similar issues [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-suspend.html [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#5460]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#3458]) +7 similar issues [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff: - shard-dg1: NOTRUN -> [SKIP][175] ([fdo#111825]) +7 similar issues [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][176] ([i915#3458]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][177] ([fdo#110189]) +12 similar issues [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#8708]) +11 similar issues [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][179] ([i915#8708]) +1 similar issue [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][180] ([i915#3023]) +3 similar issues [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#3555] / [i915#8228]) +1 similar issue [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@kms_hdr@static-toggle-suspend.html * igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c: - shard-mtlp: NOTRUN -> [SKIP][182] ([fdo#109289]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-2/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-1: - shard-apl: NOTRUN -> [ABORT][183] ([i915#180]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-apl2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-dp-1.html * igt@kms_plane@pixel-format@pipe-b-planes: - shard-mtlp: [PASS][184] -> [FAIL][185] ([i915#1623]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-1/igt@kms_plane@pixel-format@pipe-b-planes.html [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-7/igt@kms_plane@pixel-format@pipe-b-planes.html * igt@kms_plane_multiple@tiling-yf: - shard-dg1: NOTRUN -> [SKIP][186] ([i915#3555]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-12/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#6953]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-tglu: [PASS][188] -> [FAIL][189] ([i915#8292]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-2/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][190] ([i915#8292]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-14/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][191] ([i915#5176]) +11 similar issues [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#5176]) +11 similar issues [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-dp-4.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][193] ([i915#5176]) +27 similar issues [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-19/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][194] ([i915#5235]) +23 similar issues [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][195] ([i915#5235]) +5 similar issues [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#5235]) +15 similar issues [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-hdmi-a-1: - shard-snb: NOTRUN -> [SKIP][197] ([fdo#109271]) +37 similar issues [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-snb1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-hdmi-a-1.html * igt@kms_prime@d3hot: - shard-dg1: NOTRUN -> [SKIP][198] ([i915#6524]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@kms_prime@d3hot.html * igt@kms_properties@plane-properties-atomic: - shard-dg2: [PASS][199] -> [TIMEOUT][200] ([i915#9106]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-3/igt@kms_properties@plane-properties-atomic.html [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@kms_properties@plane-properties-atomic.html * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][201] ([fdo#111068] / [i915#658]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-18/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#658]) +2 similar issues [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-3/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-rkl: NOTRUN -> [SKIP][203] ([fdo#111068] / [i915#658]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@cursor_blt: - shard-rkl: NOTRUN -> [SKIP][204] ([i915#1072]) +1 similar issue [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@kms_psr@cursor_blt.html * igt@kms_psr@psr2_sprite_blt: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#1072]) +2 similar issues [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_psr@psr2_sprite_blt.html * igt@kms_psr@sprite_mmap_cpu: - shard-dg1: NOTRUN -> [SKIP][206] ([i915#1072]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-17/igt@kms_psr@sprite_mmap_cpu.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#5461] / [i915#658]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html - shard-rkl: NOTRUN -> [SKIP][208] ([i915#5461] / [i915#658]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@multiplane-rotation-cropping-top: - shard-rkl: [PASS][209] -> [ABORT][210] ([i915#8875]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-1/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html * igt@kms_rotation_crc@primary-rotation-90: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#4235]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_scaling_modes@scaling-mode-none: - shard-tglu: NOTRUN -> [SKIP][212] ([i915#3555]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-7/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_setmode@basic-clone-single-crtc: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#3555]) +2 similar issues [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][214] ([i915#8823]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-4/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_vblank@invalid: - shard-dg2: NOTRUN -> [TIMEOUT][215] ([i915#9107]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@kms_vblank@invalid.html * igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend: - shard-dg2: NOTRUN -> [FAIL][216] ([fdo#103375]) +2 similar issues [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html * igt@kms_vblank@pipe-d-wait-busy: - shard-rkl: NOTRUN -> [SKIP][217] ([i915#4070] / [i915#533] / [i915#6768]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@kms_vblank@pipe-d-wait-busy.html * igt@kms_writeback@writeback-fb-id: - shard-dg1: NOTRUN -> [SKIP][218] ([i915#2437]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-pixel-formats: - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#2437]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-4/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@global-sseu-config: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#7387]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@perf@global-sseu-config.html * igt@perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#2434]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@perf@mi-rpc.html - shard-tglu: NOTRUN -> [SKIP][222] ([fdo#109289]) +1 similar issue [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-2/igt@perf@mi-rpc.html - shard-mtlp: NOTRUN -> [SKIP][223] ([i915#2434]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@perf@mi-rpc.html * igt@perf_pmu@busy-double-start@ccs1: - shard-dg2: [PASS][224] -> [FAIL][225] ([i915#4349]) +1 similar issue [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-2/igt@perf_pmu@busy-double-start@ccs1.html [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-3/igt@perf_pmu@busy-double-start@ccs1.html * igt@perf_pmu@busy-double-start@vcs1: - shard-dg1: [PASS][226] -> [FAIL][227] ([i915#4349]) +1 similar issue [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg1-18/igt@perf_pmu@busy-double-start@vcs1.html [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-14/igt@perf_pmu@busy-double-start@vcs1.html * igt@perf_pmu@event-wait@rcs0: - shard-dg2: NOTRUN -> [SKIP][228] ([fdo#112283]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@perf_pmu@event-wait@rcs0.html - shard-rkl: NOTRUN -> [SKIP][229] ([fdo#112283]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-2/igt@perf_pmu@event-wait@rcs0.html - shard-tglu: NOTRUN -> [SKIP][230] ([fdo#112283]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-7/igt@perf_pmu@event-wait@rcs0.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-tglu: NOTRUN -> [SKIP][231] ([i915#8516]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-7/igt@perf_pmu@rc6@other-idle-gt0.html * igt@perf_pmu@render-node-busy-idle@ccs0: - shard-mtlp: [PASS][232] -> [FAIL][233] ([i915#4349]) +4 similar issues [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-7/igt@perf_pmu@render-node-busy-idle@ccs0.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-6/igt@perf_pmu@render-node-busy-idle@ccs0.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#3291] / [i915#3708]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@prime_vgem@basic-fence-read.html - shard-rkl: NOTRUN -> [SKIP][235] ([fdo#109295] / [i915#3291] / [i915#3708]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@fence-flip-hang: - shard-tglu: NOTRUN -> [SKIP][236] ([fdo#109295]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-9/igt@prime_vgem@fence-flip-hang.html * igt@prime_vgem@fence-read-hang: - shard-rkl: NOTRUN -> [SKIP][237] ([fdo#109295] / [i915#3708]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@prime_vgem@fence-read-hang.html * igt@runner@aborted: - shard-snb: NOTRUN -> ([FAIL][238], [FAIL][239]) ([i915#7812] / [i915#8848]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-snb7/igt@runner@aborted.html [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-snb7/igt@runner@aborted.html * igt@v3d/v3d_job_submission@array-job-submission: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#2575]) +6 similar issues [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@v3d/v3d_job_submission@array-job-submission.html - shard-rkl: NOTRUN -> [SKIP][241] ([fdo#109315]) +3 similar issues [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-4/igt@v3d/v3d_job_submission@array-job-submission.html - shard-tglu: NOTRUN -> [SKIP][242] ([fdo#109315] / [i915#2575]) +5 similar issues [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-9/igt@v3d/v3d_job_submission@array-job-submission.html * igt@v3d/v3d_perfmon@create-perfmon-0: - shard-mtlp: NOTRUN -> [SKIP][243] ([i915#2575]) +2 similar issues [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-4/igt@v3d/v3d_perfmon@create-perfmon-0.html * igt@v3d/v3d_submit_cl@multi-and-single-sync: - shard-dg1: NOTRUN -> [SKIP][244] ([i915#2575]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-13/igt@v3d/v3d_submit_cl@multi-and-single-sync.html * igt@vc4/vc4_lookup_fail@bad-color-write: - shard-dg1: NOTRUN -> [SKIP][245] ([i915#7711]) +2 similar issues [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-17/igt@vc4/vc4_lookup_fail@bad-color-write.html * igt@vc4/vc4_perfmon@get-values-invalid-pointer: - shard-tglu: NOTRUN -> [SKIP][246] ([i915#2575]) +1 similar issue [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-5/igt@vc4/vc4_perfmon@get-values-invalid-pointer.html * igt@vc4/vc4_purgeable_bo@access-purged-bo-mem: - shard-rkl: NOTRUN -> [SKIP][247] ([i915#7711]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-7/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html * igt@vc4/vc4_wait_bo@used-bo-1ns: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#7711]) +4 similar issues [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@vc4/vc4_wait_bo@used-bo-1ns.html #### Possible fixes #### * igt@gem_exec_fair@basic-deadline: - shard-rkl: [FAIL][249] ([i915#2846]) -> [PASS][250] [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-7/igt@gem_exec_fair@basic-deadline.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-rkl: [FAIL][251] ([i915#2842]) -> [PASS][252] [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-6/igt@gem_exec_fair@basic-none-share@rcs0.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-4/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_schedule@preemptive-hang@vcs0: - shard-mtlp: [FAIL][253] ([i915#9051]) -> [PASS][254] [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-8/igt@gem_exec_schedule@preemptive-hang@vcs0.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-1/igt@gem_exec_schedule@preemptive-hang@vcs0.html * igt@i915_module_load@reload: - shard-snb: [ABORT][255] ([i915#4528] / [i915#8695]) -> [PASS][256] [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-snb7/igt@i915_module_load@reload.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-snb1/igt@i915_module_load@reload.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [DMESG-WARN][257] ([i915#7061] / [i915#8617]) -> [PASS][258] [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-6/igt@i915_module_load@reload-with-fault-injection.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pipe_stress@stress-xrgb8888-untiled: - shard-mtlp: [FAIL][259] ([i915#8691]) -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-5/igt@i915_pipe_stress@stress-xrgb8888-untiled.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-3/igt@i915_pipe_stress@stress-xrgb8888-untiled.html * igt@i915_pm_dc@dc6-dpms: - shard-tglu: [FAIL][261] ([i915#3989] / [i915#454]) -> [PASS][262] [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-7/igt@i915_pm_dc@dc6-dpms.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-2/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_dc@dc9-dpms: - shard-tglu: [SKIP][263] ([i915#4281]) -> [PASS][264] [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-tglu-5/igt@i915_pm_dc@dc9-dpms.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-tglu-10/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-mtlp: [SKIP][265] ([fdo#109289] / [i915#8403]) -> [PASS][266] [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-5/igt@i915_pm_rc6_residency@rc6-accuracy.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-1/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_pm_rpm@i2c: - shard-dg2: [FAIL][267] ([i915#8717]) -> [PASS][268] [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-2/igt@i915_pm_rpm@i2c.html [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-6/igt@i915_pm_rpm@i2c.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [SKIP][269] ([i915#1397]) -> [PASS][270] +2 similar issues [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@i915_selftest@live@requests: - shard-mtlp: [DMESG-FAIL][271] ([i915#7269]) -> [PASS][272] [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-2/igt@i915_selftest@live@requests.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-8/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@workarounds: - shard-mtlp: [DMESG-FAIL][273] ([i915#6763]) -> [PASS][274] [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-2/igt@i915_selftest@live@workarounds.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-8/igt@i915_selftest@live@workarounds.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-mtlp: [FAIL][275] ([i915#3743]) -> [PASS][276] +1 similar issue [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [FAIL][277] ([i915#2346]) -> [PASS][278] [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-dg2: [FAIL][279] ([i915#4767]) -> [PASS][280] [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-2/igt@kms_fbcon_fbt@fbc-suspend.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-8/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a2: - shard-glk: [FAIL][281] ([i915#2122]) -> [PASS][282] [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-glk6/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a2.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-glk4/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a2.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt: - shard-dg2: [FAIL][283] ([i915#6880]) -> [PASS][284] +1 similar issue [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html #### Warnings #### * igt@gem_exec_await@wide-contexts: - shard-dg2: [FAIL][285] ([i915#5892]) -> [TIMEOUT][286] ([i915#5892]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-1/igt@gem_exec_await@wide-contexts.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-1/igt@gem_exec_await@wide-contexts.html * igt@gem_exec_whisper@basic-contexts-forked-all: - shard-mtlp: [ABORT][287] ([i915#7392] / [i915#8131]) -> [TIMEOUT][288] ([i915#7392] / [i915#8628]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-2/igt@gem_exec_whisper@basic-contexts-forked-all.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-3/igt@gem_exec_whisper@basic-contexts-forked-all.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-mtlp: [SKIP][289] ([fdo#109289] / [i915#8403]) -> [SKIP][290] ([fdo#109289]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-3/igt@i915_pm_rc6_residency@media-rc6-accuracy.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-4/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][291] ([i915#7118]) -> [SKIP][292] ([i915#7118] / [i915#7162]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-3/igt@kms_content_protection@type1.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-11/igt@kms_content_protection@type1.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-mtlp: [DMESG-FAIL][293] ([i915#2017] / [i915#5954]) -> [FAIL][294] ([i915#2346]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-mtlp-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-mtlp-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-snb: [DMESG-WARN][295] ([i915#5090] / [i915#8841]) -> [DMESG-WARN][296] ([i915#8841]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-snb5/igt@kms_fbcon_fbt@fbc-suspend.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-snb2/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: [SKIP][297] ([fdo#110189] / [i915#3955]) -> [SKIP][298] ([i915#3955]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: [SKIP][299] ([fdo#109285]) -> [SKIP][300] ([fdo#109285] / [i915#4098]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-rkl-6/igt@kms_force_connector_basic@force-load-detect.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-rkl-1/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_psr@primary_mmap_gtt: - shard-dg1: [SKIP][301] ([i915#1072] / [i915#4078]) -> [SKIP][302] ([i915#1072]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg1-16/igt@kms_psr@primary_mmap_gtt.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-14/igt@kms_psr@primary_mmap_gtt.html * igt@kms_psr@sprite_plane_onoff: - shard-dg1: [SKIP][303] ([i915#1072]) -> [SKIP][304] ([i915#1072] / [i915#4078]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg1-14/igt@kms_psr@sprite_plane_onoff.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg1-16/igt@kms_psr@sprite_plane_onoff.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [CRASH][305] ([i915#7331]) -> [INCOMPLETE][306] ([i915#5493]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7419/shard-dg2-2/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/shard-dg2-10/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1339]: https://gitlab.freedesktop.org/drm/intel/issues/1339 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1623]: https://gitlab.freedesktop.org/drm/intel/issues/1623 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#5090]: https://gitlab.freedesktop.org/drm/intel/issues/5090 [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122 [i915#5161]: https://gitlab.freedesktop.org/drm/intel/issues/5161 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5892]: https://gitlab.freedesktop.org/drm/intel/issues/5892 [i915#5954]: https://gitlab.freedesktop.org/drm/intel/issues/5954 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188 [i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6755]: https://gitlab.freedesktop.org/drm/intel/issues/6755 [i915#6763]: https://gitlab.freedesktop.org/drm/intel/issues/6763 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6786]: https://gitlab.freedesktop.org/drm/intel/issues/6786 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7061]: https://gitlab.freedesktop.org/drm/intel/issues/7061 [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7269]: https://gitlab.freedesktop.org/drm/intel/issues/7269 [i915#7331]: https://gitlab.freedesktop.org/drm/intel/issues/7331 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7812]: https://gitlab.freedesktop.org/drm/intel/issues/7812 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8131]: https://gitlab.freedesktop.org/drm/intel/issues/8131 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8346]: https://gitlab.freedesktop.org/drm/intel/issues/8346 [i915#8403]: https://gitlab.freedesktop.org/drm/intel/issues/8403 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588 [i915#8617]: https://gitlab.freedesktop.org/drm/intel/issues/8617 [i915#8628]: https://gitlab.freedesktop.org/drm/intel/issues/8628 [i915#8691]: https://gitlab.freedesktop.org/drm/intel/issues/8691 [i915#8695]: https://gitlab.freedesktop.org/drm/intel/issues/8695 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8717]: https://gitlab.freedesktop.org/drm/intel/issues/8717 [i915#8823]: https://gitlab.freedesktop.org/drm/intel/issues/8823 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8848]: https://gitlab.freedesktop.org/drm/intel/issues/8848 [i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9051]: https://gitlab.freedesktop.org/drm/intel/issues/9051 [i915#9106]: https://gitlab.freedesktop.org/drm/intel/issues/9106 [i915#9107]: https://gitlab.freedesktop.org/drm/intel/issues/9107 [i915#9111]: https://gitlab.freedesktop.org/drm/intel/issues/9111 [i915#9113]: https://gitlab.freedesktop.org/drm/intel/issues/9113 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7419 -> IGTPW_9530 CI-20190529: 20190529 CI_DRM_13485: 0c8b167528bfd16d6c4e8fb5a0f11421b7e2f349 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9530: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/index.html IGT_7419: 7419 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9530/index.html [-- Attachment #2: Type: text/html, Size: 96348 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [igt-dev] [PATCH v2] tests/msm: Add submitoverhead benchmark 2023-08-07 16:36 [igt-dev] [PATCH v2] tests/msm: Add submitoverhead benchmark Rob Clark ` (6 preceding siblings ...) 2023-08-11 9:31 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork @ 2023-08-11 15:44 ` Kamil Konieczny 7 siblings, 0 replies; 11+ messages in thread From: Kamil Konieczny @ 2023-08-11 15:44 UTC (permalink / raw) To: igt-dev; +Cc: Rob Clark Hi Rob, I missed few nits at last review, see below. On 2023-08-07 at 09:36:57 -0700, Rob Clark wrote: > From: Rob Clark <robdclark@chromium.org> > > Something for profiling CPU overhead of submit ioctl. Not really a > functional test, but it is convenient to re-use the i-g-t infrastructure > for this. > > v2: SPDX license, fix meson.build whitespace > > Signed-off-by: Rob Clark <robdclark@chromium.org> > --- > tests/meson.build | 3 +- > tests/msm/msm_submitoverhead.c | 86 ++++++++++++++++++++++++++++++++++ > 2 files changed, 88 insertions(+), 1 deletion(-) > create mode 100644 tests/msm/msm_submitoverhead.c > > diff --git a/tests/meson.build b/tests/meson.build > index 944a0941f9fd..db427a1a4b6e 100644 > --- a/tests/meson.build > +++ b/tests/meson.build > @@ -302,7 +302,8 @@ msm_progs = [ > 'msm_mapping', > 'msm_recovery', > 'msm_shrink', > - 'msm_submit' > + 'msm_submit', > + 'msm_submitoverhead', > ] > > chamelium_progs = [ > diff --git a/tests/msm/msm_submitoverhead.c b/tests/msm/msm_submitoverhead.c > new file mode 100644 > index 000000000000..7d92dda7c226 > --- /dev/null > +++ b/tests/msm/msm_submitoverhead.c > @@ -0,0 +1,86 @@ > +// SPDX-License-Identifier: MIT > +/* > + * Copyright © 2023 Google, Inc. > + */ > + > +#include "igt.h" > +#include "igt_msm.h" > + > +/* > + * Not as much a test, as a kernel submit overhead benchmark. Generates lots > + * of submit ioctls with various size #s of buffers attached for measuring > + * and profiling kernel submit CPU overhead. > + */ > + > +#define MAX_BOS 1000 > + > +igt_main > +{ > + struct msm_device *dev = NULL; > + struct msm_pipe *pipe = NULL; > + struct msm_bo *bos[MAX_BOS]; > + struct drm_msm_gem_submit_bo bos_table[MAX_BOS]; > + static const int sizes[] = { > + 10, 100, 250, 500, 1000, > + }; > + > + igt_fixture { > + struct drm_msm_gem_submit req; > + > + dev = igt_msm_dev_open(); > + pipe = igt_msm_pipe_open(dev, 0); > + for (int i = 0; i < MAX_BOS; i++) { > + bos[i] = igt_msm_bo_new(dev, 0x1000, MSM_BO_WC); > + bos_table[i] = (struct drm_msm_gem_submit_bo) { > + .handle = bos[i]->handle, > + /* > + * We don't bother testing BO_READ since > + * mesa doesn't use that anymore > + */ > + .flags = MSM_SUBMIT_BO_WRITE, > + }; > + } > + > + /* > + * Prime the pump, so first submit doesn't take the overhead > + * of allocating backing pages: > + */ > + req = (struct drm_msm_gem_submit) { > + .flags = pipe->pipe | MSM_SUBMIT_FENCE_FD_OUT, > + .queueid = pipe->submitqueue_id, > + .nr_bos = ARRAY_SIZE(bos_table), > + .bos = VOID2U64(bos_table), > + }; > + do_ioctl(dev->fd, DRM_IOCTL_MSM_GEM_SUBMIT, &req); > + igt_wait_and_close(req.fence_fd); > + } > + > + for (int i = 0; i < ARRAY_SIZE(sizes); i++) { > + for (int mode = 0; mode < 2; mode++) { > + const char *modestr = mode ? "-no-implicit-sync" : ""; > + const uint32_t modeflags = mode ? MSM_SUBMIT_NO_IMPLICIT : 0; Add newline here. > + igt_subtest_f("submitbench-%u-bos%s", sizes[i], modestr) { > + struct drm_msm_gem_submit req = { > + .flags = pipe->pipe | modeflags, > + .queueid = pipe->submitqueue_id, > + .nr_bos = sizes[i], > + .bos = VOID2U64(bos_table), > + }; > + unsigned iterations = 0; Add newline here, also it is preferable to use "unsigned int". > + igt_for_milliseconds(2000) { > + do_ioctl(dev->fd, DRM_IOCTL_MSM_GEM_SUBMIT, &req); > + iterations++; > + } > + igt_info("%u-bos: %u iterations\n", sizes[i], iterations); > + } > + } > + } > + > + igt_fixture { > + for (int i = 0; i < MAX_BOS; i++) { ------------------------------------------------- ^ > + igt_msm_bo_free(bos[i]); > + } --------------- ^ No need for braces for single statement. Regards, Kamil > + igt_msm_pipe_close(pipe); > + igt_msm_dev_close(dev); > + } > +} > -- > 2.41.0 > ^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2023-08-11 15:45 UTC | newest] Thread overview: 11+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-08-07 16:36 [igt-dev] [PATCH v2] tests/msm: Add submitoverhead benchmark Rob Clark 2023-08-07 18:04 ` [igt-dev] ○ CI.xeBAT: info for tests/msm: Add submitoverhead benchmark (rev2) Patchwork 2023-08-07 18:13 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork 2023-08-07 22:59 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-08-10 19:31 ` Kamil Konieczny 2023-08-11 9:39 ` Yedireswarapu, SaiX Nandan 2023-08-10 19:33 ` [igt-dev] [PATCH v2] tests/msm: Add submitoverhead benchmark Kamil Konieczny 2023-08-11 6:50 ` [igt-dev] ✗ Fi.CI.IGT: failure for tests/msm: Add submitoverhead benchmark (rev2) Patchwork 2023-08-11 7:24 ` Patchwork 2023-08-11 9:31 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 2023-08-11 15:44 ` [igt-dev] [PATCH v2] tests/msm: Add submitoverhead benchmark Kamil Konieczny
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox