* [PATCH v3 i-g-t 0/4] meson/tools: split lightweight igt core and reduce tool dependencies
@ 2026-02-19 14:14 Sebastian Brzezinka
2026-02-19 14:14 ` [PATCH v3 i-g-t 1/4] tools/meson: make per-tool dependencies instead of using global deps Sebastian Brzezinka
` (7 more replies)
0 siblings, 8 replies; 15+ messages in thread
From: Sebastian Brzezinka @ 2026-02-19 14:14 UTC (permalink / raw)
To: igt-dev; +Cc: kamil.konieczny, krzysztof.karas, Sebastian Brzezinka
This patch series continues the effort to reduce unnecessary build-time
and runtime dependencies in IGT tools by clearly separating a lightweight
core subset from the full IGT library and by making tool dependencies
explicit in Meson.
The primary motivation is to allow simple utilities (such as lsgpu) to
build and run without pulling in heavyweight graphical dependencies
(Cairo, Pixman, X11, etc.), while improving maintainability and clarity
of the Meson build files.
v2 -> v3:
- add libpci to lsgpu
Sebastian Brzezinka (4):
tools/meson: make per-tool dependencies instead of using global deps
lib/igt_tools_stub: Add igt_load_igtrc() stub implementation
lib/meson: build core sources as per-file static libs with minimal
deps
tools/lsgpu: drop cairo and switch to igt_core
lib/igt_tools_stub.c | 43 +++++++++++++++
lib/meson.build | 42 +++++++++++++++
tools/lsgpu.c | 3 +-
tools/meson.build | 121 ++++++++++++++++++++-----------------------
4 files changed, 143 insertions(+), 66 deletions(-)
--
2.52.0
^ permalink raw reply [flat|nested] 15+ messages in thread* [PATCH v3 i-g-t 1/4] tools/meson: make per-tool dependencies instead of using global deps 2026-02-19 14:14 [PATCH v3 i-g-t 0/4] meson/tools: split lightweight igt core and reduce tool dependencies Sebastian Brzezinka @ 2026-02-19 14:14 ` Sebastian Brzezinka 2026-02-24 11:19 ` Krzysztof Karas 2026-02-26 16:30 ` Kamil Konieczny 2026-02-19 14:14 ` [PATCH v3 i-g-t 2/4] lib/igt_tools_stub: Add igt_load_igtrc() stub implementation Sebastian Brzezinka ` (6 subsequent siblings) 7 siblings, 2 replies; 15+ messages in thread From: Sebastian Brzezinka @ 2026-02-19 14:14 UTC (permalink / raw) To: igt-dev; +Cc: kamil.konieczny, krzysztof.karas, Sebastian Brzezinka Rework tools/meson.build to stop linking every tool against the full global igt_deps set. Most tools do not require cairo, glib, udev, pciaccess, or zlib, and the previous all‑tools‑get‑everything approach pulled in unnecessary libraries. Introduce a small shared base dependency set (lib_igt, libdrm) and switch to a per‑tool dependency dictionary. Tools now declare their actual extra requirements explicitly, reducing over‑linking and making dependency intent clearer. Fold previously standalone tool definitions into the unified tools_progs structure and use consistent executable() creation. The tools list is also reordered to keep it clean and logically grouped. This is a build‑system cleanup only; no functional behavior changes. Signed-off-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com> --- tools/meson.build | 121 ++++++++++++++++++++++------------------------ 1 file changed, 57 insertions(+), 64 deletions(-) diff --git a/tools/meson.build b/tools/meson.build index 8185ba160..0fc2427f9 100644 --- a/tools/meson.build +++ b/tools/meson.build @@ -11,51 +11,60 @@ foreach prog : tools_progs_noisnt install : false) endforeach -tools_progs = [ - 'igt_facts', - 'igt_power', - 'igt_stats', - 'intel_audio_dump', - 'intel_backlight', - 'intel_bios_dumper', - 'intel_display_bandwidth', - 'intel_display_crc', - 'intel_display_poller', - 'intel_dump_decode', - 'intel_error_decode', - 'intel_forcewaked', - 'intel_gpu_frequency', - 'intel_firmware_decode', - 'intel_framebuffer_dump', - 'intel_gpu_time', - 'intel_gtt', - 'intel_guc_logger', - 'intel_hdcp', - 'intel_infoframes', - 'intel_lid', - 'intel_opregion_decode', - 'intel_panel_fitter', - 'intel_perf_counters', - 'intel_pm_rpm', - 'intel_reg_checker', - 'intel_residency', - 'intel_stepping', - 'intel_tiling_detect', - 'intel_vbt_decode', - 'intel_watermark', - 'intel_gem_info', - 'intel_gvtg_test', - 'dpcd_reg', - 'lsgpu', -] -tool_deps = igt_deps -tool_deps += zlib +tool_deps = [lib_igt, libdrm] +tools_progs = { + 'amd_hdmi_compliance': [tool_deps, cairo], + 'dpcd_reg': [tool_deps], + 'gputop': [lib_igt_drm_clients, + lib_igt_drm_fdinfo, + lib_igt_profiling, + math], + 'igt_facts': [tool_deps, cairo], + 'igt_power': [tool_deps], + 'igt_stats': [tool_deps], + 'intel_audio_dump': [tool_deps], + 'intel_backlight': [tool_deps], + 'intel_bios_dumper': [tool_deps, pciaccess], + 'intel_display_bandwidth': [tool_deps], + 'intel_display_crc': [tool_deps, cairo], + 'intel_display_poller': [tool_deps], + 'intel_dump_decode': [tool_deps], + 'intel_error_decode': [tool_deps, zlib], + 'intel_firmware_decode': [tool_deps], + 'intel_forcewaked': [tool_deps], + 'intel_framebuffer_dump': [tool_deps, cairo], + 'intel_gem_info': [tool_deps, cairo], + 'intel_gpu_frequency': [tool_deps], + 'intel_gpu_time': [tool_deps], + 'intel_gpu_top': [lib_igt_perf, + lib_igt_device_scan, + lib_igt_drm_clients, + lib_igt_drm_fdinfo, + math], + 'intel_gtt': [tool_deps, pciaccess], + 'intel_guc_logger': [tool_deps, cairo, pthreads], + 'intel_gvtg_test': [tool_deps, cairo], + 'intel_hdcp': [tool_deps, cairo, pthreads], + 'intel_infoframes': [tool_deps], + 'intel_lid': [tool_deps], + 'intel_opregion_decode': [tool_deps], + 'intel_panel_fitter': [tool_deps], + 'intel_perf_counters': [tool_deps], + 'intel_pm_rpm': [tool_deps, glib, cairo], + 'intel_reg_checker': [tool_deps], + 'intel_residency': [tool_deps, cairo], + 'intel_stepping': [tool_deps, pciaccess], + 'intel_tiling_detect': [tool_deps, cairo], + 'intel_vbt_decode': [tool_deps], + 'intel_watermark': [tool_deps], + 'lsgpu': [tool_deps, libudev, glib, cairo], +} -foreach prog : tools_progs - executable(prog, prog + '.c', - dependencies : tool_deps, - install_rpath : bindir_rpathdir, - install : true) +foreach prog, deps : tools_progs + executable( prog, prog + '.c', + dependencies: deps, + install_rpath: bindir_rpathdir, + install: true) endforeach if libudev.found() @@ -65,25 +74,19 @@ if libudev.found() 'igt_compliance_utils.c' ] executable('intel_dp_compliance', sources : intel_dp_compliance_src, - dependencies : [tool_deps, libudev], + dependencies : [tool_deps, libudev, glib, cairo], install_rpath : bindir_rpathdir, install : true) endif - -executable('gputop', 'gputop.c', - install : true, - install_rpath : bindir_rpathdir, - dependencies : [lib_igt_drm_clients,lib_igt_drm_fdinfo,lib_igt_profiling,math]) - intel_l3_parity_src = [ 'intel_l3_parity.c', 'intel_l3_udev_listener.c' ] executable('intel_l3_parity', sources : intel_l3_parity_src, - dependencies : tool_deps, + dependencies : [tool_deps, libudev], install_rpath : bindir_rpathdir, install : true) intel_reg_src = [ 'intel_reg.c', 'intel_reg_decode.c', 'intel_reg_spec.c' ] executable('intel_reg', sources : intel_reg_src, - dependencies : tool_deps, + dependencies : [tool_deps, pciaccess, cairo], install : true, install_rpath : bindir_rpathdir, c_args : [ @@ -94,16 +97,6 @@ install_data(['intel_gpu_abrt', 'intel-gfx-fw-info'], install_dir : bindir) install_subdir('registers', install_dir : datadir) -executable('intel_gpu_top', 'intel_gpu_top.c', - install : true, - install_rpath : bindir_rpathdir, - dependencies : [lib_igt_perf,lib_igt_device_scan,lib_igt_drm_clients,lib_igt_drm_fdinfo,math]) - -executable('amd_hdmi_compliance', 'amd_hdmi_compliance.c', - dependencies : [tool_deps], - install_rpath : bindir_rpathdir, - install : true) - if libudev.found() msm_dp_compliance_src = [ 'msm_dp_compliance.c', @@ -111,7 +104,7 @@ if libudev.found() 'igt_compliance_utils.c' ] executable('msm_dp_compliance', sources : msm_dp_compliance_src, - dependencies : [tool_deps, libudev], + dependencies : [tool_deps, libudev, cairo, glib], install_rpath : bindir_rpathdir, install : true) endif -- 2.52.0 ^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [PATCH v3 i-g-t 1/4] tools/meson: make per-tool dependencies instead of using global deps 2026-02-19 14:14 ` [PATCH v3 i-g-t 1/4] tools/meson: make per-tool dependencies instead of using global deps Sebastian Brzezinka @ 2026-02-24 11:19 ` Krzysztof Karas 2026-02-26 16:30 ` Kamil Konieczny 1 sibling, 0 replies; 15+ messages in thread From: Krzysztof Karas @ 2026-02-24 11:19 UTC (permalink / raw) To: Sebastian Brzezinka; +Cc: igt-dev, kamil.konieczny Hi Sebastian, The changes look OK, I also did not experience any problems during build process. Reviewed-by: Krzysztof Karas <krzysztof.karas@intel.com> On 2026-02-19 at 15:14:50 +0100, Sebastian Brzezinka wrote: > Rework tools/meson.build to stop linking every tool against the full > global igt_deps set. Most tools do not require cairo, glib, udev, > pciaccess, or zlib, and the previous all‑tools‑get‑everything approach > pulled in unnecessary libraries. > > Introduce a small shared base dependency set (lib_igt, libdrm) and > switch to a per‑tool dependency dictionary. Tools now declare their > actual extra requirements explicitly, reducing over‑linking and making > dependency intent clearer. > > Fold previously standalone tool definitions into the unified tools_progs > structure and use consistent executable() creation. The tools list is > also reordered to keep it clean and logically grouped. > > This is a build‑system cleanup only; no functional behavior changes. > > Signed-off-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com> > --- -- Best Regards, Krzysztof ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH v3 i-g-t 1/4] tools/meson: make per-tool dependencies instead of using global deps 2026-02-19 14:14 ` [PATCH v3 i-g-t 1/4] tools/meson: make per-tool dependencies instead of using global deps Sebastian Brzezinka 2026-02-24 11:19 ` Krzysztof Karas @ 2026-02-26 16:30 ` Kamil Konieczny 2026-02-27 9:53 ` Sebastian Brzezinka 1 sibling, 1 reply; 15+ messages in thread From: Kamil Konieczny @ 2026-02-26 16:30 UTC (permalink / raw) To: Sebastian Brzezinka; +Cc: igt-dev, krzysztof.karas Hi Sebastian, On 2026-02-19 at 15:14:50 +0100, Sebastian Brzezinka wrote: > Rework tools/meson.build to stop linking every tool against the full > global igt_deps set. Most tools do not require cairo, glib, udev, > pciaccess, or zlib, and the previous all‑tools‑get‑everything approach > pulled in unnecessary libraries. > > Introduce a small shared base dependency set (lib_igt, libdrm) and > switch to a per‑tool dependency dictionary. Tools now declare their > actual extra requirements explicitly, reducing over‑linking and making > dependency intent clearer. > > Fold previously standalone tool definitions into the unified tools_progs > structure and use consistent executable() creation. The tools list is > also reordered to keep it clean and logically grouped. > > This is a build‑system cleanup only; no functional behavior changes. > > Signed-off-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com> > --- > tools/meson.build | 121 ++++++++++++++++++++++------------------------ > 1 file changed, 57 insertions(+), 64 deletions(-) There is much work done with little gain and one regression. I used following script script: #!/bin/sh # SPDX-License-Identifier: MIT # compile igt source with changes in 'new' folder # keep non-modified compilation in 'old' folder cd new find build/tools/ -maxdepth 1 -type f | while read line; do nnew=$(ldd $line |wc -l) nold=$(ldd ../old/$line |wc -l) echo $nnew $nold $line done cd .. From output there are two tools with changes, regression: 10 7 build/tools/intel_gpu_top improvement: 10 79 build/tools/lsgpu Can you create lsgpu linking like one done for intel_gpu_top and work on more improvements in this series? Regards, Kamil > > diff --git a/tools/meson.build b/tools/meson.build > index 8185ba160..0fc2427f9 100644 > --- a/tools/meson.build > +++ b/tools/meson.build > @@ -11,51 +11,60 @@ foreach prog : tools_progs_noisnt > install : false) > endforeach > > -tools_progs = [ > - 'igt_facts', > - 'igt_power', > - 'igt_stats', > - 'intel_audio_dump', > - 'intel_backlight', > - 'intel_bios_dumper', > - 'intel_display_bandwidth', > - 'intel_display_crc', > - 'intel_display_poller', > - 'intel_dump_decode', > - 'intel_error_decode', > - 'intel_forcewaked', > - 'intel_gpu_frequency', > - 'intel_firmware_decode', > - 'intel_framebuffer_dump', > - 'intel_gpu_time', > - 'intel_gtt', > - 'intel_guc_logger', > - 'intel_hdcp', > - 'intel_infoframes', > - 'intel_lid', > - 'intel_opregion_decode', > - 'intel_panel_fitter', > - 'intel_perf_counters', > - 'intel_pm_rpm', > - 'intel_reg_checker', > - 'intel_residency', > - 'intel_stepping', > - 'intel_tiling_detect', > - 'intel_vbt_decode', > - 'intel_watermark', > - 'intel_gem_info', > - 'intel_gvtg_test', > - 'dpcd_reg', > - 'lsgpu', > -] > -tool_deps = igt_deps > -tool_deps += zlib > +tool_deps = [lib_igt, libdrm] > +tools_progs = { > + 'amd_hdmi_compliance': [tool_deps, cairo], > + 'dpcd_reg': [tool_deps], > + 'gputop': [lib_igt_drm_clients, > + lib_igt_drm_fdinfo, > + lib_igt_profiling, > + math], > + 'igt_facts': [tool_deps, cairo], > + 'igt_power': [tool_deps], > + 'igt_stats': [tool_deps], > + 'intel_audio_dump': [tool_deps], > + 'intel_backlight': [tool_deps], > + 'intel_bios_dumper': [tool_deps, pciaccess], > + 'intel_display_bandwidth': [tool_deps], > + 'intel_display_crc': [tool_deps, cairo], > + 'intel_display_poller': [tool_deps], > + 'intel_dump_decode': [tool_deps], > + 'intel_error_decode': [tool_deps, zlib], > + 'intel_firmware_decode': [tool_deps], > + 'intel_forcewaked': [tool_deps], > + 'intel_framebuffer_dump': [tool_deps, cairo], > + 'intel_gem_info': [tool_deps, cairo], > + 'intel_gpu_frequency': [tool_deps], > + 'intel_gpu_time': [tool_deps], > + 'intel_gpu_top': [lib_igt_perf, > + lib_igt_device_scan, > + lib_igt_drm_clients, > + lib_igt_drm_fdinfo, > + math], > + 'intel_gtt': [tool_deps, pciaccess], > + 'intel_guc_logger': [tool_deps, cairo, pthreads], > + 'intel_gvtg_test': [tool_deps, cairo], > + 'intel_hdcp': [tool_deps, cairo, pthreads], > + 'intel_infoframes': [tool_deps], > + 'intel_lid': [tool_deps], > + 'intel_opregion_decode': [tool_deps], > + 'intel_panel_fitter': [tool_deps], > + 'intel_perf_counters': [tool_deps], > + 'intel_pm_rpm': [tool_deps, glib, cairo], > + 'intel_reg_checker': [tool_deps], > + 'intel_residency': [tool_deps, cairo], > + 'intel_stepping': [tool_deps, pciaccess], > + 'intel_tiling_detect': [tool_deps, cairo], > + 'intel_vbt_decode': [tool_deps], > + 'intel_watermark': [tool_deps], > + 'lsgpu': [tool_deps, libudev, glib, cairo], > +} > > -foreach prog : tools_progs > - executable(prog, prog + '.c', > - dependencies : tool_deps, > - install_rpath : bindir_rpathdir, > - install : true) > +foreach prog, deps : tools_progs > + executable( prog, prog + '.c', > + dependencies: deps, > + install_rpath: bindir_rpathdir, > + install: true) > endforeach > > if libudev.found() > @@ -65,25 +74,19 @@ if libudev.found() > 'igt_compliance_utils.c' > ] > executable('intel_dp_compliance', sources : intel_dp_compliance_src, > - dependencies : [tool_deps, libudev], > + dependencies : [tool_deps, libudev, glib, cairo], > install_rpath : bindir_rpathdir, > install : true) > endif > - > -executable('gputop', 'gputop.c', > - install : true, > - install_rpath : bindir_rpathdir, > - dependencies : [lib_igt_drm_clients,lib_igt_drm_fdinfo,lib_igt_profiling,math]) > - > intel_l3_parity_src = [ 'intel_l3_parity.c', 'intel_l3_udev_listener.c' ] > executable('intel_l3_parity', sources : intel_l3_parity_src, > - dependencies : tool_deps, > + dependencies : [tool_deps, libudev], > install_rpath : bindir_rpathdir, > install : true) > > intel_reg_src = [ 'intel_reg.c', 'intel_reg_decode.c', 'intel_reg_spec.c' ] > executable('intel_reg', sources : intel_reg_src, > - dependencies : tool_deps, > + dependencies : [tool_deps, pciaccess, cairo], > install : true, > install_rpath : bindir_rpathdir, > c_args : [ > @@ -94,16 +97,6 @@ install_data(['intel_gpu_abrt', 'intel-gfx-fw-info'], install_dir : bindir) > > install_subdir('registers', install_dir : datadir) > > -executable('intel_gpu_top', 'intel_gpu_top.c', > - install : true, > - install_rpath : bindir_rpathdir, > - dependencies : [lib_igt_perf,lib_igt_device_scan,lib_igt_drm_clients,lib_igt_drm_fdinfo,math]) > - > -executable('amd_hdmi_compliance', 'amd_hdmi_compliance.c', > - dependencies : [tool_deps], > - install_rpath : bindir_rpathdir, > - install : true) > - > if libudev.found() > msm_dp_compliance_src = [ > 'msm_dp_compliance.c', > @@ -111,7 +104,7 @@ if libudev.found() > 'igt_compliance_utils.c' > ] > executable('msm_dp_compliance', sources : msm_dp_compliance_src, > - dependencies : [tool_deps, libudev], > + dependencies : [tool_deps, libudev, cairo, glib], > install_rpath : bindir_rpathdir, > install : true) > endif > -- > 2.52.0 > ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [PATCH v3 i-g-t 1/4] tools/meson: make per-tool dependencies instead of using global deps 2026-02-26 16:30 ` Kamil Konieczny @ 2026-02-27 9:53 ` Sebastian Brzezinka 0 siblings, 0 replies; 15+ messages in thread From: Sebastian Brzezinka @ 2026-02-27 9:53 UTC (permalink / raw) To: Kamil Konieczny, Sebastian Brzezinka; +Cc: igt-dev, krzysztof.karas On Thu Feb 26, 2026 at 5:30 PM CET, Kamil Konieczny wrote: > Hi Sebastian, > On 2026-02-19 at 15:14:50 +0100, Sebastian Brzezinka wrote: >> Rework tools/meson.build to stop linking every tool against the full >> global igt_deps set. Most tools do not require cairo, glib, udev, >> pciaccess, or zlib, and the previous all‑tools‑get‑everything approach >> pulled in unnecessary libraries. >> >> Introduce a small shared base dependency set (lib_igt, libdrm) and >> switch to a per‑tool dependency dictionary. Tools now declare their >> actual extra requirements explicitly, reducing over‑linking and making >> dependency intent clearer. >> >> Fold previously standalone tool definitions into the unified tools_progs >> structure and use consistent executable() creation. The tools list is >> also reordered to keep it clean and logically grouped. >> >> This is a build‑system cleanup only; no functional behavior changes. >> >> Signed-off-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com> >> --- >> tools/meson.build | 121 ++++++++++++++++++++++------------------------ >> 1 file changed, 57 insertions(+), 64 deletions(-) > > There is much work done with little gain and one regression. Thanks for taking the time to run the comparison and share the results. I’m aware that most of the changes in this series are focused on improving clarity and structure rather than altering dependencies themselves. The intent was mainly to make the tools dependency requirements explicit and avoid the situation where every new library ends up being linked by all tools. > I used following script script: > > #!/bin/sh > # SPDX-License-Identifier: MIT > > # compile igt source with changes in 'new' folder > # keep non-modified compilation in 'old' folder > > cd new > find build/tools/ -maxdepth 1 -type f | while read line; do > nnew=$(ldd $line |wc -l) > nold=$(ldd ../old/$line |wc -l) > echo $nnew $nold $line > done > cd .. > > From output there are two tools with changes, regression: > > 10 7 build/tools/intel_gpu_top Regarding the regression in intel_gpu_top, the additional dependencies (libpcre2 and libglib‑2.0) come indirectly through lib/igt_tools_stub.c, so that part is understood. > > improvement: > > 10 79 build/tools/lsgpu > > Can you create lsgpu linking like one done for intel_gpu_top > and work on more improvements in this series? I’m currently working on improving the series further. I’ll take a closer look at lsgpu and see how much of the minimal linking approach used for intel_gpu_top can be applied there as well. It may not be entirely straightforward, but I’ll try to reduce the dependencies as much as possible. Thanks again for th feedback -- Best regards, Sebastian ^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH v3 i-g-t 2/4] lib/igt_tools_stub: Add igt_load_igtrc() stub implementation 2026-02-19 14:14 [PATCH v3 i-g-t 0/4] meson/tools: split lightweight igt core and reduce tool dependencies Sebastian Brzezinka 2026-02-19 14:14 ` [PATCH v3 i-g-t 1/4] tools/meson: make per-tool dependencies instead of using global deps Sebastian Brzezinka @ 2026-02-19 14:14 ` Sebastian Brzezinka 2026-02-24 11:21 ` Krzysztof Karas 2026-02-19 14:14 ` [PATCH v3 i-g-t 3/4] lib/meson: build core sources as per-file static libs with minimal deps Sebastian Brzezinka ` (5 subsequent siblings) 7 siblings, 1 reply; 15+ messages in thread From: Sebastian Brzezinka @ 2026-02-19 14:14 UTC (permalink / raw) To: igt-dev; +Cc: kamil.konieczny, krzysztof.karas, Sebastian Brzezinka Add a minimal stub implementation of igt_load_igtrc() to allow lightweight tools like lsgpu to load IGT configuration files without requiring the full igt_core.c and its heavy dependencies (Cairo, Pixman, X11, etc.). Signed-off-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com> --- lib/igt_tools_stub.c | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/lib/igt_tools_stub.c b/lib/igt_tools_stub.c index 9a0ec6217..ccc393913 100644 --- a/lib/igt_tools_stub.c +++ b/lib/igt_tools_stub.c @@ -22,6 +22,11 @@ * */ #include "igt_core.h" +#include <glib.h> +#include <pwd.h> +#include <stdlib.h> +#include <string.h> +#include <unistd.h> /* Stub for igt_log, this stub will simply print the msg on stderr device. * Domain and log level are ignored. @@ -49,3 +54,41 @@ void __igt_fail_assert(const char *domain, const char *file, func, assertion); exit(1); } + +/* Stub for igt_load_igtrc - loads ~/.igtrc config file */ +GKeyFile *igt_load_igtrc(void) +{ + char *key_file_loc; + GKeyFile *file; + GError *error = NULL; + int ret; + + /* Determine igt config path */ + key_file_loc = getenv("IGT_CONFIG_PATH"); + if (!key_file_loc) { + struct passwd *pw = getpwuid(geteuid()); + if (pw && pw->pw_dir) + ret = asprintf(&key_file_loc, "%s/.igtrc", pw->pw_dir); + else + return NULL; + + if (ret == -1) + return NULL; + } else { + key_file_loc = strdup(key_file_loc); + } + + file = g_key_file_new(); + + ret = g_key_file_load_from_file(file, key_file_loc, G_KEY_FILE_NONE, &error); + if (!ret) { + g_key_file_free(file); + g_error_free(error); + free(key_file_loc); + return NULL; + } + + free(key_file_loc); + + return file; +} -- 2.52.0 ^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [PATCH v3 i-g-t 2/4] lib/igt_tools_stub: Add igt_load_igtrc() stub implementation 2026-02-19 14:14 ` [PATCH v3 i-g-t 2/4] lib/igt_tools_stub: Add igt_load_igtrc() stub implementation Sebastian Brzezinka @ 2026-02-24 11:21 ` Krzysztof Karas 0 siblings, 0 replies; 15+ messages in thread From: Krzysztof Karas @ 2026-02-24 11:21 UTC (permalink / raw) To: Sebastian Brzezinka; +Cc: igt-dev, kamil.konieczny Hi Sebastian, > Add a minimal stub implementation of igt_load_igtrc() to allow lightweight > tools like lsgpu to load IGT configuration files without requiring the full > igt_core.c and its heavy dependencies (Cairo, Pixman, X11, etc.). > > Signed-off-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com> > --- Reviewed-by: Krzysztof Karas <krzysztof.karas@intel.com> -- Best Regards, Krzysztof ^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH v3 i-g-t 3/4] lib/meson: build core sources as per-file static libs with minimal deps 2026-02-19 14:14 [PATCH v3 i-g-t 0/4] meson/tools: split lightweight igt core and reduce tool dependencies Sebastian Brzezinka 2026-02-19 14:14 ` [PATCH v3 i-g-t 1/4] tools/meson: make per-tool dependencies instead of using global deps Sebastian Brzezinka 2026-02-19 14:14 ` [PATCH v3 i-g-t 2/4] lib/igt_tools_stub: Add igt_load_igtrc() stub implementation Sebastian Brzezinka @ 2026-02-19 14:14 ` Sebastian Brzezinka 2026-02-19 14:14 ` [PATCH v3 i-g-t 4/4] tools/lsgpu: drop cairo and switch to igt_core Sebastian Brzezinka ` (4 subsequent siblings) 7 siblings, 0 replies; 15+ messages in thread From: Sebastian Brzezinka @ 2026-02-19 14:14 UTC (permalink / raw) To: igt-dev; +Cc: kamil.konieczny, krzysztof.karas, Sebastian Brzezinka Introduce a new lib_core_sources list to isolate low-level/common code (basic data structures, device scanning/info, and basic utilities) and build each file as a small static library. These per-file static libs are linked via a new declare_dependency() (lib_core_igt) and use a minimal dependency set (glib, libudev, pciaccess). This improves modularity and keeps core components lightweight. Signed-off-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com> Reviewed-by: Krzysztof Karas <krzysztof.karas@intel.com> --- lib/meson.build | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/lib/meson.build b/lib/meson.build index ea721ecf7..077517df0 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -151,6 +151,27 @@ lib_deps = [ zlib ] +lib_core_sources = [ + # Basic data structures (no dependencies) + 'igt_list.c', + 'igt_map.c', + + # Device scanning and info (minimal deps: udev, pci) + 'igt_device_scan.c', + 'intel_chipset.c', + 'intel_device_info.c', + 'intel_cmds_info.c', + + # Basic utilities + 'igt_tools_stub.c', +] + +lib_core_deps = [ + glib, + libudev, + pciaccess, +] + if libdrm_nouveau.found() lib_deps += libdrm_nouveau lib_sources += [ @@ -286,6 +307,27 @@ foreach f: iga64_assembly_sources ) endforeach + +lib_core = [] +foreach f: lib_core_sources + name = f.underscorify() + lib = static_library('igt-core' + name, + [ f, lib_version ], + include_directories: inc, + dependencies : lib_core_deps, + c_args : [ + '-DIGT_DATADIR="@0@"'.format(join_paths(prefix, datadir)), + '-DIGT_SRCDIR="@0@"'.format(srcdir), + '-DIGT_LOG_DOMAIN="@0@"'.format(f.split('.')[0]), + '-DIGT_IMGDIR="@0@"'.format(imgdir), + ]) + lib_core += lib +endforeach + +lib_core_igt = declare_dependency(link_with : lib_core, + include_directories : inc, + dependencies : lib_core_deps) + lib_intermediates = [] foreach f: lib_sources name = f.underscorify() -- 2.52.0 ^ permalink raw reply related [flat|nested] 15+ messages in thread
* [PATCH v3 i-g-t 4/4] tools/lsgpu: drop cairo and switch to igt_core 2026-02-19 14:14 [PATCH v3 i-g-t 0/4] meson/tools: split lightweight igt core and reduce tool dependencies Sebastian Brzezinka ` (2 preceding siblings ...) 2026-02-19 14:14 ` [PATCH v3 i-g-t 3/4] lib/meson: build core sources as per-file static libs with minimal deps Sebastian Brzezinka @ 2026-02-19 14:14 ` Sebastian Brzezinka 2026-02-24 11:22 ` Krzysztof Karas 2026-02-19 17:20 ` ✓ Xe.CI.BAT: success for meson/tools: split lightweight igt core and reduce tool dependencies (rev4) Patchwork ` (3 subsequent siblings) 7 siblings, 1 reply; 15+ messages in thread From: Sebastian Brzezinka @ 2026-02-19 14:14 UTC (permalink / raw) To: igt-dev; +Cc: kamil.konieczny, krzysztof.karas, Sebastian Brzezinka Replace the full igt.h include with igt_core.h and link lsgpu against lib_core_igt. This removes the cairo dependency and limits lsgpu to the minimal core IGT functionality required for device enumeration. Signed-off-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com> --- v2 -> v3: - add libpci to lsgpu --- tools/lsgpu.c | 3 +-- tools/meson.build | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/tools/lsgpu.c b/tools/lsgpu.c index 935371dea..057a594ea 100644 --- a/tools/lsgpu.c +++ b/tools/lsgpu.c @@ -33,8 +33,7 @@ #include <string.h> #include <signal.h> #include <sys/ioctl.h> - -#include "igt.h" +#include "igt_core.h" #include "igt_device_scan.h" /** diff --git a/tools/meson.build b/tools/meson.build index 0fc2427f9..903c0de0f 100644 --- a/tools/meson.build +++ b/tools/meson.build @@ -57,7 +57,7 @@ tools_progs = { 'intel_tiling_detect': [tool_deps, cairo], 'intel_vbt_decode': [tool_deps], 'intel_watermark': [tool_deps], - 'lsgpu': [tool_deps, libudev, glib, cairo], + 'lsgpu': [lib_core_igt, libudev, glib, libpci], } foreach prog, deps : tools_progs -- 2.52.0 ^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [PATCH v3 i-g-t 4/4] tools/lsgpu: drop cairo and switch to igt_core 2026-02-19 14:14 ` [PATCH v3 i-g-t 4/4] tools/lsgpu: drop cairo and switch to igt_core Sebastian Brzezinka @ 2026-02-24 11:22 ` Krzysztof Karas 0 siblings, 0 replies; 15+ messages in thread From: Krzysztof Karas @ 2026-02-24 11:22 UTC (permalink / raw) To: Sebastian Brzezinka; +Cc: igt-dev, kamil.konieczny Hi Sebastian, On 2026-02-19 at 15:14:53 +0100, Sebastian Brzezinka wrote: > Replace the full igt.h include with igt_core.h and link lsgpu against > lib_core_igt. > > This removes the cairo dependency and limits lsgpu to the minimal core > IGT functionality required for device enumeration. > > Signed-off-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com> > > --- > v2 -> v3: > - add libpci to lsgpu > --- > tools/lsgpu.c | 3 +-- > tools/meson.build | 2 +- > 2 files changed, 2 insertions(+), 3 deletions(-) > > diff --git a/tools/lsgpu.c b/tools/lsgpu.c > index 935371dea..057a594ea 100644 > --- a/tools/lsgpu.c > +++ b/tools/lsgpu.c > @@ -33,8 +33,7 @@ > #include <string.h> > #include <signal.h> > #include <sys/ioctl.h> > - > -#include "igt.h" > +#include "igt_core.h" > #include "igt_device_scan.h" > > /** > diff --git a/tools/meson.build b/tools/meson.build > index 0fc2427f9..903c0de0f 100644 > --- a/tools/meson.build > +++ b/tools/meson.build > @@ -57,7 +57,7 @@ tools_progs = { > 'intel_tiling_detect': [tool_deps, cairo], > 'intel_vbt_decode': [tool_deps], > 'intel_watermark': [tool_deps], > - 'lsgpu': [tool_deps, libudev, glib, cairo], > + 'lsgpu': [lib_core_igt, libudev, glib, libpci], > } > > foreach prog, deps : tools_progs > -- > 2.52.0 > Reviewed-by: Krzysztof Karas <krzysztof.karas@intel.com> -- Best Regards, Krzysztof ^ permalink raw reply [flat|nested] 15+ messages in thread
* ✓ Xe.CI.BAT: success for meson/tools: split lightweight igt core and reduce tool dependencies (rev4) 2026-02-19 14:14 [PATCH v3 i-g-t 0/4] meson/tools: split lightweight igt core and reduce tool dependencies Sebastian Brzezinka ` (3 preceding siblings ...) 2026-02-19 14:14 ` [PATCH v3 i-g-t 4/4] tools/lsgpu: drop cairo and switch to igt_core Sebastian Brzezinka @ 2026-02-19 17:20 ` Patchwork 2026-02-19 17:27 ` ✓ i915.CI.BAT: " Patchwork ` (2 subsequent siblings) 7 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2026-02-19 17:20 UTC (permalink / raw) To: Sebastian Brzezinka; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3887 bytes --] == Series Details == Series: meson/tools: split lightweight igt core and reduce tool dependencies (rev4) URL : https://patchwork.freedesktop.org/series/161146/ State : success == Summary == CI Bug Log - changes from XEIGT_8762_BAT -> XEIGTPW_14575_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (14 -> 14) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_14575_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit: - bat-bmg-2: NOTRUN -> [SKIP][1] ([Intel XE#2229]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html * igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p: - bat-bmg-3: NOTRUN -> [SKIP][2] ([Intel XE#6566]) +1 other test skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/bat-bmg-3/igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p.html #### Possible fixes #### * igt@core_hotunplug@unbind-rebind: - bat-bmg-2: [ABORT][3] ([Intel XE#7249]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8762/bat-bmg-2/igt@core_hotunplug@unbind-rebind.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/bat-bmg-2/igt@core_hotunplug@unbind-rebind.html * igt@xe_peer2peer@write@write-gpua-system-gpub-vram01-p2p: - bat-bmg-3: [INCOMPLETE][5] -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8762/bat-bmg-3/igt@xe_peer2peer@write@write-gpua-system-gpub-vram01-p2p.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/bat-bmg-3/igt@xe_peer2peer@write@write-gpua-system-gpub-vram01-p2p.html #### Warnings #### * igt@xe_evict@evict-beng-small: - bat-adlp-7: [SKIP][7] ([Intel XE#261] / [Intel XE#688]) -> [SKIP][8] ([Intel XE#261] / [Intel XE#5564] / [Intel XE#688]) +9 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8762/bat-adlp-7/igt@xe_evict@evict-beng-small.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/bat-adlp-7/igt@xe_evict@evict-beng-small.html * igt@xe_evict@evict-small-external-cm: - bat-adlp-vm: [SKIP][9] ([Intel XE#261] / [Intel XE#688]) -> [SKIP][10] ([Intel XE#261] / [Intel XE#5564] / [Intel XE#688]) +9 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8762/bat-adlp-vm/igt@xe_evict@evict-small-external-cm.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/bat-adlp-vm/igt@xe_evict@evict-small-external-cm.html [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261 [Intel XE#5564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5564 [Intel XE#6566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6566 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#7249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7249 Build changes ------------- * IGT: IGT_8762 -> IGTPW_14575 * Linux: xe-4575-c81e41f7aca96f583296a2a875f0179484b7a81f -> xe-4576-cc2c646d39200973cc76d0fa0851d73c9636c27c IGTPW_14575: d6452e38a20472b0f2b07e2b93706a78ee15ad68 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8762: d3c67e0f1fa76ac3d71095825bbc9df0d307e4fc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-4575-c81e41f7aca96f583296a2a875f0179484b7a81f: c81e41f7aca96f583296a2a875f0179484b7a81f xe-4576-cc2c646d39200973cc76d0fa0851d73c9636c27c: cc2c646d39200973cc76d0fa0851d73c9636c27c == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/index.html [-- Attachment #2: Type: text/html, Size: 5084 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
* ✓ i915.CI.BAT: success for meson/tools: split lightweight igt core and reduce tool dependencies (rev4) 2026-02-19 14:14 [PATCH v3 i-g-t 0/4] meson/tools: split lightweight igt core and reduce tool dependencies Sebastian Brzezinka ` (4 preceding siblings ...) 2026-02-19 17:20 ` ✓ Xe.CI.BAT: success for meson/tools: split lightweight igt core and reduce tool dependencies (rev4) Patchwork @ 2026-02-19 17:27 ` Patchwork 2026-02-19 19:22 ` ✗ Xe.CI.FULL: failure " Patchwork 2026-02-19 22:32 ` ✗ i915.CI.Full: " Patchwork 7 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2026-02-19 17:27 UTC (permalink / raw) To: Sebastian Brzezinka; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2501 bytes --] == Series Details == Series: meson/tools: split lightweight igt core and reduce tool dependencies (rev4) URL : https://patchwork.freedesktop.org/series/161146/ State : success == Summary == CI Bug Log - changes from IGT_8762 -> IGTPW_14575 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/index.html Participating hosts (43 -> 41) ------------------------------ Missing (2): bat-dg2-13 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_14575 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@workarounds: - bat-arlh-3: [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8762/bat-arlh-3/igt@i915_selftest@live@workarounds.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/bat-arlh-3/igt@i915_selftest@live@workarounds.html - bat-arls-5: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8762/bat-arls-5/igt@i915_selftest@live@workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/bat-arls-5/igt@i915_selftest@live@workarounds.html #### Possible fixes #### * igt@i915_selftest@live@workarounds: - bat-mtlp-9: [DMESG-FAIL][5] ([i915#12061]) -> [PASS][6] +1 other test pass [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8762/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8762 -> IGTPW_14575 * Linux: CI_DRM_18006 -> CI_DRM_18007 CI-20190529: 20190529 CI_DRM_18006: c81e41f7aca96f583296a2a875f0179484b7a81f @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_18007: cc2c646d39200973cc76d0fa0851d73c9636c27c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14575: d6452e38a20472b0f2b07e2b93706a78ee15ad68 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8762: d3c67e0f1fa76ac3d71095825bbc9df0d307e4fc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/index.html [-- Attachment #2: Type: text/html, Size: 3286 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
* ✗ Xe.CI.FULL: failure for meson/tools: split lightweight igt core and reduce tool dependencies (rev4) 2026-02-19 14:14 [PATCH v3 i-g-t 0/4] meson/tools: split lightweight igt core and reduce tool dependencies Sebastian Brzezinka ` (5 preceding siblings ...) 2026-02-19 17:27 ` ✓ i915.CI.BAT: " Patchwork @ 2026-02-19 19:22 ` Patchwork 2026-02-23 12:38 ` Sebastian Brzezinka 2026-02-19 22:32 ` ✗ i915.CI.Full: " Patchwork 7 siblings, 1 reply; 15+ messages in thread From: Patchwork @ 2026-02-19 19:22 UTC (permalink / raw) To: Sebastian Brzezinka; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 43708 bytes --] == Series Details == Series: meson/tools: split lightweight igt core and reduce tool dependencies (rev4) URL : https://patchwork.freedesktop.org/series/161146/ State : failure == Summary == CI Bug Log - changes from XEIGT_8762_FULL -> XEIGTPW_14575_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_14575_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_14575_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_14575_FULL: ### IGT changes ### #### Possible regressions #### * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8762/shard-lnl-1/igt@kms_pm_dc@dc5-dpms.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-6/igt@kms_pm_dc@dc5-dpms.html * igt@kms_vblank@query-forked: - shard-bmg: [PASS][3] -> [ABORT][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8762/shard-bmg-5/igt@kms_vblank@query-forked.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-1/igt@kms_vblank@query-forked.html * igt@kms_vblank@query-forked@pipe-a-dp-2: - shard-bmg: NOTRUN -> [ABORT][5] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-1/igt@kms_vblank@query-forked@pipe-a-dp-2.html * igt@kms_vblank@query-forked@pipe-d-dp-2: - shard-bmg: NOTRUN -> [DMESG-WARN][6] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-1/igt@kms_vblank@query-forked@pipe-d-dp-2.html * igt@kms_vblank@query-forked@pipe-d-hdmi-a-3: - shard-bmg: [PASS][7] -> [DMESG-WARN][8] +1 other test dmesg-warn [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8762/shard-bmg-5/igt@kms_vblank@query-forked@pipe-d-hdmi-a-3.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-1/igt@kms_vblank@query-forked@pipe-d-hdmi-a-3.html Known issues ------------ Here are the changes found in XEIGTPW_14575_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2327]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-6/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1407]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-7/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#1124]) +8 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-3/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2328]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-8/igt@kms_big_fb@y-tiled-addfb.html - shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#1467]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-1/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#1124]) +4 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-7/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#607]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-5/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#2191]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-2/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2314] / [Intel XE#2894]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-3/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt@kms_bw@linear-tiling-2-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#367]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-3/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html * igt@kms_bw@linear-tiling-4-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#367]) +2 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-5/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#2887]) +7 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-5/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [PASS][21] -> [INCOMPLETE][22] ([Intel XE#7084]) +1 other test incomplete [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8762/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#3432]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#3432]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-d-dp-1: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-d-dp-1.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2887]) +12 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-6/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs.html * igt@kms_chamelium_color@ctm-max: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2325]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-8/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_color@gamma: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#306]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-4/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_edid@dp-edid-change-during-suspend: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#373]) +4 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-7/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html * igt@kms_chamelium_edid@dp-edid-resolution-list: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2252]) +6 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-5/igt@kms_chamelium_edid@dp-edid-resolution-list.html * igt@kms_color_pipeline@plane-lut1d-ctm3x4@pipe-c-edp-1: - shard-lnl: NOTRUN -> [FAIL][31] ([Intel XE#6968]) +3 other tests fail [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-7/igt@kms_color_pipeline@plane-lut1d-ctm3x4@pipe-c-edp-1.html * igt@kms_color_pipeline@plane-lut3d-green-only@pipe-a-dp-2: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#6969]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-7/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-a-dp-2.html * igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-dp-2: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#6969] / [Intel XE#7006]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-7/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-dp-2.html * igt@kms_content_protection@atomic-dpms-hdcp14: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#6973]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-4/igt@kms_content_protection@atomic-dpms-hdcp14.html * igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][35] ([Intel XE#3304]) +1 other test fail [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-9/igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2.html * igt@kms_content_protection@content-type-change: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2341]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-6/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-type-0-suspend-resume: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#6974]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-4/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html * igt@kms_content_protection@suspend-resume@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][38] ([Intel XE#1178] / [Intel XE#3304]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-7/igt@kms_content_protection@suspend-resume@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#2321]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-1/igt@kms_cursor_crc@cursor-offscreen-512x512.html - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2321]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-8/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#1424]) +2 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-7/igt@kms_cursor_crc@cursor-sliding-32x10.html - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2320]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-3/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-bmg: NOTRUN -> [DMESG-WARN][43] ([Intel XE#5354]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#309]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#1508]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#4331]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-8/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2244]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#1421]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-1/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#7178]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#7178]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2311]) +20 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#7061]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#4141]) +16 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#651]) +5 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#656]) +14 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-blt: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#7061]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2313]) +26 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html * igt@kms_joiner@basic-big-joiner: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#6901]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-5/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#6911]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-9/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_pipe_stress@stress-xrgb8888-ytiled: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#4329] / [Intel XE#6912]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-8/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#7283]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-6/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier.html * igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#7283]) +2 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-2/igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping.html * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#599]) +3 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-7/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#4596]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-1/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_plane_multiple@tiling-yf: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#5020]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-8/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a: - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#6886]) +3 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b: - shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#6886]) +9 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-8/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#1406] / [Intel XE#2893]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-7/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#1406] / [Intel XE#1489]) +7 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-2/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_su@page_flip-nv12: - shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#1128] / [Intel XE#1406]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-3/igt@kms_psr2_su@page_flip-nv12.html - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#1406] / [Intel XE#2387]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-3/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1406]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-4/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@fbc-psr2-sprite-render@edp-1: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1406] / [Intel XE#4609]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-4/igt@kms_psr@fbc-psr2-sprite-render@edp-1.html * igt@kms_psr@psr2-no-drrs: - shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +9 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-1/igt@kms_psr@psr2-no-drrs.html * igt@kms_rotation_crc@bad-tiling: - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#3414] / [Intel XE#3904]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-1/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_sharpness_filter@filter-basic: - shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#6503]) +3 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-1/igt@kms_sharpness_filter@filter-basic.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: NOTRUN -> [FAIL][79] ([Intel XE#1729]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vrr@flip-suspend: - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#1499]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-3/igt@kms_vrr@flip-suspend.html * igt@xe_compute@ccs-mode-basic: - shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#6599]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-1/igt@xe_compute@ccs-mode-basic.html * igt@xe_compute@ccs-mode-compute-kernel: - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#1447]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-7/igt@xe_compute@ccs-mode-compute-kernel.html * igt@xe_compute_preempt@compute-preempt-many-vram-evict: - shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#5191]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-6/igt@xe_compute_preempt@compute-preempt-many-vram-evict.html * igt@xe_eudebug@basic-exec-queues: - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#4837]) +5 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-8/igt@xe_eudebug@basic-exec-queues.html * igt@xe_eudebug@basic-vm-access-faultable: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#4837]) +4 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-3/igt@xe_eudebug@basic-vm-access-faultable.html * igt@xe_eudebug_online@pagefault-one-of-many: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#6665]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-2/igt@xe_eudebug_online@pagefault-one-of-many.html - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#6665]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-7/igt@xe_eudebug_online@pagefault-one-of-many.html * igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-sram: - shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#4837] / [Intel XE#6665]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-3/igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-sram.html * igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-sram: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#4837] / [Intel XE#6665]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-5/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-sram.html * igt@xe_evict@evict-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#6540] / [Intel XE#688]) +6 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-1/igt@xe_evict@evict-large-multi-vm.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: [PASS][91] -> [INCOMPLETE][92] ([Intel XE#6321]) +1 other test incomplete [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8762/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-small.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-9/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#1392]) +2 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-2/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate.html * igt@xe_exec_basic@multigpu-once-null-rebind: - shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2322]) +6 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-8/igt@xe_exec_basic@multigpu-once-null-rebind.html * igt@xe_exec_fault_mode@many-execqueues-multi-queue-prefetch: - shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#7136]) +4 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-8/igt@xe_exec_fault_mode@many-execqueues-multi-queue-prefetch.html - shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#7136]) +5 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-7/igt@xe_exec_fault_mode@many-execqueues-multi-queue-prefetch.html * igt@xe_exec_multi_queue@max-queues-preempt-mode-close-fd: - shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#6874]) +13 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-6/igt@xe_exec_multi_queue@max-queues-preempt-mode-close-fd.html * igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-dyn-priority-smem: - shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#6874]) +24 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-6/igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-dyn-priority-smem.html * igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-rebind: - shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#7138]) +8 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-3/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-rebind.html * igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-rebind: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#7138]) +3 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-1/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-rebind.html * igt@xe_mmap@pci-membarrier-parallel: - shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#5100]) +1 other test skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-6/igt@xe_mmap@pci-membarrier-parallel.html * igt@xe_mmap@small-bar: - shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#586]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-8/igt@xe_mmap@small-bar.html * igt@xe_multigpu_svm@mgpu-atomic-op-prefetch: - shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#6964]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-6/igt@xe_multigpu_svm@mgpu-atomic-op-prefetch.html * igt@xe_multigpu_svm@mgpu-coherency-prefetch: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#6964]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-6/igt@xe_multigpu_svm@mgpu-coherency-prefetch.html * igt@xe_peer2peer@write: - shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#2427] / [Intel XE#6953]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-7/igt@xe_peer2peer@write.html - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#1061]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-6/igt@xe_peer2peer@write.html * igt@xe_pm@d3cold-multiple-execs: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2284]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-3/igt@xe_pm@d3cold-multiple-execs.html * igt@xe_pm@d3hot-i2c: - shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#5742]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-8/igt@xe_pm@d3hot-i2c.html * igt@xe_pm@s3-basic-exec: - shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#584]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-7/igt@xe_pm@s3-basic-exec.html * igt@xe_pm@vram-d3cold-threshold: - shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#579]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-5/igt@xe_pm@vram-d3cold-threshold.html * igt@xe_pxp@pxp-stale-queue-post-suspend: - shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#4733]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-1/igt@xe_pxp@pxp-stale-queue-post-suspend.html * igt@xe_query@multigpu-query-invalid-extension: - shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#944]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-5/igt@xe_query@multigpu-query-invalid-extension.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-bmg: [PASS][113] -> [FAIL][114] ([Intel XE#5937]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8762/shard-bmg-9/igt@xe_sriov_flr@flr-vf1-clear.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-3/igt@xe_sriov_flr@flr-vf1-clear.html * igt@xe_sriov_flr@flr-vfs-parallel: - shard-bmg: [PASS][115] -> [FAIL][116] ([Intel XE#6569]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8762/shard-bmg-2/igt@xe_sriov_flr@flr-vfs-parallel.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-1/igt@xe_sriov_flr@flr-vfs-parallel.html * igt@xe_sriov_vram@vf-access-after-resize-down: - shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#6376]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-8/igt@xe_sriov_vram@vf-access-after-resize-down.html * igt@xe_vm@munmap-style-unbind-userptr-either-side-full: - shard-bmg: [PASS][118] -> [ABORT][119] ([Intel XE#5545]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8762/shard-bmg-6/igt@xe_vm@munmap-style-unbind-userptr-either-side-full.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-2/igt@xe_vm@munmap-style-unbind-userptr-either-side-full.html #### Possible fixes #### * igt@kms_async_flips@async-flip-with-page-flip-events-linear: - shard-lnl: [FAIL][120] ([Intel XE#5993]) -> [PASS][121] +3 other tests pass [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8762/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html * igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1: - shard-lnl: [FAIL][122] ([Intel XE#6054]) -> [PASS][123] +3 other tests pass [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8762/shard-lnl-1/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-1/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-bmg: [FAIL][124] ([Intel XE#4633]) -> [PASS][125] [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8762/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: - shard-lnl: [FAIL][126] ([Intel XE#301]) -> [PASS][127] +1 other test pass [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8762/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html * igt@kms_hdr@invalid-hdr: - shard-bmg: [SKIP][128] ([Intel XE#1503]) -> [PASS][129] [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8762/shard-bmg-6/igt@kms_hdr@invalid-hdr.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-5/igt@kms_hdr@invalid-hdr.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-lnl: [SKIP][130] ([Intel XE#1406] / [Intel XE#4692]) -> [PASS][131] [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8762/shard-lnl-7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@xe_exec_system_allocator@threads-many-large-malloc-nomemset: - shard-bmg: [INCOMPLETE][132] -> [PASS][133] [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8762/shard-bmg-1/igt@xe_exec_system_allocator@threads-many-large-malloc-nomemset.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-5/igt@xe_exec_system_allocator@threads-many-large-malloc-nomemset.html * igt@xe_pm_residency@aspm_link_residency: - shard-bmg: [SKIP][134] ([Intel XE#7258]) -> [PASS][135] [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8762/shard-bmg-5/igt@xe_pm_residency@aspm_link_residency.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-8/igt@xe_pm_residency@aspm_link_residency.html * igt@xe_sriov_flr@flr-each-isolation: - shard-bmg: [FAIL][136] ([Intel XE#6569]) -> [PASS][137] [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8762/shard-bmg-3/igt@xe_sriov_flr@flr-each-isolation.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-9/igt@xe_sriov_flr@flr-each-isolation.html #### Warnings #### * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: [SKIP][138] ([Intel XE#2509]) -> [SKIP][139] ([Intel XE#2426]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8762/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv: - shard-bmg: [ABORT][140] ([Intel XE#5466]) -> [ABORT][141] ([Intel XE#5466] / [Intel XE#6652]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8762/shard-bmg-9/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-1/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447 [Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329 [Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331 [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596 [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609 [Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633 [Intel XE#4692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4692 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020 [Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100 [Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191 [Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354 [Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466 [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545 [Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586 [Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#5993]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5993 [Intel XE#6054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6054 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321 [Intel XE#6376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6376 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569 [Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599 [Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652 [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665 [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886 [Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901 [Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911 [Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912 [Intel XE#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#6968]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6968 [Intel XE#6969]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6969 [Intel XE#6973]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6973 [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974 [Intel XE#7006]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7006 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084 [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136 [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7258]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7258 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_8762 -> IGTPW_14575 * Linux: xe-4575-c81e41f7aca96f583296a2a875f0179484b7a81f -> xe-4576-cc2c646d39200973cc76d0fa0851d73c9636c27c IGTPW_14575: d6452e38a20472b0f2b07e2b93706a78ee15ad68 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8762: d3c67e0f1fa76ac3d71095825bbc9df0d307e4fc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-4575-c81e41f7aca96f583296a2a875f0179484b7a81f: c81e41f7aca96f583296a2a875f0179484b7a81f xe-4576-cc2c646d39200973cc76d0fa0851d73c9636c27c: cc2c646d39200973cc76d0fa0851d73c9636c27c == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/index.html [-- Attachment #2: Type: text/html, Size: 49050 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: ✗ Xe.CI.FULL: failure for meson/tools: split lightweight igt core and reduce tool dependencies (rev4) 2026-02-19 19:22 ` ✗ Xe.CI.FULL: failure " Patchwork @ 2026-02-23 12:38 ` Sebastian Brzezinka 0 siblings, 0 replies; 15+ messages in thread From: Sebastian Brzezinka @ 2026-02-23 12:38 UTC (permalink / raw) To: igt-dev, Sebastian Brzezinka, I915-ci-infra Hi CI-infra team, On Thu Feb 19, 2026 at 8:22 PM CET, Patchwork wrote: > == Series Details == > > Series: meson/tools: split lightweight igt core and reduce tool dependencies (rev4) > URL : https://patchwork.freedesktop.org/series/161146/ > State : failure > > == Summary == > > CI Bug Log - changes from XEIGT_8762_FULL -> XEIGTPW_14575_FULL > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with XEIGTPW_14575_FULL absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in XEIGTPW_14575_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them > to document this new failure mode, which will reduce false positives in CI. > > > > Participating hosts (2 -> 2) > ------------------------------ > > No changes in participating hosts > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in XEIGTPW_14575_FULL: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@kms_pm_dc@dc5-dpms: > - shard-lnl: [PASS][1] -> [FAIL][2] > [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8762/shard-lnl-1/igt@kms_pm_dc@dc5-dpms.html > [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-lnl-6/igt@kms_pm_dc@dc5-dpms.html > > * igt@kms_vblank@query-forked: > - shard-bmg: [PASS][3] -> [ABORT][4] > [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8762/shard-bmg-5/igt@kms_vblank@query-forked.html > [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-1/igt@kms_vblank@query-forked.html > > * igt@kms_vblank@query-forked@pipe-a-dp-2: > - shard-bmg: NOTRUN -> [ABORT][5] > [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-1/igt@kms_vblank@query-forked@pipe-a-dp-2.html > > * igt@kms_vblank@query-forked@pipe-d-dp-2: > - shard-bmg: NOTRUN -> [DMESG-WARN][6] > [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-1/igt@kms_vblank@query-forked@pipe-d-dp-2.html > > * igt@kms_vblank@query-forked@pipe-d-hdmi-a-3: > - shard-bmg: [PASS][7] -> [DMESG-WARN][8] +1 other test dmesg-warn > [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8762/shard-bmg-5/igt@kms_vblank@query-forked@pipe-d-hdmi-a-3.html > [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14575/shard-bmg-1/igt@kms_vblank@query-forked@pipe-d-hdmi-a-3.html > > These failures are not related to the patch content. The patch solely modifies tool dependencies. -- Best regards, Sebastian ^ permalink raw reply [flat|nested] 15+ messages in thread
* ✗ i915.CI.Full: failure for meson/tools: split lightweight igt core and reduce tool dependencies (rev4) 2026-02-19 14:14 [PATCH v3 i-g-t 0/4] meson/tools: split lightweight igt core and reduce tool dependencies Sebastian Brzezinka ` (6 preceding siblings ...) 2026-02-19 19:22 ` ✗ Xe.CI.FULL: failure " Patchwork @ 2026-02-19 22:32 ` Patchwork 7 siblings, 0 replies; 15+ messages in thread From: Patchwork @ 2026-02-19 22:32 UTC (permalink / raw) To: Sebastian Brzezinka; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 118188 bytes --] == Series Details == Series: meson/tools: split lightweight igt core and reduce tool dependencies (rev4) URL : https://patchwork.freedesktop.org/series/161146/ State : failure == Summary == CI Bug Log - changes from CI_DRM_18007_full -> IGTPW_14575_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_14575_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_14575_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/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_14575_full: ### IGT changes ### #### Possible regressions #### * igt@gem_lmem_swapping@smem-oom: - shard-dg1: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-dg1-14/igt@gem_lmem_swapping@smem-oom.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg1-18/igt@gem_lmem_swapping@smem-oom.html New tests --------- New tests have been introduced between CI_DRM_18007_full and IGTPW_14575_full: ### New IGT tests (3) ### * igt@kms_cursor_edge_walk@128x128-top-bottom@pipe-a-dp-3: - Statuses : 1 pass(s) - Exec time: [3.49] s * igt@kms_cursor_edge_walk@128x128-top-bottom@pipe-d-dp-3: - Statuses : 1 pass(s) - Exec time: [3.32] s * igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-c-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [3.60] s Known issues ------------ Here are the changes found in IGTPW_14575_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-tglu-1: NOTRUN -> [SKIP][3] ([i915#6230]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-1/igt@api_intel_bb@crc32.html * igt@device_reset@cold-reset-bound: - shard-rkl: NOTRUN -> [SKIP][4] ([i915#11078]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-7/igt@device_reset@cold-reset-bound.html * igt@drm_buddy@drm_buddy: - shard-rkl: NOTRUN -> [SKIP][5] ([i915#15678]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-8/igt@drm_buddy@drm_buddy.html - shard-dg1: NOTRUN -> [SKIP][6] ([i915#15678]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg1-16/igt@drm_buddy@drm_buddy.html - shard-tglu: NOTRUN -> [SKIP][7] ([i915#15678]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-5/igt@drm_buddy@drm_buddy.html - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#15678]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-mtlp-8/igt@drm_buddy@drm_buddy.html - shard-dg2: NOTRUN -> [SKIP][9] ([i915#15678]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-3/igt@drm_buddy@drm_buddy.html * igt@gem_basic@multigpu-create-close: - shard-rkl: NOTRUN -> [SKIP][10] ([i915#7697]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-7/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@block-copy-compressed: - shard-rkl: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#9323]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-8/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@large-ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][12] ([i915#13008]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-3/igt@gem_ccs@large-ctrl-surf-copy.html - shard-tglu-1: NOTRUN -> [SKIP][13] ([i915#13008]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-1/igt@gem_ccs@large-ctrl-surf-copy.html * igt@gem_close_race@multigpu-basic-process: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#14544] / [i915#7697]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-6/igt@gem_close_race@multigpu-basic-process.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][15] ([i915#8555]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-7/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_persistence@legacy-engines-hostile: - shard-snb: NOTRUN -> [SKIP][16] ([i915#1099]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-snb6/igt@gem_ctx_persistence@legacy-engines-hostile.html * igt@gem_eio@reset-stress@bsd: - shard-snb: NOTRUN -> [FAIL][17] ([i915#8898]) +1 other test fail [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-snb6/igt@gem_eio@reset-stress@bsd.html * igt@gem_eio@suspend: - shard-rkl: [PASS][18] -> [ABORT][19] ([i915#15131]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-8/igt@gem_eio@suspend.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-1/igt@gem_eio@suspend.html * igt@gem_exec_balancer@parallel-keep-submit-fence: - shard-rkl: NOTRUN -> [SKIP][20] ([i915#4525]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-8/igt@gem_exec_balancer@parallel-keep-submit-fence.html * igt@gem_exec_big@single: - shard-tglu: NOTRUN -> [ABORT][21] ([i915#11713]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-10/igt@gem_exec_big@single.html * igt@gem_exec_fence@submit67: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#4812]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-4/igt@gem_exec_fence@submit67.html * igt@gem_exec_params@rsvd2-dirt: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#5107]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-8/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-active: - shard-rkl: NOTRUN -> [SKIP][24] ([i915#3281]) +6 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-3/igt@gem_exec_reloc@basic-active.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-rkl: NOTRUN -> [SKIP][25] ([i915#14544] / [i915#3281]) +2 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-gtt-cpu-active: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#3281]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-1/igt@gem_exec_reloc@basic-gtt-cpu-active.html * igt@gem_exec_suspend@basic-s0@smem: - shard-dg2: [PASS][27] -> [INCOMPLETE][28] ([i915#13356]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-dg2-3/igt@gem_exec_suspend@basic-s0@smem.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-4/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#4860]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-11/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html - shard-dg1: NOTRUN -> [SKIP][30] ([i915#4860]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg1-13/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#4860]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-mtlp-1/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-tglu-1: NOTRUN -> [SKIP][32] ([i915#4613] / [i915#7582]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-1/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@parallel-random: - shard-rkl: NOTRUN -> [SKIP][33] ([i915#4613]) +5 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-4/igt@gem_lmem_swapping@parallel-random.html - shard-mtlp: NOTRUN -> [SKIP][34] ([i915#4613]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-mtlp-1/igt@gem_lmem_swapping@parallel-random.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-tglu-1: NOTRUN -> [SKIP][35] ([i915#4613]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][36] ([i915#4613]) +3 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-glk1/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [PASS][37] -> [CRASH][38] ([i915#5493]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify-random: - shard-tglu: NOTRUN -> [SKIP][39] ([i915#4613]) +5 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-2/igt@gem_lmem_swapping@verify-random.html * igt@gem_mmap_gtt@basic-write-read-distinct: - shard-mtlp: NOTRUN -> [SKIP][40] ([i915#4077]) +3 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-mtlp-2/igt@gem_mmap_gtt@basic-write-read-distinct.html * igt@gem_mmap_gtt@cpuset-basic-small-copy-odd: - shard-dg1: NOTRUN -> [SKIP][41] ([i915#4077]) +3 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg1-15/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html * igt@gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-dg1: NOTRUN -> [SKIP][42] ([i915#4083]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg1-18/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-rkl: NOTRUN -> [SKIP][43] ([i915#3282]) +8 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pread@exhaustion: - shard-tglu: NOTRUN -> [WARN][44] ([i915#2658]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-5/igt@gem_pread@exhaustion.html - shard-glk10: NOTRUN -> [WARN][45] ([i915#2658]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-glk10/igt@gem_pread@exhaustion.html - shard-dg2: NOTRUN -> [SKIP][46] ([i915#3282]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-3/igt@gem_pread@exhaustion.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: NOTRUN -> [SKIP][47] ([i915#13717] / [i915#14544]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#4270]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg1-17/igt@gem_pxp@verify-pxp-stale-ctx-execution.html - shard-dg2: NOTRUN -> [SKIP][49] ([i915#4270]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-3/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#8428]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-mtlp-1/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html - shard-dg2: NOTRUN -> [SKIP][51] ([i915#5190] / [i915#8428]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-6/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html * igt@gem_tiled_pread_basic@basic: - shard-rkl: NOTRUN -> [SKIP][52] ([i915#15656]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-4/igt@gem_tiled_pread_basic@basic.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#3297] / [i915#4880]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg1-16/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#3297]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-mtlp-8/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html - shard-dg2: NOTRUN -> [SKIP][55] ([i915#3297] / [i915#4880]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-3/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@unsync-unmap: - shard-rkl: NOTRUN -> [SKIP][56] ([i915#3297]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-4/igt@gem_userptr_blits@unsync-unmap.html * igt@gem_workarounds@suspend-resume: - shard-rkl: [PASS][57] -> [INCOMPLETE][58] ([i915#13356]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-4/igt@gem_workarounds@suspend-resume.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-4/igt@gem_workarounds@suspend-resume.html * igt@gen7_exec_parse@cmd-crossing-page: - shard-rkl: NOTRUN -> [SKIP][59] ([i915#14544]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-6/igt@gen7_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@batch-invalid-length: - shard-rkl: NOTRUN -> [SKIP][60] ([i915#2527]) +2 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-2/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@batch-without-end: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#2856]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-4/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@bb-oversize: - shard-tglu: NOTRUN -> [SKIP][62] ([i915#2527] / [i915#2856]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-2/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@bb-secure: - shard-tglu-1: NOTRUN -> [SKIP][63] ([i915#2527] / [i915#2856]) +2 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-1/igt@gen9_exec_parse@bb-secure.html * igt@i915_module_load@fault-injection@intel_connector_register: - shard-glk: NOTRUN -> [ABORT][64] ([i915#15342]) +1 other test abort [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-glk6/igt@i915_module_load@fault-injection@intel_connector_register.html * igt@i915_module_load@reload-no-display: - shard-dg2: [PASS][65] -> [DMESG-WARN][66] ([i915#13029] / [i915#14545]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-dg2-7/igt@i915_module_load@reload-no-display.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-7/igt@i915_module_load@reload-no-display.html - shard-tglu-1: NOTRUN -> [DMESG-WARN][67] ([i915#13029] / [i915#14545]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-1/igt@i915_module_load@reload-no-display.html - shard-dg1: [PASS][68] -> [DMESG-WARN][69] ([i915#13029] / [i915#14545]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-dg1-12/igt@i915_module_load@reload-no-display.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg1-18/igt@i915_module_load@reload-no-display.html * igt@i915_pm_freq_api@freq-reset: - shard-tglu: NOTRUN -> [SKIP][70] ([i915#8399]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-5/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu: NOTRUN -> [WARN][71] ([i915#13790] / [i915#2681]) +1 other test warn [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rps@thresholds-park: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#11681]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg1-13/igt@i915_pm_rps@thresholds-park.html * igt@i915_power@sanity: - shard-rkl: NOTRUN -> [SKIP][73] ([i915#7984]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-3/igt@i915_power@sanity.html * igt@i915_query@test-query-geometry-subslices: - shard-tglu-1: NOTRUN -> [SKIP][74] ([i915#5723]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-1/igt@i915_query@test-query-geometry-subslices.html - shard-rkl: NOTRUN -> [SKIP][75] ([i915#5723]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-5/igt@i915_query@test-query-geometry-subslices.html * igt@i915_selftest@mock: - shard-dg2: [PASS][76] -> [DMESG-WARN][77] ([i915#14545]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-dg2-1/igt@i915_selftest@mock.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-5/igt@i915_selftest@mock.html - shard-dg1: [PASS][78] -> [DMESG-WARN][79] ([i915#14545]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-dg1-18/igt@i915_selftest@mock.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg1-18/igt@i915_selftest@mock.html * igt@i915_suspend@sysfs-reader: - shard-glk: NOTRUN -> [INCOMPLETE][80] ([i915#4817]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-glk5/igt@i915_suspend@sysfs-reader.html * igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#4212]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-mtlp-4/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html - shard-dg2: NOTRUN -> [SKIP][82] ([i915#4212]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-7/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html - shard-dg1: NOTRUN -> [SKIP][83] ([i915#4212]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg1-16/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt@kms_async_flips@async-flip-suspend-resume@pipe-b-hdmi-a-2: - shard-rkl: [PASS][84] -> [INCOMPLETE][85] ([i915#12761]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-3/igt@kms_async_flips@async-flip-suspend-resume@pipe-b-hdmi-a-2.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-3/igt@kms_async_flips@async-flip-suspend-resume@pipe-b-hdmi-a-2.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-tglu-1: NOTRUN -> [SKIP][86] ([i915#9531]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-glk: NOTRUN -> [SKIP][87] ([i915#1769]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-glk6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][88] ([i915#1769] / [i915#3555]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-tglu-1: NOTRUN -> [SKIP][89] ([i915#1769] / [i915#3555]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-toggle-modeset-transition: - shard-dg2: [PASS][90] -> [FAIL][91] ([i915#5956]) +1 other test fail [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-dg2-6/igt@kms_atomic_transition@plane-toggle-modeset-transition.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-6/igt@kms_atomic_transition@plane-toggle-modeset-transition.html * igt@kms_big_fb@4-tiled-16bpp-rotate-180: - shard-tglu-1: NOTRUN -> [SKIP][92] ([i915#5286]) +3 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-1/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][93] ([i915#14544] / [i915#5286]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][94] ([i915#5286]) +3 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-7/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [SKIP][95] ([i915#5286]) +3 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][96] ([i915#4538] / [i915#5286]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip: - shard-tglu-1: NOTRUN -> [SKIP][97] ([i915#3828]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-1/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip: - shard-rkl: NOTRUN -> [SKIP][98] ([i915#3828]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-3/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][99] +2 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-3/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#14544] / [i915#3638]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-6/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-glk10: NOTRUN -> [SKIP][101] +163 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-glk10/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#4538] / [i915#5190]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-6/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html - shard-rkl: NOTRUN -> [SKIP][103] ([i915#3638]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-4/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][104] ([i915#3638]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg1-15/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][105] ([i915#4538]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg1-14/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html - shard-mtlp: NOTRUN -> [SKIP][106] +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-mtlp-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-c-dp-3: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#10307] / [i915#6095]) +104 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-11/igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-c-dp-3.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#12313]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-4/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html - shard-tglu: NOTRUN -> [SKIP][109] ([i915#12313]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-2/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#6095]) +202 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg1-15/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][111] ([i915#6095]) +44 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-1/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][112] ([i915#12313]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-5/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][113] ([i915#6095]) +9 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-mtlp-4/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1.html * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#14544] / [i915#6095]) +8 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-6/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][115] ([i915#14098] / [i915#14544] / [i915#6095]) +5 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-6/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1: - shard-glk: NOTRUN -> [SKIP][116] +245 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-glk6/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#6095]) +53 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][118] ([i915#14694] / [i915#15582]) +1 other test incomplete [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-glk1/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2: - shard-rkl: [PASS][119] -> [INCOMPLETE][120] ([i915#15582]) +1 other test incomplete [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#14098] / [i915#6095]) +57 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#10307] / [i915#10434] / [i915#6095]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][123] ([i915#12313]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg1-15/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html - shard-mtlp: NOTRUN -> [SKIP][124] ([i915#12313]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-mtlp-6/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#6095]) +76 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-1/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][126] ([i915#6095]) +44 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-5/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-c-hdmi-a-1.html * igt@kms_cdclk@mode-transition@pipe-b-dp-3: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#13781]) +3 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-11/igt@kms_cdclk@mode-transition@pipe-b-dp-3.html * igt@kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][128] ([i915#3742]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-5/igt@kms_cdclk@plane-scaling.html - shard-tglu: NOTRUN -> [SKIP][129] ([i915#3742]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-7/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_audio@dp-audio-edid: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#11151] / [i915#7828]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-11/igt@kms_chamelium_audio@dp-audio-edid.html * igt@kms_chamelium_color@ctm-0-50: - shard-tglu-1: NOTRUN -> [SKIP][131] +39 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-1/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_edid@vga-edid-read: - shard-tglu: NOTRUN -> [SKIP][132] ([i915#11151] / [i915#7828]) +3 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-3/igt@kms_chamelium_edid@vga-edid-read.html * igt@kms_chamelium_frames@hdmi-frame-dump: - shard-rkl: NOTRUN -> [SKIP][133] ([i915#11151] / [i915#14544] / [i915#7828]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-6/igt@kms_chamelium_frames@hdmi-frame-dump.html - shard-dg1: NOTRUN -> [SKIP][134] ([i915#11151] / [i915#7828]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg1-17/igt@kms_chamelium_frames@hdmi-frame-dump.html * igt@kms_chamelium_hpd@dp-hpd-after-suspend: - shard-tglu-1: NOTRUN -> [SKIP][135] ([i915#11151] / [i915#7828]) +4 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html * igt@kms_chamelium_hpd@hdmi-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][136] ([i915#11151] / [i915#7828]) +9 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-2/igt@kms_chamelium_hpd@hdmi-hpd-fast.html * igt@kms_color@deep-color: - shard-dg2: [PASS][137] -> [SKIP][138] ([i915#12655] / [i915#3555]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-dg2-11/igt@kms_color@deep-color.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-7/igt@kms_color@deep-color.html * igt@kms_content_protection@content-type-change: - shard-tglu: NOTRUN -> [SKIP][139] ([i915#6944] / [i915#9424]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-2/igt@kms_content_protection@content-type-change.html - shard-rkl: NOTRUN -> [SKIP][140] ([i915#6944] / [i915#9424]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-4/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14: - shard-tglu-1: NOTRUN -> [SKIP][141] ([i915#15330]) +1 other test skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-1/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#15330] / [i915#3116]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-8/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-1-suspend-resume: - shard-rkl: NOTRUN -> [SKIP][143] ([i915#14544] / [i915#15330]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html * igt@kms_content_protection@lic-type-0-hdcp14: - shard-tglu-1: NOTRUN -> [SKIP][144] ([i915#6944]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-1/igt@kms_content_protection@lic-type-0-hdcp14.html * igt@kms_content_protection@uevent: - shard-mtlp: NOTRUN -> [SKIP][145] ([i915#6944] / [i915#9424]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-mtlp-4/igt@kms_content_protection@uevent.html - shard-dg2: NOTRUN -> [SKIP][146] ([i915#6944] / [i915#7118] / [i915#9424]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-6/igt@kms_content_protection@uevent.html - shard-rkl: NOTRUN -> [SKIP][147] ([i915#6944] / [i915#7118] / [i915#9424]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-8/igt@kms_content_protection@uevent.html - shard-dg1: NOTRUN -> [SKIP][148] ([i915#6944] / [i915#7116] / [i915#9424]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg1-15/igt@kms_content_protection@uevent.html - shard-tglu: NOTRUN -> [SKIP][149] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-10/igt@kms_content_protection@uevent.html * igt@kms_content_protection@uevent-hdcp14: - shard-tglu: NOTRUN -> [SKIP][150] ([i915#6944]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-7/igt@kms_content_protection@uevent-hdcp14.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-tglu-1: NOTRUN -> [FAIL][151] ([i915#13566]) +3 other tests fail [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-256x85.html - shard-rkl: [PASS][152] -> [FAIL][153] ([i915#13566]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-256x85.html [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][154] ([i915#13566]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-rkl: NOTRUN -> [SKIP][155] ([i915#13049]) +2 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-sliding-128x42: - shard-tglu: [PASS][156] -> [FAIL][157] ([i915#13566]) +3 other tests fail [156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-tglu-6/igt@kms_cursor_crc@cursor-sliding-128x42.html [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-128x42.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#3555]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-4/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_crc@cursor-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][159] ([i915#12358] / [i915#14152] / [i915#7882]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-glk5/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][160] ([i915#12358] / [i915#14152]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-glk5/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-rkl: NOTRUN -> [SKIP][161] +17 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-3/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#9809]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-mtlp-2/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html - shard-dg2: NOTRUN -> [SKIP][163] ([i915#13046] / [i915#5354]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#14544] / [i915#9067]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-rkl: NOTRUN -> [SKIP][165] ([i915#4103]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][166] ([i915#9723]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-4/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-rkl: NOTRUN -> [SKIP][167] ([i915#3555] / [i915#3804]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#3804]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-tglu-1: NOTRUN -> [SKIP][169] ([i915#13749]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-1/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-rkl: NOTRUN -> [SKIP][170] ([i915#3555] / [i915#3840]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-3/igt@kms_dsc@dsc-with-bpc-formats.html - shard-tglu: NOTRUN -> [SKIP][171] ([i915#3555] / [i915#3840]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-4/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-formats: - shard-tglu-1: NOTRUN -> [SKIP][172] ([i915#3555] / [i915#3840]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-1/igt@kms_dsc@dsc-with-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-rkl: NOTRUN -> [SKIP][173] ([i915#3840] / [i915#9053]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html - shard-tglu-1: NOTRUN -> [SKIP][174] ([i915#3840] / [i915#9053]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-glk10: NOTRUN -> [INCOMPLETE][175] ([i915#9878]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-glk10/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_feature_discovery@dp-mst: - shard-tglu: NOTRUN -> [SKIP][176] ([i915#9337]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-5/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr2: - shard-tglu-1: NOTRUN -> [SKIP][177] ([i915#658]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-1/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-dg1: NOTRUN -> [SKIP][178] ([i915#9934]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg1-13/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-rkl: NOTRUN -> [SKIP][179] ([i915#9934]) +7 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-5/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-tglu: NOTRUN -> [SKIP][180] ([i915#3637] / [i915#9934]) +2 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-10/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][181] ([i915#3637] / [i915#9934]) +6 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-1/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#9934]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-3/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#15643]) +2 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#15643]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html - shard-dg1: NOTRUN -> [SKIP][185] ([i915#15643]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html - shard-tglu: NOTRUN -> [SKIP][186] ([i915#15643]) +2 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#15643]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-rkl: NOTRUN -> [SKIP][188] ([i915#15643]) +4 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][189] ([i915#1825]) +44 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][190] ([i915#8708]) +4 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][191] +39 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#8708]) +4 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#15102] / [i915#3458]) +3 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][194] ([i915#14544] / [i915#15102] / [i915#3023]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][195] ([i915#14544] / [i915#1825]) +4 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#8708]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][197] ([i915#15102] / [i915#3023]) +20 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html - shard-dg1: NOTRUN -> [SKIP][198] ([i915#15102] / [i915#3458]) +1 other test skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#15104]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][200] ([i915#15102]) +2 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-tglu: NOTRUN -> [SKIP][201] ([i915#15102]) +13 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#1825]) +6 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#5354]) +10 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html - shard-dg1: NOTRUN -> [SKIP][204] +7 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][205] ([i915#15102]) +12 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html * igt@kms_hdr@invalid-metadata-sizes: - shard-rkl: [PASS][206] -> [SKIP][207] ([i915#3555] / [i915#8228]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-1/igt@kms_hdr@invalid-metadata-sizes.html [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-7/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle-suspend: - shard-tglu: NOTRUN -> [SKIP][208] ([i915#3555] / [i915#8228]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-6/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-big-joiner: - shard-rkl: NOTRUN -> [SKIP][209] ([i915#15460]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-4/igt@kms_joiner@basic-big-joiner.html - shard-dg1: NOTRUN -> [SKIP][210] ([i915#15460]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg1-12/igt@kms_joiner@basic-big-joiner.html - shard-tglu: NOTRUN -> [SKIP][211] ([i915#15460]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-2/igt@kms_joiner@basic-big-joiner.html - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#15460]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-mtlp-8/igt@kms_joiner@basic-big-joiner.html - shard-dg2: NOTRUN -> [SKIP][213] ([i915#15460]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-4/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][214] ([i915#15459]) +1 other test skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-2/igt@kms_joiner@invalid-modeset-force-big-joiner.html - shard-tglu: NOTRUN -> [SKIP][215] ([i915#15459]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-10/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][216] ([i915#15638]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html - shard-rkl: NOTRUN -> [SKIP][217] ([i915#15638]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-5/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][218] ([i915#13409] / [i915#13476]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-glk9/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html * igt@kms_pipe_stress@stress-xrgb8888-4tiled: - shard-rkl: NOTRUN -> [SKIP][219] ([i915#14712]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-8/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html - shard-tglu: NOTRUN -> [SKIP][220] ([i915#14712]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-5/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier: - shard-rkl: NOTRUN -> [SKIP][221] ([i915#15709]) +3 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier: - shard-tglu-1: NOTRUN -> [SKIP][222] ([i915#15709]) +2 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5: - shard-rkl: NOTRUN -> [SKIP][223] ([i915#15608]) +1 other test skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-5/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-b-plane-7: - shard-tglu: NOTRUN -> [SKIP][224] ([i915#15608]) +1 other test skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-9/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-b-plane-7.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][225] ([i915#13026]) +1 other test incomplete [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-glk9/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a: - shard-rkl: [PASS][226] -> [INCOMPLETE][227] ([i915#14412]) +1 other test incomplete [226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-5/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html * igt@kms_plane_alpha_blend@constant-alpha-max: - shard-glk: NOTRUN -> [FAIL][228] ([i915#10647] / [i915#12169]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-glk6/igt@kms_plane_alpha_blend@constant-alpha-max.html * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][229] ([i915#10647]) +1 other test fail [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-glk6/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html * igt@kms_plane_lowres@tiling-4: - shard-tglu: NOTRUN -> [SKIP][230] ([i915#3555]) +3 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-9/igt@kms_plane_lowres@tiling-4.html * igt@kms_plane_multiple@2x-tiling-4: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#13958]) +1 other test skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-8/igt@kms_plane_multiple@2x-tiling-4.html - shard-tglu: NOTRUN -> [SKIP][232] ([i915#13958]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-10/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_plane_multiple@2x-tiling-x: - shard-tglu-1: NOTRUN -> [SKIP][233] ([i915#13958]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-x.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: [PASS][234] -> [SKIP][235] ([i915#6953] / [i915#9423]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-dg2-11/igt@kms_plane_scaling@intel-max-src-size.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-1/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a: - shard-tglu-1: NOTRUN -> [SKIP][236] ([i915#15329]) +4 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html - shard-dg1: NOTRUN -> [SKIP][237] ([i915#15329]) +4 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg1-18/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-tglu: NOTRUN -> [SKIP][238] ([i915#15329] / [i915#3555]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b: - shard-tglu: NOTRUN -> [SKIP][239] ([i915#15329]) +3 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: - shard-rkl: NOTRUN -> [SKIP][240] ([i915#15329]) +7 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75: - shard-mtlp: NOTRUN -> [SKIP][241] ([i915#15329] / [i915#3555] / [i915#6953]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-mtlp-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a: - shard-mtlp: NOTRUN -> [SKIP][242] ([i915#15329]) +3 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-mtlp-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a.html * igt@kms_pm_backlight@bad-brightness: - shard-tglu-1: NOTRUN -> [SKIP][243] ([i915#9812]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-1/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@basic-brightness: - shard-rkl: NOTRUN -> [SKIP][244] ([i915#5354]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-5/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-tglu-1: NOTRUN -> [SKIP][245] ([i915#12343]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-1/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_dc@dc5-retention-flops: - shard-mtlp: NOTRUN -> [SKIP][246] ([i915#3828]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-mtlp-3/igt@kms_pm_dc@dc5-retention-flops.html - shard-dg2: NOTRUN -> [SKIP][247] ([i915#3828]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-7/igt@kms_pm_dc@dc5-retention-flops.html - shard-dg1: NOTRUN -> [SKIP][248] ([i915#3828]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg1-17/igt@kms_pm_dc@dc5-retention-flops.html - shard-tglu: NOTRUN -> [SKIP][249] ([i915#3828]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-9/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_lpsp@screens-disabled: - shard-rkl: NOTRUN -> [SKIP][250] ([i915#8430]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-5/igt@kms_pm_lpsp@screens-disabled.html - shard-tglu-1: NOTRUN -> [SKIP][251] ([i915#8430]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-1/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-rkl: [PASS][252] -> [SKIP][253] ([i915#15073]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-1/igt@kms_pm_rpm@dpms-non-lpsp.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-8/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: [PASS][254] -> [SKIP][255] ([i915#15073]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-1/igt@kms_pm_rpm@modeset-lpsp-stress.html - shard-rkl: NOTRUN -> [SKIP][256] ([i915#14544] / [i915#15073]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-rkl: NOTRUN -> [SKIP][257] ([i915#15073]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-tglu: NOTRUN -> [SKIP][258] ([i915#15073]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-9/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg1: [PASS][259] -> [SKIP][260] ([i915#15073]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-dg1-12/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg1-15/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_pm_rpm@pm-tiling: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#4077]) +4 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-8/igt@kms_pm_rpm@pm-tiling.html * igt@kms_prime@d3hot: - shard-tglu: NOTRUN -> [SKIP][262] ([i915#6524]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-2/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-glk: NOTRUN -> [SKIP][263] ([i915#11520]) +5 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-glk5/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf: - shard-snb: NOTRUN -> [SKIP][264] ([i915#11520]) +2 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-snb1/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#11520]) +1 other test skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html - shard-dg1: NOTRUN -> [SKIP][266] ([i915#11520]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg1-18/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][267] ([i915#9808]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-mtlp-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][268] ([i915#12316]) +1 other test skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-mtlp-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf@pipe-b-edp-1.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-glk10: NOTRUN -> [SKIP][269] ([i915#11520]) +4 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-glk10/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][270] ([i915#11520]) +2 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-8/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb: - shard-tglu-1: NOTRUN -> [SKIP][271] ([i915#11520]) +4 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-1/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][272] ([i915#11520]) +7 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-7/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][273] ([i915#11520] / [i915#14544]) +1 other test skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-6/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-nv12: - shard-tglu-1: NOTRUN -> [SKIP][274] ([i915#9683]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-1/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-psr-primary-page-flip: - shard-rkl: NOTRUN -> [SKIP][275] ([i915#1072] / [i915#14544] / [i915#9732]) +1 other test skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-6/igt@kms_psr@fbc-psr-primary-page-flip.html * igt@kms_psr@fbc-psr2-basic: - shard-tglu-1: NOTRUN -> [SKIP][276] ([i915#9732]) +13 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-1/igt@kms_psr@fbc-psr2-basic.html * igt@kms_psr@fbc-psr2-suspend: - shard-dg1: NOTRUN -> [SKIP][277] ([i915#1072] / [i915#9732]) +5 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg1-13/igt@kms_psr@fbc-psr2-suspend.html * igt@kms_psr@pr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][278] ([i915#1072] / [i915#9732]) +8 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-8/igt@kms_psr@pr-cursor-render.html * igt@kms_psr@pr-dpms: - shard-tglu: NOTRUN -> [SKIP][279] ([i915#9732]) +14 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-2/igt@kms_psr@pr-dpms.html - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#9688]) +3 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-mtlp-2/igt@kms_psr@pr-dpms.html * igt@kms_psr@psr2-cursor-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][281] ([i915#1072] / [i915#9732]) +21 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-2/igt@kms_psr@psr2-cursor-mmap-gtt.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglu-1: NOTRUN -> [SKIP][282] ([i915#9685]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][283] ([i915#5289]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-7/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-rotation-90: - shard-mtlp: NOTRUN -> [SKIP][284] ([i915#12755]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-mtlp-4/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-tglu: NOTRUN -> [SKIP][285] ([i915#5289]) +1 other test skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-dg2: NOTRUN -> [SKIP][286] ([i915#5190]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-dg2: NOTRUN -> [SKIP][287] ([i915#12755]) +1 other test skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-7/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_selftest@drm_framebuffer: - shard-glk: NOTRUN -> [ABORT][288] ([i915#13179]) +1 other test abort [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-glk1/igt@kms_selftest@drm_framebuffer.html * igt@kms_setmode@basic-clone-single-crtc: - shard-rkl: NOTRUN -> [SKIP][289] ([i915#3555]) +2 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-5/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@clone-exclusive-crtc: - shard-tglu-1: NOTRUN -> [SKIP][290] ([i915#3555]) +5 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-1/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_vblank@ts-continuation-suspend@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [ABORT][291] ([i915#15132]) +1 other test abort [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-1/igt@kms_vblank@ts-continuation-suspend@pipe-c-hdmi-a-2.html * igt@kms_vrr@flip-basic: - shard-rkl: NOTRUN -> [SKIP][292] ([i915#15243] / [i915#3555]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-4/igt@kms_vrr@flip-basic.html * igt@kms_vrr@flip-basic-fastset: - shard-tglu: NOTRUN -> [SKIP][293] ([i915#9906]) +2 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-2/igt@kms_vrr@flip-basic-fastset.html - shard-mtlp: NOTRUN -> [SKIP][294] ([i915#8808] / [i915#9906]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-mtlp-2/igt@kms_vrr@flip-basic-fastset.html - shard-dg2: NOTRUN -> [SKIP][295] ([i915#9906]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-1/igt@kms_vrr@flip-basic-fastset.html - shard-rkl: NOTRUN -> [SKIP][296] ([i915#14544] / [i915#9906]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-6/igt@kms_vrr@flip-basic-fastset.html - shard-dg1: NOTRUN -> [SKIP][297] ([i915#9906]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg1-17/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@max-min: - shard-rkl: NOTRUN -> [SKIP][298] ([i915#9906]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-3/igt@kms_vrr@max-min.html * igt@perf@per-context-mode-unprivileged: - shard-rkl: NOTRUN -> [SKIP][299] ([i915#2435]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-3/igt@perf@per-context-mode-unprivileged.html * igt@perf@polling-small-buf: - shard-snb: NOTRUN -> [SKIP][300] +104 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-snb6/igt@perf@polling-small-buf.html * igt@perf_pmu@module-unload: - shard-glk: NOTRUN -> [FAIL][301] ([i915#14433]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-glk9/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][302] ([i915#13356] / [i915#14242]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-glk9/igt@perf_pmu@rc6-suspend.html - shard-rkl: [PASS][303] -> [INCOMPLETE][304] ([i915#13520]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-8/igt@perf_pmu@rc6-suspend.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-6/igt@perf_pmu@rc6-suspend.html * igt@prime_vgem@fence-write-hang: - shard-rkl: NOTRUN -> [SKIP][305] ([i915#3708]) +1 other test skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-7/igt@prime_vgem@fence-write-hang.html * igt@sriov_basic@bind-unbind-vf@vf-1: - shard-tglu-1: NOTRUN -> [FAIL][306] ([i915#12910]) +9 other tests fail [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-1/igt@sriov_basic@bind-unbind-vf@vf-1.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-dg2: NOTRUN -> [SKIP][307] ([i915#9917]) +1 other test skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-5/igt@sriov_basic@enable-vfs-autoprobe-on.html * igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1: - shard-tglu: NOTRUN -> [FAIL][308] ([i915#12910]) +10 other tests fail [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-2/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-mtlp: NOTRUN -> [FAIL][309] ([i915#12910]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-mtlp-1/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html - shard-rkl: NOTRUN -> [SKIP][310] ([i915#9917]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-7/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html - shard-dg1: NOTRUN -> [SKIP][311] ([i915#9917]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg1-13/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html #### Possible fixes #### * igt@gem_ccs@suspend-resume: - shard-dg2: [INCOMPLETE][312] ([i915#13356]) -> [PASS][313] [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-dg2-1/igt@gem_ccs@suspend-resume.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-11/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [INCOMPLETE][314] ([i915#12392] / [i915#13356]) -> [PASS][315] [314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-dg2-1/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-11/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html * igt@gem_mmap_offset@clear-via-pagefault@lmem0: - shard-dg2: [FAIL][316] -> [PASS][317] +2 other tests pass [316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-dg2-4/igt@gem_mmap_offset@clear-via-pagefault@lmem0.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-11/igt@gem_mmap_offset@clear-via-pagefault@lmem0.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-rkl: [SKIP][318] ([i915#4270]) -> [PASS][319] +2 other tests pass [318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-2/igt@gem_pxp@reject-modify-context-protection-off-2.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-7/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@i915_pm_rps@reset: - shard-snb: [INCOMPLETE][320] ([i915#13729] / [i915#13821]) -> [PASS][321] [320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-snb7/igt@i915_pm_rps@reset.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-snb4/igt@i915_pm_rps@reset.html * igt@i915_suspend@debugfs-reader: - shard-rkl: [INCOMPLETE][322] ([i915#4817]) -> [PASS][323] [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-6/igt@i915_suspend@debugfs-reader.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-5/igt@i915_suspend@debugfs-reader.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-rkl: [ABORT][324] ([i915#15140]) -> [PASS][325] [324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-1/igt@i915_suspend@fence-restore-tiled2untiled.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-4/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [FAIL][326] ([i915#5138]) -> [PASS][327] [326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_cursor_edge_walk@64x64-top-bottom: - shard-dg1: [DMESG-WARN][328] ([i915#4423]) -> [PASS][329] +1 other test pass [328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-dg1-16/igt@kms_cursor_edge_walk@64x64-top-bottom.html [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg1-17/igt@kms_cursor_edge_walk@64x64-top-bottom.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: [SKIP][330] ([i915#3555]) -> [PASS][331] [330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-dg2-4/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-11/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_dp_aux_dev: - shard-dg2: [SKIP][332] ([i915#1257]) -> [PASS][333] [332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-dg2-1/igt@kms_dp_aux_dev.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-11/igt@kms_dp_aux_dev.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-rkl: [INCOMPLETE][334] ([i915#9878]) -> [PASS][335] [334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-3/igt@kms_fbcon_fbt@fbc-suspend.html [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-3/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-rkl: [INCOMPLETE][336] ([i915#6113]) -> [PASS][337] [336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-3/igt@kms_flip@flip-vs-suspend-interruptible.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-2/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_frontbuffer_tracking@fbc-stridechange: - shard-dg2: [FAIL][338] ([i915#15389] / [i915#6880]) -> [PASS][339] +1 other test pass [338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-stridechange.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-stridechange.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1: - shard-glk: [INCOMPLETE][340] ([i915#12756] / [i915#13409] / [i915#13476]) -> [PASS][341] [340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-glk9/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-glk9/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@intel-max-src-size: - shard-rkl: [SKIP][342] ([i915#6953]) -> [PASS][343] [342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-4/igt@kms_plane_scaling@intel-max-src-size.html [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-dg1: [SKIP][344] ([i915#15073]) -> [PASS][345] [344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-dg1-14/igt@kms_pm_rpm@dpms-non-lpsp.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg1-16/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@perf_pmu@all-busy-idle-check-all: - shard-dg2: [FAIL][346] ([i915#15453]) -> [PASS][347] [346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-dg2-8/igt@perf_pmu@all-busy-idle-check-all.html [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-11/igt@perf_pmu@all-busy-idle-check-all.html - shard-dg1: [FAIL][348] ([i915#15453]) -> [PASS][349] [348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-dg1-17/igt@perf_pmu@all-busy-idle-check-all.html [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg1-13/igt@perf_pmu@all-busy-idle-check-all.html - shard-mtlp: [FAIL][350] ([i915#15453]) -> [PASS][351] [350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-mtlp-5/igt@perf_pmu@all-busy-idle-check-all.html [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-mtlp-7/igt@perf_pmu@all-busy-idle-check-all.html * igt@perf_pmu@busy-double-start@rcs0: - shard-mtlp: [FAIL][352] ([i915#4349]) -> [PASS][353] [352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-mtlp-8/igt@perf_pmu@busy-double-start@rcs0.html [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-mtlp-3/igt@perf_pmu@busy-double-start@rcs0.html #### Warnings #### * igt@gem_ctx_sseu@engines: - shard-rkl: [SKIP][354] ([i915#280]) -> [SKIP][355] ([i915#14544] / [i915#280]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-7/igt@gem_ctx_sseu@engines.html [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-6/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-sseu: - shard-rkl: [SKIP][356] ([i915#14544] / [i915#280]) -> [SKIP][357] ([i915#280]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-6/igt@gem_ctx_sseu@invalid-sseu.html [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-7/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_exec_capture@capture-invisible: - shard-rkl: [SKIP][358] ([i915#14544] / [i915#6334]) -> [SKIP][359] ([i915#6334]) +1 other test skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-6/igt@gem_exec_capture@capture-invisible.html [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-4/igt@gem_exec_capture@capture-invisible.html * igt@gem_exec_reloc@basic-gtt-cpu-active: - shard-rkl: [SKIP][360] ([i915#3281]) -> [SKIP][361] ([i915#14544] / [i915#3281]) +8 other tests skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-cpu-active.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-cpu-active.html * igt@gem_exec_reloc@basic-scanout: - shard-rkl: [SKIP][362] ([i915#14544] / [i915#3281]) -> [SKIP][363] ([i915#3281]) +2 other tests skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-6/igt@gem_exec_reloc@basic-scanout.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-2/igt@gem_exec_reloc@basic-scanout.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-rkl: [SKIP][364] ([i915#14544] / [i915#4613]) -> [SKIP][365] ([i915#4613]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-3/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: [SKIP][366] ([i915#4613]) -> [SKIP][367] ([i915#14544] / [i915#4613]) +2 other tests skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-3/igt@gem_lmem_swapping@parallel-random-verify-ccs.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_partial_pwrite_pread@write-uncached: - shard-rkl: [SKIP][368] ([i915#14544] / [i915#3282]) -> [SKIP][369] ([i915#3282]) +1 other test skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-6/igt@gem_partial_pwrite_pread@write-uncached.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-2/igt@gem_partial_pwrite_pread@write-uncached.html * igt@gem_pwrite@basic-exhaustion: - shard-glk10: [ABORT][370] -> [WARN][371] ([i915#14702] / [i915#2658]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-glk10/igt@gem_pwrite@basic-exhaustion.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-glk10/igt@gem_pwrite@basic-exhaustion.html * igt@gem_readwrite@read-write: - shard-rkl: [SKIP][372] ([i915#3282]) -> [SKIP][373] ([i915#14544] / [i915#3282]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-2/igt@gem_readwrite@read-write.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-6/igt@gem_readwrite@read-write.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-rkl: [SKIP][374] ([i915#14544] / [i915#3297]) -> [SKIP][375] ([i915#3297]) +1 other test skip [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap-cycles.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-2/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gen9_exec_parse@allowed-single: - shard-rkl: [SKIP][376] ([i915#2527]) -> [SKIP][377] ([i915#14544] / [i915#2527]) +1 other test skip [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-5/igt@gen9_exec_parse@allowed-single.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-6/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@secure-batches: - shard-rkl: [SKIP][378] ([i915#14544] / [i915#2527]) -> [SKIP][379] ([i915#2527]) +1 other test skip [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-6/igt@gen9_exec_parse@secure-batches.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-2/igt@gen9_exec_parse@secure-batches.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-rkl: [SKIP][380] ([i915#6590]) -> [SKIP][381] ([i915#14544] / [i915#6590]) +1 other test skip [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-5/igt@i915_pm_freq_mult@media-freq@gt0.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-6/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-rkl: [SKIP][382] -> [SKIP][383] ([i915#14544]) +8 other tests skip [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-3/igt@i915_pm_rc6_residency@media-rc6-accuracy.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-6/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-rkl: [SKIP][384] ([i915#5286]) -> [SKIP][385] ([i915#14544] / [i915#5286]) +1 other test skip [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-rkl: [SKIP][386] ([i915#14544] / [i915#5286]) -> [SKIP][387] ([i915#5286]) +1 other test skip [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: [SKIP][388] ([i915#14544] / [i915#3638]) -> [SKIP][389] ([i915#3638]) +2 other tests skip [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-6/igt@kms_big_fb@linear-64bpp-rotate-90.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-8/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: [SKIP][390] ([i915#4423] / [i915#6095]) -> [SKIP][391] ([i915#6095]) +1 other test skip [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-dg1-16/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-4.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg1-16/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-rkl: [SKIP][392] ([i915#12805]) -> [SKIP][393] ([i915#12805] / [i915#14544]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs: - shard-rkl: [SKIP][394] ([i915#14098] / [i915#6095]) -> [SKIP][395] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-2/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-rkl: [SKIP][396] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][397] ([i915#14098] / [i915#6095]) +5 other tests skip [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-5/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][398] ([i915#14544] / [i915#6095]) -> [SKIP][399] ([i915#6095]) +1 other test skip [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-rkl: [SKIP][400] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][401] ([i915#11151] / [i915#7828]) +2 other tests skip [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-6/igt@kms_chamelium_frames@hdmi-crc-fast.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-3/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_hpd@hdmi-hpd-after-suspend: - shard-rkl: [SKIP][402] ([i915#11151] / [i915#7828]) -> [SKIP][403] ([i915#11151] / [i915#14544] / [i915#7828]) +2 other tests skip [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-5/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html * igt@kms_content_protection@atomic-dpms-hdcp14: - shard-dg2: [FAIL][404] ([i915#7173]) -> [SKIP][405] ([i915#6944]) [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-dg2-11/igt@kms_content_protection@atomic-dpms-hdcp14.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-8/igt@kms_content_protection@atomic-dpms-hdcp14.html * igt@kms_content_protection@srm: - shard-rkl: [SKIP][406] ([i915#6944] / [i915#7118]) -> [SKIP][407] ([i915#14544] / [i915#6944] / [i915#7118]) [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-4/igt@kms_content_protection@srm.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-6/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-onscreen-32x10: - shard-rkl: [SKIP][408] ([i915#14544] / [i915#3555]) -> [SKIP][409] ([i915#3555]) [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-32x10.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-32x10.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-rkl: [SKIP][410] ([i915#14544]) -> [SKIP][411] +6 other tests skip [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-8/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_dp_link_training@uhbr-mst: - shard-rkl: [SKIP][412] ([i915#13748] / [i915#14544]) -> [SKIP][413] ([i915#13748]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-6/igt@kms_dp_link_training@uhbr-mst.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-5/igt@kms_dp_link_training@uhbr-mst.html * igt@kms_feature_discovery@chamelium: - shard-rkl: [SKIP][414] ([i915#4854]) -> [SKIP][415] ([i915#14544] / [i915#4854]) [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-4/igt@kms_feature_discovery@chamelium.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-6/igt@kms_feature_discovery@chamelium.html * igt@kms_flip@2x-flip-vs-dpms: - shard-rkl: [SKIP][416] ([i915#9934]) -> [SKIP][417] ([i915#14544] / [i915#9934]) +3 other tests skip [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-7/igt@kms_flip@2x-flip-vs-dpms.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-rkl: [SKIP][418] ([i915#14544] / [i915#15643]) -> [SKIP][419] ([i915#15643]) +2 other tests skip [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling: - shard-rkl: [SKIP][420] ([i915#15643]) -> [SKIP][421] ([i915#14544] / [i915#15643]) +1 other test skip [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt: - shard-rkl: [SKIP][422] ([i915#15102]) -> [SKIP][423] ([i915#14544] / [i915#15102]) [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-rkl: [SKIP][424] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][425] ([i915#15102] / [i915#3023]) +5 other tests skip [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt: - shard-rkl: [SKIP][426] ([i915#14544] / [i915#1825]) -> [SKIP][427] ([i915#1825]) +7 other tests skip [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff: - shard-dg1: [SKIP][428] ([i915#4423]) -> [SKIP][429] [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: [SKIP][430] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][431] ([i915#15102] / [i915#3458]) +2 other tests skip [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-blt: - shard-rkl: [SKIP][432] ([i915#1825]) -> [SKIP][433] ([i915#14544] / [i915#1825]) +5 other tests skip [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-blt.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-modesetfrombusy: - shard-rkl: [SKIP][434] ([i915#15102] / [i915#3023]) -> [SKIP][435] ([i915#14544] / [i915#15102] / [i915#3023]) +7 other tests skip [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-rkl: [SKIP][436] ([i915#14544] / [i915#15458]) -> [SKIP][437] ([i915#15458]) [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-6/igt@kms_joiner@basic-force-ultra-joiner.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-7/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping: - shard-rkl: [SKIP][438] ([i915#14544] / [i915#15709]) -> [SKIP][439] ([i915#15709]) +1 other test skip [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-4/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html * igt@kms_pm_dc@dc5-psr: - shard-rkl: [SKIP][440] ([i915#14544] / [i915#9685]) -> [SKIP][441] ([i915#9685]) [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-6/igt@kms_pm_dc@dc5-psr.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-5/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: [FAIL][442] -> [SKIP][443] ([i915#15128]) [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-tglu-5/igt@kms_pm_dc@dc6-dpms.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-tglu-6/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@package-g7: - shard-rkl: [SKIP][444] ([i915#15403]) -> [SKIP][445] ([i915#14544] / [i915#15403]) [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-5/igt@kms_pm_rpm@package-g7.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-6/igt@kms_pm_rpm@package-g7.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf: - shard-rkl: [SKIP][446] ([i915#11520] / [i915#14544]) -> [SKIP][447] ([i915#11520]) +2 other tests skip [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-6/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-2/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area: - shard-rkl: [SKIP][448] ([i915#11520]) -> [SKIP][449] ([i915#11520] / [i915#14544]) +2 other tests skip [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-7/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-6/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html * igt@kms_psr@fbc-pr-cursor-plane-onoff: - shard-rkl: [SKIP][450] ([i915#1072] / [i915#9732]) -> [SKIP][451] ([i915#1072] / [i915#14544] / [i915#9732]) +7 other tests skip [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-4/igt@kms_psr@fbc-pr-cursor-plane-onoff.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-6/igt@kms_psr@fbc-pr-cursor-plane-onoff.html * igt@kms_psr@pr-cursor-render: - shard-dg1: [SKIP][452] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][453] ([i915#1072] / [i915#9732]) [452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-dg1-18/igt@kms_psr@pr-cursor-render.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg1-17/igt@kms_psr@pr-cursor-render.html * igt@kms_psr@psr2-sprite-mmap-cpu: - shard-rkl: [SKIP][454] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][455] ([i915#1072] / [i915#9732]) +5 other tests skip [454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-6/igt@kms_psr@psr2-sprite-mmap-cpu.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-7/igt@kms_psr@psr2-sprite-mmap-cpu.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-rkl: [SKIP][456] ([i915#5289]) -> [SKIP][457] ([i915#14544] / [i915#5289]) [456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-7/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg1: [SKIP][458] ([i915#4423] / [i915#5289]) -> [SKIP][459] ([i915#5289]) [458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-dg1-18/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-dg1-15/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_tiled_display@basic-test-pattern: - shard-rkl: [SKIP][460] ([i915#8623]) -> [SKIP][461] ([i915#14544] / [i915#8623]) [460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-7/igt@kms_tiled_display@basic-test-pattern.html [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vrr@flip-suspend: - shard-rkl: [SKIP][462] ([i915#15243] / [i915#3555]) -> [SKIP][463] ([i915#14544] / [i915#15243] / [i915#3555]) [462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-8/igt@kms_vrr@flip-suspend.html [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-6/igt@kms_vrr@flip-suspend.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-rkl: [SKIP][464] ([i915#9917]) -> [SKIP][465] ([i915#14544] / [i915#9917]) [464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18007/shard-rkl-5/igt@sriov_basic@enable-vfs-autoprobe-off.html [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14575/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-off.html [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358 [i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756 [i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008 [i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026 [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409 [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476 [i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717 [i915#13729]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13729 [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781 [i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790 [i915#13821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13821 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152 [i915#14242]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14242 [i915#14412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14412 [i915#14433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14433 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545 [i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694 [i915#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702 [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712 [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073 [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102 [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104 [i915#15128]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15128 [i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131 [i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132 [i915#15140]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15140 [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330 [i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342 [i915#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389 [i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403 [i915#15453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15453 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459 [i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460 [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582 [i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608 [i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656 [i915#15678]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678 [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880 [i915#5107]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107 [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493 [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113 [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882 [i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#8898]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8898 [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8762 -> IGTPW_14575 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_18007: cc2c646d39200973cc76d0fa0851d73c9636c27c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14575: d6452e38a20472b0f2b07e2b93706a78ee15ad68 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8762: d3c67e0f1fa76ac3d71095825bbc9df0d307e4fc @ 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_14575/index.html [-- Attachment #2: Type: text/html, Size: 156197 bytes --] ^ permalink raw reply [flat|nested] 15+ messages in thread
end of thread, other threads:[~2026-02-27 9:53 UTC | newest] Thread overview: 15+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-02-19 14:14 [PATCH v3 i-g-t 0/4] meson/tools: split lightweight igt core and reduce tool dependencies Sebastian Brzezinka 2026-02-19 14:14 ` [PATCH v3 i-g-t 1/4] tools/meson: make per-tool dependencies instead of using global deps Sebastian Brzezinka 2026-02-24 11:19 ` Krzysztof Karas 2026-02-26 16:30 ` Kamil Konieczny 2026-02-27 9:53 ` Sebastian Brzezinka 2026-02-19 14:14 ` [PATCH v3 i-g-t 2/4] lib/igt_tools_stub: Add igt_load_igtrc() stub implementation Sebastian Brzezinka 2026-02-24 11:21 ` Krzysztof Karas 2026-02-19 14:14 ` [PATCH v3 i-g-t 3/4] lib/meson: build core sources as per-file static libs with minimal deps Sebastian Brzezinka 2026-02-19 14:14 ` [PATCH v3 i-g-t 4/4] tools/lsgpu: drop cairo and switch to igt_core Sebastian Brzezinka 2026-02-24 11:22 ` Krzysztof Karas 2026-02-19 17:20 ` ✓ Xe.CI.BAT: success for meson/tools: split lightweight igt core and reduce tool dependencies (rev4) Patchwork 2026-02-19 17:27 ` ✓ i915.CI.BAT: " Patchwork 2026-02-19 19:22 ` ✗ Xe.CI.FULL: failure " Patchwork 2026-02-23 12:38 ` Sebastian Brzezinka 2026-02-19 22:32 ` ✗ i915.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox