* [igt-dev] [PATCH i-g-t 0/1] Simplify tests/meson.build
@ 2023-07-06 8:39 Mauro Carvalho Chehab
2023-07-06 8:39 ` [igt-dev] [PATCH i-g-t 1/1] tests/meson.build: Simplify builds for core and i915 targets Mauro Carvalho Chehab
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Mauro Carvalho Chehab @ 2023-07-06 8:39 UTC (permalink / raw)
To: igt-dev
From: Mauro Carvalho Chehab <mchehab@kernel.org>
Some tests used on core and Intel driver have special requirements,
e. g. extra libraries and/or extra C files.
Right now, they all have their own special executable() target. This
makes the meson.build file messy, and makes harder to add extra
logic inside the foreach loops.
This patch shouldn't have any real impact: it just makes the file
a lot simpler by dropping all those extra build targets. Now, mapping
extra dependencies/sources are done via two dictionaries:
extra_sources = {
'core_hotunplug': [ 'core_hotunplug.c' ],
'dumb_buffer': ['dumb_buffer.c' ],
'testdisplay': [ 'testdisplay_hotplug.c' ],
'kms_color': [ 'kms_color_helper.c' ],
'kms_dsc': [ join_paths ('i915', 'kms_dsc_helper.c') ],
'kms_psr2_sf': [ join_paths ('i915', 'kms_dsc_helper.c') ],
}
extra_dependencies = {
'core_hotunplug': [ lib_igt_i915_perf ],
'drm_fdinfo': [ lib_igt_drm_fdinfo ],
'dumb_buffer': [ libatomic ],
'gem_barrier_race': [ lib_igt_i915_perf ],
'gem_create': [ libatomic ],
'gem_ctx_freq': [ lib_igt_perf ],
'gem_ctx_sseu': [ lib_igt_perf ],
'gem_eio': [ realtime ],
'gem_exec_balancer': [ lib_igt_perf ],
'gem_mmap_offset': [ libatomic ],
'i915_pm_freq_mult': [ lib_igt_perf ],
'i915_pm_rc6_residency': [ lib_igt_perf ],
'perf': [ lib_igt_i915_perf ],
'perf_pmu': [ lib_igt_perf ],
'sw_sync': [ libatomic ],
}
Mauro Carvalho Chehab (1):
tests/meson.build: Simplify builds for core and i915 targets
tests/meson.build | 223 +++++++++++++---------------------------------
1 file changed, 61 insertions(+), 162 deletions(-)
--
2.40.1
^ permalink raw reply [flat|nested] 5+ messages in thread* [igt-dev] [PATCH i-g-t 1/1] tests/meson.build: Simplify builds for core and i915 targets 2023-07-06 8:39 [igt-dev] [PATCH i-g-t 0/1] Simplify tests/meson.build Mauro Carvalho Chehab @ 2023-07-06 8:39 ` Mauro Carvalho Chehab 2023-07-06 10:13 ` [igt-dev] ✓ Fi.CI.BAT: success for Simplify tests/meson.build Patchwork ` (2 subsequent siblings) 3 siblings, 0 replies; 5+ messages in thread From: Mauro Carvalho Chehab @ 2023-07-06 8:39 UTC (permalink / raw) To: igt-dev From: Mauro Carvalho Chehab <mchehab@kernel.org> There are some tests that either require: - extra dependencies - extra source files Right now, they have special executable() targets that are handled outside the normal way. remove those special targets, converting them into simple ones, and using two extra dictionaries to map those extra requirements. This makes the meson.build file a lot simpler, and makes easier to add other rules when creating test lists. Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> --- tests/meson.build | 223 +++++++++++++--------------------------------- 1 file changed, 61 insertions(+), 162 deletions(-) diff --git a/tests/meson.build b/tests/meson.build index ee066b84900b..3116c458d60b 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -3,12 +3,14 @@ test_progs = [ 'core_getclient', 'core_getstats', 'core_getversion', + 'core_hotunplug', 'core_setmaster', 'core_setmaster_vs_auth', 'debugfs_test', 'dmabuf', 'dmabuf_sync_file', 'device_reset', + 'dumb_buffer', 'drm_buddy', 'drm_mm', 'drm_read', @@ -21,6 +23,7 @@ test_progs = [ 'kms_atomic_interruptible', 'kms_atomic_transition', 'kms_bw', + 'kms_color', 'kms_concurrent', 'kms_content_protection', 'kms_cursor_crc', @@ -77,7 +80,9 @@ test_progs = [ 'syncobj_basic', 'syncobj_wait', 'syncobj_timeline', + 'sw_sync', 'template', + 'testdisplay', 'tools_test', 'vgem_basic', 'vgem_slow', @@ -86,16 +91,19 @@ test_progs = [ i915_progs = [ 'api_intel_allocator', 'api_intel_bb', + 'drm_fdinfo', 'gen3_mixed_blits', 'gen3_render_linear_blits', 'gen3_render_mixed_blits', 'gen3_render_tiledx_blits', 'gen3_render_tiledy_blits', 'gem_bad_reloc', + 'gem_barrier_race', 'gem_basic', 'gem_blits', 'gem_busy', 'gem_caching', + 'gem_create', 'gem_ccs', 'gem_close', 'gem_close_race', @@ -105,16 +113,20 @@ i915_progs = [ 'gem_ctx_create', 'gem_ctx_engines', 'gem_ctx_exec', + 'gem_ctx_freq', 'gem_ctx_isolation', 'gem_ctx_param', 'gem_ctx_persistence', 'gem_ctx_shared', + 'gem_ctx_sseu', 'gem_ctx_switch', + 'gem_eio', 'gem_evict_alignment', 'gem_evict_everything', 'gem_exec_alignment', 'gem_exec_async', 'gem_exec_await', + 'gem_exec_balancer', 'gem_exec_basic', 'gem_exec_big', 'gem_exec_capture', @@ -157,6 +169,7 @@ i915_progs = [ 'gem_media_vme', 'gem_mmap', 'gem_mmap_gtt', + 'gem_mmap_offset', 'gem_mmap_wc', 'gem_partial_pwrite_pread', 'gem_pipe_control_store_loop', @@ -200,6 +213,8 @@ i915_progs = [ 'gem_wait', 'gem_watchdog', 'gem_workarounds', + 'perf', + 'perf_pmu', 'i915_fb_tiling', 'i915_getparams_basic', 'i915_pm_freq_api', @@ -209,9 +224,11 @@ i915_progs = [ 'i915_pciid', 'i915_pipe_stress', 'i915_pm_backlight', + 'i915_pm_freq_mult', 'i915_pm_lpsp', 'i915_pm_rpm', 'i915_pm_dc', + 'i915_pm_rc6_residency', 'i915_pm_rps', 'i915_pm_sseu', 'i915_power', @@ -224,6 +241,7 @@ i915_progs = [ 'kms_ccs', 'kms_cdclk', 'kms_draw_crc', + 'kms_dsc', 'kms_fb_coherency', 'kms_fbcon_fbt', 'kms_fence_pin_leak', @@ -234,6 +252,7 @@ i915_progs = [ 'kms_mmap_write_crc', 'kms_pipe_b_c_ivb', 'kms_psr', + 'kms_psr2_sf', 'kms_psr2_su', 'kms_psr_stress_test', 'kms_pwrite_crc', @@ -301,12 +320,41 @@ if libdrm_nouveau.found() test_deps += libdrm_nouveau endif +# Extra sources used on core and Intel drivers +extra_sources = { + 'core_hotunplug': [ 'core_hotunplug.c' ], + 'dumb_buffer': ['dumb_buffer.c' ], + 'testdisplay': [ 'testdisplay_hotplug.c' ], + 'kms_color': [ 'kms_color_helper.c' ], + 'kms_dsc': [ join_paths ('i915', 'kms_dsc_helper.c') ], + 'kms_psr2_sf': [ join_paths ('i915', 'kms_dsc_helper.c') ], +} + +# Extra dependencies used on core and Intel drivers +extra_dependencies = { + 'core_hotunplug': [ lib_igt_i915_perf ], + 'drm_fdinfo': [ lib_igt_drm_fdinfo ], + 'dumb_buffer': [ libatomic ], + 'gem_barrier_race': [ lib_igt_i915_perf ], + 'gem_create': [ libatomic ], + 'gem_ctx_freq': [ lib_igt_perf ], + 'gem_ctx_sseu': [ lib_igt_perf ], + 'gem_eio': [ realtime ], + 'gem_exec_balancer': [ lib_igt_perf ], + 'gem_mmap_offset': [ libatomic ], + 'i915_pm_freq_mult': [ lib_igt_perf ], + 'i915_pm_rc6_residency': [ lib_igt_perf ], + 'perf': [ lib_igt_i915_perf ], + 'perf_pmu': [ lib_igt_perf ], + 'sw_sync': [ libatomic ], +} + test_executables = [] test_list = [] foreach prog : test_progs - test_executables += executable(prog, prog + '.c', - dependencies : test_deps, + test_executables += executable(prog, [prog + '.c'] + extra_sources.get(prog, []), + dependencies : test_deps + extra_dependencies.get(prog, []), install_dir : libexecdir, install_rpath : libexecdir_rpathdir, install : true) @@ -315,8 +363,8 @@ endforeach foreach prog : i915_progs test_executables += executable(prog, - join_paths('i915', prog + '.c'), - dependencies : test_deps, + [join_paths('i915', prog + '.c')] + extra_sources.get(prog, []), + dependencies : test_deps + extra_dependencies.get(prog, []), install_dir : libexecdir, install_rpath : libexecdir_rpathdir, install : true) @@ -326,8 +374,8 @@ endforeach if build_xe foreach prog : xe_progs test_executables += executable(prog, - join_paths('xe', prog + '.c'), - dependencies : test_deps, + [join_paths('xe', prog + '.c')] + extra_sources.get(prog, []), + dependencies : test_deps + extra_dependencies.get(prog, []), install_dir : libexecdir, install_rpath : libexecdir_rpathdir, install : true) @@ -357,165 +405,16 @@ if chamelium.found() test_list += prog endforeach test_deps += chamelium -endif - -test_executables += executable('drm_fdinfo', - join_paths('i915', 'drm_fdinfo.c'), - dependencies : test_deps + [ lib_igt_drm_fdinfo ], - install_dir : libexecdir, - install_rpath : libexecdir_rpathdir, - install : true) -test_list += 'drm_fdinfo' - -test_executables += executable('dumb_buffer', 'dumb_buffer.c', - dependencies : test_deps + [ libatomic ], - install_dir : libexecdir, - install_rpath : libexecdir_rpathdir, - install : true) -test_list += 'dumb_buffer' - -test_executables += executable('gem_create', - join_paths('i915', 'gem_create.c'), - dependencies : test_deps + [ libatomic ], - install_dir : libexecdir, - install_rpath : libexecdir_rpathdir, - install : true) -test_list += 'gem_create' - -test_executables += executable('gem_ctx_freq', - join_paths('i915', 'gem_ctx_freq.c'), - dependencies : test_deps + [ lib_igt_perf ], - install_dir : libexecdir, - install_rpath : libexecdir_rpathdir, - install : true) -test_list += 'gem_ctx_freq' - -test_executables += executable('gem_ctx_sseu', - join_paths('i915', 'gem_ctx_sseu.c'), - dependencies : test_deps + [ lib_igt_perf ], - install_dir : libexecdir, - install_rpath : libexecdir_rpathdir, - install : true) -test_list += 'gem_ctx_sseu' - -test_executables += executable('gem_eio', - join_paths('i915', 'gem_eio.c'), - dependencies : test_deps + [ realtime ], - install_dir : libexecdir, - install_rpath : libexecdir_rpathdir, - install : true) -test_list += 'gem_eio' - -test_executables += executable('gem_exec_balancer', 'i915/gem_exec_balancer.c', - dependencies : test_deps + [ lib_igt_perf ], - install_dir : libexecdir, - install_rpath : libexecdir_rpathdir, - install : true) -test_list += 'gem_exec_balancer' - -test_executables += executable('gem_mmap_offset', - join_paths('i915', 'gem_mmap_offset.c'), - dependencies : test_deps + [ libatomic ], - install_dir : libexecdir, - install_rpath : libexecdir_rpathdir, - install : true) -test_list += 'gem_mmap_offset' - -test_executables += executable('i915_pm_freq_mult', - join_paths('i915', 'i915_pm_freq_mult.c'), - dependencies : test_deps + [ lib_igt_perf ], - install_dir : libexecdir, - install_rpath : libexecdir_rpathdir, - install : true) -test_list += 'i915_pm_freq_mult' -test_executables += executable('i915_pm_rc6_residency', - join_paths('i915', 'i915_pm_rc6_residency.c'), - dependencies : test_deps + [ lib_igt_perf ], - install_dir : libexecdir, - install_rpath : libexecdir_rpathdir, - install : true) -test_list += 'i915_pm_rc6_residency' - -test_executables += executable('gem_barrier_race', - join_paths('i915', 'gem_barrier_race.c'), - dependencies : test_deps + [ lib_igt_i915_perf ], - install_dir : libexecdir, - install_rpath : libexecdir_rpathdir, - install : true) -test_list += 'gem_barrier_race' - -test_executables += executable('perf_pmu', - join_paths('i915', 'perf_pmu.c'), - dependencies : test_deps + [ lib_igt_perf ], - install_dir : libexecdir, - install_rpath : libexecdir_rpathdir, - install : true) -test_list += 'perf_pmu' - -test_executables += executable('perf', - join_paths('i915', 'perf.c'), - dependencies : test_deps + [ lib_igt_i915_perf ], - install_dir : libexecdir, - install_rpath : libexecdir_rpathdir, - install : true) -test_list += 'perf' - -test_executables += executable('core_hotunplug', 'core_hotunplug.c', - dependencies : test_deps + [ lib_igt_i915_perf ], - install_dir : libexecdir, - install_rpath : libexecdir_rpathdir, - install : true) -test_list += 'core_hotunplug' - -executable('testdisplay', ['testdisplay.c', 'testdisplay_hotplug.c'], - dependencies : test_deps, - install_dir : libexecdir, - install_rpath : libexecdir_rpathdir, - install : true) -test_list += 'testdisplay' - -test_executables += executable('kms_color', - [ 'kms_color.c', 'kms_color_helper.c' ], - dependencies : test_deps, - install_dir : libexecdir, - install_rpath : libexecdir_rpathdir, - install : true) -test_list += 'kms_color' - -test_executables += executable('kms_dsc', - [ join_paths('i915', 'kms_dsc.c'), join_paths ('i915', 'kms_dsc_helper.c')], - dependencies : test_deps, - install_dir : libexecdir, - install_rpath : libexecdir_rpathdir, - install : true) -test_list += 'kms_dsc' - -test_executables += executable('kms_psr2_sf', - [ join_paths('i915', 'kms_psr2_sf.c'), join_paths ('i915', 'kms_dsc_helper.c')], - dependencies : test_deps, - install_dir : libexecdir, - install_rpath : libexecdir_rpathdir, - install : true) -test_list += 'kms_psr2_sf' - -if chamelium.found() - test_executables += executable('kms_chamelium_color', - [ 'chamelium/kms_chamelium_color.c', 'kms_color_helper.c' ], - dependencies : test_deps + [ chamelium ], - install_dir : libexecdir, - install_rpath : libexecdir_rpathdir, - install : true) - test_list += 'kms_chamelium_color' + test_executables += executable('kms_chamelium_color', + [ 'chamelium/kms_chamelium_color.c', 'kms_color_helper.c' ], + dependencies : test_deps + [ chamelium ], + install_dir : libexecdir, + install_rpath : libexecdir_rpathdir, + install : true) + test_list += 'kms_chamelium_color' endif -test_executables += executable('sw_sync', 'sw_sync.c', - dependencies : test_deps + [ libatomic ], - install_dir : libexecdir, - install_rpath : libexecdir_rpathdir, - install : true) -test_list += 'sw_sync' - subdir('amdgpu') subdir('v3d') -- 2.40.1 ^ permalink raw reply related [flat|nested] 5+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Simplify tests/meson.build 2023-07-06 8:39 [igt-dev] [PATCH i-g-t 0/1] Simplify tests/meson.build Mauro Carvalho Chehab 2023-07-06 8:39 ` [igt-dev] [PATCH i-g-t 1/1] tests/meson.build: Simplify builds for core and i915 targets Mauro Carvalho Chehab @ 2023-07-06 10:13 ` Patchwork 2023-07-06 10:39 ` [igt-dev] ○ CI.xeBAT: info " Patchwork 2023-07-06 13:06 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2023-07-06 10:13 UTC (permalink / raw) To: Mauro Carvalho Chehab; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 7283 bytes --] == Series Details == Series: Simplify tests/meson.build URL : https://patchwork.freedesktop.org/series/120273/ State : success == Summary == CI Bug Log - changes from CI_DRM_13348 -> IGTPW_9351 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/index.html Participating hosts (39 -> 40) ------------------------------ Additional (2): fi-kbl-soraka fi-pnv-d510 Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_9351 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_huc_copy@huc-copy: - fi-kbl-soraka: NOTRUN -> [SKIP][1] ([fdo#109271] / [i915#2190]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-kbl-soraka: NOTRUN -> [SKIP][2] ([fdo#109271] / [i915#4613]) +3 similar issues [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html * igt@i915_selftest@live@gt_pm: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][3] ([i915#1886] / [i915#7913]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html * igt@i915_selftest@live@migrate: - bat-dg2-11: [PASS][4] -> [DMESG-WARN][5] ([i915#7699]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/bat-dg2-11/igt@i915_selftest@live@migrate.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/bat-dg2-11/igt@i915_selftest@live@migrate.html * igt@i915_selftest@live@mman: - bat-rpls-1: [PASS][6] -> [TIMEOUT][7] ([i915#6794] / [i915#7392]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/bat-rpls-1/igt@i915_selftest@live@mman.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/bat-rpls-1/igt@i915_selftest@live@mman.html * igt@i915_selftest@live@requests: - bat-mtlp-6: [PASS][8] -> [ABORT][9] ([i915#7982]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/bat-mtlp-6/igt@i915_selftest@live@requests.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/bat-mtlp-6/igt@i915_selftest@live@requests.html * igt@i915_suspend@basic-s2idle-without-i915: - bat-rpls-1: [PASS][10] -> [WARN][11] ([i915#8747]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/bat-rpls-1/igt@i915_suspend@basic-s2idle-without-i915.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/bat-rpls-1/igt@i915_suspend@basic-s2idle-without-i915.html * igt@kms_chamelium_frames@hdmi-crc-fast: - fi-kbl-soraka: NOTRUN -> [SKIP][12] ([fdo#109271]) +15 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/fi-kbl-soraka/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_psr@primary_page_flip: - fi-pnv-d510: NOTRUN -> [SKIP][13] ([fdo#109271]) +38 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/fi-pnv-d510/igt@kms_psr@primary_page_flip.html #### Possible fixes #### * igt@i915_selftest@live@gt_heartbeat: - fi-apl-guc: [DMESG-FAIL][14] ([i915#5334]) -> [PASS][15] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@gt_mocs: - bat-rpls-2: [DMESG-FAIL][16] ([i915#7059]) -> [PASS][17] [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/bat-rpls-2/igt@i915_selftest@live@gt_mocs.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/bat-rpls-2/igt@i915_selftest@live@gt_mocs.html * igt@i915_selftest@live@gt_pm: - bat-rpls-2: [DMESG-FAIL][18] ([i915#4258] / [i915#7913]) -> [PASS][19] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/bat-rpls-2/igt@i915_selftest@live@gt_pm.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/bat-rpls-2/igt@i915_selftest@live@gt_pm.html * igt@i915_selftest@live@migrate: - bat-atsm-1: [DMESG-FAIL][20] ([i915#7699] / [i915#7913]) -> [PASS][21] [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/bat-atsm-1/igt@i915_selftest@live@migrate.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/bat-atsm-1/igt@i915_selftest@live@migrate.html #### Warnings #### * igt@i915_module_load@load: - bat-adlp-11: [DMESG-WARN][22] ([i915#4423]) -> [ABORT][23] ([i915#4423]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/bat-adlp-11/igt@i915_module_load@load.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/bat-adlp-11/igt@i915_module_load@load.html * igt@kms_psr@cursor_plane_move: - bat-rplp-1: [ABORT][24] ([i915#8434]) -> [ABORT][25] ([i915#8434] / [i915#8668]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/bat-rplp-1/igt@kms_psr@cursor_plane_move.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/bat-rplp-1/igt@kms_psr@cursor_plane_move.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [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#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7982]: https://gitlab.freedesktop.org/drm/intel/issues/7982 [i915#8434]: https://gitlab.freedesktop.org/drm/intel/issues/8434 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8747]: https://gitlab.freedesktop.org/drm/intel/issues/8747 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7373 -> IGTPW_9351 CI-20190529: 20190529 CI_DRM_13348: 23b57f4b8f17bc34c0c9b0420409fe2539f0ac01 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9351: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/index.html IGT_7373: 654347ccaa55cbfcd10b978cc6662ef6db25224d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- -igt@xe_ccs@block-copy-compressed -igt@xe_ccs@block-copy-uncompressed -igt@xe_ccs@block-multicopy-compressed -igt@xe_ccs@block-multicopy-inplace -igt@xe_ccs@ctrl-surf-copy -igt@xe_ccs@ctrl-surf-copy-new-ctx -igt@xe_ccs@suspend-resume -igt@xe_exercise_blt@fast-copy -igt@xe_exercise_blt@fast-copy-emit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/index.html [-- Attachment #2: Type: text/html, Size: 8832 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ○ CI.xeBAT: info for Simplify tests/meson.build 2023-07-06 8:39 [igt-dev] [PATCH i-g-t 0/1] Simplify tests/meson.build Mauro Carvalho Chehab 2023-07-06 8:39 ` [igt-dev] [PATCH i-g-t 1/1] tests/meson.build: Simplify builds for core and i915 targets Mauro Carvalho Chehab 2023-07-06 10:13 ` [igt-dev] ✓ Fi.CI.BAT: success for Simplify tests/meson.build Patchwork @ 2023-07-06 10:39 ` Patchwork 2023-07-06 13:06 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2023-07-06 10:39 UTC (permalink / raw) To: Mauro Carvalho Chehab; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 332 bytes --] == Series Details == Series: Simplify tests/meson.build URL : https://patchwork.freedesktop.org/series/120273/ State : info == Summary == Participating hosts: "bat-pvc-2n""bat-atsm-2n""bat-dg2-oem2n""bat-adlp-7n"Missing hosts results[0]: Results: [IGTPW_9351](https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9351/index.html) [-- Attachment #2: Type: text/html, Size: 824 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for Simplify tests/meson.build 2023-07-06 8:39 [igt-dev] [PATCH i-g-t 0/1] Simplify tests/meson.build Mauro Carvalho Chehab ` (2 preceding siblings ...) 2023-07-06 10:39 ` [igt-dev] ○ CI.xeBAT: info " Patchwork @ 2023-07-06 13:06 ` Patchwork 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2023-07-06 13:06 UTC (permalink / raw) To: Mauro Carvalho Chehab; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 67402 bytes --] == Series Details == Series: Simplify tests/meson.build URL : https://patchwork.freedesktop.org/series/120273/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13348_full -> IGTPW_9351_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9351_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9351_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_9351/index.html Participating hosts (10 -> 9) ------------------------------ Missing (1): pig-kbl-iris Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9351_full: ### IGT changes ### #### Possible regressions #### * igt@kms_cursor_crc@cursor-random-128x42@pipe-d-edp-1: - shard-mtlp: [PASS][1] -> [FAIL][2] +1 similar issue [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-mtlp-7/igt@kms_cursor_crc@cursor-random-128x42@pipe-d-edp-1.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-5/igt@kms_cursor_crc@cursor-random-128x42@pipe-d-edp-1.html New tests --------- New tests have been introduced between CI_DRM_13348_full and IGTPW_9351_full: ### New IGT tests (1) ### * igt@kms_plane_scaling@planes-upscale-20x20@pipe-c-dp-2: - Statuses : 1 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9351_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-tglu: NOTRUN -> [SKIP][3] ([i915#6230]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-tglu-8/igt@api_intel_bb@crc32.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][4] ([i915#8411]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-2/igt@api_intel_bb@object-reloc-purge-cache.html * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: - shard-rkl: NOTRUN -> [FAIL][5] ([i915#7742]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/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][6] ([i915#8414]) +19 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-11/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html * igt@drm_fdinfo@virtual-busy-idle-all: - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#8414]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-8/igt@drm_fdinfo@virtual-busy-idle-all.html * igt@feature_discovery@display-3x: - shard-tglu: NOTRUN -> [SKIP][8] ([i915#1839]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-tglu-10/igt@feature_discovery@display-3x.html * igt@gem_ctx_persistence@heartbeat-close: - shard-dg2: NOTRUN -> [SKIP][9] ([i915#8555]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-5/igt@gem_ctx_persistence@heartbeat-close.html * igt@gem_ctx_persistence@legacy-engines-hang: - shard-snb: NOTRUN -> [SKIP][10] ([fdo#109271] / [i915#1099]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-snb2/igt@gem_ctx_persistence@legacy-engines-hang.html * igt@gem_ctx_persistence@legacy-engines-hostile@vebox: - shard-mtlp: NOTRUN -> [FAIL][11] ([i915#2410]) +2 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-3/igt@gem_ctx_persistence@legacy-engines-hostile@vebox.html * igt@gem_ctx_persistence@saturated-hostile@vecs0: - shard-mtlp: [PASS][12] -> [FAIL][13] ([i915#7816]) +2 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-mtlp-1/igt@gem_ctx_persistence@saturated-hostile@vecs0.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-5/igt@gem_ctx_persistence@saturated-hostile@vecs0.html * igt@gem_ctx_sseu@engines: - shard-dg2: NOTRUN -> [SKIP][14] ([i915#280]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-1/igt@gem_ctx_sseu@engines.html * igt@gem_eio@kms: - shard-apl: [PASS][15] -> [FAIL][16] ([i915#8764]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-apl7/igt@gem_eio@kms.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-apl4/igt@gem_eio@kms.html * igt@gem_exec_await@wide-contexts: - shard-dg2: [PASS][17] -> [FAIL][18] ([i915#5892]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-dg2-8/igt@gem_exec_await@wide-contexts.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-5/igt@gem_exec_await@wide-contexts.html * igt@gem_exec_balancer@parallel-contexts: - shard-rkl: NOTRUN -> [SKIP][19] ([i915#4525]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-rkl-7/igt@gem_exec_balancer@parallel-contexts.html * igt@gem_exec_fair@basic-none-share: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#3539] / [i915#4852]) +1 similar issue [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-12/igt@gem_exec_fair@basic-none-share.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [PASS][21] -> [FAIL][22] ([i915#2842]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-apl6/igt@gem_exec_fair@basic-none-solo@rcs0.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-apl4/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][23] -> [FAIL][24] ([i915#2842]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fence@submit67: - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#4812]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-2/igt@gem_exec_fence@submit67.html * igt@gem_exec_reloc@basic-write-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][26] ([i915#3281]) +1 similar issue [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-7/igt@gem_exec_reloc@basic-write-cpu-noreloc.html * igt@gem_exec_reloc@basic-write-gtt: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#3281]) +2 similar issues [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-2/igt@gem_exec_reloc@basic-write-gtt.html * igt@gem_exec_reloc@basic-write-read: - shard-rkl: NOTRUN -> [SKIP][28] ([i915#3281]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-rkl-7/igt@gem_exec_reloc@basic-write-read.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#4537] / [i915#4812]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-1/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_whisper@basic-normal: - shard-mtlp: [PASS][30] -> [FAIL][31] ([i915#6363]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-mtlp-3/igt@gem_exec_whisper@basic-normal.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-1/igt@gem_exec_whisper@basic-normal.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#4860]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-6/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_lmem_swapping@parallel-multi: - shard-rkl: NOTRUN -> [SKIP][33] ([i915#4613]) +1 similar issue [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-rkl-6/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@parallel-random: - shard-mtlp: NOTRUN -> [SKIP][34] ([i915#4613]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-1/igt@gem_lmem_swapping@parallel-random.html * igt@gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#8289]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-6/igt@gem_media_fill@media-fill.html * igt@gem_media_vme: - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#284]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-1/igt@gem_media_vme.html * igt@gem_mmap_gtt@medium-copy-xy: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#4077]) +7 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-7/igt@gem_mmap_gtt@medium-copy-xy.html * igt@gem_mmap_wc@write-gtt-read-wc: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#4083]) +4 similar issues [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-3/igt@gem_mmap_wc@write-gtt-read-wc.html * igt@gem_partial_pwrite_pread@write-display: - shard-mtlp: NOTRUN -> [SKIP][39] ([i915#3282]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-6/igt@gem_partial_pwrite_pread@write-display.html * igt@gem_partial_pwrite_pread@write-uncached: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#3282]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-3/igt@gem_partial_pwrite_pread@write-uncached.html - shard-rkl: NOTRUN -> [SKIP][41] ([i915#3282]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-rkl-2/igt@gem_partial_pwrite_pread@write-uncached.html * igt@gem_pread@exhaustion: - shard-snb: NOTRUN -> [WARN][42] ([i915#2658]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-snb5/igt@gem_pread@exhaustion.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#4270]) +1 similar issue [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-12/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-rkl: NOTRUN -> [SKIP][44] ([i915#4270]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-rkl-2/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_render_copy@yf-tiled-ccs-to-y-tiled: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#5190]) +7 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-2/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html * igt@gem_set_tiling_vs_pwrite: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#4079]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-5/igt@gem_set_tiling_vs_pwrite.html * igt@gem_softpin@evict-snoop: - shard-rkl: NOTRUN -> [SKIP][47] ([fdo#109312]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-rkl-1/igt@gem_softpin@evict-snoop.html - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4885]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-8/igt@gem_softpin@evict-snoop.html * igt@gem_userptr_blits@unsync-overlap: - shard-tglu: NOTRUN -> [SKIP][49] ([i915#3297]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-tglu-2/igt@gem_userptr_blits@unsync-overlap.html * igt@gen3_render_tiledy_blits: - shard-dg2: NOTRUN -> [SKIP][50] ([fdo#109289]) +2 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-12/igt@gen3_render_tiledy_blits.html * igt@gen7_exec_parse@basic-offset: - shard-mtlp: NOTRUN -> [SKIP][51] ([fdo#109289]) +1 similar issue [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-8/igt@gen7_exec_parse@basic-offset.html * igt@gen9_exec_parse@bb-start-out: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#2856]) +1 similar issue [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-11/igt@gen9_exec_parse@bb-start-out.html - shard-rkl: NOTRUN -> [SKIP][53] ([i915#2527]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-rkl-6/igt@gen9_exec_parse@bb-start-out.html * igt@i915_hangman@engine-engine-error@vcs0: - shard-mtlp: [PASS][54] -> [FAIL][55] ([i915#7069]) +2 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-mtlp-4/igt@i915_hangman@engine-engine-error@vcs0.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-3/igt@i915_hangman@engine-engine-error@vcs0.html * igt@i915_module_load@load: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#6227]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-6/igt@i915_module_load@load.html - shard-rkl: NOTRUN -> [SKIP][57] ([i915#6227]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-rkl-4/igt@i915_module_load@load.html * igt@i915_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#5978]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-2/igt@i915_pm_dc@dc6-dpms.html - shard-rkl: NOTRUN -> [SKIP][59] ([i915#3361]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-rkl-2/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#1937]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-1/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#1397]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-3/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg2: [PASS][62] -> [SKIP][63] ([i915#1397]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-dg2-8/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-12/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@i915_pm_rpm@modeset-pc8-residency-stress: - shard-mtlp: NOTRUN -> [SKIP][64] ([fdo#109293]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-1/igt@i915_pm_rpm@modeset-pc8-residency-stress.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#6188]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-2/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_selftest@live@workarounds: - shard-mtlp: NOTRUN -> [DMESG-FAIL][66] ([i915#6763]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-2/igt@i915_selftest@live@workarounds.html * igt@i915_selftest@perf@request: - shard-mtlp: [PASS][67] -> [DMESG-FAIL][68] ([i915#8573]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-mtlp-2/igt@i915_selftest@perf@request.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-7/igt@i915_selftest@perf@request.html * igt@i915_suspend@basic-s3-without-i915: - shard-rkl: [PASS][69] -> [FAIL][70] ([fdo#103375]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-rkl-7/igt@i915_suspend@basic-s3-without-i915.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-rkl-6/igt@i915_suspend@basic-s3-without-i915.html * igt@i915_suspend@debugfs-reader: - shard-dg2: [PASS][71] -> [FAIL][72] ([fdo#103375] / [i915#6121]) +1 similar issue [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-dg2-7/igt@i915_suspend@debugfs-reader.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-5/igt@i915_suspend@debugfs-reader.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#4212]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-1/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1: - shard-mtlp: [PASS][74] -> [FAIL][75] ([i915#2521]) +1 similar issue [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-mtlp-8/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-8/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][76] ([i915#5286]) +3 similar issues [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-rkl-7/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][77] ([fdo#111615] / [i915#5286]) +1 similar issue [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-tglu-6/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-mtlp: [PASS][78] -> [FAIL][79] ([i915#3743]) +2 similar issues [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-6/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-0-hflip: - shard-mtlp: [PASS][80] -> [FAIL][81] ([i915#5138]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][82] ([fdo#111614]) +1 similar issue [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-6/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][83] ([fdo#111614]) +3 similar issues [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-5/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][84] ([fdo#111614] / [i915#3638]) +1 similar issue [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-rkl-1/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#4538] / [i915#5190]) +5 similar issues [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-11/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-mtlp: NOTRUN -> [SKIP][86] ([fdo#111615]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][87] ([fdo#110723]) +3 similar issues [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-rkl-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][88] ([i915#3689] / [i915#5354] / [i915#6095]) +4 similar issues [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-tglu-4/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_ccs.html * igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][89] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) +1 similar issue [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-tglu-7/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_mtl_rc_ccs: - shard-rkl: NOTRUN -> [SKIP][90] ([i915#5354] / [i915#6095]) +2 similar issues [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-rkl-4/igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_mtl_rc_ccs.html * igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][91] ([i915#3734] / [i915#5354] / [i915#6095]) +2 similar issues [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-rkl-7/igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#3886] / [i915#6095]) +1 similar issue [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-6/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-bad-rotation-90-yf_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][93] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) +1 similar issue [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-tglu-8/igt@kms_ccs@pipe-c-bad-rotation-90-yf_tiled_ccs.html * igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_rc_ccs_cc: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#3689] / [i915#3886] / [i915#5354]) +2 similar issues [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-5/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_rc_ccs_cc: - shard-rkl: NOTRUN -> [SKIP][95] ([i915#5354]) +9 similar issues [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-rkl-2/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_mtl_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][96] ([i915#5354] / [i915#6095]) +1 similar issue [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-tglu-3/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#3689] / [i915#5354]) +11 similar issues [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-1/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][98] ([i915#6095]) +7 similar issues [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-7/igt@kms_ccs@pipe-d-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#4087]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-7/igt@kms_cdclk@mode-transition-all-outputs.html - shard-rkl: NOTRUN -> [SKIP][100] ([i915#3742]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-rkl-1/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_color@ctm-limited-range: - shard-dg2: NOTRUN -> [SKIP][101] ([fdo#111827]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-5/igt@kms_chamelium_color@ctm-limited-range.html - shard-rkl: NOTRUN -> [SKIP][102] ([fdo#111827]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-rkl-7/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-mtlp: NOTRUN -> [SKIP][103] ([i915#7828]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-6/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#7828]) +1 similar issue [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-6/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-tglu: NOTRUN -> [SKIP][105] ([i915#7828]) +1 similar issue [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-tglu-7/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_content_protection@lic: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#7118]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-2/igt@kms_content_protection@lic.html - shard-rkl: NOTRUN -> [SKIP][107] ([i915#7118]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-rkl-2/igt@kms_content_protection@lic.html * igt@kms_content_protection@mei_interface: - shard-tglu: NOTRUN -> [SKIP][108] ([i915#6944] / [i915#7116] / [i915#7118]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-tglu-9/igt@kms_content_protection@mei_interface.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#3555] / [i915#7118]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-2/igt@kms_content_protection@srm.html - shard-mtlp: NOTRUN -> [SKIP][110] ([i915#3555] / [i915#6944]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-1/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent@pipe-a-dp-2: - shard-dg2: NOTRUN -> [FAIL][111] ([i915#1339]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-12/igt@kms_content_protection@uevent@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-tglu: NOTRUN -> [SKIP][112] ([i915#3555]) +2 similar issues [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-tglu-5/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [PASS][113] -> [FAIL][114] ([i915#2346]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html - shard-apl: [PASS][115] -> [FAIL][116] ([i915#2346]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#4103] / [i915#4213]) +1 similar issue [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-rkl: NOTRUN -> [SKIP][118] ([i915#4103]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-rkl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#3555]) +6 similar issues [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-6/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_dsc@dsc-basic: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#3555] / [i915#3840]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-1/igt@kms_dsc@dsc-basic.html - shard-rkl: NOTRUN -> [SKIP][121] ([i915#3555] / [i915#3840]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-rkl-7/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-formats: - shard-mtlp: NOTRUN -> [SKIP][122] ([i915#3555]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-1/igt@kms_dsc@dsc-with-formats.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-mtlp: NOTRUN -> [SKIP][123] ([fdo#111767] / [i915#3637]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a1-hdmi-a2: - shard-glk: [PASS][124] -> [FAIL][125] ([i915#79]) +1 similar issue [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a1-hdmi-a2.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-glk1/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][126] ([i915#8381]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-2/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-modeset-vs-hang: - shard-tglu: NOTRUN -> [SKIP][127] ([fdo#109274] / [i915#3637]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-tglu-9/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html * igt@kms_flip@2x-flip-vs-suspend: - shard-mtlp: NOTRUN -> [SKIP][128] ([i915#3637]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-8/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][129] ([fdo#109274]) +3 similar issues [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-3/igt@kms_flip@2x-modeset-vs-vblank-race.html - shard-rkl: NOTRUN -> [SKIP][130] ([fdo#111825]) +2 similar issues [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-rkl-7/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1: - shard-mtlp: [PASS][131] -> [DMESG-WARN][132] ([i915#1982]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-mtlp-2/igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-4/igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#2672]) +4 similar issues [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html - shard-rkl: NOTRUN -> [SKIP][134] ([i915#2672]) +1 similar issue [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][135] ([i915#2672]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][136] ([i915#2672] / [i915#3555]) +1 similar issue [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][137] ([i915#2587] / [i915#2672]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-tglu-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#8708]) +5 similar issues [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html - shard-rkl: NOTRUN -> [SKIP][139] ([fdo#111825] / [i915#1825]) +12 similar issues [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite: - shard-mtlp: NOTRUN -> [SKIP][140] ([i915#1825]) +5 similar issues [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte: - shard-rkl: NOTRUN -> [SKIP][141] ([i915#3023]) +5 similar issues [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#5354]) +22 similar issues [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#3458]) +10 similar issues [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][144] ([fdo#110189]) +4 similar issues [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][145] ([i915#8708]) +3 similar issues [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][146] ([fdo#109280]) +8 similar issues [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-tglu: NOTRUN -> [SKIP][147] ([fdo#109289]) +1 similar issue [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-tglu-8/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#5176]) +3 similar issues [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-dp-4.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#5176]) +5 similar issues [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1: - shard-snb: NOTRUN -> [SKIP][150] ([fdo#109271]) +74 similar issues [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-snb4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#5235]) +1 similar issue [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-rkl-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-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][152] ([i915#5235]) +19 similar issues [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#658]) +1 similar issue [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-12/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-p010: - shard-rkl: NOTRUN -> [SKIP][154] ([fdo#111068] / [i915#658]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-rkl-1/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-tglu: NOTRUN -> [SKIP][155] ([fdo#109642] / [fdo#111068] / [i915#658]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-tglu-7/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@cursor_mmap_cpu: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#1072]) +2 similar issues [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-3/igt@kms_psr@cursor_mmap_cpu.html * igt@kms_psr@primary_render: - shard-rkl: NOTRUN -> [SKIP][157] ([i915#1072]) +1 similar issue [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-rkl-7/igt@kms_psr@primary_render.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#5461] / [i915#658]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@bad-tiling: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#4235]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-6/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#4235] / [i915#5190]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-tglu: NOTRUN -> [SKIP][161] ([fdo#111615] / [i915#5289]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-tglu-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][162] ([fdo#111615] / [i915#5289]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_scaling_modes@scaling-mode-none: - shard-rkl: NOTRUN -> [SKIP][163] ([i915#3555]) +3 similar issues [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-rkl-6/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#3555] / [i915#4098]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-rkl-2/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_vblank@pipe-c-query-busy: - shard-rkl: NOTRUN -> [SKIP][165] ([i915#4070] / [i915#6768]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-rkl-7/igt@kms_vblank@pipe-c-query-busy.html * igt@kms_vblank@pipe-d-ts-continuation-dpms-suspend: - shard-rkl: NOTRUN -> [SKIP][166] ([i915#4070] / [i915#533] / [i915#6768]) +1 similar issue [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-rkl-7/igt@kms_vblank@pipe-d-ts-continuation-dpms-suspend.html * igt@kms_writeback@writeback-invalid-parameters: - shard-rkl: NOTRUN -> [SKIP][167] ([i915#2437]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-rkl-7/igt@kms_writeback@writeback-invalid-parameters.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#2437]) +1 similar issue [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-5/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#2436]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-11/igt@perf@gen8-unprivileged-single-ctx-counters.html - shard-rkl: NOTRUN -> [SKIP][170] ([i915#2436]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-rkl-2/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [PASS][171] -> [FAIL][172] ([i915#7757]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-dg2-5/igt@perf@non-zero-reason@0-rcs0.html [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-11/igt@perf@non-zero-reason@0-rcs0.html * igt@perf_pmu@all-busy-idle-check-all: - shard-dg2: [PASS][173] -> [FAIL][174] ([i915#5234]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-dg2-2/igt@perf_pmu@all-busy-idle-check-all.html [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-7/igt@perf_pmu@all-busy-idle-check-all.html - shard-mtlp: [PASS][175] -> [FAIL][176] ([i915#5234]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-mtlp-6/igt@perf_pmu@all-busy-idle-check-all.html [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-3/igt@perf_pmu@all-busy-idle-check-all.html * igt@perf_pmu@busy-double-start@rcs0: - shard-dg2: [PASS][177] -> [FAIL][178] ([i915#4349]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-dg2-6/igt@perf_pmu@busy-double-start@rcs0.html [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-8/igt@perf_pmu@busy-double-start@rcs0.html * igt@perf_pmu@faulting-read@gtt: - shard-mtlp: NOTRUN -> [SKIP][179] ([i915#8440]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-6/igt@perf_pmu@faulting-read@gtt.html * igt@perf_pmu@module-unload: - shard-snb: [PASS][180] -> [ABORT][181] ([i915#4528]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-snb6/igt@perf_pmu@module-unload.html [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-snb1/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#8516]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-1/igt@perf_pmu@rc6@other-idle-gt0.html - shard-rkl: NOTRUN -> [SKIP][183] ([i915#8516]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-rkl-6/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#3291] / [i915#3708]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-1/igt@prime_vgem@basic-write.html * igt@syncobj_timeline@single-wait-for-submit-available-submitted: - shard-mtlp: [PASS][185] -> [DMESG-WARN][186] ([i915#2017]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-mtlp-6/igt@syncobj_timeline@single-wait-for-submit-available-submitted.html [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-4/igt@syncobj_timeline@single-wait-for-submit-available-submitted.html * igt@v3d/v3d_perfmon@create-perfmon-invalid-counters: - shard-tglu: NOTRUN -> [SKIP][187] ([fdo#109315] / [i915#2575]) +2 similar issues [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-tglu-9/igt@v3d/v3d_perfmon@create-perfmon-invalid-counters.html * igt@v3d/v3d_submit_csd@bad-extension: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#2575]) +4 similar issues [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-6/igt@v3d/v3d_submit_csd@bad-extension.html * igt@v3d/v3d_submit_csd@bad-multisync-pad: - shard-rkl: NOTRUN -> [SKIP][189] ([fdo#109315]) +2 similar issues [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-rkl-6/igt@v3d/v3d_submit_csd@bad-multisync-pad.html * igt@v3d/v3d_submit_csd@single-out-sync: - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#2575]) +5 similar issues [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-8/igt@v3d/v3d_submit_csd@single-out-sync.html * igt@vc4/vc4_perfmon@create-two-perfmon: - shard-tglu: NOTRUN -> [SKIP][191] ([i915#2575]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-tglu-2/igt@vc4/vc4_perfmon@create-two-perfmon.html * igt@vc4/vc4_purgeable_bo@free-purged-bo: - shard-mtlp: NOTRUN -> [SKIP][192] ([i915#7711]) +1 similar issue [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-6/igt@vc4/vc4_purgeable_bo@free-purged-bo.html * igt@vc4/vc4_tiling@get-bad-handle: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#7711]) +6 similar issues [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-2/igt@vc4/vc4_tiling@get-bad-handle.html - shard-rkl: NOTRUN -> [SKIP][194] ([i915#7711]) +3 similar issues [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-rkl-1/igt@vc4/vc4_tiling@get-bad-handle.html #### Possible fixes #### * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: [ABORT][195] ([i915#7461]) -> [PASS][196] [195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-dg2-3/igt@gem_create@create-ext-cpu-access-big.html [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-6/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_persistence@legacy-engines-hang@bsd1: - shard-mtlp: [FAIL][197] ([i915#2410]) -> [PASS][198] [197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-mtlp-7/igt@gem_ctx_persistence@legacy-engines-hang@bsd1.html [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-4/igt@gem_ctx_persistence@legacy-engines-hang@bsd1.html * igt@gem_eio@kms: - {shard-dg1}: [FAIL][199] ([i915#5784]) -> [PASS][200] [199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-dg1-16/igt@gem_eio@kms.html [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg1-15/igt@gem_eio@kms.html * igt@gem_exec_balancer@full-pulse: - shard-dg2: [FAIL][201] ([i915#6032]) -> [PASS][202] [201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-dg2-7/igt@gem_exec_balancer@full-pulse.html [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-1/igt@gem_exec_balancer@full-pulse.html * igt@gem_exec_capture@capture@vcs1-smem: - shard-mtlp: [DMESG-WARN][203] ([i915#5591]) -> [PASS][204] [203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-mtlp-5/igt@gem_exec_capture@capture@vcs1-smem.html [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-8/igt@gem_exec_capture@capture@vcs1-smem.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglu: [FAIL][205] ([i915#2842]) -> [PASS][206] [205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-tglu-8/igt@gem_exec_fair@basic-pace-share@rcs0.html [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-tglu-3/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-glk: [FAIL][207] ([i915#2842]) -> [PASS][208] +2 similar issues [207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-glk2/igt@gem_exec_fair@basic-pace@rcs0.html [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-glk2/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_whisper@basic-contexts-forked-all: - shard-mtlp: [FAIL][209] ([i915#6363]) -> [PASS][210] [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-mtlp-6/igt@gem_exec_whisper@basic-contexts-forked-all.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-6/igt@gem_exec_whisper@basic-contexts-forked-all.html * igt@i915_module_load@reload-with-fault-injection: - shard-mtlp: [ABORT][211] ([i915#8489] / [i915#8668]) -> [PASS][212] [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-mtlp: [SKIP][213] ([fdo#109289] / [i915#8403]) -> [PASS][214] [213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-mtlp-4/igt@i915_pm_rc6_residency@rc6-accuracy.html [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-6/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_pm_rpm@dpms-lpsp: - shard-rkl: [SKIP][215] ([i915#1397]) -> [PASS][216] +1 similar issue [215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-rkl-4/igt@i915_pm_rpm@dpms-lpsp.html [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-rkl-7/igt@i915_pm_rpm@dpms-lpsp.html * igt@i915_pm_rpm@dpms-non-lpsp: - {shard-dg1}: [SKIP][217] ([i915#1397]) -> [PASS][218] +1 similar issue [217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-dg1-19/igt@i915_pm_rpm@dpms-non-lpsp.html [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg1-12/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@modeset-lpsp: - shard-dg2: [SKIP][219] ([i915#1397]) -> [PASS][220] +1 similar issue [219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-dg2-5/igt@i915_pm_rpm@modeset-lpsp.html [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-12/igt@i915_pm_rpm@modeset-lpsp.html * igt@i915_suspend@basic-s2idle-without-i915: - shard-snb: [ABORT][221] ([i915#8213]) -> [PASS][222] [221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-snb2/igt@i915_suspend@basic-s2idle-without-i915.html [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-snb2/igt@i915_suspend@basic-s2idle-without-i915.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-1: - shard-glk: [FAIL][223] ([i915#2521]) -> [PASS][224] [223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-glk7/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-1.html [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-glk9/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-1.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-mtlp: [FAIL][225] ([i915#3743]) -> [PASS][226] +1 similar issue [225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-3: - shard-dg2: [FAIL][227] ([fdo#103375] / [i915#6121]) -> [PASS][228] [227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-dg2-5/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-3.html [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-3/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-3.html * igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a1: - shard-glk: [FAIL][229] ([i915#79]) -> [PASS][230] [229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-glk7/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a1.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-glk2/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a1.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - {shard-dg1}: [DMESG-WARN][231] ([i915#1982]) -> [PASS][232] [231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-dg1-13/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg1-12/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@sysfs_heartbeat_interval@precise@vecs0: - shard-mtlp: [FAIL][233] ([i915#8332]) -> [PASS][234] [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-mtlp-2/igt@sysfs_heartbeat_interval@precise@vecs0.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-5/igt@sysfs_heartbeat_interval@precise@vecs0.html * igt@sysfs_preempt_timeout@timeout@vecs0: - shard-mtlp: [ABORT][235] ([i915#8521]) -> [PASS][236] [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-mtlp-1/igt@sysfs_preempt_timeout@timeout@vecs0.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-2/igt@sysfs_preempt_timeout@timeout@vecs0.html #### Warnings #### * igt@gem_exec_schedule@deep@vecs0: - shard-mtlp: [FAIL][237] ([i915#8545]) -> [FAIL][238] ([i915#8606]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-mtlp-7/igt@gem_exec_schedule@deep@vecs0.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-3/igt@gem_exec_schedule@deep@vecs0.html * igt@gem_exec_whisper@basic-contexts-priority-all: - shard-mtlp: [ABORT][239] ([i915#8131]) -> [FAIL][240] ([i915#6363]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-mtlp-2/igt@gem_exec_whisper@basic-contexts-priority-all.html [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-mtlp-3/igt@gem_exec_whisper@basic-contexts-priority-all.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [TIMEOUT][241] ([i915#5493]) -> [DMESG-WARN][242] ([i915#4936] / [i915#5493]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-dg2-3/igt@gem_lmem_swapping@smem-oom@lmem0.html [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-6/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@i915_suspend@forcewake: - shard-dg2: [TIMEOUT][243] ([fdo#103375]) -> [FAIL][244] ([fdo#103375] / [i915#6121]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-dg2-11/igt@i915_suspend@forcewake.html [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-5/igt@i915_suspend@forcewake.html * igt@kms_content_protection@content_type_change: - shard-dg2: [SKIP][245] ([i915#3555] / [i915#7118] / [i915#7162]) -> [SKIP][246] ([i915#3555] / [i915#7118]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-dg2-11/igt@kms_content_protection@content_type_change.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-3/igt@kms_content_protection@content_type_change.html * igt@kms_fbcon_fbt@psr: - shard-rkl: [SKIP][247] ([fdo#110189] / [i915#3955]) -> [SKIP][248] ([i915#3955]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-rkl-2/igt@kms_fbcon_fbt@psr.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-rkl-6/igt@kms_fbcon_fbt@psr.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][249] ([i915#4816]) -> [SKIP][250] ([i915#4070] / [i915#4816]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [CRASH][251] ([i915#7331]) -> [INCOMPLETE][252] ([i915#5493]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13348/shard-dg2-8/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/shard-dg2-6/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [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#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [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#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 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1339]: https://gitlab.freedesktop.org/drm/intel/issues/1339 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436 [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#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [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#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [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#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [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#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#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [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#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [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#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [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#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5892]: https://gitlab.freedesktop.org/drm/intel/issues/5892 [i915#5978]: https://gitlab.freedesktop.org/drm/intel/issues/5978 [i915#6032]: https://gitlab.freedesktop.org/drm/intel/issues/6032 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121 [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6363]: https://gitlab.freedesktop.org/drm/intel/issues/6363 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6763]: https://gitlab.freedesktop.org/drm/intel/issues/6763 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [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#7331]: https://gitlab.freedesktop.org/drm/intel/issues/7331 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7757]: https://gitlab.freedesktop.org/drm/intel/issues/7757 [i915#7816]: https://gitlab.freedesktop.org/drm/intel/issues/7816 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#8131]: https://gitlab.freedesktop.org/drm/intel/issues/8131 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [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#8332]: https://gitlab.freedesktop.org/drm/intel/issues/8332 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399 [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#8440]: https://gitlab.freedesktop.org/drm/intel/issues/8440 [i915#8489]: https://gitlab.freedesktop.org/drm/intel/issues/8489 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8521]: https://gitlab.freedesktop.org/drm/intel/issues/8521 [i915#8545]: https://gitlab.freedesktop.org/drm/intel/issues/8545 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8573]: https://gitlab.freedesktop.org/drm/intel/issues/8573 [i915#8606]: https://gitlab.freedesktop.org/drm/intel/issues/8606 [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8764]: https://gitlab.freedesktop.org/drm/intel/issues/8764 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7373 -> IGTPW_9351 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13348: 23b57f4b8f17bc34c0c9b0420409fe2539f0ac01 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9351: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/index.html IGT_7373: 654347ccaa55cbfcd10b978cc6662ef6db25224d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9351/index.html [-- Attachment #2: Type: text/html, Size: 80194 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2023-07-06 13:06 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-07-06 8:39 [igt-dev] [PATCH i-g-t 0/1] Simplify tests/meson.build Mauro Carvalho Chehab 2023-07-06 8:39 ` [igt-dev] [PATCH i-g-t 1/1] tests/meson.build: Simplify builds for core and i915 targets Mauro Carvalho Chehab 2023-07-06 10:13 ` [igt-dev] ✓ Fi.CI.BAT: success for Simplify tests/meson.build Patchwork 2023-07-06 10:39 ` [igt-dev] ○ CI.xeBAT: info " Patchwork 2023-07-06 13:06 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox